[
  {
    "path": ".github/workflows/eslint.yml",
    "content": "name: Lint JSON Files\n\non:\n  pull_request:\n    branches:\n      - main\n\njobs:\n  lint:\n    runs-on: ubuntu-latest\n\n    steps:\n      - name: Check out the repository\n        uses: actions/checkout@v2\n\n      - name: Set up Node.js\n        uses: actions/setup-node@v2\n        with:\n          node-version: '18' # 选择你的 Node.js 版本\n\n      - name: Install dependencies\n        run: npm install\n\n      - name: Run ESLint\n        run: npx eslint chains.json --config ./eslint.config.mjs\n"
  },
  {
    "path": ".gitignore",
    "content": "# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n/.pnp\n.pnp.js\n\n# testing\n/coverage\n\n# next.js\n/.next/\n/out/\n\n# production\n/build\n\n# misc\n.DS_Store\n*.pem\n\n# debug\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n\n# local env files\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\n# vercel\n.vercel\n"
  },
  {
    "path": ".idea/.gitignore",
    "content": "# Default ignored files\n/shelf/\n/workspace.xml\n# Editor-based HTTP Client requests\n/httpRequests/\n"
  },
  {
    "path": ".idea/codeStyles/codeStyleConfig.xml",
    "content": "<component name=\"ProjectCodeStyleConfiguration\">\n  <state>\n    <option name=\"PREFERRED_PROJECT_CODE_STYLE\" value=\"Default\" />\n  </state>\n</component>"
  },
  {
    "path": ".idea/jsLibraryMappings.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"JavaScriptLibraryMappings\">\n    <includedPredefinedLibrary name=\"Node.js Core\" />\n  </component>\n</project>"
  },
  {
    "path": ".idea/misc.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"JavaScriptSettings\">\n    <option name=\"languageLevel\" value=\"JSX\" />\n  </component>\n</project>"
  },
  {
    "path": ".idea/modules.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"ProjectModuleManager\">\n    <modules>\n      <module fileurl=\"file://$PROJECT_DIR$/.idea/networklist-org.iml\" filepath=\"$PROJECT_DIR$/.idea/networklist-org.iml\" />\n    </modules>\n  </component>\n</project>"
  },
  {
    "path": ".idea/networklist-org.iml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<module type=\"WEB_MODULE\" version=\"4\">\n  <component name=\"NewModuleRootManager\">\n    <content url=\"file://$MODULE_DIR$\">\n      <excludeFolder url=\"file://$MODULE_DIR$/.tmp\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/temp\" />\n      <excludeFolder url=\"file://$MODULE_DIR$/tmp\" />\n    </content>\n    <orderEntry type=\"inheritedJdk\" />\n    <orderEntry type=\"sourceFolder\" forTests=\"false\" />\n  </component>\n</module>"
  },
  {
    "path": ".idea/vcs.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project version=\"4\">\n  <component name=\"VcsDirectoryMappings\">\n    <mapping directory=\"$PROJECT_DIR$\" vcs=\"Git\" />\n  </component>\n</project>"
  },
  {
    "path": "LICENCE.md",
    "content": "GNU GENERAL PUBLIC LICENSE\n   Version 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\n        Preamble\n\nThe GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\nThe licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\nSome devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n   TERMS AND CONDITIONS\n\n0. Definitions.\n\n\"This License\" refers to version 3 of the GNU General Public License.\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n\"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\nTo \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\nA \"covered work\" means either the unmodified Program or a work based\non the Program.\n\nTo \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\nTo \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n1. Source Code.\n\nThe \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\nA \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\nThe \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\nThe \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\nThe Corresponding Source for a work in source code form is that\nsame work.\n\n2. Basic Permissions.\n\nAll rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\nNo covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\nWhen you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n4. Conveying Verbatim Copies.\n\nYou may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\n\nYou may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\na) The work must carry prominent notices stating that you modified\nit, and giving a relevant date.\n\nb) The work must carry prominent notices stating that it is\nreleased under this License and any conditions added under section\n7.  This requirement modifies the requirement in section 4 to\n\"keep intact all notices\".\n\nc) You must license the entire work, as a whole, under this\nLicense to anyone who comes into possession of a copy.  This\nLicense will therefore apply, along with any applicable section 7\nadditional terms, to the whole of the work, and all its parts,\nregardless of how they are packaged.  This License gives no\npermission to license the work in any other way, but it does not\ninvalidate such permission if you have separately received it.\n\nd) If the work has interactive user interfaces, each must display\nAppropriate Legal Notices; however, if the Program has interactive\ninterfaces that do not display Appropriate Legal Notices, your\nwork need not make them do so.\n\nA compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n6. Conveying Non-Source Forms.\n\nYou may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\na) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by the\nCorresponding Source fixed on a durable physical medium\ncustomarily used for software interchange.\n\nb) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by a\nwritten offer, valid for at least three years and valid for as\nlong as you offer spare parts or customer support for that product\nmodel, to give anyone who possesses the object code either (1) a\ncopy of the Corresponding Source for all the software in the\nproduct that is covered by this License, on a durable physical\nmedium customarily used for software interchange, for a price no\nmore than your reasonable cost of physically performing this\nconveying of source, or (2) access to copy the\nCorresponding Source from a network server at no charge.\n\nc) Convey individual copies of the object code with a copy of the\nwritten offer to provide the Corresponding Source.  This\nalternative is allowed only occasionally and noncommercially, and\nonly if you received the object code with such an offer, in accord\nwith subsection 6b.\n\nd) Convey the object code by offering access from a designated\nplace (gratis or for a charge), and offer equivalent access to the\nCorresponding Source in the same way through the same place at no\nfurther charge.  You need not require recipients to copy the\nCorresponding Source along with the object code.  If the place to\ncopy the object code is a network server, the Corresponding Source\nmay be on a different server (operated by you or a third party)\nthat supports equivalent copying facilities, provided you maintain\nclear directions next to the object code saying where to find the\nCorresponding Source.  Regardless of what server hosts the\nCorresponding Source, you remain obligated to ensure that it is\navailable for as long as needed to satisfy these requirements.\n\ne) Convey the object code using peer-to-peer transmission, provided\nyou inform other peers where the object code and Corresponding\nSource of the work are being offered to the general public at no\ncharge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\nA \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n\"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\nIf you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\nThe requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n7. Additional Terms.\n\n\"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\na) Disclaiming warranty or limiting liability differently from the\nterms of sections 15 and 16 of this License; or\n\nb) Requiring preservation of specified reasonable legal notices or\nauthor attributions in that material or in the Appropriate Legal\nNotices displayed by works containing it; or\n\nc) Prohibiting misrepresentation of the origin of that material, or\nrequiring that modified versions of such material be marked in\nreasonable ways as different from the original version; or\n\nd) Limiting the use for publicity purposes of names of licensors or\nauthors of the material; or\n\ne) Declining to grant rights under trademark law for use of some\ntrade names, trademarks, or service marks; or\n\nf) Requiring indemnification of licensors and authors of that\nmaterial by anyone who conveys the material (or modified versions of\nit) with contractual assumptions of liability to the recipient, for\nany liability that these contractual assumptions directly impose on\nthose licensors and authors.\n\nAll other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n8. Termination.\n\nYou may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\nHowever, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n9. Acceptance Not Required for Having Copies.\n\nYou are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\n\nEach time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\nAn \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n11. Patents.\n\nA \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\nA contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\nIn the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\nA patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\n\nIf conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\n\nNotwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n14. Revised Versions of this License.\n\nThe Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\nLater license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n15. Disclaimer of Warranty.\n\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\n\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\n\nIf the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n"
  },
  {
    "path": "README.md",
    "content": "# Description\nThis 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.\n\n## Listing and donation standard\nhttps://help.tokenpocket.pro/developer-en/network/add-chain\n\nA 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.\n\n\n# 简介\n本仓库为TokenPocket根据社区需求进行自定义网络（公链）更新，只要PR被合并就可以在自定义网络--快捷加链的列表中收录，同时，你也可在 **https://chainlist.tokenpocket.pro/** 中查看自定义网络的添加入口。添加更多网络信息，请根据以下指引进行提交。\n\n## 公链收录审核及捐赠标准\nhttps://help.tokenpocket.pro/developer-cn/public-chain/add-chain\n\n提交PR合并需要捐赠,如果不满足审核要求，则不进行合并，捐赠不会进行退回，请您按需进行提交。\n\n## How to add a new chain\n\nFork this repo and add your evm chain info into `chains.json` \n\nExample:\n\n```javascript\n{\n    \"name\": \"xDAI Chain\",\n    \"chainId\": 100,\n    \"shortName\": \"xdai\",\n    \"chain\": \"XDAI\",\n    \"network\": \"mainnet\",\n    \"networkId\": 100,\n    \"nativeCurrency\": {\n        \"name\": \"xDAI\",\n        \"symbol\": \"xDAI\",\n        \"decimals\": 18\n    },\n    \"rpc\": [\n        \"https://rpc.xdaichain.com\",\n        \"https://xdai.poanetwork.dev\",\n        \"wss://rpc.xdaichain.com/wss\",\n        \"wss://xdai.poanetwork.dev/wss\",\n        \"http://xdai.poanetwork.dev\",\n        \"https://dai.poa.network\",\n        \"ws://xdai.poanetwork.dev:8546\"\n    ],\n    \"faucets\": [],\n    \"infoURL\": \"https://forum.poa.network/c/xdai-chain\",\n    \"app_resource\": {\n        \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png\",//network icon selected status\n        \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png\",//network icon unselected status in light mode\n        \"ic_chain_unselect_dark\": \"\",//network icon unselected status in dark mode\n        \"color_chain_bg\": \"0x58B2AF\",//wallet card backgroud color\n        \"color_chain_text\": \"0xFFFFFF\",//wallet card text color\n        \"ic_home_logo\":\"\"//logo on top of asset page\n    }\n}\n```\n\n## 如何添加一个新链\n\nFork该仓库并在`chains.json` 中加入您的EVM链信息\n\n示例:\n\n```javascript\n{\n    \"name\": \"xDAI Chain\",\n    \"chainId\": 100,\n    \"shortName\": \"xdai\",\n    \"chain\": \"XDAI\",\n    \"network\": \"mainnet\",\n    \"networkId\": 100,\n    \"nativeCurrency\": {\n        \"name\": \"xDAI\",\n        \"symbol\": \"xDAI\",\n        \"decimals\": 18\n    },\n    \"rpc\": [\n        \"https://rpc.xdaichain.com\",\n        \"https://xdai.poanetwork.dev\",\n        \"wss://rpc.xdaichain.com/wss\",\n        \"wss://xdai.poanetwork.dev/wss\",\n        \"http://xdai.poanetwork.dev\",\n        \"https://dai.poa.network\",\n        \"ws://xdai.poanetwork.dev:8546\"\n    ],\n    \"faucets\": [],\n    \"infoURL\": \"https://forum.poa.network/c/xdai-chain\",\n    \"app_resource\": {\n        \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png\", //链icon选中状态\n        \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png\", //链icon白天模式的未选择状态\n        \"ic_chain_unselect_dark\": \"\", //链icon黑夜模式的未选择状态\n        \"color_chain_bg\": \"0x58B2AF\", //选择钱包时，卡片的背景颜色\n        \"color_chain_text\": \"0xFFFFFF\", //选择钱包时，卡片的文字颜色\n        \"ic_home_logo\":\"\" //首页卡片显示的logo\n    }\n}\n```\n\n\n\n`app_resource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below:\n\n\n![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-11.png)\n![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-12.png)\n![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-13.png)\n![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-14.png)\n![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-15.png)\n\n"
  },
  {
    "path": "chains.json",
    "content": "[\r\n    {\r\n        \"name\": \"Ethereum Mainnet\",\r\n        \"chainId\": 1,\r\n        \"shortName\": \"eth\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"https://api.mycryptoapi.com/eth\",\r\n            \"https://cloudflare-eth.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ethereum.org\"\r\n    },\r\n    {\r\n        \"name\": \"Optimistic Ethereum\",\r\n        \"chainId\": 10,\r\n        \"shortName\": \"oeth\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 10,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"OETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.optimism.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://optimism.io\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png\",\r\n            \"color_chain_bg\": \"0xF54B49\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Polygon (Matic) Mainnet\",\r\n        \"chainId\": 137,\r\n        \"shortName\": \"matic\",\r\n        \"chain\": \"Matic\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 137,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Matic\",\r\n            \"symbol\": \"MATIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.matic.network\",\r\n            \"wss://ws-mainnet.matic.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://matic.network/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/0.png\",\r\n            \"color_chain_bg\": \"0x7F4CDE\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Avalanche Mainnet\",\r\n        \"chainId\": 43114,\r\n        \"shortName\": \"Avalanche\",\r\n        \"chain\": \"AVAX\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Avalanche\",\r\n            \"symbol\": \"AVAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.avax.network/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://cchain.explorer.avax.network/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/0.png\",\r\n            \"color_chain_bg\": \"0xE92734\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Cronos Mainnet\",\r\n        \"chainId\": 25,\r\n        \"shortName\": \"CRO\",\r\n        \"chain\": \"CRO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 25,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CRO\",\r\n            \"symbol\": \"CRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://evm.cronos.org\",\r\n            \"https://cronosrpc-1.xstaking.sg\",\r\n            \"https://evm-cronos.crypto.org\",\r\n            \"https://cronos-rpc.heavenswail.one\",\r\n            \"https://cronos-rpc.elk.finance\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://cronos.crypto.org/explorer\"\r\n    },\r\n    {\r\n        \"name\": \"Fusion Mainnet\",\r\n        \"chainId\": 32659,\r\n        \"shortName\": \"fsn\",\r\n        \"chain\": \"FSN\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 32659,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fusion\",\r\n            \"symbol\": \"FSN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.anyswap.exchange\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://fsnex.com/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/0.png\",\r\n            \"ic_chain_unselect_dark\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/2.png\",\r\n            \"color_chain_bg\": \"0x2E3B4A\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"HyperEVM Mainnet\",\r\n        \"chainId\": 999,\r\n        \"shortName\": \"hyper\",\r\n        \"chain\": \"HyperEVM\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 999,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HYPE\",\r\n            \"symbol\": \"HYPE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.hyperliquid.xyz/evm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://app.hyperliquid.xyz/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739940296685.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739940300937.png\",\r\n            \"color_chain_bg\": \"0x072723\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739940305794.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1739944259234.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ThunderCore Mainnet\",\r\n        \"chainId\": 108,\r\n        \"shortName\": \"TT\",\r\n        \"chain\": \"TT\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 108,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ThunderCore Mainnet Ether\",\r\n            \"symbol\": \"TT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.thundercore.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.thundercore.com\"\r\n        ],\r\n        \"infoURL\": \"https://thundercore.com\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/0.png\",\r\n            \"ic_chain_unselect_dark\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/2.png\",\r\n            \"color_chain_bg\": \"0xEAC541\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Unichain\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.unichain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1654746200716.png\"\r\n        },\r\n        \"infoURL\": \"https://unichain.org\",\r\n        \"shortName\": \"Unichain\",\r\n        \"chainId\": 130,\r\n        \"networkId\": 130,\r\n        \"icon\": \"eth\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Uniscan\",\r\n                \"url\": \"https://uniscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739334330161.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739334338422.png\",\r\n            \"color_chain_bg\": \"0xFC0FA4\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739334369309.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1739334348465.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"FON Smart Chain\",\r\n        \"chainId\": 201022,\r\n        \"shortName\": \"FON\",\r\n        \"chain\": \"FON\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 201022,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FON\",\r\n            \"symbol\": \"FON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://fsc-dataseed2.fonscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FONScan\",\r\n                \"url\": \"https://fonscan.io/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1698387395064.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1698387436381.png\",\r\n            \"color_chain_bg\": \"0x343434\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1675422074776.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1675422139280.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Soneium\",\r\n        \"chainId\": 1868,\r\n        \"shortName\": \"Soneium\",\r\n        \"chain\": \"Soneium\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1868,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18,\r\n            \"icon\": \"https://hk.tpstatic.net/dapp/tokenpocket-1736823908221.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.soneium.org/\"\r\n        ],\r\n        \"status\": \"active\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1736823908221.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1736823938081.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1736823960573.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1736823877492.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Fraxtal\",\r\n        \"chain\": \"FRAX\",\r\n        \"rpc\": [\r\n            \"https://rpc.frax.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Frax Ether\",\r\n            \"symbol\": \"frxETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mainnet.frax.com\",\r\n        \"shortName\": \"Fraxtal\",\r\n        \"chainId\": 252,\r\n        \"networkId\": 252,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FraxScan\",\r\n                \"url\": \"https://fraxscan.com\",\r\n                \"icon\": \"Frax\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1710309559685.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1710309496700.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1710309512399.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1710309529426.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Viction Mainnet\",\r\n        \"chainId\": 88,\r\n        \"shortName\": \"vic\",\r\n        \"chain\": \"VIC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 88,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Viction Ether\",\r\n            \"symbol\": \"VIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.tomochain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.vicscan.xyz/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1701074390781.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1701074408625.png\",\r\n            \"color_chain_bg\": \"0xF5F2C4\",\r\n            \"color_chain_text\": \"0x1E1E1E\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1701074424755.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1701074444858.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"smartBCH Mainnet\",\r\n        \"chainId\": 10000,\r\n        \"shortName\": \"smartBCH\",\r\n        \"chain\": \"smartBCH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 10000,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin Cash\",\r\n            \"symbol\": \"BCH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://smartbch.greyh.at\",\r\n            \"https://rpc-mainnet.smartbch.org\",\r\n            \"https://smartbch.fountainhead.cash/mainnet\",\r\n            \"https://smartbch.devops.cash/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://smartbch.org/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://assets.smartbch.org/img/bch_active_88px.png\",\r\n            \"ic_chain_unselect\": \"https://assets.smartbch.org/img/bch_inactive_88px.png\",\r\n            \"color_chain_bg\": \"0x4cc947\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Aurora Mainnet\",\r\n        \"chainId\": 1313161554,\r\n        \"shortName\": \"Aurora\",\r\n        \"chain\": \"NEAR\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1313161554,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"aETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.aurora.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://aurora.dev\",\r\n        \"app_resource\": {\r\n            \"ic_home_logo\": \"https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png\",\r\n            \"ic_chain_select\": \"https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390457950.png\",\r\n            \"ic_chain_unselect\": \"https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390467132.png\",\r\n            \"ic_all_whitelist_logo\": \"https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390477377.png\",\r\n            \"color_chain_bg\": \"0x78d64b\",\r\n            \"color_chain_text\": \"0xFFFFFF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"PulseChain Mainnet\",\r\n        \"shortName\": \"pls\",\r\n        \"chain\": \"PLS\",\r\n        \"chainId\": 369,\r\n        \"networkId\": 369,\r\n        \"infoURL\": \"https://pulsechain.com/\",\r\n        \"rpc\": [\r\n            \"https://rpc.pulsechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pulse\",\r\n            \"symbol\": \"PLS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1684207110566.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1684207099184.png\",\r\n            \"color_chain_bg\": \"0x1A1A1A\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1684207056831.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1684207085917.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Kortho Chain Mainnet\",\r\n        \"chainId\": 2559,\r\n        \"shortName\": \"KTO\",\r\n        \"chain\": \"KTO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 2559,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KORTHO\",\r\n            \"symbol\": \"KTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://www.kortho-chain.com\",\r\n            \"https://www.kortho-chain.co\",\r\n            \"https://www.kortho-chain.org\",\r\n            \"https://www.kortho-chain.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.kortho.io\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://www.kortho.io/static/image/1.png\",\r\n            \"ic_chain_unselect\": \"https://www.kortho.io/static/image/0.png\",\r\n            \"color_chain_bg\": \"0x748ee3\",\r\n            \"txUrl\": \" https://www.kortho.io/\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Vana Mainnet\",\r\n        \"chainId\": 1480,\r\n        \"shortName\": \"Vana\",\r\n        \"chain\": \"Vana\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1480,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vana\",\r\n            \"symbol\": \"VANA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.vana.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VanaScan\",\r\n                \"url\": \"https://vanascan.io/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://vana.org/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740454198610.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740454248235.png\",\r\n            \"color_chain_bg\": \"0x10100E\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740454209678.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740454267140.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Endurance Smart Chain Mainnet\",\r\n        \"chain\": \"ACE\",\r\n        \"rpc\": [\r\n            \"https://rpc-endurance.fusionist.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Endurance Chain Native Token\",\r\n            \"symbol\": \"ACE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ace.fusionist.io/\",\r\n        \"shortName\": \"ace\",\r\n        \"chainId\": 648,\r\n        \"networkId\": 648,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Endurance Scan\",\r\n                \"url\": \"https://explorer.endurance.fusionist.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709886151485.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709886075208.png\",\r\n            \"color_chain_bg\": \"0x050504\",\r\n            \"color_chain_text\": \"0xFFC783\",\r\n            \"ic_home_logo\": \"hhttps://hk.tpstatic.net/token/tokenpocket-1709886106935.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709886092252.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Zora\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.zora.energy/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"zora\",\r\n        \"infoURL\": \"https://zora.energy\",\r\n        \"shortName\": \"zora\",\r\n        \"chainId\": 7777777,\r\n        \"networkId\": 7777777,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zora Network Explorer\",\r\n                \"url\": \"https://explorer.zora.energy\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709899028504.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709899005184.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709899016829.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709899043712.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Morph Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.morphl2.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://morphl2.io\",\r\n        \"shortName\": \"tmorph\",\r\n        \"chainId\": 2710,\r\n        \"networkId\": 2710,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Morph Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.morphl2.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-testnet.morphl2.io\"\r\n                }\r\n            ]\r\n        },\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709898729370.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709898717628.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0x6AF495\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709898740826.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709898759382.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mode\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.mode.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.mode.network/\",\r\n        \"shortName\": \"mode\",\r\n        \"chainId\": 34443,\r\n        \"networkId\": 34443,\r\n        \"icon\": \"mode\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"modescout\",\r\n                \"url\": \"https://explorer.mode.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709899308595.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709899325224.png\",\r\n            \"color_chain_bg\": \"0xD9F417\",\r\n            \"color_chain_text\": \"0x000000\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709899339092.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709899353868.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Berachain Artio\",\r\n        \"chain\": \"Berachain Artio\",\r\n        \"rpc\": [\r\n            \"https://artio.rpc.berachain.com\",\r\n            \"https://rpc.ankr.com/berachain_testnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://artio.faucet.berachain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BERA Token\",\r\n            \"symbol\": \"BERA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.berachain.com\",\r\n        \"shortName\": \"berachainArtio\",\r\n        \"chainId\": 80085,\r\n        \"networkId\": 80085,\r\n        \"icon\": \"berachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beratrail\",\r\n                \"url\": \"https://artio.beratrail.io\",\r\n                \"icon\": \"berachain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709885929619.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709885915602.png\",\r\n            \"color_chain_bg\": \"0xEF821F\",\r\n            \"color_chain_text\": \"0x050504\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709885984851.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709885969274.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ink Chain\",\r\n        \"chainId\": 57073,\r\n        \"shortName\": \"Ink\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 57073,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1654746200716.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-gel.inkonchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://inkonchain.com\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1734943356939.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1734943333910.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1734943372736.png\",\r\n            \"color_chain_bg\": \"0x7132F5\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1734943399646.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"BounceBit Testnet\",\r\n        \"chainId\": 6000,\r\n        \"shortName\": \"BBT\",\r\n        \"chain\": \"BounceBit Testnet\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 6000,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BounceBit\",\r\n            \"symbol\": \"BB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://fullnode-testnet.bouncebitapi.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BBScan\",\r\n                \"url\": \"https://bbscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709901807789.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709901770114.png\",\r\n            \"color_chain_bg\": \"0xEDEAE4\",\r\n            \"color_chain_text\": \"0x000000\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709901821832.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709901795926.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"zkLink Nova Mainnet\",\r\n        \"chainId\": 810180,\r\n        \"shortName\": \"zkLink Nova\",\r\n        \"chain\": \"zkLink Nova Mainnet\",\r\n        \"network\": \"Mainnet\",\r\n        \"networkId\": 810180,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.zklink.io\",\r\n            \"wss://rpc.zklink.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zkLink Nova Block Explorer\",\r\n                \"url\": \"https://explorer.zklink.io/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1711359675534.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1711359694827.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xffffff\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709901821832.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1711359711634.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"xDAI Chain\",\r\n        \"chainId\": 100,\r\n        \"shortName\": \"xdai\",\r\n        \"chain\": \"XDAI\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 100,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"xDAI\",\r\n            \"symbol\": \"xDAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.xdaichain.com\",\r\n            \"https://xdai.poanetwork.dev\",\r\n            \"wss://rpc.xdaichain.com/wss\",\r\n            \"wss://xdai.poanetwork.dev/wss\",\r\n            \"http://xdai.poanetwork.dev\",\r\n            \"https://dai.poa.network\",\r\n            \"ws://xdai.poanetwork.dev:8546\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://forum.poa.network/c/xdai-chain\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png\",\r\n            \"color_chain_bg\": \"0x58B2AF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"zkSync Era Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://zksync2-testnet.zksync.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://goerli.portal.zksync.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://era.zksync.io/docs/\",\r\n        \"shortName\": \"zksync-goerli\",\r\n        \"chainId\": 280,\r\n        \"networkId\": 280,\r\n        \"icon\": \"zksync-era\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zkSync Era Block Explorer\",\r\n                \"url\": \"https://goerli.explorer.zksync.io\",\r\n                \"icon\": \"zksync-era\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://goerli.portal.zksync.io/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"zkSync Era Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://zksync2-mainnet.zksync.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zksync.io/\",\r\n        \"shortName\": \"zksync\",\r\n        \"chainId\": 324,\r\n        \"networkId\": 324,\r\n        \"icon\": \"zksync-era\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zkSync Era Block Explorer\",\r\n                \"url\": \"https://explorer.zksync.io\",\r\n                \"icon\": \"zksync-era\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.zksync.io/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Merlin Mainnet\",\r\n        \"chainId\": 4200,\r\n        \"shortName\": \"Merlin Mainnet\",\r\n        \"chain\": \"Merlin Mainnet\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 4200,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.merlinchain.io\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.merlinchain.io/\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BTA Chain\",\r\n        \"chainId\": 1657,\r\n        \"shortName\": \"btachain\",\r\n        \"chain\": \"BTA\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1657,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"btachain\",\r\n            \"symbol\": \"BTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://dataseed1.btachain.com\",\r\n            \"https://dataseed2.btachain.com\",\r\n            \"wss://dataseed1.btachain.com/wss\",\r\n            \"wss://dataseed2.btachain.com/wss\",\r\n            \"ws://dataseed1.btachain.com:8861\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://btachain.com\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://btachain.com/images/favicon/logo.png\",\r\n            \"ic_chain_unselect\": \"https://btachain.com/images/favicon/logo-0x.png\",\r\n            \"color_chain_bg\": \"0x0777cf\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Morph\",\r\n        \"chainId\": 2818,\r\n        \"shortName\": \"morph\",\r\n        \"chain\": \"Morph\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 2818,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1617349051539.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.morphl2.io\"\r\n        ],\r\n        \"infoURL\": \"https://www.morphl2.io/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"morph explorer\",\r\n                \"url\": \"https://explorer.morphl2.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"https://hk.tpstatic.net/token/tokenpocket-1729590965553.png\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1729590965553.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1729590979115.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1729590988846.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1729590999996.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"HyperEVM Testnet\",\r\n        \"chainId\": 998,\r\n        \"shortName\": \"hypetest\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 998,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HYPE\",\r\n            \"symbol\": \"HYPE\",\r\n            \"decimals\": 18,\r\n            \"icon\": \"https://hk.tpstatic.net/token/tokenpocket-1735198406390.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.hyperliquid-testnet.xyz/evm\"\r\n        ],\r\n        \"status\": \"active\",\r\n        \"faucets\": [\r\n            \"https://app.hyperliquid-testnet.xyz/drip\"\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1735198406390.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1735198946146.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1735198976376.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1735203149793.png\",\r\n            \"color_chain_bg\": \"0x072723\",\r\n            \"color_chain_text\": \"0xFFFFFF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Cycle StarFish Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"active\",\r\n        \"icon\": \"Cycle\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.cyclenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cycle-network.gitbook.io/cycle-network-docs/welcome/testnet-starfish\",\r\n        \"shortName\": \"Cycle StarFish Testnet\",\r\n        \"chainId\": 1221,\r\n        \"networkId\": 1221,\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1711525328453.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1711564983535.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1711565004213.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum One\",\r\n        \"chainId\": 42161,\r\n        \"shortName\": \"Arbitrum\",\r\n        \"chain\": \"Arbitrum\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 42161,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://arb1.arbitrum.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://arbitrum.io/\"\r\n    },\r\n    {\r\n        \"name\": \"Fuse Mainnet\",\r\n        \"chainId\": 122,\r\n        \"shortName\": \"fuse\",\r\n        \"chain\": \"FUSE\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 122,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fuse\",\r\n            \"symbol\": \"FUSE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.fuse.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://fuse.io/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/0.png\",\r\n            \"ic_chain_unselect_dark\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/2.png\",\r\n            \"color_chain_bg\": \"0x62D970\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Fantom Opera\",\r\n        \"chainId\": 250,\r\n        \"shortName\": \"ftm\",\r\n        \"chain\": \"FTM\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 250,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fantom\",\r\n            \"symbol\": \"FTM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpcapi.fantom.network\",\r\n            \"https://fantomscan.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://fantom.foundation\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/0.png\",\r\n            \"color_chain_bg\": \"0x1969FF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Classic Mainnet\",\r\n        \"chainId\": 61,\r\n        \"shortName\": \"etc\",\r\n        \"chain\": \"ETC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum Classic Ether\",\r\n            \"symbol\": \"ETC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://www.ethercluster.com/etc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ethereumclassic.org\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/0.png\",\r\n            \"ic_chain_unselect_dark\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/2.png\",\r\n            \"color_chain_bg\": \"0x3CBA3B\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MVS\",\r\n        \"chainId\": 23,\r\n        \"shortName\": \"MVS\",\r\n        \"chain\": \"MVS\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 23,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETP\",\r\n            \"symbol\": \"ETP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\"\r\n    },\r\n    {\r\n        \"name\": \"Catecoin Chain Mainnet\",\r\n        \"chainId\": 1618,\r\n        \"shortName\": \"cate\",\r\n        \"chain\": \"Catechain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1618,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Catecoin\",\r\n            \"symbol\": \"CATE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://send.catechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://catechain.com\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Testnet Ropsten\",\r\n        \"chainId\": 3,\r\n        \"shortName\": \"rop\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"ropsten\",\r\n        \"networkId\": 3,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ropsten Ether\",\r\n            \"symbol\": \"ROP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"wss://ropsten.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.ropsten.be?${ADDRESS}\"\r\n        ],\r\n        \"infoURL\": \"https://github.com/ethereum/ropsten\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Testnet Kovan\",\r\n        \"chainId\": 42,\r\n        \"shortName\": \"kov\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"kovan\",\r\n        \"networkId\": 42,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kovan Ether\",\r\n            \"symbol\": \"KOV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://kovan.poa.network\",\r\n            \"http://kovan.poa.network:8545\",\r\n            \"https://kovan.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"wss://kovan.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"ws://kovan.poa.network:8546\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.kovan.network\",\r\n            \"https://gitter.im/kovan-testnet/faucet\"\r\n        ],\r\n        \"infoURL\": \"https://kovan-testnet.github.io/website\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Testnet Rinkeby\",\r\n        \"chainId\": 4,\r\n        \"shortName\": \"rin\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"rinkeby\",\r\n        \"networkId\": 4,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rinkeby Ether\",\r\n            \"symbol\": \"RIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rinkeby.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"wss://rinkeby.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.rinkeby.io\"\r\n        ],\r\n        \"infoURL\": \"https://www.rinkeby.io\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Testnet Goerli\",\r\n        \"chainId\": 5,\r\n        \"shortName\": \"gor\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"goerli\",\r\n        \"networkId\": 5,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Görli Ether\",\r\n            \"symbol\": \"GOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161\",\r\n            \"https://rpc.goerli.mudit.blog/\",\r\n            \"https://rpc.slock.it/goerli \",\r\n            \"https://goerli.prylabs.net/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://goerli-faucet.slock.it/?address=${ADDRESS}\",\r\n            \"https://faucet.goerli.mudit.blog\"\r\n        ],\r\n        \"infoURL\": \"https://goerli.net/#about\"\r\n    },\r\n    {\r\n        \"name\": \"Klaytn Testnet Baobab\",\r\n        \"chainId\": 1001,\r\n        \"shortName\": \"Baobab\",\r\n        \"chain\": \"KLAY\",\r\n        \"network\": \"baobab\",\r\n        \"networkId\": 1001,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KLAY\",\r\n            \"symbol\": \"KLAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node-api.klaytnapi.com/v1/klaytn\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://baobab.wallet.klaytn.com/access?next=faucet\"\r\n        ],\r\n        \"infoURL\": \"https://www.klaytn.com/\"\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum Testnet V5\",\r\n        \"chainId\": 144545313136048,\r\n        \"shortName\": \"Arbitrum Test\",\r\n        \"chain\": \"Arbitrum Test\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 144545313136048,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://kovan5.arbitrum.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\"\r\n    },\r\n    {\r\n        \"name\": \"Zenith Smart Chain\",\r\n        \"chainId\": 20212,\r\n        \"shortName\": \"ZSC\",\r\n        \"chain\": \"ZSC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 20212,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZTB\",\r\n            \"symbol\": \"ZTB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://zsc.one/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\"\r\n    },\r\n    {\r\n        \"name\": \"Newton Testnet\",\r\n        \"chainId\": 1007,\r\n        \"shortName\": \"tnew\",\r\n        \"chain\": \"NEW\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 1007,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Newton\",\r\n            \"symbol\": \"NEW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc1.newchain.newtonproject.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.newtonproject.org/\"\r\n    },\r\n    {\r\n        \"name\": \"EtherInc\",\r\n        \"chainId\": 101,\r\n        \"shortName\": \"eti\",\r\n        \"chain\": \"ETI\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EtherInc Ether\",\r\n            \"symbol\": \"ETI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.einc.io/jsonrpc/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://einc.io\"\r\n    },\r\n    {\r\n        \"name\": \"Evrice Network\",\r\n        \"chainId\": 1010,\r\n        \"shortName\": \"EVC\",\r\n        \"chain\": \"EVC\",\r\n        \"network\": \"Evrice\",\r\n        \"networkId\": 1010,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Evrice\",\r\n            \"symbol\": \"EVC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://meta.evrice.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://evrice.com\"\r\n    },\r\n    {\r\n        \"name\": \"Newton\",\r\n        \"chainId\": 1012,\r\n        \"shortName\": \"new\",\r\n        \"chain\": \"NEW\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1012,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Newton\",\r\n            \"symbol\": \"NEW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://global.rpc.mainnet.newtonproject.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.newtonproject.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Web3Games Testnet\",\r\n        \"chainId\": 102,\r\n        \"shortName\": \"w3g\",\r\n        \"chain\": \"Web3Games\",\r\n        \"network\": \"Web3Games testnet\",\r\n        \"networkId\": 102,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Web3Games\",\r\n            \"symbol\": \"W3G\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://substrate.org.cn\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://web3games.org/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png\",\r\n            \"ic_chain_unselect\": \"https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-01.png\",\r\n            \"color_chain_bg\": \"0x2A31FB\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Clover Testnet\",\r\n        \"chainId\": 1023,\r\n        \"shortName\": \"tclv\",\r\n        \"chain\": \"Clover\",\r\n        \"network\": \"clover testnet\",\r\n        \"networkId\": 1023,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Clover\",\r\n            \"symbol\": \"CLV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://clover.finance\"\r\n    },\r\n    {\r\n        \"name\": \"Clover Mainnet\",\r\n        \"chainId\": 1024,\r\n        \"shortName\": \"clv\",\r\n        \"chain\": \"Clover\",\r\n        \"network\": \"clover mainnet\",\r\n        \"networkId\": 1024,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Clover\",\r\n            \"symbol\": \"CLV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://clover.finance\"\r\n    },\r\n    {\r\n        \"name\": \"Metadium Mainnet\",\r\n        \"chainId\": 11,\r\n        \"shortName\": \"meta\",\r\n        \"chain\": \"META\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 11,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metadium Mainnet Ether\",\r\n            \"symbol\": \"META\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.metadium.com/prod\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://metadium.com\"\r\n    },\r\n    {\r\n        \"name\": \"IPOS Network\",\r\n        \"chainId\": 1122334455,\r\n        \"shortName\": \"ipos\",\r\n        \"chain\": \"IPOS\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1122334455,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IPOS Network Ether\",\r\n            \"symbol\": \"IPOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.iposlab.com\",\r\n            \"https://rpc2.iposlab.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://iposlab.com\"\r\n    },\r\n    {\r\n        \"name\": \"MathChain\",\r\n        \"chainId\": 1139,\r\n        \"shortName\": \"MATH\",\r\n        \"chain\": \"MATH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1139,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MathChain\",\r\n            \"symbol\": \"MATH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://mathwallet.org\"\r\n    },\r\n    {\r\n        \"name\": \"MathChain Testnet\",\r\n        \"chainId\": 1140,\r\n        \"shortName\": \"tMATH\",\r\n        \"chain\": \"MATH\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 1140,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MathChain\",\r\n            \"symbol\": \"MATH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://mathwallet.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Metadium Testnet\",\r\n        \"chainId\": 12,\r\n        \"shortName\": \"kal\",\r\n        \"chain\": \"META\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 12,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metadium Testnet Ether\",\r\n            \"symbol\": \"KAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.metadium.com/dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://metadium.com\"\r\n    },\r\n    {\r\n        \"name\": \"Huobi ECO Chain Mainnet\",\r\n        \"chainId\": 128,\r\n        \"shortName\": \"heco\",\r\n        \"chain\": \"Heco\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 128,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Huobi ECO Chain Native Token\",\r\n            \"symbol\": \"HT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://http-mainnet.hecochain.com\",\r\n            \"wss://ws-mainnet.hecochain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.hecochain.com\"\r\n    },\r\n    {\r\n        \"name\": \"Moonbeam Polkadot\",\r\n        \"chainId\": 1284,\r\n        \"shortName\": \"mbeam\",\r\n        \"chain\": \"MOON\",\r\n        \"network\": \"moonbeam\",\r\n        \"networkId\": 1284,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Glimmer\",\r\n            \"symbol\": \"GLMR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://moonbeam.network/networks/moonbeam/\"\r\n    },\r\n    {\r\n        \"name\": \"Moonriver\",\r\n        \"chainId\": 1285,\r\n        \"shortName\": \"Moonriver\",\r\n        \"chain\": \"MOVR\",\r\n        \"network\": \"MOVR\",\r\n        \"networkId\": 1285,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MOVR\",\r\n            \"symbol\": \"MOVR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.moonriver.moonbeam.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://moonbeam.network/networks/moonriver/\"\r\n    },\r\n    {\r\n        \"name\": \"Moonrock Rococo\",\r\n        \"chainId\": 1286,\r\n        \"shortName\": \"mrock\",\r\n        \"chain\": \"MOON\",\r\n        \"network\": \"moonrock\",\r\n        \"networkId\": 1286,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rocs\",\r\n            \"symbol\": \"ROC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\"\r\n    },\r\n    {\r\n        \"name\": \"Moonbeam Testnet Moonbase Alpha\",\r\n        \"chainId\": 1287,\r\n        \"shortName\": \"mbase\",\r\n        \"chain\": \"MOON\",\r\n        \"network\": \"moonbase\",\r\n        \"networkId\": 1287,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dev\",\r\n            \"symbol\": \"DEV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.moonbeam.network\",\r\n            \"wss://wss.testnet.moonbeam.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://docs.moonbeam.network/networks/testnet/\"\r\n    },\r\n    {\r\n        \"name\": \"Diode Testnet Staging\",\r\n        \"chainId\": 13,\r\n        \"shortName\": \"dstg\",\r\n        \"chain\": \"DIODE\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 13,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Staging Diodes\",\r\n            \"symbol\": \"sDIODE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://staging.diode.io:8443/\",\r\n            \"wss://staging.diode.io:8443/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://diode.io/staging\"\r\n    },\r\n    {\r\n        \"name\": \"Ether-1\",\r\n        \"chainId\": 1313114,\r\n        \"shortName\": \"etho\",\r\n        \"chain\": \"ETHO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1313114,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether-1 Ether\",\r\n            \"symbol\": \"ETHO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.ether1.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ether1.org\"\r\n    },\r\n    {\r\n        \"name\": \"NEAR TestNet\",\r\n        \"chainId\": 1313161555,\r\n        \"shortName\": \"neart\",\r\n        \"chain\": \"NEAR\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 1313161555,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NEAR\",\r\n            \"symbol\": \"tNEAR\",\r\n            \"decimals\": 24\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://wallet.testnet.near.org\"\r\n        ],\r\n        \"infoURL\": \"https://near.org/\"\r\n    },\r\n    {\r\n        \"name\": \"NEAR BetaNet\",\r\n        \"chainId\": 1313161556,\r\n        \"shortName\": \"nearb\",\r\n        \"chain\": \"NEAR\",\r\n        \"network\": \"betanet\",\r\n        \"networkId\": 1313161556,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NEAR\",\r\n            \"symbol\": \"bNEAR\",\r\n            \"decimals\": 24\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://near.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Xerom\",\r\n        \"chainId\": 1313500,\r\n        \"shortName\": \"xero\",\r\n        \"chain\": \"XERO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1313500,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xerom Ether\",\r\n            \"symbol\": \"XERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.xerom.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://xerom.org\"\r\n    },\r\n    {\r\n        \"name\": \"PepChain Churchill\",\r\n        \"chainId\": 13371337,\r\n        \"shortName\": \"tpep\",\r\n        \"chain\": \"PEP\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 13371337,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PepChain Churchill Ether\",\r\n            \"symbol\": \"TPEP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://churchill-rpc.pepchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://pepchain.io\"\r\n    },\r\n    {\r\n        \"name\": \"Flare Mainnet\",\r\n        \"chainId\": 14,\r\n        \"shortName\": \"flr\",\r\n        \"chain\": \"FLR\",\r\n        \"network\": \"flare\",\r\n        \"networkId\": 14,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Spark\",\r\n            \"symbol\": \"FLR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.ankr.com/flare\",\r\n            \"https://flare.rpc.thirdweb.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://flare.xyz\"\r\n    },\r\n    {\r\n        \"name\": \"Diode Prenet\",\r\n        \"chainId\": 15,\r\n        \"shortName\": \"diode\",\r\n        \"chain\": \"DIODE\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 15,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Diodes\",\r\n            \"symbol\": \"DIODE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://prenet.diode.io:8443/\",\r\n            \"wss://prenet.diode.io:8443/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://diode.io/prenet\"\r\n    },\r\n    {\r\n        \"name\": \"Flare Testnet Coston\",\r\n        \"chainId\": 16,\r\n        \"shortName\": \"cflr\",\r\n        \"chain\": \"FLR\",\r\n        \"network\": \"coston\",\r\n        \"networkId\": 16,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Coston Spark\",\r\n            \"symbol\": \"CFLR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://github.com/flare-eng/coston\"\r\n    },\r\n    {\r\n        \"name\": \"Lightstreams Testnet\",\r\n        \"chainId\": 162,\r\n        \"shortName\": \"tpht\",\r\n        \"chain\": \"PHT\",\r\n        \"network\": \"sirius\",\r\n        \"networkId\": 162,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lightstreams PHT\",\r\n            \"symbol\": \"PHT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.sirius.lightstreams.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://discuss.lightstreams.network/t/request-test-tokens\"\r\n        ],\r\n        \"infoURL\": \"https://explorer.sirius.lightstreams.io\"\r\n    },\r\n    {\r\n        \"name\": \"Atheios\",\r\n        \"chainId\": 1620,\r\n        \"shortName\": \"ath\",\r\n        \"chain\": \"ATH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 11235813,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Atheios Ether\",\r\n            \"symbol\": \"ATH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://wallet.atheios.com:8797\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://atheios.com\"\r\n    },\r\n    {\r\n        \"name\": \"Lightstreams Mainnet\",\r\n        \"chainId\": 163,\r\n        \"shortName\": \"pht\",\r\n        \"chain\": \"PHT\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 163,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lightstreams PHT\",\r\n            \"symbol\": \"PHT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.mainnet.lightstreams.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://explorer.lightstreams.io\"\r\n    },\r\n    {\r\n        \"name\": \"Harmony Mainnet Shard 0\",\r\n        \"chainId\": 1666600000,\r\n        \"shortName\": \"hmy-s0\",\r\n        \"chain\": \"Harmony\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1666600000,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.s0.t.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.harmony.one/\"\r\n    },\r\n    {\r\n        \"name\": \"Harmony Mainnet Shard 1\",\r\n        \"chainId\": 1666600001,\r\n        \"shortName\": \"hmy-s1\",\r\n        \"chain\": \"Harmony\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1666600001,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.s1.t.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.harmony.one/\"\r\n    },\r\n    {\r\n        \"name\": \"Harmony Mainnet Shard 2\",\r\n        \"chainId\": 1666600002,\r\n        \"shortName\": \"hmy-s2\",\r\n        \"chain\": \"Harmony\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1666600002,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.s2.t.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.harmony.one/\"\r\n    },\r\n    {\r\n        \"name\": \"Harmony Mainnet Shard 3\",\r\n        \"chainId\": 1666600003,\r\n        \"shortName\": \"hmy-s3\",\r\n        \"chain\": \"Harmony\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1666600003,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.s3.t.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.harmony.one/\"\r\n    },\r\n    {\r\n        \"name\": \"ThaiChain 2.0 ThaiFi\",\r\n        \"chainId\": 17,\r\n        \"shortName\": \"tfi\",\r\n        \"chain\": \"TCH\",\r\n        \"network\": \"thaifi\",\r\n        \"networkId\": 17,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Thaifi Ether\",\r\n            \"symbol\": \"TFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.thaifi.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://exp.thaifi.com\"\r\n    },\r\n    {\r\n        \"name\": \"ThunderCore Testnet\",\r\n        \"chainId\": 18,\r\n        \"shortName\": \"TST\",\r\n        \"chain\": \"TST\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 18,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ThunderCore Testnet Ether\",\r\n            \"symbol\": \"TST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.thundercore.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.thundercore.com\"\r\n        ],\r\n        \"infoURL\": \"https://thundercore.com\"\r\n    },\r\n    {\r\n        \"name\": \"IOLite\",\r\n        \"chainId\": 18289463,\r\n        \"shortName\": \"ilt\",\r\n        \"chain\": \"ILT\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 18289463,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IOLite Ether\",\r\n            \"symbol\": \"ILT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://net.iolite.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://iolite.io\"\r\n    },\r\n    {\r\n        \"name\": \"Teslafunds\",\r\n        \"chainId\": 1856,\r\n        \"shortName\": \"tsf\",\r\n        \"chain\": \"TSF\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Teslafunds Ether\",\r\n            \"symbol\": \"TSF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://tsfapi.europool.me\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://teslafunds.io\"\r\n    },\r\n    {\r\n        \"name\": \"EtherGem\",\r\n        \"chainId\": 1987,\r\n        \"shortName\": \"egem\",\r\n        \"chain\": \"EGEM\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1987,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EtherGem Ether\",\r\n            \"symbol\": \"EGEM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://jsonrpc.egem.io/custom\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://egem.io\"\r\n    },\r\n    {\r\n        \"name\": \"Expanse Network\",\r\n        \"chainId\": 2,\r\n        \"shortName\": \"exp\",\r\n        \"chain\": \"EXP\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Expanse Network Ether\",\r\n            \"symbol\": \"EXP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.expanse.tech\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://expanse.tech\"\r\n    },\r\n    {\r\n        \"name\": \"ELA-ETH-Sidechain Mainnet\",\r\n        \"chainId\": 20,\r\n        \"shortName\": \"elaeth\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 20,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Elastos\",\r\n            \"symbol\": \"ELA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainrpc.elaeth.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.elastos.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Akroma\",\r\n        \"chainId\": 200625,\r\n        \"shortName\": \"aka\",\r\n        \"chain\": \"AKA\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 200625,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Akroma Ether\",\r\n            \"symbol\": \"AKA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://remote.akroma.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://akroma.io\"\r\n    },\r\n    {\r\n        \"name\": \"420coin\",\r\n        \"chainId\": 2020,\r\n        \"shortName\": \"420\",\r\n        \"chain\": \"420\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 2020,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fourtwenty\",\r\n            \"symbol\": \"420\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://420integrated.com\"\r\n    },\r\n    {\r\n        \"name\": \"Edgeware Mainnet\",\r\n        \"chainId\": 2021,\r\n        \"shortName\": \"edg\",\r\n        \"chain\": \"EDG\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 2021,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Edge\",\r\n            \"symbol\": \"EDG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet1.edgewa.re\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://edgewa.re\"\r\n    },\r\n    {\r\n        \"name\": \"Beresheet Testnet\",\r\n        \"chainId\": 2022,\r\n        \"shortName\": \"edgt\",\r\n        \"chain\": \"EDG\",\r\n        \"network\": \"beresheet\",\r\n        \"networkId\": 2022,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Edge\",\r\n            \"symbol\": \"tEDG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://beresheet1.edgewa.re\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://edgewa.re\"\r\n    },\r\n    {\r\n        \"name\": \"ELA-ETH-Sidechain Testnet\",\r\n        \"chainId\": 21,\r\n        \"shortName\": \"elaetht\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 21,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Elastos\",\r\n            \"symbol\": \"tELA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.elaeth.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.elaeth.io/\"\r\n        ],\r\n        \"infoURL\": \"https://elaeth.io/\"\r\n    },\r\n    {\r\n        \"name\": \"Freight Trust Network\",\r\n        \"chainId\": 211,\r\n        \"shortName\": \"EDI\",\r\n        \"chain\": \"EDI\",\r\n        \"network\": \"freight & trade network\",\r\n        \"networkId\": 0,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Freight Trust Native\",\r\n            \"symbol\": \"0xF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"http://13.57.207.168:3435\",\r\n            \"https://app.freighttrust.net/ftn/${API_KEY}\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.freight.sh\"\r\n        ],\r\n        \"infoURL\": \"https://freighttrust.com\"\r\n    },\r\n    {\r\n        \"name\": \"Webchain\",\r\n        \"chainId\": 24484,\r\n        \"shortName\": \"web\",\r\n        \"chain\": \"WEB\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 37129,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Webchain Ether\",\r\n            \"symbol\": \"WEB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node1.webchain.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://webchain.network\"\r\n    },\r\n    {\r\n        \"name\": \"Energy Web Chain\",\r\n        \"chainId\": 246,\r\n        \"shortName\": \"ewt\",\r\n        \"chain\": \"Energy Web Chain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 246,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Energy Web Token\",\r\n            \"symbol\": \"EWT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.energyweb.org\",\r\n            \"wss://rpc.energyweb.org/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://energyweb.org\"\r\n    },\r\n    {\r\n        \"name\": \"ARTIS sigma1\",\r\n        \"chainId\": 246529,\r\n        \"shortName\": \"ats\",\r\n        \"chain\": \"ARTIS\",\r\n        \"network\": \"sigma1\",\r\n        \"networkId\": 246529,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ARTIS sigma1 Ether\",\r\n            \"symbol\": \"ATS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.sigma1.artis.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://artis.eco\"\r\n    },\r\n    {\r\n        \"name\": \"ARTIS Testnet tau1\",\r\n        \"chainId\": 246785,\r\n        \"shortName\": \"atstau\",\r\n        \"chain\": \"ARTIS\",\r\n        \"network\": \"tau1\",\r\n        \"networkId\": 246785,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ARTIS tau1 Ether\",\r\n            \"symbol\": \"tATS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.tau1.artis.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://artis.network\"\r\n    },\r\n    {\r\n        \"name\": \"Huobi ECO Chain Testnet\",\r\n        \"chainId\": 256,\r\n        \"shortName\": \"hecot\",\r\n        \"chain\": \"Heco\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 256,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Huobi ECO Chain Test Native Token\",\r\n            \"symbol\": \"htt\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://http-testnet.hecochain.com\",\r\n            \"wss://ws-testnet.hecochain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://scan-testnet.hecochain.com/faucet\"\r\n        ],\r\n        \"infoURL\": \"https://www.hecochain.com\"\r\n    },\r\n    {\r\n        \"name\": \"Auxilium Network Mainnet\",\r\n        \"chainId\": 28945486,\r\n        \"shortName\": \"auxi\",\r\n        \"chain\": \"AUX\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 28945486,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Auxilium coin\",\r\n            \"symbol\": \"AUX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.auxilium.global\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://auxilium.global\"\r\n    },\r\n    {\r\n        \"name\": \"RSK Mainnet\",\r\n        \"chainId\": 30,\r\n        \"shortName\": \"rsk\",\r\n        \"chain\": \"RSK\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 30,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RSK Mainnet Ether\",\r\n            \"symbol\": \"RBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://public-node.rsk.co\",\r\n            \"https://mycrypto.rsk.co\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://rsk.co\"\r\n    },\r\n    {\r\n        \"name\": \"RSK Testnet\",\r\n        \"chainId\": 31,\r\n        \"shortName\": \"trsk\",\r\n        \"chain\": \"RSK\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 31,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RSK Testnet Ether\",\r\n            \"symbol\": \"tRBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://public-node.testnet.rsk.co\",\r\n            \"https://mycrypto.testnet.rsk.co\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.rsk.co\"\r\n        ],\r\n        \"infoURL\": \"https://rsk.co\"\r\n    },\r\n    {\r\n        \"name\": \"Ethersocial Network\",\r\n        \"chainId\": 31102,\r\n        \"shortName\": \"esn\",\r\n        \"chain\": \"ESN\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethersocial Network Ether\",\r\n            \"symbol\": \"ESN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.esn.gonspool.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ethersocial.org\"\r\n    },\r\n    {\r\n        \"name\": \"Pirl\",\r\n        \"chainId\": 3125659152,\r\n        \"shortName\": \"pirl\",\r\n        \"chain\": \"PIRL\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 3125659152,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pirl Ether\",\r\n            \"symbol\": \"PIRL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://wallrpc.pirl.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://pirl.io\"\r\n    },\r\n    {\r\n        \"name\": \"GoodData Mainnet\",\r\n        \"chainId\": 33,\r\n        \"shortName\": \"GooD\",\r\n        \"chain\": \"GooD\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 33,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoodData Mainnet Ether\",\r\n            \"symbol\": \"GooD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.goodata.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.goodata.org\"\r\n    },\r\n    {\r\n        \"name\": \"TBWG Chain\",\r\n        \"chainId\": 35,\r\n        \"shortName\": \"tbwg\",\r\n        \"chain\": \"TBWG\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 35,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TBWG Ether\",\r\n            \"symbol\": \"TBG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.tbwg.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://tbwg.io\"\r\n    },\r\n    {\r\n        \"name\": \"Joys Digital Mainnet\",\r\n        \"chainId\": 35855456,\r\n        \"shortName\": \"JOYS\",\r\n        \"chain\": \"JOYS\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 35855456,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JOYS\",\r\n            \"symbol\": \"JOYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.joys.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://joys.digital\"\r\n    },\r\n    {\r\n        \"name\": \"Valorbit\",\r\n        \"chainId\": 38,\r\n        \"shortName\": \"val\",\r\n        \"chain\": \"VAL\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 38,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Valorbit\",\r\n            \"symbol\": \"VAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.valorbit.com/v2\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://valorbit.com\"\r\n    },\r\n    {\r\n        \"name\": \"Lisinski\",\r\n        \"chainId\": 385,\r\n        \"shortName\": \"lisinski\",\r\n        \"chain\": \"CRO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 385,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lisinski Ether\",\r\n            \"symbol\": \"LISINSKI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-bitfalls1.lisinski.online\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://pipa.lisinski.online\"\r\n        ],\r\n        \"infoURL\": \"https://lisinski.online\"\r\n    },\r\n    {\r\n        \"name\": \"Energi Mainnet\",\r\n        \"chainId\": 39797,\r\n        \"shortName\": \"nrg\",\r\n        \"chain\": \"NRG\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 39797,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Energi\",\r\n            \"symbol\": \"NRG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://nodeapi.gen3.energi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.energi.world/\"\r\n    },\r\n    {\r\n        \"name\": \"Telos EVM Mainnet\",\r\n        \"chainId\": 40,\r\n        \"shortName\": \"Telos EVM\",\r\n        \"chain\": \"TLOS\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 40,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Telos\",\r\n            \"symbol\": \"TLOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.telos.net/evm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://telos.net\"\r\n    },\r\n    {\r\n        \"name\": \"Telos EVM Testnet\",\r\n        \"chainId\": 41,\r\n        \"shortName\": \"Telos EVM Testnet\",\r\n        \"chain\": \"TLOS\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 41,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Telos\",\r\n            \"symbol\": \"TLOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet.telos.net/evm\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app.telos.net/testnet/developers\"\r\n        ],\r\n        \"infoURL\": \"https://telos.net\"\r\n    },\r\n    {\r\n        \"name\": \"Optimistic Ethereum Testnet Goerli\",\r\n        \"chainId\": 420,\r\n        \"shortName\": \"ogor\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"goerli\",\r\n        \"networkId\": 420,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Görli Ether\",\r\n            \"symbol\": \"GOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://goerli.optimism.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://optimism.io\"\r\n    },\r\n    {\r\n        \"name\": \"pegglecoin\",\r\n        \"chainId\": 42069,\r\n        \"shortName\": \"PC\",\r\n        \"chain\": \"42069\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 42069,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"pegglecoin\",\r\n            \"symbol\": \"peggle\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://teampeggle.com\"\r\n    },\r\n    {\r\n        \"name\": \"Celo Mainnet\",\r\n        \"chainId\": 42220,\r\n        \"shortName\": \"CELO\",\r\n        \"chain\": \"CELO\",\r\n        \"network\": \"Mainnet\",\r\n        \"networkId\": 42220,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CELO\",\r\n            \"symbol\": \"CELO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://forno.celo.org\",\r\n            \"wss://forno.celo.org/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://docs.celo.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Darwinia Pangolin Testnet\",\r\n        \"chainId\": 43,\r\n        \"shortName\": \"darwinia\",\r\n        \"chain\": \"pangolin\",\r\n        \"network\": \"free testnet\",\r\n        \"networkId\": 43,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pangolin RING\",\r\n            \"symbol\": \"PRING\",\r\n            \"decimals\": 9\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://darwinia.network/\"\r\n    },\r\n    {\r\n        \"name\": \"Athereum\",\r\n        \"chainId\": 43110,\r\n        \"shortName\": \"avaeth\",\r\n        \"chain\": \"ATH\",\r\n        \"network\": \"athereum\",\r\n        \"networkId\": 43110,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Athereum Ether\",\r\n            \"symbol\": \"ATH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://ava.network:21015/ext/evm/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://athfaucet.ava.network//?address=${ADDRESS}\"\r\n        ],\r\n        \"infoURL\": \"https://athereum.ava.network\"\r\n    },\r\n    {\r\n        \"name\": \"Avalanche Fuji Testnet\",\r\n        \"chainId\": 43113,\r\n        \"shortName\": \"Fuji\",\r\n        \"chain\": \"AVAX\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Avalanche\",\r\n            \"symbol\": \"AVAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.avax-test.network/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.avax-test.network/\"\r\n        ],\r\n        \"infoURL\": \"https://cchain.explorer.avax-test.network\"\r\n    },\r\n    {\r\n        \"name\": \"Celo Alfajores Testnet\",\r\n        \"chainId\": 44787,\r\n        \"shortName\": \"ALFA\",\r\n        \"chain\": \"CELO\",\r\n        \"network\": \"Alfajores\",\r\n        \"networkId\": 44787,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CELO\",\r\n            \"symbol\": \"CELO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://alfajores-forno.celo-testnet.org\",\r\n            \"wss://alfajores-forno.celo-testnet.org/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://celo.org/developers/faucet\",\r\n            \"https://cauldron.pretoriaresearchlab.io/alfajores-faucet\"\r\n        ],\r\n        \"infoURL\": \"https://docs.celo.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Energi Testnet\",\r\n        \"chainId\": 49797,\r\n        \"shortName\": \"tnrg\",\r\n        \"chain\": \"NRG\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 49797,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Energi\",\r\n            \"symbol\": \"tNRG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://nodeapi.test3.energi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.energi.world/\"\r\n    },\r\n    {\r\n        \"name\": \"Rupaya\",\r\n        \"chainId\": 499,\r\n        \"shortName\": \"rupx\",\r\n        \"chain\": \"RUPX\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 499,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rupaya\",\r\n            \"symbol\": \"RUPX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.rupx.io\"\r\n    },\r\n    {\r\n        \"name\": \"XinFin Network Mainnet\",\r\n        \"chainId\": 50,\r\n        \"shortName\": \"xdc\",\r\n        \"chain\": \"XDC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 50,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XinFin\",\r\n            \"symbol\": \"XDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.xinfin.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://xinfin.org\"\r\n    },\r\n    {\r\n        \"name\": \"XinFin Apothem Testnet\",\r\n        \"chainId\": 51,\r\n        \"shortName\": \"TXDC\",\r\n        \"chain\": \"TXDC\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 51,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XinFinTest\",\r\n            \"symbol\": \"TXDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.apothem.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://xinfin.org\"\r\n    },\r\n    {\r\n        \"name\": \"CoinEx Smart Chain Mainnet\",\r\n        \"chainId\": 52,\r\n        \"shortName\": \"cet\",\r\n        \"chain\": \"CSC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 52,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CoinEx Chain Native Token\",\r\n            \"symbol\": \"cet\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.coinex.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://www.coinex.org/\"\r\n    },\r\n    {\r\n        \"name\": \"CoinEx Smart Chain Testnet\",\r\n        \"chainId\": 53,\r\n        \"shortName\": \"tcet\",\r\n        \"chain\": \"CSC\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 53,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CoinEx Chain Test Native Token\",\r\n            \"symbol\": \"cett\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.coinex.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://www.coinex.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Tao Network\",\r\n        \"chainId\": 558,\r\n        \"shortName\": \"tao\",\r\n        \"chain\": \"TAO\",\r\n        \"network\": \"core\",\r\n        \"networkId\": 558,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tao\",\r\n            \"symbol\": \"TAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.tao.network\",\r\n            \"http://rpc.testnet.tao.network:8545\",\r\n            \"https://rpc.tao.network\",\r\n            \"wss://rpc.tao.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://tao.network\"\r\n    },\r\n    {\r\n        \"name\": \"Binance Smart Chain Mainnet\",\r\n        \"chainId\": 56,\r\n        \"shortName\": \"bnb\",\r\n        \"chain\": \"BSC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 56,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Binance Chain Native Token\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://bsc-dataseed1.binance.org\",\r\n            \"https://bsc-dataseed2.binance.org\",\r\n            \"https://bsc-dataseed3.binance.org\",\r\n            \"https://bsc-dataseed4.binance.org\",\r\n            \"https://bsc-dataseed1.defibit.io\",\r\n            \"https://bsc-dataseed2.defibit.io\",\r\n            \"https://bsc-dataseed3.defibit.io\",\r\n            \"https://bsc-dataseed4.defibit.io\",\r\n            \"https://bsc-dataseed1.ninicoin.io\",\r\n            \"https://bsc-dataseed2.ninicoin.io\",\r\n            \"https://bsc-dataseed3.ninicoin.io\",\r\n            \"https://bsc-dataseed4.ninicoin.io\",\r\n            \"wss://bsc-ws-node.nariox.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.binance.org\"\r\n    },\r\n    {\r\n        \"name\": \"Wegochain Rubidium Mainnet\",\r\n        \"chainId\": 5869,\r\n        \"shortName\": \"rbd\",\r\n        \"chain\": \"RBD\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 5869,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rubid\",\r\n            \"symbol\": \"RBD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://proxy.wegochain.io\",\r\n            \"http://wallet.wegochain.io:7764\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://wegochain.io\"\r\n    },\r\n    {\r\n        \"name\": \"Acala Mandala Testnet\",\r\n        \"chainId\": 595,\r\n        \"shortName\": \"maca\",\r\n        \"chain\": \"mACA\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 595,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Acala Mandala Token\",\r\n            \"symbol\": \"mACA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://acala.network\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Classic Testnet Kotti\",\r\n        \"chainId\": 6,\r\n        \"shortName\": \"kot\",\r\n        \"chain\": \"ETC\",\r\n        \"network\": \"kotti\",\r\n        \"networkId\": 6,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kotti Ether\",\r\n            \"symbol\": \"KOT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://explorer.jade.builders/?network=kotti\"\r\n    },\r\n    {\r\n        \"name\": \"GoChain\",\r\n        \"chainId\": 60,\r\n        \"shortName\": \"go\",\r\n        \"chain\": \"GO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 60,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoChain Ether\",\r\n            \"symbol\": \"GO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.gochain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://gochain.io\"\r\n    },\r\n    {\r\n        \"name\": \"Aquachain\",\r\n        \"chainId\": 61717561,\r\n        \"shortName\": \"aqua\",\r\n        \"chain\": \"AQUA\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 61717561,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aquachain Ether\",\r\n            \"symbol\": \"AQUA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://c.onical.org\",\r\n            \"https://tx.aquacha.in/api\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://aquacha.in/faucet\"\r\n        ],\r\n        \"infoURL\": \"https://aquachain.github.io\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Classic Testnet Morden\",\r\n        \"chainId\": 62,\r\n        \"shortName\": \"tetc\",\r\n        \"chain\": \"ETC\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 2,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum Classic Testnet Ether\",\r\n            \"symbol\": \"TETC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ethereumclassic.org\"\r\n    },\r\n    {\r\n        \"name\": \"Celo Baklava Testnet\",\r\n        \"chainId\": 62320,\r\n        \"shortName\": \"BKLV\",\r\n        \"chain\": \"CELO\",\r\n        \"network\": \"Baklava\",\r\n        \"networkId\": 62320,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CELO\",\r\n            \"symbol\": \"CELO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://baklava-forno.celo-testnet.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform\",\r\n            \"https://cauldron.pretoriaresearchlab.io/baklava-faucet\"\r\n        ],\r\n        \"infoURL\": \"https://docs.celo.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Classic Testnet Mordor\",\r\n        \"chainId\": 63,\r\n        \"shortName\": \"metc\",\r\n        \"chain\": \"ETC\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 7,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mordor Classic Testnet Ether\",\r\n            \"symbol\": \"METC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://github.com/eth-classic/mordor/\"\r\n    },\r\n    {\r\n        \"name\": \"Ellaism\",\r\n        \"chainId\": 64,\r\n        \"shortName\": \"ella\",\r\n        \"chain\": \"ELLA\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 64,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ellaism Ether\",\r\n            \"symbol\": \"ELLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://jsonrpc.ellaism.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ellaism.org\"\r\n    },\r\n    {\r\n        \"name\": \"OKExChain Testnet\",\r\n        \"chainId\": 65,\r\n        \"shortName\": \"tokt\",\r\n        \"chain\": \"okexchain\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 65,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OKExChain Global Utility Token in testnet\",\r\n            \"symbol\": \"OKT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://exchaintestrpc.okex.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.okex.com/drawdex\"\r\n        ],\r\n        \"infoURL\": \"https://www.okex.com/okexchain\",\r\n        \"app_resource\": {\r\n            \"ic_home_logo\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_home_bg.png\",\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_select.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_unselect.png\",\r\n            \"ic_all_whitelist_logo\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_whitelist_logo.png\",\r\n            \"color_chain_bg\": \"0x1E2D5D\",\r\n            \"color_chain_text\": \"0xFFFFFF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"OKExChain Mainnet\",\r\n        \"chainId\": 66,\r\n        \"shortName\": \"okt\",\r\n        \"chain\": \"okexchain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 66,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OKExChain Global Utility Token\",\r\n            \"symbol\": \"OKT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://exchain.okexcn.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.okex.com/okexchain\"\r\n    },\r\n    {\r\n        \"name\": \"DBChain Testnet\",\r\n        \"chainId\": 67,\r\n        \"shortName\": \"dbm\",\r\n        \"chain\": \"DBM\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 67,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DBChain Testnet\",\r\n            \"symbol\": \"DBM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"http://test-rpc.dbmbp.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://test.dbmbp.com\"\r\n    },\r\n    {\r\n        \"name\": \"SoterOne Mainnet\",\r\n        \"chainId\": 68,\r\n        \"shortName\": \"SO1\",\r\n        \"chain\": \"SOTER\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 68,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SoterOne Mainnet Ether\",\r\n            \"symbol\": \"SOTER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.soter.one\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.soterone.com\"\r\n    },\r\n    {\r\n        \"name\": \"Karura Network\",\r\n        \"chainId\": 686,\r\n        \"shortName\": \"kar\",\r\n        \"chain\": \"KAR\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 686,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Karura Token\",\r\n            \"symbol\": \"KAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://karura.network\"\r\n    },\r\n    {\r\n        \"name\": \"Optimistic Ethereum Testnet Kovan\",\r\n        \"chainId\": 69,\r\n        \"shortName\": \"okov\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"kovan\",\r\n        \"networkId\": 69,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kovan Ether\",\r\n            \"symbol\": \"KOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://kovan.optimism.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://optimism.io\"\r\n    },\r\n    {\r\n        \"name\": \"ThaiChain\",\r\n        \"chainId\": 7,\r\n        \"shortName\": \"tch\",\r\n        \"chain\": \"TCH\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 7,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ThaiChain Ether\",\r\n            \"symbol\": \"TCH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.dome.cloud\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://thaichain.io\"\r\n    },\r\n    {\r\n        \"name\": \"Energy Web Volta Testnet\",\r\n        \"chainId\": 73799,\r\n        \"shortName\": \"vt\",\r\n        \"chain\": \"Volta\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 73799,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Volta Token\",\r\n            \"symbol\": \"VT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://volta-rpc.energyweb.org\",\r\n            \"wss://volta-rpc.energyweb.org/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://voltafaucet.energyweb.org\"\r\n        ],\r\n        \"infoURL\": \"https://energyweb.org\"\r\n    },\r\n    {\r\n        \"name\": \"Mix\",\r\n        \"chainId\": 76,\r\n        \"shortName\": \"mix\",\r\n        \"chain\": \"MIX\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 76,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mix Ether\",\r\n            \"symbol\": \"MIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc2.mix-blockchain.org:8647\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://mix-blockchain.org\"\r\n    },\r\n    {\r\n        \"name\": \"POA Network Sokol\",\r\n        \"chainId\": 77,\r\n        \"shortName\": \"poa\",\r\n        \"chain\": \"POA\",\r\n        \"network\": \"sokol\",\r\n        \"networkId\": 77,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"POA Sokol Ether\",\r\n            \"symbol\": \"POA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://sokol.poa.network\",\r\n            \"wss://sokol.poa.network/wss\",\r\n            \"ws://sokol.poa.network:8546\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-sokol.herokuapp.com\"\r\n        ],\r\n        \"infoURL\": \"https://poa.network\"\r\n    },\r\n    {\r\n        \"name\": \"Musicoin\",\r\n        \"chainId\": 7762959,\r\n        \"shortName\": \"music\",\r\n        \"chain\": \"MUSIC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 7762959,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Musicoin\",\r\n            \"symbol\": \"MUSIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mewapi.musicoin.tw\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://musicoin.tw\"\r\n    },\r\n    {\r\n        \"name\": \"Mint Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.mintchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.mintchain.io\",\r\n        \"shortName\": \"minttest\",\r\n        \"chainId\": 1686,\r\n        \"networkId\": 1686,\r\n        \"icon\": \"mintTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-explorer.mintchain.io\",\r\n                \"icon\": \"mintTestnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.mintchain.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mint Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia-testnet-rpc.mintchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mint Sepolia Testnet\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.mintchain.io\",\r\n        \"shortName\": \"Mint Testnet\",\r\n        \"chainId\": 1687,\r\n        \"networkId\": 1687,\r\n        \"icon\": \"mintTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"hhttps://sepolia-testnet-explorer.mintchain.io\",\r\n                \"icon\": \"mintTestnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia-testnet-bridge.mintchain.io\"\r\n                }\r\n            ]\r\n        },\r\n        \"faucets\": [\r\n            \"http://mintchain.io/faucet\"\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ethermint Testnet\",\r\n        \"chainId\": 777,\r\n        \"shortName\": \"emint\",\r\n        \"chain\": \"ETHERMINT\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 777,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Photon\",\r\n            \"symbol\": \"Photon\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"http://54.210.246.165:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://docs.ethermint.zone\"\r\n    },\r\n    {\r\n        \"name\": \"PrimusChain mainnet\",\r\n        \"chainId\": 78,\r\n        \"shortName\": \"primuschain\",\r\n        \"chain\": \"PC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 78,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Primus Ether\",\r\n            \"symbol\": \"PETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://ethnode.primusmoney.com/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://primusmoney.com\"\r\n    },\r\n    {\r\n        \"name\": \"Firenze test network\",\r\n        \"chainId\": 78110,\r\n        \"shortName\": \"firenze\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 78110,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Firenze Ether\",\r\n            \"symbol\": \"FIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://ethnode.primusmoney.com/firenze\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://primusmoney.com\"\r\n    },\r\n    {\r\n        \"name\": \"Acala Network\",\r\n        \"chainId\": 787,\r\n        \"shortName\": \"aca\",\r\n        \"chain\": \"ACA\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 787,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Acala Token\",\r\n            \"symbol\": \"ACA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://acala.network\"\r\n    },\r\n    {\r\n        \"name\": \"GateChain Mainnet\",\r\n        \"chainId\": 86,\r\n        \"shortName\": \"gt\",\r\n        \"chain\": \"GT\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 86,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GateToken\",\r\n            \"symbol\": \"GT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://evm.gatenode.cc\",\r\n            \"https://evm-cn1.gatenode.cc:6061\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.gatescan.org/faucet\"\r\n        ],\r\n        \"infoURL\": \"https://www.gatechain.io\"\r\n    },\r\n    {\r\n        \"name\": \"Ubiq Network Mainnet\",\r\n        \"chainId\": 8,\r\n        \"shortName\": \"ubq\",\r\n        \"chain\": \"UBQ\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 88,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ubiq Ether\",\r\n            \"symbol\": \"UBQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.octano.dev\",\r\n            \"https://pyrus2.ubiqscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ubiqsmart.com\"\r\n    },\r\n    {\r\n        \"name\": \"Matic Testnet Mumbai\",\r\n        \"chainId\": 80001,\r\n        \"shortName\": \"maticmum\",\r\n        \"chain\": \"Matic\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 80001,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Matic\",\r\n            \"symbol\": \"tMATIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-mumbai.matic.today\",\r\n            \"wss://ws-mumbai.matic.today\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.matic.network/\"\r\n        ],\r\n        \"infoURL\": \"https://matic.network/\"\r\n    },\r\n    {\r\n        \"name\": \"Meter Mainnet\",\r\n        \"chainId\": 82,\r\n        \"shortName\": \"Meter\",\r\n        \"chain\": \"METER\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 82,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Meter\",\r\n            \"symbol\": \"MTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.meter.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.meter.io\"\r\n    },\r\n    {\r\n        \"name\": \"Callisto Mainnet\",\r\n        \"chainId\": 820,\r\n        \"shortName\": \"clo\",\r\n        \"chain\": \"CLO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Callisto Mainnet Ether\",\r\n            \"symbol\": \"CLO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://clo-geth.0xinfra.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://callisto.network\"\r\n    },\r\n    {\r\n        \"name\": \"Callisto Testnet\",\r\n        \"chainId\": 821,\r\n        \"shortName\": \"tclo\",\r\n        \"chain\": \"CLO\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 2,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Callisto Testnet Ether\",\r\n            \"symbol\": \"TCLO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://callisto.network\"\r\n    },\r\n    {\r\n        \"name\": \"Klaytn Mainnet Cypress\",\r\n        \"chainId\": 8217,\r\n        \"shortName\": \"Cypress\",\r\n        \"chain\": \"KLAY\",\r\n        \"network\": \"cypress\",\r\n        \"networkId\": 8217,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KLAY\",\r\n            \"symbol\": \"KLAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node-api.klaytnapi.com/v1/klaytn\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.klaytn.com/\"\r\n    },\r\n    {\r\n        \"name\": \"Wanchain\",\r\n        \"chainId\": 888,\r\n        \"shortName\": \"wan\",\r\n        \"chain\": \"WAN\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 888,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Wancoin\",\r\n            \"symbol\": \"WAN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://gwan-ssl.wandevs.org:56891/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.wanscan.org\"\r\n    },\r\n    {\r\n        \"name\": \"bloxberg\",\r\n        \"chainId\": 8995,\r\n        \"shortName\": \"berg\",\r\n        \"chain\": \"bloxberg\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 8995,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BERG\",\r\n            \"symbol\": \"U+25B3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://core.bloxberg.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bloxberg.org/\"\r\n        ],\r\n        \"infoURL\": \"https://bloxberg.org\"\r\n    },\r\n    {\r\n        \"name\": \"Ubiq Network Testnet\",\r\n        \"chainId\": 9,\r\n        \"shortName\": \"tubq\",\r\n        \"chain\": \"UBQ\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 2,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ubiq Testnet Ether\",\r\n            \"symbol\": \"TUBQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ethersocial.org\"\r\n    },\r\n    {\r\n        \"name\": \"Binance Smart Chain Testnet\",\r\n        \"chainId\": 97,\r\n        \"shortName\": \"bnbt\",\r\n        \"chain\": \"BSC\",\r\n        \"network\": \"Chapel\",\r\n        \"networkId\": 97,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Binance Chain Native Token\",\r\n            \"symbol\": \"tBNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://data-seed-prebsc-1-s1.binance.org:8545\",\r\n            \"https://data-seed-prebsc-2-s1.binance.org:8545\",\r\n            \"https://data-seed-prebsc-1-s2.binance.org:8545\",\r\n            \"https://data-seed-prebsc-2-s2.binance.org:8545\",\r\n            \"https://data-seed-prebsc-1-s3.binance.org:8545\",\r\n            \"https://data-seed-prebsc-2-s3.binance.org:8545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.binance.org/faucet-smart\"\r\n        ],\r\n        \"infoURL\": \"https://testnet.binance.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Nepal Blockchain Network\",\r\n        \"chainId\": 977,\r\n        \"shortName\": \"yeti\",\r\n        \"chain\": \"YETI\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 977,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nepal Blockchain Network Ether\",\r\n            \"symbol\": \"YETI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.nepalblockchain.dev\",\r\n            \"https://api.nepalblockchain.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.nepalblockchain.network\"\r\n        ],\r\n        \"infoURL\": \"https://nepalblockchain.network\"\r\n    },\r\n    {\r\n        \"name\": \"POA Network Core\",\r\n        \"chainId\": 99,\r\n        \"shortName\": \"skl\",\r\n        \"chain\": \"POA\",\r\n        \"network\": \"core\",\r\n        \"networkId\": 99,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"POA Network Core Ether\",\r\n            \"symbol\": \"SKL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://core.poanetwork.dev\",\r\n            \"http://core.poanetwork.dev:8545\",\r\n            \"https://core.poa.network\",\r\n            \"ws://core.poanetwork.dev:8546\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://poa.network\"\r\n    },\r\n    {\r\n        \"name\": \"Joys Digital TestNet\",\r\n        \"chainId\": 99415706,\r\n        \"shortName\": \"TOYS\",\r\n        \"chain\": \"TOYS\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 99415706,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TOYS\",\r\n            \"symbol\": \"TOYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://toys.joys.cash/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.joys.digital/\"\r\n        ],\r\n        \"infoURL\": \"https://joys.digital\"\r\n    },\r\n    {\r\n        \"name\": \"HPB Mainnet\",\r\n        \"chainId\": 269,\r\n        \"shortName\": \"HPB\",\r\n        \"chain\": \"HPB\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 100,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HPB\",\r\n            \"symbol\": \"HPB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://hpbnode.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://hpb.io\"\r\n    },\r\n    {\r\n        \"name\": \"KCC Mainnet\",\r\n        \"chainId\": 321,\r\n        \"shortName\": \"kcc\",\r\n        \"chain\": \"KCC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 321,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KuCoin Token\",\r\n            \"symbol\": \"KCS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.kcc.network\",\r\n            \"wss://rpc-ws-mainnet.kcc.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://kcc.io\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-statics.tokenpocket.pro/images/kcc/kcc-0.png\",\r\n            \"ic_chain_unselect\": \"https://tp-statics.tokenpocket.pro/images/kcc/kcc-1.png\",\r\n            \"color_chain_bg\": \"0x27CD96\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KCC Scan (Blockscout)\",\r\n                \"url\": \"https://scan.kcc.io\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"KCC Explorer\",\r\n                \"url\": \"https://explorer.kcc.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HALO Mainnet\",\r\n        \"chainId\": 1280,\r\n        \"shortName\": \"HO\",\r\n        \"chain\": \"HALO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1280,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HALO\",\r\n            \"symbol\": \"HO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://nodes.halo.land\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://halo.land/#/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png\",\r\n            \"ic_chain_unselect\": \"https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371627579.png\",\r\n            \"color_chain_bg\": \"0xB1232C\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"UN Chain\",\r\n        \"chainId\": 1681681688,\r\n        \"shortName\": \"un\",\r\n        \"chain\": \"UN\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1681681688,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UN\",\r\n            \"symbol\": \"UN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"http://116.62.244.90:50121\",\r\n            \"ws://116.62.244.90:60121\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://www.untokencan.com/#/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png\",\r\n            \"ic_chain_unselect\": \"https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png\",\r\n            \"color_chain_bg\": \"0x58B2AF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Vision Mainnet\",\r\n        \"chainId\": 888888,\r\n        \"shortName\": \"Vision\",\r\n        \"chain\": \"Vision - Mainnet\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 888888,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VS\",\r\n            \"symbol\": \"VS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://infragrid.v.network/ethereum/compatible\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://visionscan.org\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png\",\r\n            \"ic_chain_unselect\": \"https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png\",\r\n            \"color_chain_bg\": \"0x000000\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Vision - Vpioneer Testnet\",\r\n        \"chainId\": 666666,\r\n        \"shortName\": \"Vpioneer\",\r\n        \"chain\": \"Vision - Vpioneer\",\r\n        \"network\": \"Vpioneer\",\r\n        \"networkId\": 666666,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VS\",\r\n            \"symbol\": \"VS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://vpioneer.infragrid.v.network/ethereum/compatible\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://vpioneerfaucet.visionscan.org\"\r\n        ],\r\n        \"infoURL\": \"https://visionscan.org\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png\",\r\n            \"ic_chain_unselect\": \"https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png\",\r\n            \"color_chain_bg\": \"0x000000\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"SAT L2 Chain\",\r\n        \"chainId\": 123778899,\r\n        \"shortName\": \"SL2\",\r\n        \"chain\": \"SL2\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 123778899,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SL2\",\r\n            \"symbol\": \"SL2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"http://123.58.210.13:8546\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"http://106.75.144.161/icon/Smartx_H.png\",\r\n            \"ic_chain_unselect\": \"http://106.75.144.161/icon/Smartx_U.png\",\r\n            \"color_chain_bg\": \"0x8250df\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Evmos Testnet\",\r\n        \"chain\": \"Evmos\",\r\n        \"rpc\": [\r\n            \"https://evmos-archive-testnet.api.bdnodes.net:8545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.evmos.dev\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-Evmos\",\r\n            \"symbol\": \"tEVMOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evmos.org\",\r\n        \"shortName\": \"evmos-testnet\",\r\n        \"chainId\": 9000,\r\n        \"networkId\": 9000,\r\n        \"icon\": \"evmos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evmos EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm.evmos.dev\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"evmos\"\r\n            },\r\n            {\r\n                \"name\": \"Evmos Cosmos Explorer\",\r\n                \"url\": \"https://explorer.evmos.dev\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"evmos\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Evmos\",\r\n        \"chain\": \"Evmos\",\r\n        \"rpc\": [\r\n            \"https://eth.bd.evmos.org:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Evmos\",\r\n            \"symbol\": \"EVMOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evmos.org\",\r\n        \"shortName\": \"evmos\",\r\n        \"chainId\": 9001,\r\n        \"networkId\": 9001,\r\n        \"icon\": \"evmos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evmos EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm.evmos.org\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"evmos\"\r\n            },\r\n            {\r\n                \"name\": \"Evmos Cosmos Explorer (Mintscan)\",\r\n                \"url\": \"https://www.mintscan.io/evmos\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"evmos\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Songbird Canary-Network\",\r\n        \"chain\": \"SGB\",\r\n        \"icon\": \"songbird\",\r\n        \"rpc\": [\r\n            \"https://songbird.towolabs.com/rpc\",\r\n            \"https://sgb.ftso.com.au/ext/bc/C/rpc\",\r\n            \"https://sgb.lightft.so/rpc\",\r\n            \"https://sgb-rpc.ftso.eu\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Songbird\",\r\n            \"symbol\": \"SGB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://flare.xyz\",\r\n        \"shortName\": \"sgb\",\r\n        \"chainId\": 19,\r\n        \"networkId\": 19,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://songbird-explorer.flare.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ELA-DID-Sidechain Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Elastos\",\r\n            \"symbol\": \"ELA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.elastos.org/\",\r\n        \"shortName\": \"eladid\",\r\n        \"chainId\": 22,\r\n        \"networkId\": 22\r\n    },\r\n    {\r\n        \"name\": \"Dithereum Mainnet\",\r\n        \"chain\": \"DTH\",\r\n        \"icon\": \"dithereum\",\r\n        \"rpc\": [\r\n            \"https://node-mainnet.dithereum.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dithereum.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dither\",\r\n            \"symbol\": \"DTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dithereum.org\",\r\n        \"shortName\": \"dthmainnet\",\r\n        \"chainId\": 24,\r\n        \"networkId\": 24\r\n    },\r\n    {\r\n        \"name\": \"Genesis L1 testnet\",\r\n        \"chain\": \"genesis\",\r\n        \"rpc\": [\r\n            \"https://testrpc.genesisl1.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"L1 testcoin\",\r\n            \"symbol\": \"L1test\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.genesisl1.com\",\r\n        \"shortName\": \"L1test\",\r\n        \"chainId\": 26,\r\n        \"networkId\": 26,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Genesis L1 testnet explorer\",\r\n                \"url\": \"https://testnet.genesisl1.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ShibaChain\",\r\n        \"chain\": \"SHIB\",\r\n        \"rpc\": [\r\n            \"https://rpc.shibachain.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SHIBA INU COIN\",\r\n            \"symbol\": \"SHIB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.shibachain.net\",\r\n        \"shortName\": \"shib\",\r\n        \"chainId\": 27,\r\n        \"networkId\": 27,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shiba Explorer\",\r\n                \"url\": \"https://exp.shibachain.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba Network Rinkeby Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rinkeby.boba.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Boba Rinkeby\",\r\n        \"chainId\": 28,\r\n        \"networkId\": 28,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://blockexplorer.rinkeby.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-4\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://gateway.rinkeby.boba.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Genesis L1\",\r\n        \"chain\": \"genesis\",\r\n        \"rpc\": [\r\n            \"https://rpc.genesisl1.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"L1 coin\",\r\n            \"symbol\": \"L1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.genesisl1.com\",\r\n        \"shortName\": \"L1\",\r\n        \"chainId\": 29,\r\n        \"networkId\": 29,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Genesis L1 blockchain explorer\",\r\n                \"url\": \"https://explorer.genesisl1.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GoodData Testnet\",\r\n        \"chain\": \"GooD\",\r\n        \"rpc\": [\r\n            \"https://test2.goodata.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoodData Testnet Ether\",\r\n            \"symbol\": \"GooD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.goodata.org\",\r\n        \"shortName\": \"GooDT\",\r\n        \"chainId\": 32,\r\n        \"networkId\": 32\r\n    },\r\n    {\r\n        \"name\": \"Dithereum Testnet\",\r\n        \"chain\": \"DTH\",\r\n        \"icon\": \"dithereum\",\r\n        \"rpc\": [\r\n            \"https://node-testnet.dithereum.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dithereum.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dither\",\r\n            \"symbol\": \"DTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dithereum.org\",\r\n        \"shortName\": \"dth\",\r\n        \"chainId\": 34,\r\n        \"networkId\": 34\r\n    },\r\n    {\r\n        \"name\": \"Darwinia Crab Network\",\r\n        \"chain\": \"crab\",\r\n        \"rpc\": [\r\n            \"http://crab-rpc.darwinia.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Crab Network Native Token\",\r\n            \"symbol\": \"CRAB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://crab.network/\",\r\n        \"shortName\": \"crab\",\r\n        \"chainId\": 44,\r\n        \"networkId\": 44,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"url\": \"https://crab.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Darwinia Pangoro Testnet\",\r\n        \"chain\": \"pangoro\",\r\n        \"rpc\": [\r\n            \"http://pangoro-rpc.darwinia.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pangoro Network Native Token”\",\r\n            \"symbol\": \"ORING\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://darwinia.network/\",\r\n        \"shortName\": \"pangoro\",\r\n        \"chainId\": 45,\r\n        \"networkId\": 45,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"url\": \"https://pangoro.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zyx Mainnet\",\r\n        \"chain\": \"ZYX\",\r\n        \"rpc\": [\r\n            \"https://rpc-1.zyx.network/\",\r\n            \"https://rpc-2.zyx.network/\",\r\n            \"https://rpc-3.zyx.network/\",\r\n            \"https://rpc-4.zyx.network/\",\r\n            \"https://rpc-5.zyx.network/\",\r\n            \"https://rpc-6.zyx.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zyx\",\r\n            \"symbol\": \"ZYX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zyx.network/\",\r\n        \"shortName\": \"ZYX\",\r\n        \"chainId\": 55,\r\n        \"networkId\": 55,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zyxscan\",\r\n                \"url\": \"https://zyxscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Syscoin Mainnet\",\r\n        \"chain\": \"SYS\",\r\n        \"rpc\": [\r\n            \"https://rpc.syscoin.org\",\r\n            \"wss://rpc.syscoin.org/wss\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.syscoin.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Syscoin\",\r\n            \"symbol\": \"SYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.syscoin.org\",\r\n        \"shortName\": \"sys\",\r\n        \"chainId\": 57,\r\n        \"networkId\": 57,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Syscoin Block Explorer\",\r\n                \"url\": \"https://explorer.syscoin.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ontology Mainnet\",\r\n        \"chain\": \"Ontology\",\r\n        \"rpc\": [\r\n            \"https://dappnode1.ont.io:20339\",\r\n            \"https://dappnode2.ont.io:20339\",\r\n            \"https://dappnode3.ont.io:20339\",\r\n            \"https://dappnode4.ont.io:20339\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONG\",\r\n            \"symbol\": \"ONG\",\r\n            \"decimals\": 9\r\n        },\r\n        \"infoURL\": \"https://ont.io/\",\r\n        \"shortName\": \"Ontology Mainnet\",\r\n        \"chainId\": 58,\r\n        \"networkId\": 58,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.ont.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EOS Mainnet\",\r\n        \"chain\": \"EOS\",\r\n        \"rpc\": [\r\n            \"https://api.eosargentina.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EOS\",\r\n            \"symbol\": \"EOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eoscommunity.org/\",\r\n        \"shortName\": \"EOS Mainnet\",\r\n        \"chainId\": 59,\r\n        \"networkId\": 59,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bloks\",\r\n                \"url\": \"https://bloks.eosargentina.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Conflux eSpace (Testnet)\",\r\n        \"chain\": \"Conflux\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://evmtestnet.confluxrpc.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.confluxnetwork.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CFX\",\r\n            \"symbol\": \"CFX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://confluxnetwork.org\",\r\n        \"shortName\": \"cfxtest\",\r\n        \"chainId\": 71,\r\n        \"networkId\": 71,\r\n        \"icon\": \"conflux\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Conflux Scan\",\r\n                \"url\": \"https://evmtestnet.confluxscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IDC Mainnet\",\r\n        \"chainId\": 36713,\r\n        \"shortName\": \"idc\",\r\n        \"chain\": \"IDC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 36713,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IDC\",\r\n            \"symbol\": \"IDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.idcchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://explorer.idcchain.com\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1734706533803.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1734706518095.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1734706552903.png\",\r\n            \"color_chain_bg\": \"0x4F25E6\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1734706574819.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"IDChain Mainnet\",\r\n        \"chain\": \"IDChain\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://idchain.one/rpc/\",\r\n            \"wss://idchain.one/ws/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EIDI\",\r\n            \"symbol\": \"EIDI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://idchain.one/begin/\",\r\n        \"shortName\": \"idchain\",\r\n        \"chainId\": 74,\r\n        \"networkId\": 74,\r\n        \"icon\": \"idchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.idchain.one\",\r\n                \"icon\": \"etherscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GeneChain\",\r\n        \"chain\": \"GeneChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.genechain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RNA\",\r\n            \"symbol\": \"RNA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan.genechain.io/\",\r\n        \"shortName\": \"GeneChain\",\r\n        \"chainId\": 80,\r\n        \"networkId\": 80,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GeneChain Scan\",\r\n                \"url\": \"https://scan.genechain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Meter Testnet\",\r\n        \"chain\": \"METER Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpctest.meter.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-warringstakes.meter.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Meter\",\r\n            \"symbol\": \"MTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.meter.io\",\r\n        \"shortName\": \"MeterTest\",\r\n        \"chainId\": 83,\r\n        \"networkId\": 83,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Meter Testnet Scan\",\r\n                \"url\": \"https://scan-warringstakes.meter.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GateChain Testnet\",\r\n        \"chainId\": 85,\r\n        \"shortName\": \"gttest\",\r\n        \"chain\": \"GTTEST\",\r\n        \"networkId\": 85,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GateToken\",\r\n            \"symbol\": \"GT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet.gatenode.cc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.gatescan.org/testnet/faucet\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GateScan\",\r\n                \"url\": \"https://www.gatescan.org/testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.gatechain.io\"\r\n    },\r\n    {\r\n        \"name\": \"Nova Network\",\r\n        \"chain\": \"NNW\",\r\n        \"icon\": \"novanetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc.novanetwork.io:9070\",\r\n            \"http://nova.genyrpc.info:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Supernova\",\r\n            \"symbol\": \"SNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://novanetwork.io\",\r\n        \"shortName\": \"nnw\",\r\n        \"chainId\": 87,\r\n        \"networkId\": 87,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"novanetwork\",\r\n                \"url\": \"https://explorer.novanetwork.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TomoChain Testnet\",\r\n        \"chain\": \"TOMO\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.tomochain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TomoChain\",\r\n            \"symbol\": \"TOMO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tomochain.com\",\r\n        \"shortName\": \"tomot\",\r\n        \"chainId\": 89,\r\n        \"networkId\": 89,\r\n        \"slip44\": 889\r\n    },\r\n    {\r\n        \"name\": \"Garizon Stage0\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"mainnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s0.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-s0\",\r\n        \"chainId\": 90,\r\n        \"networkId\": 90,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Garizon Stage1\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"mainnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s1.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-s1\",\r\n        \"chainId\": 91,\r\n        \"networkId\": 91,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-90\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Garizon Stage2\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"mainnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s2.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-s2\",\r\n        \"chainId\": 92,\r\n        \"networkId\": 92,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-90\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Garizon Stage3\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"mainnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s3.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-s3\",\r\n        \"chainId\": 93,\r\n        \"networkId\": 93,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-90\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"CryptoKylin Testnet\",\r\n        \"chain\": \"EOS\",\r\n        \"rpc\": [\r\n            \"https://kylin.eosargentina.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EOS\",\r\n            \"symbol\": \"EOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cryptokylin.io/\",\r\n        \"shortName\": \"Kylin Testnet\",\r\n        \"chainId\": 95,\r\n        \"networkId\": 95,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eosq\",\r\n                \"url\": \"https://kylin.eosargentina.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NEXT Smart Chain\",\r\n        \"chain\": \"NSC\",\r\n        \"rpc\": [\r\n            \"https://rpc.nextsmartchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.nextsmartchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NEXT\",\r\n            \"symbol\": \"NEXT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nextsmartchain.com/\",\r\n        \"shortName\": \"nsc\",\r\n        \"chainId\": 96,\r\n        \"networkId\": 96,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Next Smart Chain Explorer\",\r\n                \"url\": \"https://explorer.nextsmartchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Velas EVM Mainnet\",\r\n        \"chain\": \"Velas\",\r\n        \"icon\": \"velas\",\r\n        \"rpc\": [\r\n            \"https://evmexplorer.velas.com/rpc\",\r\n            \"https://explorer.velas.com/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Velas\",\r\n            \"symbol\": \"VLX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://velas.com\",\r\n        \"shortName\": \"vlx\",\r\n        \"chainId\": 106,\r\n        \"networkId\": 106,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Velas Explorer\",\r\n                \"url\": \"https://evmexplorer.velas.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nebula Testnet\",\r\n        \"chain\": \"NTN\",\r\n        \"icon\": \"nebulatestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.novanetwork.io:9070\",\r\n            \"http://testnet.rpc.novanetwork.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nebula X\",\r\n            \"symbol\": \"NBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://novanetwork.io\",\r\n        \"shortName\": \"ntn\",\r\n        \"chainId\": 107,\r\n        \"networkId\": 107,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nebulatestnet\",\r\n                \"url\": \"https://explorer.novanetwork.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Proton Testnet\",\r\n        \"chain\": \"XPR\",\r\n        \"rpc\": [\r\n            \"https://protontestnet.greymass.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Proton\",\r\n            \"symbol\": \"XPR\",\r\n            \"decimals\": 4\r\n        },\r\n        \"infoURL\": \"https://protonchain.com\",\r\n        \"shortName\": \"xpr\",\r\n        \"chainId\": 110,\r\n        \"networkId\": 110\r\n    },\r\n    {\r\n        \"name\": \"Fuse Sparknet\",\r\n        \"chain\": \"fuse\",\r\n        \"rpc\": [\r\n            \"https://rpc.fusespark.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://get.fusespark.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Spark\",\r\n            \"symbol\": \"SPARK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet\",\r\n        \"shortName\": \"spark\",\r\n        \"chainId\": 123,\r\n        \"networkId\": 123\r\n    },\r\n    {\r\n        \"name\": \"Decentralized Web Mainnet\",\r\n        \"shortName\": \"dwu\",\r\n        \"chain\": \"DWU\",\r\n        \"chainId\": 124,\r\n        \"networkId\": 124,\r\n        \"rpc\": [\r\n            \"https://decentralized-web.tech/dw_rpc.php\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://decentralized-web.tech/dw_chain.php\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Decentralized Web Utility\",\r\n            \"symbol\": \"DWU\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"OYchain Testnet\",\r\n        \"chain\": \"OYchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.oychain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.oychain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OYchain Token\",\r\n            \"symbol\": \"OY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.oychain.io\",\r\n        \"shortName\": \"oychain testnet\",\r\n        \"chainId\": 125,\r\n        \"networkId\": 125,\r\n        \"slip44\": 125,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OYchain Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.oychain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OYchain Mainnet\",\r\n        \"chain\": \"OYchain\",\r\n        \"icon\": \"oychain\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.oychain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OYchain Token\",\r\n            \"symbol\": \"OY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.oychain.io\",\r\n        \"shortName\": \"oychain mainnet\",\r\n        \"chainId\": 126,\r\n        \"networkId\": 126,\r\n        \"slip44\": 126,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OYchain Mainnet Explorer\",\r\n                \"url\": \"https://explorer.oychain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Factory 127 Mainnet\",\r\n        \"chain\": \"FETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Factory 127 Token\",\r\n            \"symbol\": \"FETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.factory127.com\",\r\n        \"shortName\": \"feth\",\r\n        \"chainId\": 127,\r\n        \"networkId\": 127,\r\n        \"slip44\": 127\r\n    },\r\n    {\r\n        \"name\": \"DAX CHAIN\",\r\n        \"chain\": \"DAX\",\r\n        \"rpc\": [\r\n            \"https://rpc.prodax.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Prodax\",\r\n            \"symbol\": \"DAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://prodax.io/\",\r\n        \"shortName\": \"dax\",\r\n        \"chainId\": 142,\r\n        \"networkId\": 142\r\n    },\r\n    {\r\n        \"name\": \"Latam-Blockchain Resil Testnet\",\r\n        \"chain\": \"Resil\",\r\n        \"rpc\": [\r\n            \"https://rpc.latam-blockchain.com\",\r\n            \"wss://ws.latam-blockchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.latam-blockchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Latam-Blockchain Resil Test Native Token\",\r\n            \"symbol\": \"usd\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://latam-blockchain.com\",\r\n        \"shortName\": \"resil\",\r\n        \"chainId\": 172,\r\n        \"networkId\": 172\r\n    },\r\n    {\r\n        \"name\": \"Seele Mainnet\",\r\n        \"chain\": \"Seele\",\r\n        \"rpc\": [\r\n            \"https://rpc.seelen.pro/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Seele\",\r\n            \"symbol\": \"Seele\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://seelen.pro/\",\r\n        \"shortName\": \"Seele\",\r\n        \"chainId\": 186,\r\n        \"networkId\": 186,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"seeleview\",\r\n                \"url\": \"https://seeleview.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BMC Mainnet\",\r\n        \"chain\": \"BMC\",\r\n        \"rpc\": [\r\n            \"https://mainnet.bmcchain.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTM\",\r\n            \"symbol\": \"BTM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bmc.bytom.io/\",\r\n        \"shortName\": \"BMC\",\r\n        \"chainId\": 188,\r\n        \"networkId\": 188,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockmeta\",\r\n                \"url\": \"https://bmc.blockmeta.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BMC Testnet\",\r\n        \"chain\": \"BMC\",\r\n        \"rpc\": [\r\n            \"https://testnet.bmcchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTM\",\r\n            \"symbol\": \"BTM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bmc.bytom.io/\",\r\n        \"shortName\": \"BMCT\",\r\n        \"chainId\": 189,\r\n        \"networkId\": 189,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockmeta\",\r\n                \"url\": \"https://bmctestnet.blockmeta.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BitTorrent Chain Mainnet\",\r\n        \"chain\": \"BTTC\",\r\n        \"rpc\": [\r\n            \"https://rpc.bittorrentchain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BitTorrent\",\r\n            \"symbol\": \"BTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bittorrentchain.io/\",\r\n        \"shortName\": \"BTT\",\r\n        \"chainId\": 199,\r\n        \"networkId\": 199,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bttcscan\",\r\n                \"url\": \"https://scan.bittorrentchain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum on xDai\",\r\n        \"chain\": \"AOX\",\r\n        \"rpc\": [\r\n            \"https://arbitrum.xdaichain.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"xDAI\",\r\n            \"symbol\": \"xDAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xdaichain.com\",\r\n        \"shortName\": \"aox\",\r\n        \"chainId\": 200,\r\n        \"networkId\": 200,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.com/xdai/arbitrum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100\",\r\n            \"type\": \"L2\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Permission\",\r\n        \"chain\": \"ASK\",\r\n        \"rpc\": [\r\n            \"https://blockchain-api-mainnet.permission.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ASK\",\r\n            \"symbol\": \"ASK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://permission.io/\",\r\n        \"shortName\": \"ASK\",\r\n        \"chainId\": 222,\r\n        \"networkId\": 2221,\r\n        \"slip44\": 2221\r\n    },\r\n    {\r\n        \"name\": \"SUR Blockchain Network\",\r\n        \"chain\": \"SUR\",\r\n        \"rpc\": [\r\n            \"https://sur.nilin.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Suren\",\r\n            \"symbol\": \"SRN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://surnet.org\",\r\n        \"shortName\": \"SUR\",\r\n        \"chainId\": 262,\r\n        \"networkId\": 1,\r\n        \"icon\": \"SUR\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Surnet Explorer\",\r\n                \"url\": \"https://explorer.surnet.org\",\r\n                \"icon\": \"SUR\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba Network\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.boba.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Boba\",\r\n        \"chainId\": 288,\r\n        \"networkId\": 288,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://blockexplorer.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://gateway.boba.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"KCC Testnet\",\r\n        \"chain\": \"KCC\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.kcc.network\",\r\n            \"wss://rpc-ws-testnet.kcc.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.kcc.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KuCoin Testnet Token\",\r\n            \"symbol\": \"tKCS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan-testnet.kcc.network\",\r\n        \"shortName\": \"kcst\",\r\n        \"chainId\": 322,\r\n        \"networkId\": 322,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kcc-scan\",\r\n                \"url\": \"https://scan-testnet.kcc.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Web3Q Mainnet\",\r\n        \"chain\": \"Web3Q\",\r\n        \"rpc\": [\r\n            \"https://mainnet.web3q.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Web3Q\",\r\n            \"symbol\": \"W3Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://web3q.io/home.w3q/\",\r\n        \"shortName\": \"w3q\",\r\n        \"chainId\": 333,\r\n        \"networkId\": 333,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"w3q-mainnet\",\r\n                \"url\": \"https://explorer.mainnet.web3q.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shiden\",\r\n        \"chain\": \"SDN\",\r\n        \"rpc\": [\r\n            \"https://rpc.shiden.astar.network:8545\",\r\n            \"wss://shiden.api.onfinality.io/public-ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shiden\",\r\n            \"symbol\": \"SDN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shiden.astar.network/\",\r\n        \"shortName\": \"sdn\",\r\n        \"chainId\": 336,\r\n        \"networkId\": 336,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"url\": \"https://shiden.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cronos Testnet\",\r\n        \"chain\": \"CRO\",\r\n        \"rpc\": [\r\n            \"https://cronos-testnet-3.crypto.org:8545\",\r\n            \"wss://cronos-testnet-3.crypto.org:8546\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://cronos.crypto.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Crypto.org Test Coin\",\r\n            \"symbol\": \"TCRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cronos.crypto.org\",\r\n        \"shortName\": \"tcro\",\r\n        \"chainId\": 338,\r\n        \"networkId\": 338,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cronos Testnet Explorer\",\r\n                \"url\": \"https://cronos.crypto.org/explorer/testnet3\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Theta Mainnet\",\r\n        \"chain\": \"Theta\",\r\n        \"rpc\": [\r\n            \"https://eth-rpc-api.thetatoken.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Theta Fuel\",\r\n            \"symbol\": \"TFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.thetatoken.org/\",\r\n        \"shortName\": \"theta-mainnet\",\r\n        \"chainId\": 361,\r\n        \"networkId\": 361,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Theta Mainnet Explorer\",\r\n                \"url\": \"https://explorer.thetatoken.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Theta Sapphire Testnet\",\r\n        \"chain\": \"Theta\",\r\n        \"rpc\": [\r\n            \"https://eth-rpc-api-sapphire.thetatoken.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Theta Fuel\",\r\n            \"symbol\": \"TFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.thetatoken.org/\",\r\n        \"shortName\": \"theta-sapphire\",\r\n        \"chainId\": 363,\r\n        \"networkId\": 363,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Theta Sapphire Testnet Explorer\",\r\n                \"url\": \"https://guardian-testnet-sapphire-explorer.thetatoken.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Theta Amber Testnet\",\r\n        \"chain\": \"Theta\",\r\n        \"rpc\": [\r\n            \"https://eth-rpc-api-amber.thetatoken.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Theta Fuel\",\r\n            \"symbol\": \"TFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.thetatoken.org/\",\r\n        \"shortName\": \"theta-amber\",\r\n        \"chainId\": 364,\r\n        \"networkId\": 364,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Theta Amber Testnet Explorer\",\r\n                \"url\": \"https://guardian-testnet-amber-explorer.thetatoken.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Theta Testnet\",\r\n        \"chain\": \"Theta\",\r\n        \"rpc\": [\r\n            \"https://eth-rpc-api-testnet.thetatoken.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Theta Fuel\",\r\n            \"symbol\": \"TFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.thetatoken.org/\",\r\n        \"shortName\": \"theta-testnet\",\r\n        \"chainId\": 365,\r\n        \"networkId\": 365,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Theta Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.thetatoken.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vela1 Chain Mainnet\",\r\n        \"chain\": \"VELA1\",\r\n        \"rpc\": [\r\n            \"https://rpc.velaverse.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CLASS COIN\",\r\n            \"symbol\": \"CLASS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://velaverse.io\",\r\n        \"shortName\": \"CLASS\",\r\n        \"chainId\": 555,\r\n        \"networkId\": 555,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vela1 Chain Mainnet Explorer\",\r\n                \"url\": \"https://exp.velaverse.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metis Stardust Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://stardust.metis.io/?owner=588\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tMetis\",\r\n            \"symbol\": \"METIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.metis.io\",\r\n        \"shortName\": \"metis-stardust\",\r\n        \"chainId\": 588,\r\n        \"networkId\": 588,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://stardust-explorer.metis.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-4\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.metis.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Meshnyan testnet\",\r\n        \"chain\": \"MeshTestChain\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Meshnyan Testnet Native Token\",\r\n            \"symbol\": \"MESHT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"mesh-chain-testnet\",\r\n        \"chainId\": 600,\r\n        \"networkId\": 600\r\n    },\r\n    {\r\n        \"name\": \"Pixie Chain Testnet\",\r\n        \"chain\": \"PixieChain\",\r\n        \"rpc\": [\r\n            \"https://http-testnet.chain.pixie.xyz\",\r\n            \"wss://ws-testnet.chain.pixie.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://chain.pixie.xyz/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pixie Chain Testnet Native Token\",\r\n            \"symbol\": \"PCTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan-testnet.chain.pixie.xyz\",\r\n        \"shortName\": \"pixie-chain-testnet\",\r\n        \"chainId\": 666,\r\n        \"networkId\": 666\r\n    },\r\n    {\r\n        \"name\": \"BlockChain Station Mainnet\",\r\n        \"chain\": \"BCS\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.bcsdev.io\",\r\n            \"wss://rpc-ws-mainnet.bcsdev.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BCS Token\",\r\n            \"symbol\": \"BCS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blockchainstation.io\",\r\n        \"shortName\": \"bcs\",\r\n        \"chainId\": 707,\r\n        \"networkId\": 707,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockChain Station Explorer\",\r\n                \"url\": \"https://explorer.bcsdev.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlockChain Station Testnet\",\r\n        \"chain\": \"BCS\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.bcsdev.io\",\r\n            \"wss://rpc-ws-testnet.bcsdev.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bcsdev.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BCS Testnet Token\",\r\n            \"symbol\": \"tBCS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blockchainstation.io\",\r\n        \"shortName\": \"tbcs\",\r\n        \"chainId\": 708,\r\n        \"networkId\": 708,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockChain Station Explorer\",\r\n                \"url\": \"https://testnet.bcsdev.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Factory 127 Testnet\",\r\n        \"chain\": \"FETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Factory 127 Token\",\r\n            \"symbol\": \"FETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.factory127.com\",\r\n        \"shortName\": \"tfeth\",\r\n        \"chainId\": 721,\r\n        \"networkId\": 721,\r\n        \"slip44\": 721\r\n    },\r\n    {\r\n        \"name\": \"Haic\",\r\n        \"chain\": \"Haic\",\r\n        \"rpc\": [\r\n            \"https://orig.haichain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Haicoin\",\r\n            \"symbol\": \"HAIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.haichain.io/\",\r\n        \"shortName\": \"haic\",\r\n        \"chainId\": 803,\r\n        \"networkId\": 803\r\n    },\r\n    {\r\n        \"name\": \"Ambros Chain Mainnet\",\r\n        \"chain\": \"ambroschain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.ambroschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AMBROS\",\r\n            \"symbol\": \"AMBR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bcmhunt.com/\",\r\n        \"shortName\": \"ambros\",\r\n        \"chainId\": 880,\r\n        \"networkId\": 880,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ambros Chain Explorer\",\r\n                \"url\": \"https://explorer.ambroschain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Garizon Testnet Stage0\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"testnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s0-testnet.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.garizon.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-test-s0\",\r\n        \"chainId\": 900,\r\n        \"networkId\": 900,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer-testnet.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Garizon Testnet Stage1\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"testnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s1-testnet.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.garizon.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-test-s1\",\r\n        \"chainId\": 901,\r\n        \"networkId\": 901,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer-testnet.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-900\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Garizon Testnet Stage2\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"testnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s2-testnet.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.garizon.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-test-s2\",\r\n        \"chainId\": 902,\r\n        \"networkId\": 902,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer-testnet.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-900\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Garizon Testnet Stage3\",\r\n        \"chain\": \"GAR\",\r\n        \"network\": \"testnet\",\r\n        \"icon\": \"garizon\",\r\n        \"rpc\": [\r\n            \"https://s3-testnet.garizon.net/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.garizon.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Garizon\",\r\n            \"symbol\": \"GAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://garizon.com\",\r\n        \"shortName\": \"gar-test-s3\",\r\n        \"chainId\": 903,\r\n        \"networkId\": 903,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer-testnet.garizon.com\",\r\n                \"icon\": \"garizon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-900\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"PulseChain Testnet\",\r\n        \"shortName\": \"tpls\",\r\n        \"chain\": \"tPLS\",\r\n        \"chainId\": 940,\r\n        \"networkId\": 940,\r\n        \"infoURL\": \"https://pulsechain.com/\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}\",\r\n            \"wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Pulse\",\r\n            \"symbol\": \"tPLS\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lucky Network\",\r\n        \"chain\": \"LN\",\r\n        \"rpc\": [\r\n            \"https://rpc.luckynetwork.org\",\r\n            \"wss://ws.lnscan.org\",\r\n            \"https://rpc.lnscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lucky\",\r\n            \"symbol\": \"L99\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://luckynetwork.org\",\r\n        \"shortName\": \"ln\",\r\n        \"chainId\": 998,\r\n        \"networkId\": 998,\r\n        \"icon\": \"lucky\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.luckynetwork.org\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"expedition\",\r\n                \"url\": \"https://lnscan.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sakura\",\r\n        \"chain\": \"Sakura\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sakura\",\r\n            \"symbol\": \"SKU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://clover.finance/sakura\",\r\n        \"shortName\": \"sku\",\r\n        \"chainId\": 1022,\r\n        \"networkId\": 1022\r\n    },\r\n    {\r\n        \"name\": \"BitTorrent Chain Testnet\",\r\n        \"chain\": \"BTTC\",\r\n        \"rpc\": [\r\n            \"https://testrpc.bittorrentchain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BitTorrent\",\r\n            \"symbol\": \"BTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bittorrentchain.io/\",\r\n        \"shortName\": \"tbtt\",\r\n        \"chainId\": 1028,\r\n        \"networkId\": 1028,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"testbttcscan\",\r\n                \"url\": \"https://testscan.bittorrentchain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Conflux eSpace\",\r\n        \"chain\": \"Conflux\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://evm.confluxrpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CFX\",\r\n            \"symbol\": \"CFX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://confluxnetwork.org\",\r\n        \"shortName\": \"cfx\",\r\n        \"chainId\": 1030,\r\n        \"networkId\": 1030,\r\n        \"icon\": \"conflux\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Conflux Scan\",\r\n                \"url\": \"https://evm.confluxscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metis Andromeda Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://andromeda.metis.io/?owner=1088\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metis\",\r\n            \"symbol\": \"METIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.metis.io\",\r\n        \"shortName\": \"metis-andromeda\",\r\n        \"chainId\": 1088,\r\n        \"networkId\": 1088,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://andromeda-explorer.metis.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.metis.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Iora Chain\",\r\n        \"chain\": \"IORA\",\r\n        \"network\": \"iorachain\",\r\n        \"icon\": \"iorachain\",\r\n        \"rpc\": [\r\n            \"https://dataseed.iorachain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Iora\",\r\n            \"symbol\": \"IORA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://iorachain.com\",\r\n        \"shortName\": \"iora\",\r\n        \"chainId\": 1197,\r\n        \"networkId\": 1197,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ioraexplorer\",\r\n                \"url\": \"https://explorer.iorachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Evanesco Testnet\",\r\n        \"chain\": \"Evanesco Testnet\",\r\n        \"network\": \"avis\",\r\n        \"rpc\": [\r\n            \"https://seed5.evanesco.org:8547\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AVIS\",\r\n            \"symbol\": \"AVIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evanesco.org/\",\r\n        \"shortName\": \"avis\",\r\n        \"chainId\": 1201,\r\n        \"networkId\": 1201\r\n    },\r\n    {\r\n        \"name\": \"World Trade Technical Chain Mainnet\",\r\n        \"chain\": \"WTT\",\r\n        \"rpc\": [\r\n            \"https://rpc.cadaut.com\",\r\n            \"wss://rpc.cadaut.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"World Trade Token\",\r\n            \"symbol\": \"WTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://www.cadaut.com\",\r\n        \"shortName\": \"wtt\",\r\n        \"chainId\": 1202,\r\n        \"networkId\": 2048,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WTTScout\",\r\n                \"url\": \"https://explorer.cadaut.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Popcateum Mainnet\",\r\n        \"chain\": \"POPCATEUM\",\r\n        \"rpc\": [\r\n            \"https://dataseed.popcateum.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Popcat\",\r\n            \"symbol\": \"POP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://popcateum.org\",\r\n        \"shortName\": \"popcat\",\r\n        \"chainId\": 1213,\r\n        \"networkId\": 1213,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"popcateum explorer\",\r\n                \"url\": \"https://explorer.popcateum.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EnterChain Mainnet\",\r\n        \"chain\": \"ENTER\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://tapi.entercoin.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EnterCoin\",\r\n            \"symbol\": \"ENTER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://entercoin.net\",\r\n        \"shortName\": \"enter\",\r\n        \"chainId\": 1214,\r\n        \"networkId\": 1214,\r\n        \"icon\": \"enter\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Enter Explorer - Expenter\",\r\n                \"url\": \"https://explorer.entercoin.net\",\r\n                \"icon\": \"enter\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Moonrock\",\r\n        \"chain\": \"MOON\",\r\n        \"rpc\": [\r\n            \"https://rpc.api.moonrock.moonbeam.network\",\r\n            \"wss://wss.api.moonrock.moonbeam.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rocs\",\r\n            \"symbol\": \"ROC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.moonbeam.network/learn/platform/networks/overview/\",\r\n        \"shortName\": \"mrock\",\r\n        \"chainId\": 1288,\r\n        \"networkId\": 1288\r\n    },\r\n    {\r\n        \"name\": \"Rangers Protocol Mainnet\",\r\n        \"chain\": \"Rangers\",\r\n        \"icon\": \"rangers\",\r\n        \"rpc\": [\r\n            \"https://mainnet.rangersprotocol.com/api/jsonrpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rangers Protocol Gas\",\r\n            \"symbol\": \"RPG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rangersprotocol.com\",\r\n        \"shortName\": \"rpg\",\r\n        \"chainId\": 2025,\r\n        \"networkId\": 2025,\r\n        \"slip44\": 1008,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rangersscan\",\r\n                \"url\": \"https://scan.rangersprotocol.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ecoball Mainnet\",\r\n        \"chain\": \"ECO\",\r\n        \"rpc\": [\r\n            \"https://api.ecoball.org/ecoball/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ecoball Coin\",\r\n            \"symbol\": \"ECO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ecoball.org\",\r\n        \"shortName\": \"eco\",\r\n        \"chainId\": 2100,\r\n        \"networkId\": 2100,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ecoball Explorer\",\r\n                \"url\": \"https://scan.ecoball.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ecoball Testnet Espuma\",\r\n        \"chain\": \"ECO\",\r\n        \"rpc\": [\r\n            \"https://api.ecoball.org/espuma/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Espuma Coin\",\r\n            \"symbol\": \"ECO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ecoball.org\",\r\n        \"shortName\": \"esp\",\r\n        \"chainId\": 2101,\r\n        \"networkId\": 2101,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ecoball Testnet Explorer\",\r\n                \"url\": \"https://espuma-scan.ecoball.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Evanesco Mainnet\",\r\n        \"chain\": \"EVA\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://seed4.evanesco.org:8546\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EVA\",\r\n            \"symbol\": \"EVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evanesco.org/\",\r\n        \"shortName\": \"evanesco\",\r\n        \"chainId\": 2213,\r\n        \"networkId\": 2213,\r\n        \"icon\": \"evanesco\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evanesco Explorer\",\r\n                \"url\": \"https://explorer.evanesco.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZCore Testnet\",\r\n        \"chain\": \"Beach\",\r\n        \"icon\": \"zcore\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.zcore.cash\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zcore.cash\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZCore\",\r\n            \"symbol\": \"ZCR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zcore.cash\",\r\n        \"shortName\": \"zcrbeach\",\r\n        \"chainId\": 3331,\r\n        \"networkId\": 3331\r\n    },\r\n    {\r\n        \"name\": \"Web3Q Testnet\",\r\n        \"chain\": \"Web3Q\",\r\n        \"rpc\": [\r\n            \"https://testnet.web3q.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Web3Q\",\r\n            \"symbol\": \"W3Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://web3q.io/home.w3q/\",\r\n        \"shortName\": \"w3q-t\",\r\n        \"chainId\": 3333,\r\n        \"networkId\": 3333,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"w3q-testnet\",\r\n                \"url\": \"https://explorer.testnet.web3q.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bittex Mainnet\",\r\n        \"chain\": \"BTX\",\r\n        \"rpc\": [\r\n            \"https://rpc1.bittexscan.info\",\r\n            \"https://rpc2.bittexscan.info\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bittex\",\r\n            \"symbol\": \"BTX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bittexscan.com\",\r\n        \"shortName\": \"btx\",\r\n        \"chainId\": 3690,\r\n        \"networkId\": 3690,\r\n        \"icon\": \"ethereum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bittexscan\",\r\n                \"url\": \"https://bittexscan.com\",\r\n                \"icon\": \"etherscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fantom Testnet\",\r\n        \"chain\": \"FTM\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.fantom.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.fantom.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fantom\",\r\n            \"symbol\": \"FTM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet\",\r\n        \"shortName\": \"tftm\",\r\n        \"chainId\": 4002,\r\n        \"networkId\": 4002,\r\n        \"icon\": \"fantom\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ftmscan\",\r\n                \"url\": \"https://testnet.ftmscan.com\",\r\n                \"icon\": \"ftmscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IoTeX Network Mainnet\",\r\n        \"chain\": \"iotex.io\",\r\n        \"rpc\": [\r\n            \"https://babel-api.mainnet.iotex.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IoTeX\",\r\n            \"symbol\": \"IOTX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://iotex.io\",\r\n        \"shortName\": \"iotex-mainnet\",\r\n        \"chainId\": 4689,\r\n        \"networkId\": 4689,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"iotexscan\",\r\n                \"url\": \"https://iotexscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IoTeX Network Testnet\",\r\n        \"chain\": \"iotex.io\",\r\n        \"rpc\": [\r\n            \"https://babel-api.testnet.iotex.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.iotex.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IoTeX\",\r\n            \"symbol\": \"IOTX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://iotex.io\",\r\n        \"shortName\": \"iotex-testnet\",\r\n        \"chainId\": 4690,\r\n        \"networkId\": 4690,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"testnet iotexscan\",\r\n                \"url\": \"https://testnet.iotexscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EraSwap Mainnet\",\r\n        \"chain\": \"ESN\",\r\n        \"icon\": \"eraswap\",\r\n        \"rpc\": [\r\n            \"https://mainnet.eraswap.network\",\r\n            \"https://rpc-mumbai.mainnet.eraswap.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EraSwap\",\r\n            \"symbol\": \"ES\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eraswap.info/\",\r\n        \"shortName\": \"es\",\r\n        \"chainId\": 5197,\r\n        \"networkId\": 5197\r\n    },\r\n    {\r\n        \"name\": \"Uzmi Network Mainnet\",\r\n        \"chain\": \"UZMI\",\r\n        \"rpc\": [\r\n            \"https://network.uzmigames.com.br/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UZMI\",\r\n            \"symbol\": \"UZMI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://uzmigames.com.br/\",\r\n        \"shortName\": \"UZMI\",\r\n        \"chainId\": 5315,\r\n        \"networkId\": 5315\r\n    },\r\n    {\r\n        \"name\": \"Syscoin Tanenbaum Testnet\",\r\n        \"chain\": \"SYS\",\r\n        \"rpc\": [\r\n            \"https://rpc.tanenbaum.io\",\r\n            \"wss://rpc.tanenbaum.io/wss\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tanenbaum.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Syscoin\",\r\n            \"symbol\": \"tSYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://syscoin.org\",\r\n        \"shortName\": \"tsys\",\r\n        \"chainId\": 5700,\r\n        \"networkId\": 5700,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Syscoin Testnet Block Explorer\",\r\n                \"url\": \"https://tanenbaum.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ontology Testnet\",\r\n        \"chain\": \"Ontology\",\r\n        \"rpc\": [\r\n            \"https://polaris1.ont.io:20339\",\r\n            \"https://polaris2.ont.io:20339\",\r\n            \"https://polaris3.ont.io:20339\",\r\n            \"https://polaris4.ont.io:20339\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://developer.ont.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONG\",\r\n            \"symbol\": \"ONG\",\r\n            \"decimals\": 9\r\n        },\r\n        \"infoURL\": \"https://ont.io/\",\r\n        \"shortName\": \"Ontology Testnet\",\r\n        \"chainId\": 5851,\r\n        \"networkId\": 5851,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.ont.io/testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pixie Chain Mainnet\",\r\n        \"chain\": \"PixieChain\",\r\n        \"rpc\": [\r\n            \"https://http-mainnet.chain.pixie.xyz\",\r\n            \"wss://ws-mainnet.chain.pixie.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pixie Chain Native Token\",\r\n            \"symbol\": \"PIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://chain.pixie.xyz\",\r\n        \"shortName\": \"pixie-chain\",\r\n        \"chainId\": 6626,\r\n        \"networkId\": 6626,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.chain.pixie.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shyft Mainnet\",\r\n        \"chain\": \"SHYFT\",\r\n        \"icon\": \"shyft\",\r\n        \"rpc\": [\r\n            \"https://rpc.shyft.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shyft\",\r\n            \"symbol\": \"SHYFT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shyft.network\",\r\n        \"shortName\": \"shyft\",\r\n        \"chainId\": 7341,\r\n        \"networkId\": 7341,\r\n        \"slip44\": 2147490989,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shyft BX\",\r\n                \"url\": \"https://bx.shyft.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hazlor Testnet\",\r\n        \"chain\": \"SCAS\",\r\n        \"rpc\": [\r\n            \"https://hatlas.rpc.hazlor.com:8545\",\r\n            \"wss://hatlas.rpc.hazlor.com:8546\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.hazlor.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hazlor Test Coin\",\r\n            \"symbol\": \"TSCAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hazlor.com\",\r\n        \"shortName\": \"tscas\",\r\n        \"chainId\": 7878,\r\n        \"networkId\": 7878,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hazlor Testnet Explorer\",\r\n                \"url\": \"https://explorer.hazlor.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Teleport\",\r\n        \"chain\": \"Teleport\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.teleport.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tele\",\r\n            \"symbol\": \"TELE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://teleport.network\",\r\n        \"shortName\": \"teleport\",\r\n        \"chainId\": 8000,\r\n        \"networkId\": 8000,\r\n        \"icon\": \"teleport\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Teleport EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm-explorer.teleport.network\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"teleport\"\r\n            },\r\n            {\r\n                \"name\": \"Teleport Cosmos Explorer (Big Dipper)\",\r\n                \"url\": \"https://explorer.teleport.network\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"teleport\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Teleport Testnet\",\r\n        \"chain\": \"Teleport\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.testnet.teleport.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://chain-docs.teleport.network/testnet/faucet.html\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tele\",\r\n            \"symbol\": \"TELE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://teleport.network\",\r\n        \"shortName\": \"teleport-testnet\",\r\n        \"chainId\": 8001,\r\n        \"networkId\": 8001,\r\n        \"icon\": \"teleport\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Teleport EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm-explorer.testnet.teleport.network\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"teleport\"\r\n            },\r\n            {\r\n                \"name\": \"Teleport Cosmos Explorer (Big Dipper)\",\r\n                \"url\": \"https://explorer.testnet.teleport.network\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"teleport\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MDGL Testnet\",\r\n        \"chain\": \"MDGL\",\r\n        \"rpc\": [\r\n            \"https://testnet.mdgl.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MDGL Token\",\r\n            \"symbol\": \"MDGLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mdgl.io\",\r\n        \"shortName\": \"mdgl\",\r\n        \"chainId\": 8029,\r\n        \"networkId\": 8029\r\n    },\r\n    {\r\n        \"name\": \"GeneChain Adenine Testnet\",\r\n        \"chain\": \"GeneChain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.genechain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.genechain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet RNA\",\r\n            \"symbol\": \"tRNA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan-testnet.genechain.io/\",\r\n        \"shortName\": \"GeneChainAdn\",\r\n        \"chainId\": 8080,\r\n        \"networkId\": 8080,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GeneChain Adenine Testnet Scan\",\r\n                \"url\": \"https://scan-testnet.genechain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TOOL Global Mainnet\",\r\n        \"chain\": \"OLO\",\r\n        \"rpc\": [\r\n            \"https://mainnet-web3.wolot.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TOOL Global\",\r\n            \"symbol\": \"OLO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ibdt.io\",\r\n        \"shortName\": \"olo\",\r\n        \"chainId\": 8723,\r\n        \"networkId\": 8723,\r\n        \"slip44\": 479,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OLO Block Explorer\",\r\n                \"url\": \"https://www.olo.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TOOL Global Testnet\",\r\n        \"chain\": \"OLO\",\r\n        \"rpc\": [\r\n            \"https://testnet-web3.wolot.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-explorer.wolot.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TOOL Global\",\r\n            \"symbol\": \"OLO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.wolot.io\",\r\n        \"shortName\": \"tolo\",\r\n        \"chainId\": 8724,\r\n        \"networkId\": 8724,\r\n        \"slip44\": 479\r\n    },\r\n    {\r\n        \"name\": \"Ambros Chain Testnet\",\r\n        \"chain\": \"ambroschain\",\r\n        \"rpc\": [\r\n            \"https://testnet.ambroschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AMBROS\",\r\n            \"symbol\": \"AMBR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bcmhunt.com/\",\r\n        \"shortName\": \"ambrostestnet\",\r\n        \"chainId\": 8888,\r\n        \"networkId\": 8888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ambros Chain Explorer\",\r\n                \"url\": \"https://testexplorer.ambroschain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Genesis Coin\",\r\n        \"chain\": \"Genesis\",\r\n        \"rpc\": [\r\n            \"https://genesis-gn.com\",\r\n            \"wss://genesis-gn.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GN Coin\",\r\n            \"symbol\": \"GNC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://genesis-gn.com\",\r\n        \"shortName\": \"GENEC\",\r\n        \"chainId\": 9100,\r\n        \"networkId\": 9100\r\n    },\r\n    {\r\n        \"name\": \"Rangers Protocol Testnet Robin\",\r\n        \"chain\": \"Rangers\",\r\n        \"icon\": \"rangers\",\r\n        \"rpc\": [\r\n            \"https://robin.rangersprotocol.com/api/jsonrpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://robin-faucet.rangersprotocol.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rangers Protocol Gas\",\r\n            \"symbol\": \"tRPG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rangersprotocol.com\",\r\n        \"shortName\": \"trpg\",\r\n        \"chainId\": 9527,\r\n        \"networkId\": 9527,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rangersscan-robin\",\r\n                \"url\": \"https://robin-rangersscan.rangersprotocol.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"myOwn Testnet\",\r\n        \"chain\": \"myOwn\",\r\n        \"rpc\": [\r\n            \"https://geth.dev.bccloud.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MYN\",\r\n            \"symbol\": \"MYN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.bccloud.net/\",\r\n        \"shortName\": \"myn\",\r\n        \"chainId\": 9999,\r\n        \"networkId\": 9999\r\n    },\r\n    {\r\n        \"name\": \"Blockchain Genesis Mainnet\",\r\n        \"chain\": \"GEN\",\r\n        \"rpc\": [\r\n            \"https://eu.mainnet.xixoio.com\",\r\n            \"https://us.mainnet.xixoio.com\",\r\n            \"https://asia.mainnet.xixoio.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GEN\",\r\n            \"symbol\": \"GEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.xixoio.com/\",\r\n        \"shortName\": \"GEN\",\r\n        \"chainId\": 10101,\r\n        \"networkId\": 10101\r\n    },\r\n    {\r\n        \"name\": \"WAGMI\",\r\n        \"chain\": \"WAGMI\",\r\n        \"icon\": \"wagmi\",\r\n        \"rpc\": [\r\n            \"https://api.trywagmi.xyz/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WAGMI\",\r\n            \"symbol\": \"WGM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://trywagmi.xyz\",\r\n        \"shortName\": \"WAGMI\",\r\n        \"chainId\": 11111,\r\n        \"networkId\": 11111,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WAGMI Explorer\",\r\n                \"url\": \"https://trywagmi.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shyft Testnet\",\r\n        \"chain\": \"SHYFTT\",\r\n        \"icon\": \"shyft\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.shyft.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shyft Test Token\",\r\n            \"symbol\": \"SHYFTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shyft.network\",\r\n        \"shortName\": \"shyftt\",\r\n        \"chainId\": 11437,\r\n        \"networkId\": 11437,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shyft Testnet BX\",\r\n                \"url\": \"https://bx.testnet.shyft.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Singularity ZERO Testnet\",\r\n        \"chain\": \"ZERO\",\r\n        \"rpc\": [\r\n            \"https://betaenv.singularity.gold:18545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://nft.singularity.gold\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZERO\",\r\n            \"symbol\": \"tZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.singularity.gold\",\r\n        \"shortName\": \"tZERO\",\r\n        \"chainId\": 12051,\r\n        \"networkId\": 12051,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zeroscan\",\r\n                \"url\": \"https://betaenv.singularity.gold:18002\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Singularity ZERO Mainnet\",\r\n        \"chain\": \"ZERO\",\r\n        \"rpc\": [\r\n            \"https://zerorpc.singularity.gold\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://zeroscan.singularity.gold\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZERO\",\r\n            \"symbol\": \"ZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.singularity.gold\",\r\n        \"shortName\": \"ZERO\",\r\n        \"chainId\": 12052,\r\n        \"networkId\": 12052,\r\n        \"slip44\": 621,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zeroscan\",\r\n                \"url\": \"https://zeroscan.singularity.gold\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Phoenix Mainnet\",\r\n        \"chain\": \"Phoenix\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.phoenixplorer.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Phoenix\",\r\n            \"symbol\": \"PHX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cryptophoenix.org/phoenix\",\r\n        \"shortName\": \"Phoenix\",\r\n        \"chainId\": 13381,\r\n        \"networkId\": 13381,\r\n        \"icon\": \"phoenix\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"phoenixplorer\",\r\n                \"url\": \"https://phoenixplorer.com\",\r\n                \"icon\": \"phoenixplorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaDot Mainnet\",\r\n        \"chain\": \"MTT\",\r\n        \"rpc\": [\r\n            \"https://mainnet.metadot.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MetaDot Token\",\r\n            \"symbol\": \"MTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metadot.network\",\r\n        \"shortName\": \"mtt\",\r\n        \"chainId\": 16000,\r\n        \"networkId\": 16000\r\n    },\r\n    {\r\n        \"name\": \"MetaDot Testnet\",\r\n        \"chain\": \"MTTTest\",\r\n        \"rpc\": [\r\n            \"https://testnet.metadot.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.metadot.network/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MetaDot Token TestNet\",\r\n            \"symbol\": \"MTT-test\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metadot.network\",\r\n        \"shortName\": \"mtttest\",\r\n        \"chainId\": 16001,\r\n        \"networkId\": 16001\r\n    },\r\n    {\r\n        \"name\": \"BTCIX Network\",\r\n        \"chain\": \"BTCIX\",\r\n        \"rpc\": [\r\n            \"https://seed.btcix.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTCIX Network\",\r\n            \"symbol\": \"BTCIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitcolojix.org\",\r\n        \"shortName\": \"btcix\",\r\n        \"chainId\": 19845,\r\n        \"networkId\": 19845,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BTCIXScan\",\r\n                \"url\": \"https://btcixscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MintMe.com Coin\",\r\n        \"chain\": \"MINTME\",\r\n        \"rpc\": [\r\n            \"https://node1.mintme.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MintMe.com Coin\",\r\n            \"symbol\": \"MINTME\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.mintme.com\",\r\n        \"shortName\": \"mintme\",\r\n        \"chainId\": 24734,\r\n        \"networkId\": 37480\r\n    },\r\n    {\r\n        \"name\": \"GoChain Testnet\",\r\n        \"chain\": \"GO\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.gochain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoChain Coin\",\r\n            \"symbol\": \"GO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gochain.io\",\r\n        \"shortName\": \"got\",\r\n        \"chainId\": 31337,\r\n        \"networkId\": 31337,\r\n        \"slip44\": 6060,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GoChain Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.gochain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Emerald Paratime Testnet\",\r\n        \"chain\": \"Emerald\",\r\n        \"icon\": \"oasis\",\r\n        \"rpc\": [\r\n            \"https://testnet.emerald.oasis.dev/\",\r\n            \"wss://testnet.emerald.oasis.dev/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Emerald Rose\",\r\n            \"symbol\": \"ROSE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.oasis.dev/general/developer-resources/overview\",\r\n        \"shortName\": \"emerald\",\r\n        \"chainId\": 42261,\r\n        \"networkId\": 42261,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Emerald Paratime Testnet Explorer\",\r\n                \"url\": \"https://testnet.explorer.emerald.oasis.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Emerald Paratime Mainnet\",\r\n        \"chain\": \"Emerald\",\r\n        \"icon\": \"oasis\",\r\n        \"rpc\": [\r\n            \"https://emerald.oasis.dev\",\r\n            \"wss://emerald.oasis.dev/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Emerald Rose\",\r\n            \"symbol\": \"ROSE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.oasis.dev/general/developer-resources/overview\",\r\n        \"shortName\": \"oasis\",\r\n        \"chainId\": 42262,\r\n        \"networkId\": 42262,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Emerald Paratime Mainnet Explorer\",\r\n                \"url\": \"https://explorer.emerald.oasis.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"REI Network\",\r\n        \"chain\": \"REI\",\r\n        \"rpc\": [\r\n            \"https://rpc.rei.network\",\r\n            \"wss://rpc.rei.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"REI\",\r\n            \"symbol\": \"REI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rei.network/\",\r\n        \"shortName\": \"REI\",\r\n        \"chainId\": 47805,\r\n        \"networkId\": 47805,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rei-scan\",\r\n                \"url\": \"https://scan.rei.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"REI Chain Mainnet\",\r\n        \"chain\": \"REI\",\r\n        \"icon\": \"reichain\",\r\n        \"rpc\": [\r\n            \"https://rei-rpc.moonrhythm.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://kururu.finance/faucet?chainId=55555\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rei\",\r\n            \"symbol\": \"REI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://reichain.io\",\r\n        \"shortName\": \"rei\",\r\n        \"chainId\": 55555,\r\n        \"networkId\": 55555,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"reiscan\",\r\n                \"url\": \"https://reiscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"REI Chain Testnet\",\r\n        \"chain\": \"REI\",\r\n        \"icon\": \"reichain\",\r\n        \"rpc\": [\r\n            \"https://rei-testnet-rpc.moonrhythm.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://kururu.finance/faucet?chainId=55556\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tRei\",\r\n            \"symbol\": \"tREI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://reichain.io\",\r\n        \"shortName\": \"trei\",\r\n        \"chainId\": 55556,\r\n        \"networkId\": 55556,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"reiscan\",\r\n                \"url\": \"https://testnet.reiscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Testnet Chain 0\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://test.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.thinkiumdev.net/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM-test0\",\r\n        \"chainId\": 60000,\r\n        \"networkId\": 60000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://test0.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Testnet Chain 1\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://test1.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.thinkiumdev.net/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM-test1\",\r\n        \"chainId\": 60001,\r\n        \"networkId\": 60001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://test1.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Testnet Chain 2\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://test2.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.thinkiumdev.net/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM-test2\",\r\n        \"chainId\": 60002,\r\n        \"networkId\": 60002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://test2.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Testnet Chain 103\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://test103.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.thinkiumdev.net/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM-test103\",\r\n        \"chainId\": 60103,\r\n        \"networkId\": 60103,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://test103.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"eCredits Mainnet\",\r\n        \"chain\": \"ECS\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.ecredits.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"eCredits\",\r\n            \"symbol\": \"ECS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ecredits.com\",\r\n        \"shortName\": \"ecs\",\r\n        \"chainId\": 63000,\r\n        \"networkId\": 63000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eCredits MainNet Explorer\",\r\n                \"url\": \"https://explorer.ecredits.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"eCredits Testnet\",\r\n        \"chain\": \"ECS\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.tst.ecredits.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tst.ecredits.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"eCredits\",\r\n            \"symbol\": \"ECS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ecredits.com\",\r\n        \"shortName\": \"ecs-testnet\",\r\n        \"chainId\": 63001,\r\n        \"networkId\": 63001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eCredits TestNet Explorer\",\r\n                \"url\": \"https://explorer.tst.ecredits.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Mainnet Chain 0\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://proxy.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM0\",\r\n        \"chainId\": 70000,\r\n        \"networkId\": 70000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://chain0.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Mainnet Chain 1\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://proxy1.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM1\",\r\n        \"chainId\": 70001,\r\n        \"networkId\": 70001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://chain1.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Mainnet Chain 2\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://proxy2.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM2\",\r\n        \"chainId\": 70002,\r\n        \"networkId\": 70002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://chain2.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thinkium Mainnet Chain 103\",\r\n        \"chain\": \"Thinkium\",\r\n        \"rpc\": [\r\n            \"https://proxy103.thinkiumrpc.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TKM\",\r\n            \"symbol\": \"TKM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thinkium.net/\",\r\n        \"shortName\": \"TKM103\",\r\n        \"chainId\": 70103,\r\n        \"networkId\": 70103,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"thinkiumscan\",\r\n                \"url\": \"https://chain103.thinkiumscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Polyjuice Testnet\",\r\n        \"chain\": \"CKB\",\r\n        \"icon\": \"polyjuice\",\r\n        \"rpc\": [\r\n            \"https://godwoken-testnet-web3-rpc.ckbapp.dev\",\r\n            \"ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.nervos.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CKB\",\r\n            \"symbol\": \"CKB\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://github.com/nervosnetwork/godwoken\",\r\n        \"shortName\": \"ckb\",\r\n        \"chainId\": 71393,\r\n        \"networkId\": 1\r\n    },\r\n    {\r\n        \"name\": \"UB Smart Chain(testnet)\",\r\n        \"chain\": \"USC\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.uschain.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UBC\",\r\n            \"symbol\": \"UBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ubchain.site\",\r\n        \"shortName\": \"usctest\",\r\n        \"chainId\": 99998,\r\n        \"networkId\": 99998\r\n    },\r\n    {\r\n        \"name\": \"UB Smart Chain\",\r\n        \"chain\": \"USC\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.uschain.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UBC\",\r\n            \"symbol\": \"UBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ubchain.site/\",\r\n        \"shortName\": \"usc\",\r\n        \"chainId\": 99999,\r\n        \"networkId\": 99999\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Root\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"http://jrpc.mainnet.quarkchain.io:38391/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-r\",\r\n        \"chainId\": 100000,\r\n        \"networkId\": 100000\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 0\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s0-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39000/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s0\",\r\n        \"chainId\": 100001,\r\n        \"networkId\": 100001,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/0\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 1\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s1-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39001/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s1\",\r\n        \"chainId\": 100002,\r\n        \"networkId\": 100002,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/1\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 2\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s2-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39002/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s2\",\r\n        \"chainId\": 100003,\r\n        \"networkId\": 100003,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/2\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 3\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s3-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39003/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s3\",\r\n        \"chainId\": 100004,\r\n        \"networkId\": 100004,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/3\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 4\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s4-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39004/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s4\",\r\n        \"chainId\": 100005,\r\n        \"networkId\": 100005,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/4\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 5\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s5-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39005/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s5\",\r\n        \"chainId\": 100006,\r\n        \"networkId\": 100006,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/5\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 6\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s6-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39006/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s6\",\r\n        \"chainId\": 100007,\r\n        \"networkId\": 100007,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/6\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Mainnet Shard 7\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-s7-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.mainnet.quarkchain.io:39007/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-s7\",\r\n        \"chainId\": 100008,\r\n        \"networkId\": 100008,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-100000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-mainnet\",\r\n                \"url\": \"https://mainnet.quarkchain.io/7\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BROChain Mainnet\",\r\n        \"chain\": \"BRO\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.brochain.org\",\r\n            \"http://rpc.brochain.org\",\r\n            \"https://rpc.brochain.org/mainnet\",\r\n            \"http://rpc.brochain.org/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Brother\",\r\n            \"symbol\": \"BRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://brochain.org\",\r\n        \"shortName\": \"bro\",\r\n        \"chainId\": 108801,\r\n        \"networkId\": 108801,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BROChain Explorer\",\r\n                \"url\": \"https://explorer.brochain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Root\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"http://jrpc.devnet.quarkchain.io:38391/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-r\",\r\n        \"chainId\": 110000,\r\n        \"networkId\": 110000\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 0\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s0-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39900/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s0\",\r\n        \"chainId\": 110001,\r\n        \"networkId\": 110001,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/0\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 1\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s1-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39901/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s1\",\r\n        \"chainId\": 110002,\r\n        \"networkId\": 110002,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/1\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 2\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s2-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39902/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s2\",\r\n        \"chainId\": 110003,\r\n        \"networkId\": 110003,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/2\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 3\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s3-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39903/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s3\",\r\n        \"chainId\": 110004,\r\n        \"networkId\": 110004,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/3\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 4\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s4-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39904/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s4\",\r\n        \"chainId\": 110005,\r\n        \"networkId\": 110005,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/4\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 5\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s5-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39905/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s5\",\r\n        \"chainId\": 110006,\r\n        \"networkId\": 110006,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/5\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 6\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s6-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39906/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s6\",\r\n        \"chainId\": 110007,\r\n        \"networkId\": 110007,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/6\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain Devnet Shard 7\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://devnet-s7-ethapi.quarkchain.io\",\r\n            \"http://eth-jrpc.devnet.quarkchain.io:39907/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io/\",\r\n        \"shortName\": \"qkc-d-s7\",\r\n        \"chainId\": 110008,\r\n        \"networkId\": 110008,\r\n        \"parent\": {\r\n            \"chain\": \"eip155-110000\",\r\n            \"type\": \"shard\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"quarkchain-devnet\",\r\n                \"url\": \"https://devnet.quarkchain.io/7\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Alaya Mainnet\",\r\n        \"chain\": \"Alaya\",\r\n        \"rpc\": [\r\n            \"https://openapi.alaya.network/rpc\",\r\n            \"wss://openapi.alaya.network/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ATP\",\r\n            \"symbol\": \"atp\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.alaya.network/\",\r\n        \"shortName\": \"alaya\",\r\n        \"chainId\": 201018,\r\n        \"networkId\": 1,\r\n        \"icon\": \"alaya\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"alaya explorer\",\r\n                \"url\": \"https://scan.alaya.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Alaya Dev Testnet\",\r\n        \"chain\": \"Alaya\",\r\n        \"rpc\": [\r\n            \"https://devnetopenapi.alaya.network/rpc\",\r\n            \"wss://devnetopenapi.alaya.network/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ATP\",\r\n            \"symbol\": \"atp\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.alaya.network/\",\r\n        \"shortName\": \"alayadev\",\r\n        \"chainId\": 201030,\r\n        \"networkId\": 1,\r\n        \"icon\": \"alaya\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"alaya explorer\",\r\n                \"url\": \"https://devnetscan.alaya.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PlatON Dev Testnet\",\r\n        \"chain\": \"PlatON\",\r\n        \"rpc\": [\r\n            \"https://devnetopenapi.platon.network/rpc\",\r\n            \"wss://devnetopenapi.platon.network/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAT\",\r\n            \"symbol\": \"lat\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.platon.network\",\r\n        \"shortName\": \"platondev\",\r\n        \"chainId\": 210309,\r\n        \"networkId\": 1,\r\n        \"icon\": \"platon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PlatON explorer\",\r\n                \"url\": \"https://devnetscan.platon.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PlatON Mainnet\",\r\n        \"chain\": \"PlatON\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://openapi2.platon.network/rpc\",\r\n            \"https://openapi.platon.network/rpc\",\r\n            \"wss://openapi.platon.network/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAT\",\r\n            \"symbol\": \"lat\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.platon.network\",\r\n        \"shortName\": \"platon\",\r\n        \"chainId\": 210425,\r\n        \"networkId\": 1,\r\n        \"icon\": \"platon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PlatON explorer\",\r\n                \"url\": \"https://scan.platon.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Social Smart Chain Mainnet\",\r\n        \"chain\": \"SoChain\",\r\n        \"rpc\": [\r\n            \"https://socialsmartchain.digitalnext.business\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SoChain\",\r\n            \"symbol\": \"$OC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://digitalnext.business/SocialSmartChain\",\r\n        \"shortName\": \"SoChain\",\r\n        \"chainId\": 281121,\r\n        \"networkId\": 281121,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Polis Testnet\",\r\n        \"chain\": \"Sparta\",\r\n        \"icon\": \"polis\",\r\n        \"rpc\": [\r\n            \"https://sparta-rpc.polis.tech\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.polis.tech\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tPolis\",\r\n            \"symbol\": \"tPOLIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polis.tech\",\r\n        \"shortName\": \"sparta\",\r\n        \"chainId\": 333888,\r\n        \"networkId\": 333888\r\n    },\r\n    {\r\n        \"name\": \"Polis Mainnet\",\r\n        \"chain\": \"Olympus\",\r\n        \"icon\": \"polis\",\r\n        \"rpc\": [\r\n            \"https://rpc.polis.tech\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.polis.tech\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Polis\",\r\n            \"symbol\": \"POLIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polis.tech\",\r\n        \"shortName\": \"olympus\",\r\n        \"chainId\": 333999,\r\n        \"networkId\": 333999\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum Rinkeby\",\r\n        \"title\": \"Arbitrum Testnet Rinkeby\",\r\n        \"chainId\": 421611,\r\n        \"shortName\": \"arb-rinkeby\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 421611,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arbitrum Rinkeby Ether\",\r\n            \"symbol\": \"ARETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rinkeby.arbitrum.io/rpc\",\r\n            \"wss://rinkeby.arbitrum.io/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://fauceth.komputing.org?chain=421611&address=${ADDRESS}\"\r\n        ],\r\n        \"infoURL\": \"https://arbitrum.io\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"arbitrum-rinkeby\",\r\n                \"url\": \"https://rinkeby-explorer.arbitrum.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-4\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Eluvio Content Fabric\",\r\n        \"chain\": \"Eluvio\",\r\n        \"rpc\": [\r\n            \"https://host-76-74-28-226.contentfabric.io/eth/\",\r\n            \"https://host-76-74-28-232.contentfabric.io/eth/\",\r\n            \"https://host-76-74-29-2.contentfabric.io/eth/\",\r\n            \"https://host-76-74-29-8.contentfabric.io/eth/\",\r\n            \"https://host-76-74-29-34.contentfabric.io/eth/\",\r\n            \"https://host-76-74-29-35.contentfabric.io/eth/\",\r\n            \"https://host-154-14-211-98.contentfabric.io/eth/\",\r\n            \"https://host-154-14-192-66.contentfabric.io/eth/\",\r\n            \"https://host-60-240-133-202.contentfabric.io/eth/\",\r\n            \"https://host-64-235-250-98.contentfabric.io/eth/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ELV\",\r\n            \"symbol\": \"ELV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eluv.io\",\r\n        \"shortName\": \"elv\",\r\n        \"chainId\": 955305,\r\n        \"networkId\": 955305,\r\n        \"slip44\": 1011,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.eluv.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kintsugi\",\r\n        \"title\": \"Kintsugi merge testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.kintsugi.themerge.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}\",\r\n            \"https://faucet.kintsugi.themerge.dev\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"kintsugi Ethere\",\r\n            \"symbol\": \"kiETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kintsugi.themerge.dev/\",\r\n        \"shortName\": \"kintsugi\",\r\n        \"chainId\": 1337702,\r\n        \"networkId\": 1337702,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kintsugi explorer\",\r\n                \"url\": \"https://explorer.kintsugi.themerge.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sepolia\",\r\n        \"title\": \"Ethereum Testnet Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"SEP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sepolia.otterscan.io\",\r\n        \"shortName\": \"sep\",\r\n        \"chainId\": 11155111,\r\n        \"networkId\": 11155111,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"otterscan-sepolia\",\r\n                \"url\": \"https://sepolia.otterscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"quarkblockchain\",\r\n        \"chain\": \"QKI\",\r\n        \"rpc\": [\r\n            \"https://hz.rpc.qkiscan.cn\",\r\n            \"https://rpc1.qkiscan.cn\",\r\n            \"https://rpc2.qkiscan.cn\",\r\n            \"https://rpc3.qkiscan.cn\",\r\n            \"https://rpc1.qkiscan.io\",\r\n            \"https://rpc2.qkiscan.io\",\r\n            \"https://rpc3.qkiscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"quarkblockchain Native Token\",\r\n            \"symbol\": \"QKI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://qkiscan.io\",\r\n        \"shortName\": \"qki\",\r\n        \"chainId\": 20181205,\r\n        \"networkId\": 20181205\r\n    },\r\n    {\r\n        \"name\": \"Gather Mainnet Network\",\r\n        \"chain\": \"GTH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.gather.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gather\",\r\n            \"symbol\": \"GTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gather.network\",\r\n        \"shortName\": \"GTH\",\r\n        \"chainId\": 192837465,\r\n        \"networkId\": 192837465,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.gather.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Neon EVM DevNet\",\r\n        \"chain\": \"Solana\",\r\n        \"rpc\": [\r\n            \"https://proxy.devnet.neonlabs.org/solana\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://neonswap.live/#/get-tokens\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neon\",\r\n            \"symbol\": \"NEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neon-labs.org/\",\r\n        \"shortName\": \"neonevm-devnet\",\r\n        \"chainId\": 245022926,\r\n        \"networkId\": 245022926\r\n    },\r\n    {\r\n        \"name\": \"Neon EVM MainNet\",\r\n        \"chain\": \"Solana\",\r\n        \"rpc\": [\r\n            \"https://proxy.mainnet.neonlabs.org/solana\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neon\",\r\n            \"symbol\": \"NEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neon-labs.org/\",\r\n        \"shortName\": \"neonevm-mainnet\",\r\n        \"chainId\": 245022934,\r\n        \"networkId\": 245022934\r\n    },\r\n    {\r\n        \"name\": \"Neon EVM TestNet\",\r\n        \"chain\": \"Solana\",\r\n        \"rpc\": [\r\n            \"https://proxy.testnet.neonlabs.org/solana\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neon\",\r\n            \"symbol\": \"NEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neon-labs.org/\",\r\n        \"shortName\": \"neonevm-testnet\",\r\n        \"chainId\": 245022940,\r\n        \"networkId\": 245022940\r\n    },\r\n    {\r\n        \"name\": \"OneLedger Mainnet\",\r\n        \"chain\": \"OLT\",\r\n        \"icon\": \"oneledger\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.oneledger.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OLT\",\r\n            \"symbol\": \"OLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oneledger.io\",\r\n        \"shortName\": \"oneledger\",\r\n        \"chainId\": 311752642,\r\n        \"networkId\": 311752642,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OneLedger Block Explorer\",\r\n                \"url\": \"https://mainnet-explorer.oneledger.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gather Tesnet Network\",\r\n        \"chain\": \"GTH\",\r\n        \"rpc\": [\r\n            \"https://testnet.gather.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gather\",\r\n            \"symbol\": \"GTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gather.network\",\r\n        \"shortName\": \"tGTH\",\r\n        \"chainId\": 356256156,\r\n        \"networkId\": 356256156,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://testnet-explorer.gather.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gather Devnet Network\",\r\n        \"chain\": \"GTH\",\r\n        \"rpc\": [\r\n            \"https://devnet.gather.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gather\",\r\n            \"symbol\": \"GTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gather.network\",\r\n        \"shortName\": \"dGTH\",\r\n        \"chainId\": 486217935,\r\n        \"networkId\": 486217935,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://devnet-explorer.gather.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Harmony Testnet Shard 0\",\r\n        \"chain\": \"Harmony\",\r\n        \"rpc\": [\r\n            \"https://api.s0.b.hmny.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.pops.one\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.harmony.one/\",\r\n        \"shortName\": \"hmy-b-s0\",\r\n        \"chainId\": 1666700000,\r\n        \"networkId\": 1666700000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Harmony Testnet Block Explorer\",\r\n                \"url\": \"https://explorer.pops.one\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Harmony Testnet Shard 1\",\r\n        \"chain\": \"Harmony\",\r\n        \"rpc\": [\r\n            \"https://api.s1.b.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.harmony.one/\",\r\n        \"shortName\": \"hmy-b-s1\",\r\n        \"chainId\": 1666700001,\r\n        \"networkId\": 1666700001\r\n    },\r\n    {\r\n        \"name\": \"Harmony Testnet Shard 2\",\r\n        \"chain\": \"Harmony\",\r\n        \"rpc\": [\r\n            \"https://api.s2.b.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.harmony.one/\",\r\n        \"shortName\": \"hmy-b-s2\",\r\n        \"chainId\": 1666700002,\r\n        \"networkId\": 1666700002\r\n    },\r\n    {\r\n        \"name\": \"Harmony Testnet Shard 3\",\r\n        \"chain\": \"Harmony\",\r\n        \"rpc\": [\r\n            \"https://api.s3.b.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.harmony.one/\",\r\n        \"shortName\": \"hmy-b-s3\",\r\n        \"chainId\": 1666700003,\r\n        \"networkId\": 1666700003\r\n    },\r\n    {\r\n        \"name\": \"DataHopper\",\r\n        \"chain\": \"HOP\",\r\n        \"rpc\": [\r\n            \"https://23.92.21.121:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DataHoppers\",\r\n            \"symbol\": \"HOP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.DataHopper.com\",\r\n        \"shortName\": \"hop\",\r\n        \"chainId\": 2021121117,\r\n        \"networkId\": 2021121117\r\n    },\r\n    {\r\n        \"name\": \"OneLedger Testnet Frankenstein\",\r\n        \"chain\": \"OLT\",\r\n        \"icon\": \"oneledger\",\r\n        \"rpc\": [\r\n            \"https://frankenstein-rpc.oneledger.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://frankenstein-faucet.oneledger.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OLT\",\r\n            \"symbol\": \"OLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oneledger.io\",\r\n        \"shortName\": \"frankenstein\",\r\n        \"chainId\": 4216137055,\r\n        \"networkId\": 4216137055,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OneLedger Block Explorer\",\r\n                \"url\": \"https://frankenstein-explorer.oneledger.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Palm Testnet\",\r\n        \"chain\": \"Palm\",\r\n        \"icon\": \"palm\",\r\n        \"rpc\": [\r\n            \"https://palm-testnet.infura.io/v3/{INFURA_API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PALM\",\r\n            \"symbol\": \"PALM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://palm.io\",\r\n        \"shortName\": \"tpalm\",\r\n        \"chainId\": 11297108099,\r\n        \"networkId\": 11297108099,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Palm Testnet Explorer\",\r\n                \"url\": \"https://explorer.palm-uat.xyz\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"palm\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Palm\",\r\n        \"chain\": \"Palm\",\r\n        \"icon\": \"palm\",\r\n        \"rpc\": [\r\n            \"https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PALM\",\r\n            \"symbol\": \"PALM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://palm.io\",\r\n        \"shortName\": \"palm\",\r\n        \"chainId\": 11297108109,\r\n        \"networkId\": 11297108109,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Palm Explorer\",\r\n                \"url\": \"https://explorer.palm.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"palm\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ntity Mainnet\",\r\n        \"chain\": \"Ntity\",\r\n        \"rpc\": [\r\n            \"https://rpc.ntity.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ntity\",\r\n            \"symbol\": \"NTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ntity.io\",\r\n        \"shortName\": \"ntt\",\r\n        \"chainId\": 197710212030,\r\n        \"networkId\": 197710212030,\r\n        \"icon\": \"ntity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ntity Blockscout\",\r\n                \"url\": \"https://blockscout.ntity.io\",\r\n                \"icon\": \"ntity\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haradev Testnet\",\r\n        \"chain\": \"Ntity\",\r\n        \"rpc\": [\r\n            \"https://blockchain.haradev.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ntity Haradev\",\r\n            \"symbol\": \"NTTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ntity.io\",\r\n        \"shortName\": \"ntt-haradev\",\r\n        \"chainId\": 197710212031,\r\n        \"networkId\": 197710212031,\r\n        \"icon\": \"ntity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ntity Haradev Blockscout\",\r\n                \"url\": \"https://blockscout.haradev.com\",\r\n                \"icon\": \"ntity\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Molereum Network\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://molereum.jdubedition.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Molereum Ether\",\r\n            \"symbol\": \"MOLE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Jdubedition/molereum\",\r\n        \"shortName\": \"mole\",\r\n        \"chainId\": 6022140761023,\r\n        \"networkId\": 6022140761023\r\n    },\r\n    {\r\n        \"name\": \"Trust Network Testnet Preview\",\r\n        \"chainId\": 15555,\r\n        \"shortName\": \"Trust testnet\",\r\n        \"chain\": \"Trust testnet\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 15555,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EVM\",\r\n            \"symbol\": \"EVM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.testnet-dev.trust.one\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TRUST Explorer\",\r\n                \"url\": \"https://trustscan.one\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaChain\",\r\n        \"chainId\": 20028,\r\n        \"shortName\": \"meta\",\r\n        \"chain\": \"MetaChain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 20028,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MTC\",\r\n            \"symbol\": \"MTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://seed1.metachain1.com\",\r\n            \"https://seed2.metachain1.com\",\r\n            \"https://seed3.metachain1.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://www.metachain1.com/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://block.metachain1.com/tokenmetas/meta1.png\",\r\n            \"ic_chain_unselect\": \"https://block.metachain1.com/tokenmetas/meta0.png\",\r\n            \"color_chain_bg\": \"0xf3d275\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Openpiece Mainnet\",\r\n        \"chain\": \"OPENPIECE\",\r\n        \"icon\": \"openpiece\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://mainnet.openpiece.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Belly\",\r\n            \"symbol\": \"BELLY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cryptopiece.online\",\r\n        \"shortName\": \"OP\",\r\n        \"chainId\": 54,\r\n        \"networkId\": 54,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Belly Scan\",\r\n                \"url\": \"https://bellyscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hoo Smart Chain\",\r\n        \"chain\": \"HSC\",\r\n        \"rpc\": [\r\n            \"https://http-mainnet.hoosmartchain.com\",\r\n            \"https://http-mainnet2.hoosmartchain.com\",\r\n            \"wss://ws-mainnet.hoosmartchain.com\",\r\n            \"wss://ws-mainnet2.hoosmartchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hoo Smart Chain Native Token\",\r\n            \"symbol\": \"HOO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.hoosmartchain.com\",\r\n        \"shortName\": \"hsc\",\r\n        \"chainId\": 70,\r\n        \"networkId\": 70,\r\n        \"slip44\": 1170,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"hooscan\",\r\n                \"url\": \"https://www.hooscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zenith Mainnet\",\r\n        \"chain\": \"Zenith\",\r\n        \"rpc\": [\r\n            \"https://dataserver-us-1.zenithchain.co/\",\r\n            \"https://dataserver-asia-3.zenithchain.co/\",\r\n            \"https://dataserver-asia-4.zenithchain.co/\",\r\n            \"https://dataserver-asia-2.zenithchain.co/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZENITH\",\r\n            \"symbol\": \"ZENITH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zenithchain.co/\",\r\n        \"chainId\": 79,\r\n        \"networkId\": 79,\r\n        \"shortName\": \"zenith\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zenith scan\",\r\n                \"url\": \"https://scan.zenithchain.co\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zenith Testnet (Vilnius)\",\r\n        \"chain\": \"Zenith\",\r\n        \"rpc\": [\r\n            \"https://vilnius.zenithchain.co/http\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zenithchain.co/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vilnius\",\r\n            \"symbol\": \"VIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zenithchain.co/\",\r\n        \"chainId\": 81,\r\n        \"networkId\": 81,\r\n        \"shortName\": \"VIL\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"vilnius scan\",\r\n                \"url\": \"https://vilnius.scan.zenithchain.co\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Web3Games Devnet\",\r\n        \"chain\": \"Web3Games\",\r\n        \"icon\": \"web3games\",\r\n        \"rpc\": [\r\n            \"https://devnet.web3games.org/evm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Web3Games\",\r\n            \"symbol\": \"W3G\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://web3games.org/\",\r\n        \"shortName\": \"dw3g\",\r\n        \"chainId\": 105,\r\n        \"networkId\": 105,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Web3Games Explorer\",\r\n                \"url\": \"https://explorer-devnet.web3games.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Openpiece Testnet\",\r\n        \"chain\": \"OPENPIECE\",\r\n        \"icon\": \"openpiece\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.openpiece.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Belly\",\r\n            \"symbol\": \"BELLY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cryptopiece.online\",\r\n        \"shortName\": \"OPtest\",\r\n        \"chainId\": 141,\r\n        \"networkId\": 141,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Belly Scan\",\r\n                \"url\": \"https://testnet.bellyscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AIOZ Network\",\r\n        \"chain\": \"AIOZ\",\r\n        \"network\": \"mainnet\",\r\n        \"icon\": \"aioz\",\r\n        \"rpc\": [\r\n            \"https://eth-dataseed.aioz.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AIOZ\",\r\n            \"symbol\": \"AIOZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aioz.network\",\r\n        \"shortName\": \"aioz\",\r\n        \"chainId\": 168,\r\n        \"networkId\": 168,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AIOZ Network Explorer\",\r\n                \"url\": \"https://explorer.aioz.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SoterOne Mainnet old\",\r\n        \"chain\": \"SOTER\",\r\n        \"rpc\": [\r\n            \"https://rpc.soter.one\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SoterOne Mainnet Ether\",\r\n            \"symbol\": \"SOTER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.soterone.com\",\r\n        \"shortName\": \"SO1-old\",\r\n        \"chainId\": 218,\r\n        \"networkId\": 218,\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"LACHAIN Mainnet\",\r\n        \"chain\": \"LA\",\r\n        \"icon\": \"lachain\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.lachain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LA\",\r\n            \"symbol\": \"LA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lachain.io\",\r\n        \"shortName\": \"LA\",\r\n        \"chainId\": 225,\r\n        \"networkId\": 225,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.lachain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LACHAIN Testnet\",\r\n        \"chain\": \"TLA\",\r\n        \"icon\": \"lachain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.lachain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TLA\",\r\n            \"symbol\": \"TLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lachain.io\",\r\n        \"shortName\": \"TLA\",\r\n        \"chainId\": 226,\r\n        \"networkId\": 226,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan-test.lachain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Setheum\",\r\n        \"chain\": \"Setheum\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Setheum\",\r\n            \"symbol\": \"SETM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://setheum.xyz\",\r\n        \"shortName\": \"setm\",\r\n        \"chainId\": 258,\r\n        \"networkId\": 258\r\n    },\r\n    {\r\n        \"name\": \"Optimism on Gnosis Chain\",\r\n        \"chain\": \"OGC\",\r\n        \"rpc\": [\r\n            \"https://optimism.gnosischain.com\",\r\n            \"wss://optimism.gnosischain.com/wss\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.gimlu.com/gnosis\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"xDAI\",\r\n            \"symbol\": \"xDAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc\",\r\n        \"shortName\": \"ogc\",\r\n        \"chainId\": 300,\r\n        \"networkId\": 300,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.com/xdai/optimism\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DFK Chain Test\",\r\n        \"chain\": \"DFK\",\r\n        \"icon\": \"dfk\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Jewel\",\r\n            \"symbol\": \"JEWEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defikingdoms.com\",\r\n        \"shortName\": \"DFKTEST\",\r\n        \"chainId\": 335,\r\n        \"networkId\": 335,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ethernal\",\r\n                \"url\": \"https://explorer-test.dfkchain.com\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Double-A Chain Mainnet\",\r\n        \"chain\": \"AAC\",\r\n        \"rpc\": [\r\n            \"https://rpc.acuteangle.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Acuteangle Native Token\",\r\n            \"symbol\": \"AAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.acuteangle.com/\",\r\n        \"shortName\": \"aac\",\r\n        \"chainId\": 512,\r\n        \"networkId\": 512,\r\n        \"slip44\": 1512,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"aacscan\",\r\n                \"url\": \"https://scan.acuteangle.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"icon\": \"aac\"\r\n    },\r\n    {\r\n        \"name\": \"Double-A Chain Testnet\",\r\n        \"chain\": \"AAC\",\r\n        \"icon\": \"aac\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.acuteangle.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://scan-testnet.acuteangle.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Acuteangle Native Token\",\r\n            \"symbol\": \"AAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.acuteangle.com/\",\r\n        \"shortName\": \"aact\",\r\n        \"chainId\": 513,\r\n        \"networkId\": 513,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"aacscan-testnet\",\r\n                \"url\": \"https://scan-testnet.acuteangle.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Candle Mainnet\",\r\n        \"chain\": \"Candle\",\r\n        \"rpc\": [\r\n            \"https://candle-rpc.com/\",\r\n            \"https://rpc.cndlchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CANDLE\",\r\n            \"symbol\": \"CNDL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://candlelabs.org/\",\r\n        \"shortName\": \"CNDL\",\r\n        \"chainId\": 534,\r\n        \"networkId\": 534,\r\n        \"slip44\": 674,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"candlescan\",\r\n                \"url\": \"https://cndlchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Astar\",\r\n        \"chain\": \"ASTR\",\r\n        \"rpc\": [\r\n            \"https://rpc.astar.network:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Astar\",\r\n            \"symbol\": \"ASTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astar.network/\",\r\n        \"shortName\": \"astr\",\r\n        \"chainId\": 592,\r\n        \"networkId\": 592,\r\n        \"icon\": \"astar\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"url\": \"https://astar.subscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"subscan\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Karura Network Testnet\",\r\n        \"chain\": \"KAR\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Karura Token\",\r\n            \"symbol\": \"KAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://karura.network\",\r\n        \"shortName\": \"tkar\",\r\n        \"chainId\": 596,\r\n        \"networkId\": 596,\r\n        \"slip44\": 596\r\n    },\r\n    {\r\n        \"name\": \"Acala Network Testnet\",\r\n        \"chain\": \"ACA\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Acala Token\",\r\n            \"symbol\": \"ACA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://acala.network\",\r\n        \"shortName\": \"taca\",\r\n        \"chainId\": 597,\r\n        \"networkId\": 597,\r\n        \"slip44\": 597\r\n    },\r\n    {\r\n        \"name\": \"Star Social Testnet\",\r\n        \"chain\": \"SNS\",\r\n        \"rpc\": [\r\n            \"https://avastar.cc/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Social\",\r\n            \"symbol\": \"SNS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://info.avastar.cc\",\r\n        \"shortName\": \"SNS\",\r\n        \"chainId\": 700,\r\n        \"networkId\": 700,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"starscan\",\r\n                \"url\": \"https://avastar.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpenChain Testnet\",\r\n        \"chain\": \"OpenChain Testnet\",\r\n        \"rpc\": [\r\n            \"http://mainnet.openchain.info:8545\",\r\n            \"https://mainnet1.openchain.info\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.openchain.info/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Openchain Testnet\",\r\n            \"symbol\": \"TOPC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.openchain.info/\",\r\n        \"shortName\": \"opc\",\r\n        \"chainId\": 776,\r\n        \"networkId\": 776,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OPEN CHAIN TESTNET\",\r\n                \"url\": \"https://testnet.openchain.info\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aerochain Testnet\",\r\n        \"chain\": \"Aerochain\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.aerochain.id/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.aerochain.id/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aerochain Testnet\",\r\n            \"symbol\": \"TAero\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aerochaincoin.org/\",\r\n        \"shortName\": \"taero\",\r\n        \"chainId\": 788,\r\n        \"networkId\": 788,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"aeroscan\",\r\n                \"url\": \"https://testnet.aeroscan.id\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PulseChain Testnet v2b\",\r\n        \"shortName\": \"t2bpls\",\r\n        \"chain\": \"t2bPLS\",\r\n        \"network\": \"testnet-2b\",\r\n        \"chainId\": 941,\r\n        \"networkId\": 941,\r\n        \"infoURL\": \"https://pulsechain.com/\",\r\n        \"rpc\": [\r\n            \"https://rpc.v2b.testnet.pulsechain.com/\",\r\n            \"wss://rpc.v2b.testnet.pulsechain.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.v2b.testnet.pulsechain.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Pulse\",\r\n            \"symbol\": \"tPLS\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"PulseChain Testnet v3\",\r\n        \"shortName\": \"t3pls\",\r\n        \"chain\": \"t3PLS\",\r\n        \"network\": \"testnet-3\",\r\n        \"chainId\": 942,\r\n        \"networkId\": 942,\r\n        \"infoURL\": \"https://pulsechain.com/\",\r\n        \"rpc\": [\r\n            \"https://rpc.v3.testnet.pulsechain.com/\",\r\n            \"wss://rpc.v3.testnet.pulsechain.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.v3.testnet.pulsechain.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Pulse\",\r\n            \"symbol\": \"tPLS\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Eurus Mainnet\",\r\n        \"chain\": \"EUN\",\r\n        \"network\": \"eurus\",\r\n        \"rpc\": [\r\n            \"https://mainnet.eurus.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eurus\",\r\n            \"symbol\": \"EUN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eurus.network\",\r\n        \"shortName\": \"eun\",\r\n        \"chainId\": 1008,\r\n        \"networkId\": 1008,\r\n        \"icon\": \"eurus\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eurusexplorer\",\r\n                \"url\": \"https://explorer.eurus.network\",\r\n                \"icon\": \"eurus\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CENNZnet old\",\r\n        \"chain\": \"CENNZnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CPAY\",\r\n            \"symbol\": \"CPAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cennz.net\",\r\n        \"shortName\": \"cennz-old\",\r\n        \"chainId\": 1337,\r\n        \"networkId\": 1337,\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Sherpax Mainnet\",\r\n        \"chain\": \"Sherpax Mainnet\",\r\n        \"rpc\": [\r\n            \"https://mainnet.sherpax.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KSX\",\r\n            \"symbol\": \"KSX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sherpax.io/\",\r\n        \"shortName\": \"Sherpax\",\r\n        \"chainId\": 1506,\r\n        \"networkId\": 1506,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sherpax Mainnet Explorer\",\r\n                \"url\": \"https://evm.sherpax.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sherpax Testnet\",\r\n        \"chain\": \"Sherpax Testnet\",\r\n        \"rpc\": [\r\n            \"https://sherpax-testnet.chainx.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KSX\",\r\n            \"symbol\": \"KSX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sherpax.io/\",\r\n        \"shortName\": \"Sherpax Testnet\",\r\n        \"chainId\": 1507,\r\n        \"networkId\": 1507,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sherpax Testnet Explorer\",\r\n                \"url\": \"https://evm-pre.sherpax.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LUDAN Mainnet\",\r\n        \"chain\": \"LUDAN\",\r\n        \"rpc\": [\r\n            \"https://rpc.ludan.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LUDAN\",\r\n            \"symbol\": \"LUDAN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ludan.org/\",\r\n        \"shortName\": \"LUDAN\",\r\n        \"icon\": \"ludan\",\r\n        \"chainId\": 1688,\r\n        \"networkId\": 1688\r\n    },\r\n    {\r\n        \"name\": \"BON Network\",\r\n        \"chain\": \"BON\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"http://rpc.boyanet.org:8545\",\r\n            \"ws://rpc.boyanet.org:8546\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BOYACoin\",\r\n            \"symbol\": \"BOY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boyanet.org\",\r\n        \"shortName\": \"boya\",\r\n        \"chainId\": 1898,\r\n        \"networkId\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.boyanet.org:4001\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Eurus Testnet\",\r\n        \"chain\": \"EUN\",\r\n        \"network\": \"eurus-testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.eurus.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eurus\",\r\n            \"symbol\": \"EUN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eurus.network\",\r\n        \"shortName\": \"euntest\",\r\n        \"chainId\": 1984,\r\n        \"networkId\": 1984,\r\n        \"icon\": \"eurus\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"testnetexplorer\",\r\n                \"url\": \"https://testnetexplorer.eurus.network\",\r\n                \"icon\": \"eurus\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Milkomeda C1 Mainnet\",\r\n        \"chain\": \"milkAda\",\r\n        \"icon\": \"milkomeda\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet-cardano-evm.c1.milkomeda.com\",\r\n            \"wss://rpc-mainnet-cardano-evm.c1.milkomeda.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"milkAda\",\r\n            \"symbol\": \"mADA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://milkomeda.com\",\r\n        \"shortName\": \"milkAda\",\r\n        \"chainId\": 2001,\r\n        \"networkId\": 2001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer-mainnet-cardano-evm.c1.milkomeda.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CloudWalk Testnet\",\r\n        \"chain\": \"CloudWalk Testnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CloudWalk Native Token\",\r\n            \"symbol\": \"CWN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cloudwalk.io\",\r\n        \"shortName\": \"cloudwalk_testnet\",\r\n        \"chainId\": 2008,\r\n        \"networkId\": 2008,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CloudWalk Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.cloudwalk.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CloudWalk Mainnet\",\r\n        \"chain\": \"CloudWalk Mainnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CloudWalk Native Token\",\r\n            \"symbol\": \"CWN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cloudwalk.io\",\r\n        \"shortName\": \"cloudwalk_mainnet\",\r\n        \"chainId\": 2009,\r\n        \"networkId\": 2009,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CloudWalk Mainnet Explorer\",\r\n                \"url\": \"https://explorer.mainnet.cloudwalk.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taycan Testnet\",\r\n        \"chain\": \"Taycan\",\r\n        \"rpc\": [\r\n            \"https://test-taycan.hupayx.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://ttaycan-faucet.hupayx.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-Shuffle\",\r\n            \"symbol\": \"tSFL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hupayx.io\",\r\n        \"shortName\": \"taycan-testnet\",\r\n        \"chainId\": 2023,\r\n        \"networkId\": 2023,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Taycan Explorer(Blockscout)\",\r\n                \"url\": \"https://evmscan-test.hupayx.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Taycan Cosmos Explorer\",\r\n                \"url\": \"https://cosmoscan-test.hupayx.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Findora Mainnet\",\r\n        \"chain\": \"Findora\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://prod-mainnet.prod.findora.org:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FRA\",\r\n            \"symbol\": \"FRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://findora.org/\",\r\n        \"shortName\": \"fra\",\r\n        \"chainId\": 2152,\r\n        \"networkId\": 2152,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"findorascan\",\r\n                \"url\": \"https://evm.findorascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Findora Testnet\",\r\n        \"chain\": \"Testnet-anvil\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://prod-testnet.prod.findora.org:8545/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FRA\",\r\n            \"symbol\": \"FRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://findora.org/\",\r\n        \"shortName\": \"findora-testnet\",\r\n        \"chainId\": 2153,\r\n        \"networkId\": 2153,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"findorascan\",\r\n                \"url\": \"https://testnet-anvil.evm.findorascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kava EVM Testnet\",\r\n        \"chain\": \"KAVA\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://evm.evm-alpha.kava.io\",\r\n            \"wss://evm-ws.evm-alpha.kava.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.kava.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kava\",\r\n            \"symbol\": \"KAVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.kava.io\",\r\n        \"shortName\": \"kava\",\r\n        \"chainId\": 2221,\r\n        \"networkId\": 2221,\r\n        \"icon\": \"kava\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kava Testnet Explorer\",\r\n                \"url\": \"https://explorer.evm-alpha.kava.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"kava\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VChain Mainnet\",\r\n        \"chain\": \"VChain\",\r\n        \"rpc\": [\r\n            \"https://bc.vcex.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VNDT\",\r\n            \"symbol\": \"VNDT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bo.vcex.xyz/\",\r\n        \"shortName\": \"VChain\",\r\n        \"chainId\": 2223,\r\n        \"networkId\": 2223,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VChain Scan\",\r\n                \"url\": \"https://scan.vcex.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TechPay Mainnet\",\r\n        \"chain\": \"TPC\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://api.techpay.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TechPay\",\r\n            \"symbol\": \"TPC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://techpay.io/\",\r\n        \"shortName\": \"tpc\",\r\n        \"chainId\": 2569,\r\n        \"networkId\": 2569,\r\n        \"icon\": \"techpay\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tpcscan\",\r\n                \"url\": \"https://tpcscan.com\",\r\n                \"icon\": \"techpay\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EZChain C-Chain Mainnet\",\r\n        \"chain\": \"EZC\",\r\n        \"rpc\": [\r\n            \"https://api.ezchain.com/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EZChain\",\r\n            \"symbol\": \"EZC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ezchain.com\",\r\n        \"shortName\": \"EZChain\",\r\n        \"chainId\": 2612,\r\n        \"networkId\": 2612,\r\n        \"icon\": \"ezchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ezchain\",\r\n                \"url\": \"https://cchain-explorer.ezchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EZChain C-Chain Testnet\",\r\n        \"chain\": \"EZC\",\r\n        \"rpc\": [\r\n            \"https://testnet-api.ezchain.com/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.ezchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EZChain\",\r\n            \"symbol\": \"EZC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ezchain.com\",\r\n        \"shortName\": \"Fuji-EZChain\",\r\n        \"chainId\": 2613,\r\n        \"networkId\": 2613,\r\n        \"icon\": \"ezchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ezchain\",\r\n                \"url\": \"https://testnet-cchain-explorer.ezchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CENNZnet Rata\",\r\n        \"chain\": \"CENNZnet\",\r\n        \"network\": \"rata\",\r\n        \"rpc\": [\r\n            \"https://rata.centrality.me/public\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app-faucet.centrality.me\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CPAY\",\r\n            \"symbol\": \"CPAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cennz.net\",\r\n        \"shortName\": \"cennz-r\",\r\n        \"chainId\": 3000,\r\n        \"networkId\": 3000,\r\n        \"icon\": \"cennz\"\r\n    },\r\n    {\r\n        \"name\": \"CENNZnet Nikau\",\r\n        \"chain\": \"CENNZnet\",\r\n        \"network\": \"nikau\",\r\n        \"rpc\": [\r\n            \"https://nikau.centrality.me/public\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app-faucet.centrality.me\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CPAY\",\r\n            \"symbol\": \"CPAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cennz.net\",\r\n        \"shortName\": \"cennz-n\",\r\n        \"chainId\": 3001,\r\n        \"networkId\": 3001,\r\n        \"icon\": \"cennz\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UNcover\",\r\n                \"url\": \"https://www.uncoverexplorer.com/?network=Nikau\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Web3Q Galileo\",\r\n        \"chain\": \"Web3Q\",\r\n        \"rpc\": [\r\n            \"https://galileo.web3q.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Web3Q\",\r\n            \"symbol\": \"W3Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://galileo.web3q.io/home.w3q/\",\r\n        \"shortName\": \"w3q-g\",\r\n        \"chainId\": 3334,\r\n        \"networkId\": 3334,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"w3q-galileo\",\r\n                \"url\": \"https://explorer.galileo.web3q.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Paribu Net Mainnet\",\r\n        \"chain\": \"PRB\",\r\n        \"network\": \"Paribu Net\",\r\n        \"rpc\": [\r\n            \"https://rpc.paribu.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PRB\",\r\n            \"symbol\": \"PRB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://net.paribu.com\",\r\n        \"shortName\": \"prb\",\r\n        \"chainId\": 3400,\r\n        \"networkId\": 3400,\r\n        \"icon\": \"prb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Paribu Net Explorer\",\r\n                \"url\": \"https://explorer.paribu.network\",\r\n                \"icon\": \"explorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Paribu Net Testnet\",\r\n        \"chain\": \"PRB\",\r\n        \"network\": \"Paribu Net\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.paribuscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.paribuscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PRB\",\r\n            \"symbol\": \"PRB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://net.paribu.com\",\r\n        \"shortName\": \"prbtestnet\",\r\n        \"chainId\": 3500,\r\n        \"networkId\": 3500,\r\n        \"icon\": \"prb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Paribu Net Testnet Explorer\",\r\n                \"url\": \"https://testnet.paribuscan.com\",\r\n                \"icon\": \"explorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DYNO Mainnet\",\r\n        \"chain\": \"DYNO\",\r\n        \"rpc\": [\r\n            \"https://api.dynoprotocol.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dynoscan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DYNO Token\",\r\n            \"symbol\": \"DYNO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dynoprotocol.com\",\r\n        \"shortName\": \"dyno\",\r\n        \"chainId\": 3966,\r\n        \"networkId\": 3966,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DYNO Explorer\",\r\n                \"url\": \"https://dynoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DYNO Testnet\",\r\n        \"chain\": \"DYNO\",\r\n        \"rpc\": [\r\n            \"https://tapi.dynoprotocol.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dynoscan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DYNO Token\",\r\n            \"symbol\": \"tDYNO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dynoprotocol.com\",\r\n        \"shortName\": \"tdyno\",\r\n        \"chainId\": 3967,\r\n        \"networkId\": 3967,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DYNO Explorer\",\r\n                \"url\": \"https://testnet.dynoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AIOZ Network Testnet\",\r\n        \"chain\": \"AIOZ\",\r\n        \"network\": \"testnet\",\r\n        \"icon\": \"aioz\",\r\n        \"rpc\": [\r\n            \"https://eth-ds.testnet.aioz.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testAIOZ\",\r\n            \"symbol\": \"AIOZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aioz.network\",\r\n        \"shortName\": \"aioz-testnet\",\r\n        \"chainId\": 4102,\r\n        \"networkId\": 4102,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AIOZ Network Testnet Explorer\",\r\n                \"url\": \"https://testnet.explorer.aioz.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PHI Network\",\r\n        \"chain\": \"PHI\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc1.phi.network\",\r\n            \"https://rpc2.phi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PHI\",\r\n            \"symbol\": \"Φ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://phi.network\",\r\n        \"shortName\": \"PHI\",\r\n        \"chainId\": 4181,\r\n        \"networkId\": 4181,\r\n        \"icon\": \"phi\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PHI Explorer\",\r\n                \"url\": \"https://explorer.phi.network\",\r\n                \"icon\": \"phi\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Venidium Testnet\",\r\n        \"chain\": \"XVM\",\r\n        \"rpc\": [\r\n            \"https://rpc-evm-testnet.venidium.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Venidium\",\r\n            \"symbol\": \"XVM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://venidium.io\",\r\n        \"shortName\": \"xvm\",\r\n        \"chainId\": 4918,\r\n        \"networkId\": 4918,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Venidium EVM Testnet Explorer\",\r\n                \"url\": \"https://evm-testnet.venidiumexplorer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nahmii Mainnet\",\r\n        \"chain\": \"Nahmii\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://l2.nahmii.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nahmii.io\",\r\n        \"shortName\": \"Nahmii\",\r\n        \"chainId\": 5551,\r\n        \"networkId\": 5551,\r\n        \"icon\": \"nahmii\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nahmii mainnet explorer\",\r\n                \"url\": \"https://explorer.nahmii.io\",\r\n                \"icon\": \"nahmii\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.nahmii.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Nahmii Testnet\",\r\n        \"chain\": \"Nahmii\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://l2.testnet.nahmii.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nahmii.io\",\r\n        \"shortName\": \"Nahmii testnet\",\r\n        \"chainId\": 5553,\r\n        \"networkId\": 5553,\r\n        \"icon\": \"nahmii\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.testnet.nahmii.io\",\r\n                \"icon\": \"nahmii\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-3\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.nahmii.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Digest Swarm Chain\",\r\n        \"chain\": \"DSC\",\r\n        \"icon\": \"swarmchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.digestgroup.ltd\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DigestCoin\",\r\n            \"symbol\": \"DGCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://digestgroup.ltd\",\r\n        \"shortName\": \"dgcc\",\r\n        \"chainId\": 5777,\r\n        \"networkId\": 5777,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"swarmexplorer\",\r\n                \"url\": \"https://explorer.digestgroup.ltd\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mammoth Mainnet\",\r\n        \"title\": \"Mammoth Chain\",\r\n        \"chain\": \"MMT\",\r\n        \"rpc\": [\r\n            \"https://dataseed.mmtscan.io\",\r\n            \"https://dataseed1.mmtscan.io\",\r\n            \"https://dataseed2.mmtscan.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mmtscan.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mammoth Token\",\r\n            \"symbol\": \"MMT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mmtchain.io/\",\r\n        \"shortName\": \"mmt\",\r\n        \"chainId\": 8898,\r\n        \"networkId\": 8898,\r\n        \"icon\": \"mmt\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mmtscan\",\r\n                \"url\": \"https://mmtscan.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"mmt\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CryptoCoinPay\",\r\n        \"chain\": \"CCP\",\r\n        \"rpc\": [\r\n            \"http://node106.cryptocoinpay.info:8545\",\r\n            \"ws://node106.cryptocoinpay.info:8546\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"ccp\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CryptoCoinPay\",\r\n            \"symbol\": \"CCP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cryptocoinpay.co\",\r\n        \"shortName\": \"CCP\",\r\n        \"chainId\": 10823,\r\n        \"networkId\": 10823,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CCP Explorer\",\r\n                \"url\": \"https://cryptocoinpay.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Quadrans Blockchain\",\r\n        \"chain\": \"QDC\",\r\n        \"network\": \"mainnet\",\r\n        \"icon\": \"quadrans\",\r\n        \"rpc\": [\r\n            \"https://rpc.quadrans.io\",\r\n            \"https://rpcna.quadrans.io\",\r\n            \"https://explorer.quadrans.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quadrans Coin\",\r\n            \"symbol\": \"QDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://quadrans.io\",\r\n        \"shortName\": \"quadrans\",\r\n        \"chainId\": 10946,\r\n        \"networkId\": 10946,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.quadrans.io\",\r\n                \"icon\": \"quadrans\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Quadrans Blockchain Testnet\",\r\n        \"chain\": \"tQDC\",\r\n        \"network\": \"testnet\",\r\n        \"icon\": \"quadrans\",\r\n        \"rpc\": [\r\n            \"https://rpctest.quadrans.io\",\r\n            \"https://explorer.testnet.quadrans.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucetpage.quadrans.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quadrans Testnet Coin\",\r\n            \"symbol\": \"tQDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://quadrans.io\",\r\n        \"shortName\": \"quadranstestnet\",\r\n        \"chainId\": 10947,\r\n        \"networkId\": 10947,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.testnet.quadrans.io\",\r\n                \"icon\": \"quadrans\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CENNZnet Azalea\",\r\n        \"chain\": \"CENNZnet\",\r\n        \"network\": \"azalea\",\r\n        \"rpc\": [\r\n            \"https://cennznet.unfrastructure.io/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CPAY\",\r\n            \"symbol\": \"CPAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cennz.net\",\r\n        \"shortName\": \"cennz-a\",\r\n        \"chainId\": 21337,\r\n        \"networkId\": 21337,\r\n        \"icon\": \"cennz\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UNcover\",\r\n                \"url\": \"https://uncoverexplorer.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"omChain Mainnet\",\r\n        \"chain\": \"OML\",\r\n        \"icon\": \"omlira\",\r\n        \"rpc\": [\r\n            \"https://seed.omchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"omChain\",\r\n            \"symbol\": \"OMC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://omchain.io\",\r\n        \"shortName\": \"omc\",\r\n        \"chainId\": 21816,\r\n        \"networkId\": 21816,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"omChain Explorer\",\r\n                \"url\": \"https://explorer.omchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taycan\",\r\n        \"chain\": \"Taycan\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://taycan-rpc.hupayx.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"shuffle\",\r\n            \"symbol\": \"SFL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hupayx.io\",\r\n        \"shortName\": \"SFL\",\r\n        \"chainId\": 22023,\r\n        \"networkId\": 22023,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Taycan Explorer(Blockscout)\",\r\n                \"url\": \"https://taycan-evmscan.hupayx.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Taycan Cosmos Explorer(BigDipper)\",\r\n                \"url\": \"https://taycan-cosmoscan.hupayx.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OasisChain Mainnet\",\r\n        \"chain\": \"OasisChain\",\r\n        \"rpc\": [\r\n            \"https://rpc1.oasischain.io\",\r\n            \"https://rpc2.oasischain.io\",\r\n            \"https://rpc3.oasischain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.oasischain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAC\",\r\n            \"symbol\": \"OAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan.oasischain.io\",\r\n        \"shortName\": \"OAC\",\r\n        \"chainId\": 26863,\r\n        \"networkId\": 26863,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OasisChain Explorer\",\r\n                \"url\": \"https://scan.oasischain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Piece testnet\",\r\n        \"chain\": \"PieceNetwork\",\r\n        \"icon\": \"piecechain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc0.piecenetwork.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://piecenetwork.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ECE\",\r\n            \"symbol\": \"ECE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://piecenetwork.com\",\r\n        \"shortName\": \"Piece\",\r\n        \"chainId\": 30067,\r\n        \"networkId\": 30067,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Piece Scan\",\r\n                \"url\": \"https://testnet-scan.piecenetwork.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitgert Mainnet\",\r\n        \"chain\": \"Brise\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.brisescan.com\",\r\n            \"https://chainrpc.com\",\r\n            \"https://serverrpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitrise Token\",\r\n            \"symbol\": \"Brise\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitgert.com/\",\r\n        \"shortName\": \"Brise\",\r\n        \"chainId\": 32520,\r\n        \"networkId\": 32520,\r\n        \"icon\": \"brise\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Brise Scan\",\r\n                \"url\": \"https://brisescan.com\",\r\n                \"icon\": \"brise\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autobahn Network\",\r\n        \"chain\": \"TXL\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.autobahn.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TXL\",\r\n            \"symbol\": \"TXL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autobahn.network\",\r\n        \"shortName\": \"Autobahn Network\",\r\n        \"chainId\": 45000,\r\n        \"networkId\": 45000,\r\n        \"icon\": \"autobahn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autobahn explorer\",\r\n                \"url\": \"https://explorer.autobahn.network\",\r\n                \"icon\": \"autobahn\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DFK Chain\",\r\n        \"chain\": \"DFK\",\r\n        \"icon\": \"dfk\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Jewel\",\r\n            \"symbol\": \"JEWEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defikingdoms.com\",\r\n        \"shortName\": \"DFK\",\r\n        \"chainId\": 53935,\r\n        \"networkId\": 53935,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ethernal\",\r\n                \"url\": \"https://explorer.dfkchain.com\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MultiVAC Mainnet\",\r\n        \"chain\": \"MultiVAC\",\r\n        \"icon\": \"multivac\",\r\n        \"rpc\": [\r\n            \"https://rpc.mtv.ac\",\r\n            \"https://rpc-eu.mtv.ac\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MultiVAC\",\r\n            \"symbol\": \"MTV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mtv.ac\",\r\n        \"shortName\": \"mtv\",\r\n        \"chainId\": 62621,\r\n        \"networkId\": 62621,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MultiVAC Explorer\",\r\n                \"url\": \"https://e.mtv.ac\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Condrieu\",\r\n        \"title\": \"Ethereum Verkle Testnet Condrieu\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.condrieu.ethdevops.io:8545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.condrieu.ethdevops.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Condrieu Testnet Ether\",\r\n            \"symbol\": \"CTE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://condrieu.ethdevops.io\",\r\n        \"shortName\": \"cndr\",\r\n        \"chainId\": 69420,\r\n        \"networkId\": 69420,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Condrieu explorer\",\r\n                \"url\": \"https://explorer.condrieu.ethdevops.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Godwoken Testnet (V1.1)\",\r\n        \"chain\": \"GWT\",\r\n        \"rpc\": [\r\n            \"https://godwoken-testnet-v1.ckbapp.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.bridge.godwoken.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CKB\",\r\n            \"symbol\": \"CKB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nervos.org\",\r\n        \"shortName\": \"gw-testnet-v1\",\r\n        \"chainId\": 71401,\r\n        \"networkId\": 71401,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GWScan Block Explorer\",\r\n                \"url\": \"https://v1.aggron.gwscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Godwoken Mainnet\",\r\n        \"chain\": \"GWT\",\r\n        \"rpc\": [\r\n            \"https://godwoken-testnet-v1.ckbapp.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.bridge.godwoken.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CKB\",\r\n            \"symbol\": \"CKB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nervos.org\",\r\n        \"shortName\": \"gw-mainnet-v1\",\r\n        \"chainId\": 71402,\r\n        \"networkId\": 71402,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GWScan Block Explorer\",\r\n                \"url\": \"https://v1.aggron.gwscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Milkomeda C1 Testnet\",\r\n        \"chain\": \"milkTAda\",\r\n        \"icon\": \"milkomeda\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-devnet-cardano-evm.c1.milkomeda.com\",\r\n            \"wss://rpc-devnet-cardano-evm.c1.milkomeda.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"milkTAda\",\r\n            \"symbol\": \"mTAda\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://milkomeda.com\",\r\n        \"shortName\": \"milkTAda\",\r\n        \"chainId\": 200101,\r\n        \"networkId\": 200101,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer-devnet-cardano-evm.c1.milkomeda.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haymo Testnet\",\r\n        \"chain\": \"tHYM\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet1.haymo.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HAYMO\",\r\n            \"symbol\": \"HYM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://haymoswap.web.app/\",\r\n        \"shortName\": \"hym\",\r\n        \"chainId\": 234666,\r\n        \"networkId\": 234666\r\n    },\r\n    {\r\n        \"name\": \"Dexalot Testnet\",\r\n        \"chain\": \"DEXALOT\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/dexalot/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfaucet.dexalot-test.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dexalot\",\r\n            \"symbol\": \"ALOT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dexalot.com\",\r\n        \"shortName\": \"Dexalot\",\r\n        \"chainId\": 432201,\r\n        \"networkId\": 432201,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Avalanche Subnet Explorer\",\r\n                \"url\": \"https://subnets.avax.network/dexalot/testnet/explorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Weelink Testnet\",\r\n        \"chain\": \"WLK\",\r\n        \"rpc\": [\r\n            \"https://weelinknode1c.gw002.oneitfarm.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.weelink.gw002.oneitfarm.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Weelink Chain Token\",\r\n            \"symbol\": \"tWLK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://weelink.cloud\",\r\n        \"shortName\": \"wlkt\",\r\n        \"chainId\": 444900,\r\n        \"networkId\": 444900,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"weelink-testnet\",\r\n                \"url\": \"https://weelink.cloud/#/blockView/overview\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpenChain Mainnet\",\r\n        \"chain\": \"OpenChain\",\r\n        \"rpc\": [\r\n            \"https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OpenCoin\",\r\n            \"symbol\": \"OPC\",\r\n            \"decimals\": 10\r\n        },\r\n        \"infoURL\": \"https://www.openchain.live\",\r\n        \"shortName\": \"oc\",\r\n        \"chainId\": 474142,\r\n        \"networkId\": 474142,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SIDE SCAN\",\r\n                \"url\": \"https://sidescan.luniverse.io/1641349324562974539\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CMP-Testnet\",\r\n        \"chain\": \"CMP\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://galaxy.block.caduceus.foundation\",\r\n            \"wss://galaxy.block.caduceus.foundation\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://dev.caduceus.foundation/testNetwork\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Caduceus Testnet Token\",\r\n            \"symbol\": \"CMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://caduceus.foundation/\",\r\n        \"shortName\": \"cmp\",\r\n        \"chainId\": 512512,\r\n        \"networkId\": 512512,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Galaxy Scan\",\r\n                \"url\": \"https://galaxy.scan.caduceus.foundation\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kiln\",\r\n        \"chain\": \"ETH\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.kiln.themerge.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.kiln.themerge.dev\",\r\n            \"https://kiln-faucet.pk910.de\",\r\n            \"https://kilnfaucet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kiln.themerge.dev/\",\r\n        \"shortName\": \"kiln\",\r\n        \"chainId\": 1337802,\r\n        \"networkId\": 1337802,\r\n        \"icon\": \"ethereum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kiln Explorer\",\r\n                \"url\": \"https://explorer.kiln.themerge.dev\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PlatON Dev Testnet\",\r\n        \"chain\": \"PlatON\",\r\n        \"rpc\": [\r\n            \"https://devnetopenapi2.platon.network/rpc\",\r\n            \"wss://devnetopenapi2.platon.network/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAT\",\r\n            \"symbol\": \"lat\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.platon.network\",\r\n        \"shortName\": \"platondev\",\r\n        \"chainId\": 2203181,\r\n        \"networkId\": 1,\r\n        \"icon\": \"platon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PlatON explorer\",\r\n                \"url\": \"https://devnetscan.platon.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SmartMesh Mainnet\",\r\n        \"chain\": \"Spectrum\",\r\n        \"rpc\": [\r\n            \"https://jsonapi1.smartmesh.cn\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SmartMesh Native Token\",\r\n            \"symbol\": \"SMT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://smartmesh.io\",\r\n        \"shortName\": \"spectrum\",\r\n        \"chainId\": 20180430,\r\n        \"networkId\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"spectrum\",\r\n                \"url\": \"https://spectrum.pub\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cube Chain Mainnet\",\r\n        \"chain\": \"Cube\",\r\n        \"icon\": \"cube\",\r\n        \"rpc\": [\r\n            \"https://http-mainnet.cube.network\",\r\n            \"wss://ws-mainnet.cube.network\",\r\n            \"https://http-mainnet-sg.cube.network\",\r\n            \"wss://ws-mainnet-sg.cube.network\",\r\n            \"https://http-mainnet-us.cube.network\",\r\n            \"wss://ws-mainnet-us.cube.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cube Chain Native Token\",\r\n            \"symbol\": \"CUBE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cube.network\",\r\n        \"shortName\": \"cube\",\r\n        \"chainId\": 1818,\r\n        \"networkId\": 1818,\r\n        \"slip44\": 1818,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"cube-scan\",\r\n                \"url\": \"https://cubescan.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/0.png\",\r\n            \"ic_chain_unselect_dark\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/2.png\",\r\n            \"color_chain_bg\": \"0x3FC3C3\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Cube Chain Testnet\",\r\n        \"chain\": \"Cube\",\r\n        \"rpc\": [\r\n            \"https://http-testnet.cube.network\",\r\n            \"wss://ws-testnet.cube.network\",\r\n            \"https://http-testnet-sg.cube.network\",\r\n            \"wss://ws-testnet-sg.cube.network\",\r\n            \"https://http-testnet-jp.cube.network\",\r\n            \"wss://ws-testnet-jp.cube.network\",\r\n            \"https://http-testnet-us.cube.network\",\r\n            \"wss://ws-testnet-us.cube.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.cube.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cube Chain Test Native Token\",\r\n            \"symbol\": \"CUBET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cube.network\",\r\n        \"shortName\": \"cubet\",\r\n        \"chainId\": 1819,\r\n        \"networkId\": 1819,\r\n        \"slip44\": 1819,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"cubetest-scan\",\r\n                \"url\": \"https://testnet.cubescan.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Godwoken Testnet (V1)\",\r\n        \"chain\": \"GWT\",\r\n        \"rpc\": [\r\n            \"https://godwoken-testnet-web3-v1-rpc.ckbapp.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://homura.github.io/light-godwoken\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CKB\",\r\n            \"symbol\": \"CKB\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://www.nervos.org\",\r\n        \"shortName\": \"gw-testnet-v1-deprecated\",\r\n        \"chainId\": 868455272153094,\r\n        \"networkId\": 868455272153094,\r\n        \"status\": \"deprecated\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GWScan Block Explorer\",\r\n                \"url\": \"https://v1.aggron.gwscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dxchain Mainnet\",\r\n        \"chain\": \"Dxchain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.dxchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dxchain\",\r\n            \"symbol\": \"DX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dxchain.com/\",\r\n        \"shortName\": \"dx\",\r\n        \"chainId\": 36,\r\n        \"networkId\": 36\r\n    },\r\n    {\r\n        \"name\": \"Darwinia Network\",\r\n        \"chain\": \"darwinia\",\r\n        \"network\": \"darwinia network\",\r\n        \"rpc\": [\r\n            \"https://darwinia-rpc.darwinia.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Darwinia Network Native Token\",\r\n            \"symbol\": \"RING\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://darwinia.network/\",\r\n        \"shortName\": \"darwinia\",\r\n        \"chainId\": 46,\r\n        \"networkId\": 46,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"url\": \"https://darwinia.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DxChain Testnet\",\r\n        \"chain\": \"DxChain\",\r\n        \"rpc\": [\r\n            \"https://testnet-http.dxchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dxscan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DxChain Testnet\",\r\n            \"symbol\": \"DX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.dxscan.io/\",\r\n        \"shortName\": \"dxc\",\r\n        \"chainId\": 72,\r\n        \"networkId\": 72\r\n    },\r\n    {\r\n        \"name\": \"Kaiba Lightning Chain Testnet\",\r\n        \"chain\": \"tKLC\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://klc.live/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kaiba Testnet Token\",\r\n            \"symbol\": \"tKAIBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kaibadefi.com\",\r\n        \"shortName\": \"tklc\",\r\n        \"chainId\": 104,\r\n        \"networkId\": 104,\r\n        \"icon\": \"kaiba\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kaibascan\",\r\n                \"url\": \"https://kaibascan.io\",\r\n                \"icon\": \"kaibascan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AME Chain Mainnet\",\r\n        \"chain\": \"AME\",\r\n        \"rpc\": [\r\n            \"https://node1.amechain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AME\",\r\n            \"symbol\": \"AME\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://amechain.io/\",\r\n        \"shortName\": \"ame\",\r\n        \"chainId\": 180,\r\n        \"networkId\": 180,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AME Scan\",\r\n                \"url\": \"https://amescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Crypto Emergency\",\r\n        \"chain\": \"CEM\",\r\n        \"rpc\": [\r\n            \"https://cemchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Crypto Emergency\",\r\n            \"symbol\": \"CEM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cemblockchain.com/\",\r\n        \"shortName\": \"cem\",\r\n        \"chainId\": 193,\r\n        \"networkId\": 193,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"cemscan\",\r\n                \"url\": \"https://cemscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SX Network Mainnet\",\r\n        \"chain\": \"SX\",\r\n        \"icon\": \"SX\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.sx.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SX Network\",\r\n            \"symbol\": \"SX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sx.technology\",\r\n        \"shortName\": \"SX\",\r\n        \"chainId\": 416,\r\n        \"networkId\": 416,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SX Network Explorer\",\r\n                \"url\": \"https://explorer.sx.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XT Smart Chain Mainnet\",\r\n        \"chain\": \"XSC\",\r\n        \"icon\": \"xsc\",\r\n        \"rpc\": [\r\n            \"https://datarpc1.xsc.pub\",\r\n            \"https://datarpc2.xsc.pub\",\r\n            \"https://datarpc3.xsc.pub\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://xsc.pub/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XT Smart Chain Native Token\",\r\n            \"symbol\": \"XT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xsc.pub/\",\r\n        \"shortName\": \"xt\",\r\n        \"chainId\": 520,\r\n        \"networkId\": 1024,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"xscscan\",\r\n                \"url\": \"https://xscscan.pub\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"F(x)Core Mainnet Network\",\r\n        \"chain\": \"Fxcore\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://fx-json-web3.functionx.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Function X\",\r\n            \"symbol\": \"FX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://functionx.io/\",\r\n        \"shortName\": \"f(x)Core\",\r\n        \"chainId\": 530,\r\n        \"networkId\": 530,\r\n        \"icon\": \"fxcore\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FunctionX Explorer\",\r\n                \"url\": \"https://fx-evm.functionx.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SX Network Testnet\",\r\n        \"chain\": \"SX\",\r\n        \"icon\": \"SX\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.toronto.sx.technology\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.toronto.sx.technology\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SX Network\",\r\n            \"symbol\": \"SX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sx.technology\",\r\n        \"shortName\": \"SX-Testnet\",\r\n        \"chainId\": 647,\r\n        \"networkId\": 647,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SX Network Toronto Explorer\",\r\n                \"url\": \"https://explorer.toronto.sx.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Portal Fantasy Chain Test\",\r\n        \"chain\": \"PF\",\r\n        \"icon\": \"pf\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/portal-fantasy/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Portal Fantasy Token\",\r\n            \"symbol\": \"PFT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://portalfantasy.io\",\r\n        \"shortName\": \"PFTEST\",\r\n        \"chainId\": 808,\r\n        \"networkId\": 808,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Portal Fantasy Chain\",\r\n        \"chain\": \"PF\",\r\n        \"icon\": \"pf\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Portal Fantasy Token\",\r\n            \"symbol\": \"PFT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://portalfantasy.io\",\r\n        \"shortName\": \"PF\",\r\n        \"chainId\": 909,\r\n        \"networkId\": 909,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"TOP Mainnet EVM\",\r\n        \"chain\": \"TOP\",\r\n        \"icon\": \"top\",\r\n        \"rpc\": [\r\n            \"ethapi.topnetwork.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.topnetwork.org/\",\r\n        \"shortName\": \"top_evm\",\r\n        \"chainId\": 980,\r\n        \"networkId\": 0,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"topscan.dev\",\r\n                \"url\": \"https://www.topscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TOP Mainnet\",\r\n        \"chain\": \"TOP\",\r\n        \"icon\": \"top\",\r\n        \"rpc\": [\r\n            \"topapi.topnetwork.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TOP\",\r\n            \"symbol\": \"TOP\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://www.topnetwork.org/\",\r\n        \"shortName\": \"top\",\r\n        \"chainId\": 989,\r\n        \"networkId\": 0,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"topscan.dev\",\r\n                \"url\": \"https://www.topscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GTON Mainnet\",\r\n        \"chain\": \"GTON\",\r\n        \"rpc\": [\r\n            \"https://rpc.gton.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GCD\",\r\n            \"symbol\": \"GCD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gton.capital\",\r\n        \"shortName\": \"gton\",\r\n        \"chainId\": 1000,\r\n        \"networkId\": 1000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GTON Network Explorer\",\r\n                \"url\": \"https://explorer.gton.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"OM Platform Mainnet\",\r\n        \"chain\": \"omplatform\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-cnx.omplatform.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OMCOIN\",\r\n            \"symbol\": \"OM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://omplatform.com/\",\r\n        \"shortName\": \"om\",\r\n        \"chainId\": 1246,\r\n        \"networkId\": 1246,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OMSCAN - Expenter\",\r\n                \"url\": \"https://omscan.omplatform.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba Network Bobabase\",\r\n        \"chain\": \"Bobabase\",\r\n        \"rpc\": [\r\n            \"https://bobabase.boba.network\",\r\n            \"wss://wss.bobabase.boba.network\",\r\n            \"https://replica.bobabase.boba.network\",\r\n            \"wss://replica-wss.bobabase.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Bobabase\",\r\n        \"chainId\": 1297,\r\n        \"networkId\": 1297,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://blockexplorer.bobabase.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AIA Mainnet\",\r\n        \"chainId\": 1319,\r\n        \"shortName\": \"aia\",\r\n        \"chain\": \"AIA Chain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1319,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AIA Mainnet\",\r\n            \"symbol\": \"AIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://aia-dataseed1.aiachain.org\",\r\n            \"https://aia-dataseed2.aiachain.org\",\r\n            \"https://aia-dataseed3.aiachain.org\",\r\n            \"https://aia-dataseed4.aiachain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.aiachain.org\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://images.aiachain.org/AIA/AIA1.png\",\r\n            \"ic_chain_unselect\": \"https://images.aiachain.org/AIA/AIA2.png\",\r\n            \"color_chain_bg\": \"0x080134\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AIA Chain Explorer Mainnet\",\r\n                \"url\": \"https://aiascan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AIA Testnet\",\r\n        \"chainId\": 1320,\r\n        \"shortName\": \"aiatestnet\",\r\n        \"chain\": \"AIA Chain\",\r\n        \"network\": \"testnet\",\r\n        \"networkId\": 1320,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AIA Testnet\",\r\n            \"symbol\": \"AIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://aia-dataseed1-testnet.aiachain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://aia-faucet-testnet.aiachain.org\"\r\n        ],\r\n        \"infoURL\": \"https://www.aiachain.org\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://images.aiachain.org/AIA/AIA1-test.png\",\r\n            \"ic_chain_unselect\": \"https://images.aiachain.org/AIA/AIA2-test.png\",\r\n            \"color_chain_bg\": \"0xA1473B\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AIA Chain Explorer Testnet\",\r\n                \"url\": \"https://testnet.aiascan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kava EVM\",\r\n        \"chain\": \"KAVA\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://evm.kava.io\",\r\n            \"https://evm2.kava.io\",\r\n            \"wss://wevm.kava.io\",\r\n            \"wss://wevm2.kava.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kava\",\r\n            \"symbol\": \"KAVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.kava.io\",\r\n        \"shortName\": \"kava\",\r\n        \"chainId\": 2222,\r\n        \"networkId\": 2222,\r\n        \"icon\": \"kava\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kava EVM Explorer\",\r\n                \"url\": \"https://explorer.kava.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"kava\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"JFIN Chain\",\r\n        \"chain\": \"JFIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.jfinchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JFIN Coin\",\r\n            \"symbol\": \"jfin\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://jfinchain.com\",\r\n        \"shortName\": \"jfin\",\r\n        \"chainId\": 3501,\r\n        \"networkId\": 3501,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JFIN Chain Explorer\",\r\n                \"url\": \"https://exp.jfinchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Crossbell\",\r\n        \"chain\": \"Crossbell\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.crossbell.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.crossbell.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Crossbell Token\",\r\n            \"symbol\": \"CSB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://crossbell.io\",\r\n        \"shortName\": \"csb\",\r\n        \"chainId\": 3737,\r\n        \"networkId\": 3737,\r\n        \"icon\": \"crossbell\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Crossbell Explorer\",\r\n                \"url\": \"https://scan.crossbell.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"YuanChain Mainnet\",\r\n        \"chain\": \"YCC\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://mainnet.yuan.org/eth\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"YCC\",\r\n            \"symbol\": \"YCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.yuan.org\",\r\n        \"shortName\": \"ycc\",\r\n        \"chainId\": 3999,\r\n        \"networkId\": 3999,\r\n        \"icon\": \"ycc\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"YuanChain Explorer\",\r\n                \"url\": \"https://mainnet.yuan.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba Network Bobaopera Testnet\",\r\n        \"chain\": \"Bobaopera Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.bobaopera.boba.network\",\r\n            \"wss://wss.testnet.bobaopera.boba.network\",\r\n            \"https://replica.testnet.bobaopera.boba.network\",\r\n            \"wss://replica-wss.testnet.bobaopera.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Bobaopera Testnet\",\r\n        \"chainId\": 4051,\r\n        \"networkId\": 4051,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://blockexplorer.testnet.bobaopera.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Venidium Mainnet\",\r\n        \"chain\": \"XVM\",\r\n        \"icon\": \"venidium\",\r\n        \"rpc\": [\r\n            \"https://rpc.venidium.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Venidium\",\r\n            \"symbol\": \"XVM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://venidium.io\",\r\n        \"shortName\": \"xvm\",\r\n        \"chainId\": 4919,\r\n        \"networkId\": 4919,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Venidium Explorer\",\r\n                \"url\": \"https://evm.venidiumexplorer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TLChain Network Mainnet\",\r\n        \"chain\": \"TLC\",\r\n        \"icon\": \"tlc\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.tlxscan.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TLChain Network\",\r\n            \"symbol\": \"TLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tlchain.network/\",\r\n        \"shortName\": \"tlc\",\r\n        \"chainId\": 5177,\r\n        \"networkId\": 5177,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TLChain Explorer\",\r\n                \"url\": \"https://explorer.tlchain.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tomb Chain Mainnet\",\r\n        \"chain\": \"Tomb Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.tombchain.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tomb\",\r\n            \"symbol\": \"TOMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tombchain.com/\",\r\n        \"shortName\": \"tombchain\",\r\n        \"chainId\": 6969,\r\n        \"networkId\": 6969,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tombscout\",\r\n                \"url\": \"https://tombscout.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-250\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://beta-bridge.lif3.com/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Ella the heart\",\r\n        \"chain\": \"ella\",\r\n        \"icon\": \"ella\",\r\n        \"rpc\": [\r\n            \"https://rpc.ella.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ella\",\r\n            \"symbol\": \"ELLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ella.network\",\r\n        \"shortName\": \"ELLA\",\r\n        \"chainId\": 7027,\r\n        \"networkId\": 7027,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ella\",\r\n                \"url\": \"https://ella.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rise of the Warbots Testnet\",\r\n        \"chain\": \"nmactest\",\r\n        \"rpc\": [\r\n            \"https://testnet1.riseofthewarbots.com\",\r\n            \"https://testnet2.riseofthewarbots.com\",\r\n            \"https://testnet3.riseofthewarbots.com\",\r\n            \"https://testnet4.riseofthewarbots.com\",\r\n            \"https://testnet5.riseofthewarbots.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nano Machines\",\r\n            \"symbol\": \"NMAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://riseofthewarbots.com/\",\r\n        \"shortName\": \"Rise of the Warbots Testnet\",\r\n        \"chainId\": 7777,\r\n        \"networkId\": 7777,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"avascan\",\r\n                \"url\": \"https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BerylBit Mainnet\",\r\n        \"chain\": \"BRB\",\r\n        \"rpc\": [\r\n            \"https://mainnet.berylbit.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://t.me/BerylBit\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BerylBit Chain Native Token\",\r\n            \"symbol\": \"BRB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.beryl-bit.com\",\r\n        \"shortName\": \"brb\",\r\n        \"chainId\": 9012,\r\n        \"networkId\": 9012,\r\n        \"icon\": \"berylbit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"berylbit-explorer\",\r\n                \"url\": \"https://explorer.berylbit.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IVAR Chain Testnet\",\r\n        \"chain\": \"IVAR\",\r\n        \"icon\": \"ivar\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.ivarex.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://tfaucet.ivarex.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tIvar\",\r\n            \"symbol\": \"tIVAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ivarex.com\",\r\n        \"shortName\": \"tivar\",\r\n        \"chainId\": 16888,\r\n        \"networkId\": 16888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ivarscan\",\r\n                \"url\": \"https://testnet.ivarscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Q Mainnet\",\r\n        \"chain\": \"Q\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.q.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Q token\",\r\n            \"symbol\": \"Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://q.org\",\r\n        \"shortName\": \"q\",\r\n        \"chainId\": 35441,\r\n        \"networkId\": 35441,\r\n        \"icon\": \"q\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Q explorer\",\r\n                \"url\": \"https://explorer.q.org\",\r\n                \"icon\": \"q\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Q Testnet\",\r\n        \"chain\": \"Q\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.qtestnet.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Q token\",\r\n            \"symbol\": \"Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://q.org/\",\r\n        \"shortName\": \"q-testnet\",\r\n        \"chainId\": 35443,\r\n        \"networkId\": 35443,\r\n        \"icon\": \"q\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Q explorer\",\r\n                \"url\": \"https://explorer.qtestnet.org\",\r\n                \"icon\": \"q\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum Nova\",\r\n        \"chainId\": 42170,\r\n        \"shortName\": \"arb-nova\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 42170,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://nova.arbitrum.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Arbitrum Nova Chain Explorer\",\r\n                \"url\": \"https://nova-explorer.arbitrum.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://arbitrum.io\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"GTON Testnet\",\r\n        \"chain\": \"GTON Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.gton.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GCD\",\r\n            \"symbol\": \"GCD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gton.capital\",\r\n        \"shortName\": \"tgton\",\r\n        \"chainId\": 50021,\r\n        \"networkId\": 50021,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GTON Testnet Network Explorer\",\r\n                \"url\": \"https://explorer.testnet.gton.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-3\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mixin Virtual Machine\",\r\n        \"chain\": \"MVM\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://geth.mvm.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mvm.dev\",\r\n        \"shortName\": \"mvm\",\r\n        \"chainId\": 73927,\r\n        \"networkId\": 73927,\r\n        \"icon\": \"mvm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mvmscan\",\r\n                \"url\": \"https://scan.mvm.dev\",\r\n                \"icon\": \"mvm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ResinCoin Mainnet\",\r\n        \"chain\": \"RESIN\",\r\n        \"rpc\": [\r\n            \"https://mainnet.resincoin.ml\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"RESIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://resincoin.ml\",\r\n        \"shortName\": \"resin\",\r\n        \"chainId\": 75000,\r\n        \"networkId\": 75000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ResinScan\",\r\n                \"url\": \"https://explorer.resincoin.ml\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IVAR Chain Mainnet\",\r\n        \"chain\": \"IVAR\",\r\n        \"icon\": \"ivar\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.ivarex.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.ivarex.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ivar\",\r\n            \"symbol\": \"IVAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ivarex.com\",\r\n        \"shortName\": \"ivar\",\r\n        \"chainId\": 88888,\r\n        \"networkId\": 88888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ivarscan\",\r\n                \"url\": \"https://ivarscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Crystaleum\",\r\n        \"chain\": \"crystal\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://evm.cryptocurrencydevs.org\",\r\n            \"https://rpc.crystaleum.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CRFI\",\r\n            \"symbol\": \"◈\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://crystaleum.org\",\r\n        \"shortName\": \"CRFI\",\r\n        \"chainId\": 103090,\r\n        \"networkId\": 1,\r\n        \"icon\": \"crystal\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.crystaleum.org\",\r\n                \"icon\": \"crystal\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ETND Chain Mainnets\",\r\n        \"chain\": \"ETND\",\r\n        \"network\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.node1.etnd.pro/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETND\",\r\n            \"symbol\": \"ETND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.etnd.pro\",\r\n        \"shortName\": \"ETND\",\r\n        \"chainId\": 131419,\r\n        \"networkId\": 131419,\r\n        \"icon\": \"ETND\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"etndscan\",\r\n                \"url\": \"https://scan.etnd.pro\",\r\n                \"icon\": \"ETND\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum Görli\",\r\n        \"title\": \"Arbitrum Görli Rollup Testnet\",\r\n        \"chainId\": 421613,\r\n        \"shortName\": \"arb-goerli\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 421613,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arbitrum Görli Ether\",\r\n            \"symbol\": \"AGOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://goerli-rollup.arbitrum.io/rpc/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://arbitrum.io/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Arbitrum Görli Rollup Explorer\",\r\n                \"url\": \"https://goerli-rollup-explorer.arbitrum.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"4GoodNetwork\",\r\n        \"chain\": \"4GN\",\r\n        \"rpc\": [\r\n            \"https://chain.deptofgood.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"APTA\",\r\n            \"symbol\": \"APTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bloqs4good.com\",\r\n        \"shortName\": \"bloqs4good\",\r\n        \"chainId\": 846000,\r\n        \"networkId\": 846000\r\n    },\r\n    {\r\n        \"name\": \"PlatON Dev Testnet2\",\r\n        \"chain\": \"PlatON\",\r\n        \"rpc\": [\r\n            \"https://devnet2openapi.platon.network/rpc\",\r\n            \"wss://devnet2openapi.platon.network/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://devnet2faucet.platon.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAT\",\r\n            \"symbol\": \"lat\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.platon.network\",\r\n        \"shortName\": \"platondev2\",\r\n        \"chainId\": 2206132,\r\n        \"networkId\": 1,\r\n        \"icon\": \"platon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PlatON explorer\",\r\n                \"url\": \"https://devnet2scan.platon.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CANTO\",\r\n        \"chain\": \"CANTO\",\r\n        \"rpc\": [\r\n            \"https://canto.evm.chandrastation.com\",\r\n            \"https://canto.slingshot.finance\",\r\n            \"https://jsonrpc.canto.nodestake.top\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CANTO\",\r\n            \"symbol\": \"CANTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://canto.io/\",\r\n        \"shortName\": \"CANTO\",\r\n        \"chainId\": 7700,\r\n        \"networkId\": 7700,\r\n        \"icon\": \"CANTO\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CANTO explorer\",\r\n                \"url\": \"https://evm.explorer.canto.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EthereumFair ETHF\",\r\n        \"chainId\": 513100,\r\n        \"shortName\": \"ETHF\",\r\n        \"chain\": \"ETHF\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 513100,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETHF\",\r\n            \"symbol\": \"ETHF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.etherfair.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ETHF scan\",\r\n                \"url\": \"https://explorer.etherfair.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ETHW Mainnet\",\r\n        \"chainId\": 10001,\r\n        \"shortName\": \"ETHW\",\r\n        \"chain\": \"ETHW\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 10001,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETHW\",\r\n            \"symbol\": \"ETHW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.ethereumpow.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://ethereumpow.org/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ETHW Scan\",\r\n                \"url\": \"https://mainnet.ethwscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Core Blockchain\",\r\n        \"chainId\": 1116,\r\n        \"shortName\": \"CORE\",\r\n        \"chain\": \"CORE\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 1116,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CORE\",\r\n            \"symbol\": \"CORE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.coredao.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Core Scan\",\r\n                \"url\": \"https://scan.coredao.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SeedCoin-Network\",\r\n        \"chain\": \"SeedCoin-Network\",\r\n        \"rpc\": [\r\n            \"https://node.seedcoin.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SeedCoin\",\r\n            \"symbol\": \"SEED\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.seedcoin.network/\",\r\n        \"shortName\": \"SEED\",\r\n        \"icon\": \"seedcoin\",\r\n        \"chainId\": 37,\r\n        \"networkId\": 37\r\n    },\r\n    {\r\n        \"name\": \"Unicorn Ultra Testnet\",\r\n        \"chain\": \"u2u\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.uniultra.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.uniultra.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Unicorn Ultra\",\r\n            \"symbol\": \"U2U\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://uniultra.xyz\",\r\n        \"shortName\": \"u2u\",\r\n        \"chainId\": 39,\r\n        \"networkId\": 39,\r\n        \"icon\": \"u2u\",\r\n        \"explorers\": [\r\n            {\r\n                \"icon\": \"u2u\",\r\n                \"name\": \"U2U Explorer\",\r\n                \"url\": \"https://testnet.uniultra.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ennothem Mainnet Proterozoic\",\r\n        \"chain\": \"ETMP\",\r\n        \"rpc\": [\r\n            \"https://rpc.etm.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ennothem\",\r\n            \"symbol\": \"ETMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://etm.network\",\r\n        \"shortName\": \"etmp\",\r\n        \"chainId\": 48,\r\n        \"networkId\": 48,\r\n        \"icon\": \"etmp\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"etmpscan\",\r\n                \"url\": \"https://etmscan.network\",\r\n                \"icon\": \"etmp\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ennothem Testnet Pioneer\",\r\n        \"chain\": \"ETMP\",\r\n        \"rpc\": [\r\n            \"https://rpc.pioneer.etm.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ennothem\",\r\n            \"symbol\": \"ETMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://etm.network\",\r\n        \"shortName\": \"etmpTest\",\r\n        \"chainId\": 49,\r\n        \"networkId\": 49,\r\n        \"icon\": \"etmp\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"etmp\",\r\n                \"url\": \"https://pioneer.etmscan.network\",\r\n                \"icon\": \"etmpscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"FNCY\",\r\n        \"chain\": \"FNCY\",\r\n        \"rpc\": [\r\n            \"https://fncy-seed1.fncy.world\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.fncy.world\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FNCY\",\r\n            \"symbol\": \"FNCY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fncyscan.fncy.world\",\r\n        \"shortName\": \"FNCY\",\r\n        \"chainId\": 73,\r\n        \"networkId\": 73,\r\n        \"icon\": \"fncy\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"fncy scan\",\r\n                \"url\": \"https://fncyscan.fncy.world\",\r\n                \"icon\": \"fncy\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Decimal Smart Chain Mainnet\",\r\n        \"chain\": \"DSC\",\r\n        \"rpc\": [\r\n            \"https://node.decimalchain.com/web3\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Decimal\",\r\n            \"symbol\": \"DEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://decimalchain.com\",\r\n        \"shortName\": \"DSC\",\r\n        \"chainId\": 75,\r\n        \"networkId\": 75,\r\n        \"icon\": \"dsc\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DSC Explorer Mainnet\",\r\n                \"url\": \"https://explorer.decimalchain.com\",\r\n                \"icon\": \"dsc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dehvo\",\r\n        \"chain\": \"Dehvo\",\r\n        \"rpc\": [\r\n            \"https://connect.dehvo.com\",\r\n            \"https://rpc.dehvo.com\",\r\n            \"https://rpc1.dehvo.com\",\r\n            \"https://rpc2.dehvo.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://buy.dehvo.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dehvo\",\r\n            \"symbol\": \"Deh\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dehvo.com\",\r\n        \"shortName\": \"deh\",\r\n        \"chainId\": 113,\r\n        \"networkId\": 113,\r\n        \"slip44\": 714,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dehvo Explorer\",\r\n                \"url\": \"https://explorer.dehvo.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Flare Testnet Coston2\",\r\n        \"chain\": \"FLR\",\r\n        \"icon\": \"coston2\",\r\n        \"rpc\": [\r\n            \"https://coston2-api.flare.network/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://coston2-faucet.towolabs.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Coston2 Flare\",\r\n            \"symbol\": \"C2FLR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://flare.xyz\",\r\n        \"shortName\": \"c2flr\",\r\n        \"chainId\": 114,\r\n        \"networkId\": 114,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://coston2-explorer.flare.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeBank Testnet\",\r\n        \"chain\": \"DeBank\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"icon\": \"debank\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://debank.com\",\r\n        \"shortName\": \"debank-testnet\",\r\n        \"chainId\": 115,\r\n        \"networkId\": 115,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"DeBank Mainnet\",\r\n        \"chain\": \"DeBank\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"icon\": \"debank\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://debank.com\",\r\n        \"shortName\": \"debank-mainnet\",\r\n        \"chainId\": 116,\r\n        \"networkId\": 116,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Arcology Testnet\",\r\n        \"chain\": \"Arcology\",\r\n        \"icon\": \"acolicon\",\r\n        \"rpc\": [\r\n            \"https://testnet.arcology.network/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arcology Coin\",\r\n            \"symbol\": \"Acol\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arcology.network/\",\r\n        \"shortName\": \"arcology\",\r\n        \"chainId\": 118,\r\n        \"networkId\": 118,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"arcology\",\r\n                \"url\": \"https://testnet.arcology.network/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ENULS Mainnet\",\r\n        \"chain\": \"ENULS\",\r\n        \"rpc\": [\r\n            \"https://evmapi.nuls.io\",\r\n            \"https://evmapi2.nuls.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NULS\",\r\n            \"symbol\": \"NULS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nuls.io\",\r\n        \"shortName\": \"enuls\",\r\n        \"chainId\": 119,\r\n        \"networkId\": 119,\r\n        \"icon\": \"enuls\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"enulsscan\",\r\n                \"url\": \"https://evmscan.nuls.io\",\r\n                \"icon\": \"enuls\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ENULS Testnet\",\r\n        \"chain\": \"ENULS\",\r\n        \"rpc\": [\r\n            \"https://beta.evmapi.nuls.io\",\r\n            \"https://beta.evmapi2.nuls.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.nuls.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NULS\",\r\n            \"symbol\": \"NULS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nuls.io\",\r\n        \"shortName\": \"enulst\",\r\n        \"chainId\": 120,\r\n        \"networkId\": 120,\r\n        \"icon\": \"enuls\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"enulsscan\",\r\n                \"url\": \"https://beta.evmscan.nuls.io\",\r\n                \"icon\": \"enuls\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Realchain Mainnet\",\r\n        \"chain\": \"REAL\",\r\n        \"rpc\": [\r\n            \"https://rcl-dataseed1.rclsidechain.com\",\r\n            \"https://rcl-dataseed2.rclsidechain.com\",\r\n            \"https://rcl-dataseed3.rclsidechain.com\",\r\n            \"https://rcl-dataseed4.rclsidechain.com\",\r\n            \"wss://rcl-dataseed1.rclsidechain.com/v1/\",\r\n            \"wss://rcl-dataseed2.rclsidechain.com/v1/\",\r\n            \"wss://rcl-dataseed3.rclsidechain.com/v1/\",\r\n            \"wss://rcl-dataseed4.rclsidechain.com/v1/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.rclsidechain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Realchain\",\r\n            \"symbol\": \"REAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.rclsidechain.com/\",\r\n        \"shortName\": \"REAL\",\r\n        \"chainId\": 121,\r\n        \"networkId\": 121,\r\n        \"slip44\": 714,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"realscan\",\r\n                \"url\": \"https://rclscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Alyx Chain Testnet\",\r\n        \"chain\": \"Alyx Chain Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.alyxchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.alyxchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Alyx Testnet Native Token\",\r\n            \"symbol\": \"ALYX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.alyxchain.com\",\r\n        \"shortName\": \"AlyxTestnet\",\r\n        \"chainId\": 135,\r\n        \"networkId\": 135,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"alyx testnet scan\",\r\n                \"url\": \"https://testnet.alyxscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"icon\": \"alyx\"\r\n    },\r\n    {\r\n        \"name\": \"PHI Network v2\",\r\n        \"chain\": \"PHI\",\r\n        \"rpc\": [\r\n            \"https://connect.phi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PHI\",\r\n            \"symbol\": \"Φ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://phi.network\",\r\n        \"shortName\": \"PHI\",\r\n        \"chainId\": 144,\r\n        \"networkId\": 144,\r\n        \"icon\": \"phi\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Phiscan\",\r\n                \"url\": \"https://phiscan.com\",\r\n                \"icon\": \"phi\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Armonia Eva Chain Mainnet\",\r\n        \"chain\": \"Eva\",\r\n        \"rpc\": [\r\n            \"https://evascan.io/api/eth-rpc/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Armonia Multichain Native Token\",\r\n            \"symbol\": \"AMAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://amax.network\",\r\n        \"shortName\": \"eva\",\r\n        \"chainId\": 160,\r\n        \"networkId\": 160,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Armonia Eva Chain Testnet\",\r\n        \"chain\": \"Wall-e\",\r\n        \"rpc\": [\r\n            \"https://testnet.evascan.io/api/eth-rpc/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Armonia Multichain Native Token\",\r\n            \"symbol\": \"AMAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://amax.network\",\r\n        \"shortName\": \"wall-e\",\r\n        \"chainId\": 161,\r\n        \"networkId\": 161,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout - evascan\",\r\n                \"url\": \"https://testnet.evascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Atoshi Testnet\",\r\n        \"chain\": \"ATOSHI\",\r\n        \"icon\": \"atoshi\",\r\n        \"rpc\": [\r\n            \"https://node.atoshi.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ATOSHI\",\r\n            \"symbol\": \"ATOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://atoshi.org\",\r\n        \"shortName\": \"atoshi\",\r\n        \"chainId\": 167,\r\n        \"networkId\": 167,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"atoshiscan\",\r\n                \"url\": \"https://scan.atoverse.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MOAC testnet\",\r\n        \"chain\": \"MOAC\",\r\n        \"rpc\": [\r\n            \"https://gateway.moac.io/testnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MOAC\",\r\n            \"symbol\": \"mc\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://moac.io\",\r\n        \"shortName\": \"moactest\",\r\n        \"chainId\": 201,\r\n        \"networkId\": 201,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"moac testnet explorer\",\r\n                \"url\": \"https://testnet.moac.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MAPO Makalu\",\r\n        \"title\": \"MAPO Testnet Makalu\",\r\n        \"chain\": \"MAPO\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.maplabs.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mapprotocol.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Makalu MAPO\",\r\n            \"symbol\": \"MAPO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mapprotocol.io/\",\r\n        \"shortName\": \"makalu\",\r\n        \"chainId\": 212,\r\n        \"networkId\": 212,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maposcan\",\r\n                \"url\": \"https://testnet.maposcan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SiriusNet V2\",\r\n        \"chain\": \"SIN2\",\r\n        \"faucets\": [],\r\n        \"rpc\": [\r\n            \"https://rpc2.siriusnet.io\"\r\n        ],\r\n        \"icon\": \"siriusnet\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MCD\",\r\n            \"symbol\": \"MCD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://siriusnet.io\",\r\n        \"shortName\": \"SIN2\",\r\n        \"chainId\": 217,\r\n        \"networkId\": 217,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"siriusnet explorer\",\r\n                \"url\": \"https://scan.siriusnet.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oasys Mainnet\",\r\n        \"chain\": \"Oasys\",\r\n        \"icon\": \"oasys\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.oasys.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oasys.games\",\r\n        \"shortName\": \"OAS\",\r\n        \"chainId\": 248,\r\n        \"networkId\": 248,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.oasys.games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hedera Mainnet\",\r\n        \"chain\": \"Hedera\",\r\n        \"icon\": \"hedera\",\r\n        \"rpc\": [\r\n            \"https://mainnet.hashio.io/api\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"hbar\",\r\n            \"symbol\": \"HBAR\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://hedera.com\",\r\n        \"shortName\": \"hedera-mainnet\",\r\n        \"chainId\": 295,\r\n        \"networkId\": 295,\r\n        \"slip44\": 3030,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HashScan\",\r\n                \"url\": \"https://hashscan.io/mainnet/dashboard\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Arkhia Explorer\",\r\n                \"url\": \"https://explorer.arkhia.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"DragonGlass\",\r\n                \"url\": \"https://app.dragonglass.me\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Hedera Explorer\",\r\n                \"url\": \"https://hederaexplorer.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Ledger Works Explore\",\r\n                \"url\": \"https://explore.lworks.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hedera Testnet\",\r\n        \"chain\": \"Hedera\",\r\n        \"icon\": \"hedera\",\r\n        \"rpc\": [\r\n            \"https://testnet.hashio.io/api\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://portal.hedera.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"hbar\",\r\n            \"symbol\": \"HBAR\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://hedera.com\",\r\n        \"shortName\": \"hedera-testnet\",\r\n        \"chainId\": 296,\r\n        \"networkId\": 296,\r\n        \"slip44\": 3030,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HashScan\",\r\n                \"url\": \"https://hashscan.io/testnet/dashboard\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Arkhia Explorer\",\r\n                \"url\": \"https://explorer.arkhia.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"DragonGlass\",\r\n                \"url\": \"https://app.dragonglass.me\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Hedera Explorer\",\r\n                \"url\": \"https://hederaexplorer.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Ledger Works Explore\",\r\n                \"url\": \"https://explore.lworks.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hedera Previewnet\",\r\n        \"chain\": \"Hedera\",\r\n        \"icon\": \"hedera\",\r\n        \"rpc\": [\r\n            \"https://previewnet.hashio.io/api\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://portal.hedera.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"hbar\",\r\n            \"symbol\": \"HBAR\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://hedera.com\",\r\n        \"shortName\": \"hedera-previewnet\",\r\n        \"chainId\": 297,\r\n        \"networkId\": 297,\r\n        \"slip44\": 3030,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HashScan\",\r\n                \"url\": \"https://hashscan.io/previewnet/dashboard\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hedera Localnet\",\r\n        \"chain\": \"Hedera\",\r\n        \"icon\": \"hedera\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"hbar\",\r\n            \"symbol\": \"HBAR\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://hedera.com\",\r\n        \"shortName\": \"hedera-localnet\",\r\n        \"chainId\": 298,\r\n        \"networkId\": 298,\r\n        \"slip44\": 3030,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Bobaopera\",\r\n        \"chain\": \"Bobaopera\",\r\n        \"rpc\": [\r\n            \"https://bobaopera.boba.network\",\r\n            \"wss://wss.bobaopera.boba.network\",\r\n            \"https://replica.bobaopera.boba.network\",\r\n            \"wss://replica-wss.bobaopera.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Bobaopera\",\r\n        \"chainId\": 301,\r\n        \"networkId\": 301,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bobaopera block explorer\",\r\n                \"url\": \"https://blockexplorer.bobaopera.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Omax Mainnet\",\r\n        \"chain\": \"OMAX Chain\",\r\n        \"rpc\": [\r\n            \"https://mainapi.omaxray.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.omaxray.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OMAX COIN\",\r\n            \"symbol\": \"OMAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.omaxcoin.com/\",\r\n        \"shortName\": \"omax\",\r\n        \"chainId\": 311,\r\n        \"networkId\": 311,\r\n        \"icon\": \"omaxchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Omax Chain Explorer\",\r\n                \"url\": \"https://omaxray.com\",\r\n                \"icon\": \"omaxray\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filecoin - Mainnet\",\r\n        \"chain\": \"FIL\",\r\n        \"icon\": \"filecoin\",\r\n        \"rpc\": [\r\n            \"https://api.node.glif.io/\",\r\n            \"https://rpc.ankr.com/filecoin\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"filecoin\",\r\n            \"symbol\": \"FIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filecoin.io\",\r\n        \"shortName\": \"filecoin\",\r\n        \"chainId\": 314,\r\n        \"networkId\": 314,\r\n        \"slip44\": 461,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Filfox\",\r\n                \"url\": \"https://filfox.info/en\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Filscan\",\r\n                \"url\": \"https://filscan.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Filscout\",\r\n                \"url\": \"https://filscout.io/en\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Consta Testnet\",\r\n        \"chain\": \"tCNT\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.theconsta.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tCNT\",\r\n            \"symbol\": \"tCNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://theconsta.com\",\r\n        \"shortName\": \"tCNT\",\r\n        \"chainId\": 371,\r\n        \"networkId\": 371,\r\n        \"icon\": \"constachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer-testnet.theconsta.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HyperonChain TestNet\",\r\n        \"chain\": \"HPN\",\r\n        \"icon\": \"hyperonchain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.hyperonchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.hyperonchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HyperonChain\",\r\n            \"symbol\": \"HPN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.hyperonchain.com\",\r\n        \"shortName\": \"hpn\",\r\n        \"chainId\": 400,\r\n        \"networkId\": 400,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.hyperonchain.com\",\r\n                \"icon\": \"hyperonchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zeeth Chain\",\r\n        \"chain\": \"ZeethChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.zeeth.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zeeth Token\",\r\n            \"symbol\": \"ZTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"zeeth\",\r\n        \"chainId\": 427,\r\n        \"networkId\": 427,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zeeth Explorer\",\r\n                \"url\": \"https://explorer.zeeth.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Frenchain Testnet\",\r\n        \"chain\": \"tfren\",\r\n        \"rpc\": [\r\n            \"https://rpc-01tn.frenchain.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tFREN\",\r\n            \"symbol\": \"FtREN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://frenchain.app\",\r\n        \"shortName\": \"tFREN\",\r\n        \"chainId\": 444,\r\n        \"networkId\": 444,\r\n        \"icon\": \"fren\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.frenscan.io\",\r\n                \"icon\": \"fren\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Camino C-Chain\",\r\n        \"chain\": \"CAM\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Camino\",\r\n            \"symbol\": \"CAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://camino.foundation/\",\r\n        \"shortName\": \"Camino\",\r\n        \"chainId\": 500,\r\n        \"networkId\": 1000,\r\n        \"icon\": \"camino\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockexplorer\",\r\n                \"url\": \"https://explorer.camino.foundation/mainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Columbus Test Network\",\r\n        \"chain\": \"CAM\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Camino\",\r\n            \"symbol\": \"CAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://camino.foundation/\",\r\n        \"shortName\": \"Columbus\",\r\n        \"chainId\": 501,\r\n        \"networkId\": 1001,\r\n        \"icon\": \"camino\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockexplorer\",\r\n                \"url\": \"https://explorer.camino.foundation\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gear Zero Network Mainnet\",\r\n        \"chain\": \"GearZero\",\r\n        \"rpc\": [\r\n            \"https://gzn.linksme.info\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gear Zero Network Native Token\",\r\n            \"symbol\": \"GZN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://token.gearzero.ca/mainnet\",\r\n        \"shortName\": \"gz-mainnet\",\r\n        \"chainId\": 516,\r\n        \"networkId\": 516,\r\n        \"slip44\": 516,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Firechain Mainnet\",\r\n        \"chain\": \"FIRE\",\r\n        \"icon\": \"firechain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.rpc1.thefirechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Firechain\",\r\n            \"symbol\": \"FIRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thefirechain.com\",\r\n        \"shortName\": \"fire\",\r\n        \"chainId\": 529,\r\n        \"networkId\": 529,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Dogechain Testnet\",\r\n        \"chain\": \"DC\",\r\n        \"icon\": \"dogechain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.dogechain.dog\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dogechain.dog\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogecoin\",\r\n            \"symbol\": \"DOGE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dogechain.dog\",\r\n        \"shortName\": \"dct\",\r\n        \"chainId\": 568,\r\n        \"networkId\": 568,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dogechain testnet explorer\",\r\n                \"url\": \"https://explorer-testnet.dogechain.dog\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metis Goerli Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://goerli.gateway.metisdevops.link\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://goerli.faucet.metisdevops.link\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Goerli Metis\",\r\n            \"symbol\": \"METIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.metis.io\",\r\n        \"shortName\": \"metis-goerli\",\r\n        \"chainId\": 599,\r\n        \"networkId\": 599,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://goerli.explorer.metisdevops.link\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-4\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.metis.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Graphlinq Blockchain Mainnet\",\r\n        \"chain\": \"GLQ Blockchain\",\r\n        \"rpc\": [\r\n            \"https://glq-dataseed.graphlinq.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GLQ\",\r\n            \"symbol\": \"GLQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://graphlinq.io\",\r\n        \"shortName\": \"glq\",\r\n        \"chainId\": 614,\r\n        \"networkId\": 614,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GLQ Explorer\",\r\n                \"url\": \"https://explorer.graphlinq.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Canto Testnet\",\r\n        \"chain\": \"Canto Tesnet\",\r\n        \"rpc\": [\r\n            \"https://eth.plexnode.wtf/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Canto\",\r\n            \"symbol\": \"CANTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://canto.io\",\r\n        \"shortName\": \"tcanto\",\r\n        \"chainId\": 740,\r\n        \"networkId\": 740,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Canto Tesnet Explorer (Neobase)\",\r\n                \"url\": \"http://testnet-explorer.canto.neobase.one\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vention Smart Chain Testnet\",\r\n        \"chain\": \"VSCT\",\r\n        \"icon\": \"ventionTestnet\",\r\n        \"rpc\": [\r\n            \"https://node-testnet.vention.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.vention.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VNT\",\r\n            \"symbol\": \"VNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.ventionscan.io\",\r\n        \"shortName\": \"vsct\",\r\n        \"chainId\": 741,\r\n        \"networkId\": 741,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ventionscan\",\r\n                \"url\": \"https://testnet.ventionscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QL1\",\r\n        \"chain\": \"QOM\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [\r\n            \"https://rpc.qom.one\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shiba Predator\",\r\n            \"symbol\": \"QOM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://qom.one\",\r\n        \"shortName\": \"qom\",\r\n        \"chainId\": 766,\r\n        \"networkId\": 766,\r\n        \"icon\": \"qom\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"QL1 Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.qom.one\",\r\n                \"icon\": \"qom\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lucid Blockchain\",\r\n        \"chain\": \"Lucid Blockchain\",\r\n        \"icon\": \"lucid\",\r\n        \"rpc\": [\r\n            \"https://rpc.lucidcoin.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lucidcoin.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LUCID\",\r\n            \"symbol\": \"LUCID\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lucidcoin.io\",\r\n        \"shortName\": \"LUCID\",\r\n        \"chainId\": 800,\r\n        \"networkId\": 800,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lucid Explorer\",\r\n                \"url\": \"https://explorer.lucidcoin.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Qitmeer\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [\r\n            \"https://qng.rpc.qitmeer.io\",\r\n            \"https://rpc.woowow.io\",\r\n            \"https://mainnet.meerlabs.com\",\r\n            \"https://rpc.dimai.ai\",\r\n            \"https://evm-dataseed1.meerscan.io\",\r\n            \"https://evm-dataseed2.meerscan.io\",\r\n            \"https://evm-dataseed3.meerscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qitmeer\",\r\n            \"symbol\": \"MEER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"meer\",\r\n        \"chainId\": 813,\r\n        \"networkId\": 813,\r\n        \"slip44\": 813,\r\n        \"icon\": \"meer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"meerscan\",\r\n                \"url\": \"https://qng.meerscan.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"QNG Mainnet Qitmeer Explorer\",\r\n                \"url\": \"https://qng.qitmneer.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taraxa Mainnet\",\r\n        \"chain\": \"Tara\",\r\n        \"icon\": \"taraxa\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.taraxa.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tara\",\r\n            \"symbol\": \"TARA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taraxa.io\",\r\n        \"shortName\": \"tara\",\r\n        \"chainId\": 841,\r\n        \"networkId\": 841,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Taraxa Explorer\",\r\n                \"url\": \"https://explorer.mainnet.taraxa.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taraxa Testnet\",\r\n        \"chain\": \"Tara\",\r\n        \"icon\": \"taraxa\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.taraxa.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tara\",\r\n            \"symbol\": \"TARA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taraxa.io\",\r\n        \"shortName\": \"taratest\",\r\n        \"chainId\": 842,\r\n        \"networkId\": 842,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Taraxa Explorer\",\r\n                \"url\": \"https://explorer.testnet.taraxa.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zeeth Chain Dev\",\r\n        \"chain\": \"ZeethChainDev\",\r\n        \"rpc\": [\r\n            \"https://rpc.dev.zeeth.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zeeth Token\",\r\n            \"symbol\": \"ZTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"zeethdev\",\r\n        \"chainId\": 859,\r\n        \"networkId\": 859,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zeeth Explorer Dev\",\r\n                \"url\": \"https://explorer.dev.zeeth.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fantasia Chain Mainnet\",\r\n        \"chain\": \"FSC\",\r\n        \"rpc\": [\r\n            \"https://mainnet-data1.fantasiachain.com/\",\r\n            \"https://mainnet-data2.fantasiachain.com/\",\r\n            \"https://mainnet-data3.fantasiachain.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FST\",\r\n            \"symbol\": \"FST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fantasia.technology/\",\r\n        \"shortName\": \"FSCMainnet\",\r\n        \"chainId\": 868,\r\n        \"networkId\": 868,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FSCScan\",\r\n                \"url\": \"https://explorer.fantasiachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bandai Namco Research Verse Mainnet\",\r\n        \"chain\": \"Bandai Namco Research Verse\",\r\n        \"icon\": \"bnken\",\r\n        \"rpc\": [\r\n            \"https://rpc.main.oasvrs.bnken.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bandainamco-mirai.com/en/\",\r\n        \"shortName\": \"BNKEN\",\r\n        \"chainId\": 876,\r\n        \"networkId\": 876,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bandai Namco Research Verse Explorer\",\r\n                \"url\": \"https://explorer.main.oasvrs.bnken.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Dexit Network\",\r\n        \"chain\": \"DXT\",\r\n        \"rpc\": [\r\n            \"https://dxt.dexit.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dexit.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dexit network\",\r\n            \"symbol\": \"DXT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dexit.network\",\r\n        \"shortName\": \"DXT\",\r\n        \"chainId\": 877,\r\n        \"networkId\": 877,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dxtscan\",\r\n                \"url\": \"https://dxtscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rinia Testnet\",\r\n        \"chain\": \"FIRE\",\r\n        \"icon\": \"rinia\",\r\n        \"rpc\": [\r\n            \"https://rinia.rpc1.thefirechain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.thefirechain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Firechain\",\r\n            \"symbol\": \"FIRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thefirechain.com\",\r\n        \"shortName\": \"tfire\",\r\n        \"chainId\": 917,\r\n        \"networkId\": 917,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"muNode Testnet\",\r\n        \"chain\": \"munode\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://munode.dev/\",\r\n        \"shortName\": \"munode\",\r\n        \"chainId\": 956,\r\n        \"networkId\": 956\r\n    },\r\n    {\r\n        \"name\": \"Oort Mainnet\",\r\n        \"chain\": \"Oort Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.oortech.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oort\",\r\n            \"symbol\": \"CCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oortech.com\",\r\n        \"shortName\": \"ccn\",\r\n        \"chainId\": 970,\r\n        \"networkId\": 970,\r\n        \"icon\": \"ccn\"\r\n    },\r\n    {\r\n        \"name\": \"Oort Huygens\",\r\n        \"chain\": \"Huygens\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oort\",\r\n            \"symbol\": \"CCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oortech.com\",\r\n        \"shortName\": \"Huygens\",\r\n        \"chainId\": 971,\r\n        \"networkId\": 971,\r\n        \"icon\": \"ccn\"\r\n    },\r\n    {\r\n        \"name\": \"Oort Ascraeus\",\r\n        \"title\": \"Oort Ascraeus\",\r\n        \"chain\": \"Ascraeus\",\r\n        \"rpc\": [\r\n            \"https://ascraeus-rpc.oortech.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oort\",\r\n            \"symbol\": \"CCNA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oortech.com\",\r\n        \"shortName\": \"Ascraeus\",\r\n        \"chainId\": 972,\r\n        \"networkId\": 972,\r\n        \"icon\": \"ccn\"\r\n    },\r\n    {\r\n        \"name\": \"Memo Smart Chain Mainnet\",\r\n        \"chain\": \"MEMO\",\r\n        \"rpc\": [\r\n            \"https://chain.metamemo.one:8501\",\r\n            \"wss://chain.metamemo.one:16801\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.metamemo.one/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Memo\",\r\n            \"symbol\": \"CMEMO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"www.memolabs.org\",\r\n        \"shortName\": \"memochain\",\r\n        \"chainId\": 985,\r\n        \"networkId\": 985,\r\n        \"icon\": \"memo\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Memo Mainnet Explorer\",\r\n                \"url\": \"https://scan.metamemo.one:8080\",\r\n                \"icon\": \"memoscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"T-EKTA\",\r\n        \"title\": \"EKTA Testnet T-EKTA\",\r\n        \"chain\": \"T-EKTA\",\r\n        \"rpc\": [\r\n            \"https://test.ekta.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"T-EKTA\",\r\n            \"symbol\": \"T-EKTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ekta.io\",\r\n        \"shortName\": \"t-ekta\",\r\n        \"chainId\": 1004,\r\n        \"networkId\": 1004,\r\n        \"icon\": \"ekta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"test-ektascan\",\r\n                \"url\": \"https://test.ektascan.io\",\r\n                \"icon\": \"ekta\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Proxy Network Testnet\",\r\n        \"chain\": \"Proxy Network\",\r\n        \"rpc\": [\r\n            \"http://128.199.94.183:8041\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PRX\",\r\n            \"symbol\": \"PRX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://theproxy.network\",\r\n        \"shortName\": \"prx\",\r\n        \"chainId\": 1031,\r\n        \"networkId\": 1031,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"proxy network testnet\",\r\n                \"url\": \"http://testnet-explorer.theproxy.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bronos Testnet\",\r\n        \"chain\": \"Bronos\",\r\n        \"rpc\": [\r\n            \"https://evm-testnet.bronos.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bronos.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tBRO\",\r\n            \"symbol\": \"tBRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bronos.org\",\r\n        \"shortName\": \"bronos-testnet\",\r\n        \"chainId\": 1038,\r\n        \"networkId\": 1038,\r\n        \"icon\": \"bronos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bronos Testnet Explorer\",\r\n                \"url\": \"https://tbroscan.bronos.org\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"bronos\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bronos Mainnet\",\r\n        \"chain\": \"Bronos\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BRO\",\r\n            \"symbol\": \"BRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bronos.org\",\r\n        \"shortName\": \"bronos-mainnet\",\r\n        \"chainId\": 1039,\r\n        \"networkId\": 1039,\r\n        \"icon\": \"bronos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bronos Explorer\",\r\n                \"url\": \"https://broscan.bronos.org\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"bronos\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MOAC mainnet\",\r\n        \"chain\": \"MOAC\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MOAC\",\r\n            \"symbol\": \"mc\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://moac.io\",\r\n        \"shortName\": \"moac\",\r\n        \"chainId\": 1099,\r\n        \"networkId\": 1099,\r\n        \"slip44\": 314,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"moac explorer\",\r\n                \"url\": \"https://explorer.moac.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WEMIX3.0 Mainnet\",\r\n        \"chain\": \"WEMIX\",\r\n        \"rpc\": [\r\n            \"https://api.wemix.com\",\r\n            \"wss://ws.wemix.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WEMIX\",\r\n            \"symbol\": \"WEMIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wemix.com\",\r\n        \"shortName\": \"wemix\",\r\n        \"chainId\": 1111,\r\n        \"networkId\": 1111,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WEMIX Block Explorer\",\r\n                \"url\": \"https://explorer.wemix.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WEMIX3.0 Testnet\",\r\n        \"chain\": \"TWEMIX\",\r\n        \"rpc\": [\r\n            \"https://api.test.wemix.com\",\r\n            \"wss://ws.test.wemix.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://wallet.test.wemix.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TestnetWEMIX\",\r\n            \"symbol\": \"tWEMIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wemix.com\",\r\n        \"shortName\": \"twemix\",\r\n        \"chainId\": 1112,\r\n        \"networkId\": 1112,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WEMIX Testnet Microscope\",\r\n                \"url\": \"https://microscope.test.wemix.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Core Blockchain Testnet\",\r\n        \"chain\": \"Core\",\r\n        \"icon\": \"core\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.btcs.network/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://scan.test.btcs.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Core Blockchain Testnet Native Token\",\r\n            \"symbol\": \"tCORE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.coredao.org\",\r\n        \"shortName\": \"tcore\",\r\n        \"chainId\": 1115,\r\n        \"networkId\": 1115,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Core Scan Testnet\",\r\n                \"url\": \"https://scan.test.btcs.network\",\r\n                \"icon\": \"core\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dogcoin Mainnet\",\r\n        \"chain\": \"DOGS\",\r\n        \"icon\": \"dogs\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.dogcoin.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dogcoin.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogcoin\",\r\n            \"symbol\": \"DOGS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dogcoin.network\",\r\n        \"shortName\": \"DOGSm\",\r\n        \"chainId\": 1117,\r\n        \"networkId\": 1117,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dogcoin\",\r\n                \"url\": \"https://explorer.dogcoin.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeFiChain EVM Network Mainnet\",\r\n        \"chain\": \"defichain-evm\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeFiChain\",\r\n            \"symbol\": \"DFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://meta.defichain.com/\",\r\n        \"shortName\": \"DFI\",\r\n        \"chainId\": 1130,\r\n        \"networkId\": 1130,\r\n        \"slip44\": 1130,\r\n        \"icon\": \"defichain-network\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"DeFiChain EVM Network Testnet\",\r\n        \"chain\": \"defichain-evm-testnet\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeFiChain\",\r\n            \"symbol\": \"DFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://meta.defichain.com/\",\r\n        \"shortName\": \"DFI-T\",\r\n        \"chainId\": 1131,\r\n        \"networkId\": 1131,\r\n        \"icon\": \"defichain-network\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"AmStar Testnet\",\r\n        \"chain\": \"AmStar\",\r\n        \"icon\": \"amstar\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.amstarscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SINSO\",\r\n            \"symbol\": \"SINSO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sinso.io\",\r\n        \"shortName\": \"ASARt\",\r\n        \"chainId\": 1138,\r\n        \"networkId\": 1138,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"amstarscan-testnet\",\r\n                \"url\": \"https://testnet.amstarscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Smart Host Teknoloji TESTNET\",\r\n        \"chain\": \"SHT\",\r\n        \"rpc\": [\r\n            \"https://s2.tl.web.tr:4041\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Smart Host Teknoloji TESTNET\",\r\n            \"symbol\": \"tSHT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://smart-host.com.tr\",\r\n        \"shortName\": \"sht\",\r\n        \"chainId\": 1177,\r\n        \"networkId\": 1177,\r\n        \"icon\": \"smarthost\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Smart Host Teknoloji TESTNET Explorer\",\r\n                \"url\": \"https://s2.tl.web.tr:4000\",\r\n                \"icon\": \"smarthost\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Exzo Network Mainnet\",\r\n        \"chain\": \"EXZO\",\r\n        \"icon\": \"exzo\",\r\n        \"rpc\": [\r\n            \"https://mainnet.exzo.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Exzo\",\r\n            \"symbol\": \"XZO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://exzo.network\",\r\n        \"shortName\": \"xzo\",\r\n        \"chainId\": 1229,\r\n        \"networkId\": 1229,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://exzoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ultron Testnet\",\r\n        \"chain\": \"Ultron\",\r\n        \"icon\": \"ultron\",\r\n        \"rpc\": [\r\n            \"https://ultron-dev.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ultron\",\r\n            \"symbol\": \"ULX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ultron.foundation\",\r\n        \"shortName\": \"UltronTestnet\",\r\n        \"chainId\": 1230,\r\n        \"networkId\": 1230,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ultron Testnet Explorer\",\r\n                \"url\": \"https://explorer.ultron-dev.io\",\r\n                \"icon\": \"ultron\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ultron Mainnet\",\r\n        \"chain\": \"Ultron\",\r\n        \"icon\": \"ultron\",\r\n        \"rpc\": [\r\n            \"https://ultron-rpc.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ultron\",\r\n            \"symbol\": \"ULX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ultron.foundation\",\r\n        \"shortName\": \"UtronMainnet\",\r\n        \"chainId\": 1231,\r\n        \"networkId\": 1231,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ultron Explorer\",\r\n                \"url\": \"https://ulxscan.com\",\r\n                \"icon\": \"ultron\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Step Network\",\r\n        \"title\": \"Step Main Network\",\r\n        \"chain\": \"STEP\",\r\n        \"icon\": \"step\",\r\n        \"rpc\": [\r\n            \"https://rpc.step.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FITFI\",\r\n            \"symbol\": \"FITFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://step.network\",\r\n        \"shortName\": \"step\",\r\n        \"chainId\": 1234,\r\n        \"networkId\": 1234,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"StepScan\",\r\n                \"url\": \"https://stepscan.io\",\r\n                \"icon\": \"step\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-43114\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.step.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"CIC Chain Testnet\",\r\n        \"chain\": \"CICT\",\r\n        \"rpc\": [\r\n            \"https://testapi.cicscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://cicfaucet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Crazy Internet Coin\",\r\n            \"symbol\": \"CICT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cicchain.net\",\r\n        \"shortName\": \"CICT\",\r\n        \"chainId\": 1252,\r\n        \"networkId\": 1252,\r\n        \"icon\": \"cicchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CICscan\",\r\n                \"url\": \"https://testnet.cicscan.com\",\r\n                \"icon\": \"cicchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bobabeam\",\r\n        \"chain\": \"Bobabeam\",\r\n        \"rpc\": [\r\n            \"https://bobabeam.boba.network\",\r\n            \"wss://wss.bobabeam.boba.network\",\r\n            \"https://replica.bobabeam.boba.network\",\r\n            \"wss://replica-wss.bobabeam.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Bobabeam\",\r\n        \"chainId\": 1294,\r\n        \"networkId\": 1294,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bobabeam block explorer\",\r\n                \"url\": \"https://blockexplorer.bobabeam.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dos Fuji Subnet\",\r\n        \"chain\": \"DOS\",\r\n        \"rpc\": [\r\n            \"https://test.doschain.com/jsonrpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dos Native Token\",\r\n            \"symbol\": \"DOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://doschain.io/\",\r\n        \"shortName\": \"DOS\",\r\n        \"chainId\": 1311,\r\n        \"networkId\": 1311,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dos-testnet\",\r\n                \"url\": \"https://test.doscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Alyx Mainnet\",\r\n        \"chain\": \"ALYX\",\r\n        \"rpc\": [\r\n            \"https://rpc.alyxchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Alyx Chain Native Token\",\r\n            \"symbol\": \"ALYX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.alyxchain.com\",\r\n        \"shortName\": \"alyx\",\r\n        \"chainId\": 1314,\r\n        \"networkId\": 1314,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"alyxscan\",\r\n                \"url\": \"https://www.alyxscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"icon\": \"alyx\"\r\n    },\r\n    {\r\n        \"name\": \"Elysium Testnet\",\r\n        \"title\": \"An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged\",\r\n        \"chain\": \"Elysium\",\r\n        \"rpc\": [\r\n            \"https://elysium-test-rpc.vulcanforged.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAVA\",\r\n            \"symbol\": \"LAVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://elysiumscan.vulcanforged.com\",\r\n        \"shortName\": \"ELST\",\r\n        \"chainId\": 1338,\r\n        \"networkId\": 1338,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Elysium testnet explorer\",\r\n                \"url\": \"https://elysium-explorer.vulcanforged.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Elysium Mainnet\",\r\n        \"title\": \"An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged\",\r\n        \"chain\": \"Elysium\",\r\n        \"rpc\": [\r\n            \"https://elysium-rpc.vulcanforged.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAVA\",\r\n            \"symbol\": \"LAVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://elysiumscan.vulcanforged.com\",\r\n        \"shortName\": \"ELSM\",\r\n        \"chainId\": 1339,\r\n        \"networkId\": 1339,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Elysium mainnet explorer\",\r\n                \"url\": \"https://explorer.elysiumchain.tech\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CIC Chain Mainnet\",\r\n        \"chain\": \"CIC\",\r\n        \"rpc\": [\r\n            \"https://xapi.cicscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Crazy Internet Coin\",\r\n            \"symbol\": \"CIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cicchain.net\",\r\n        \"shortName\": \"CIC\",\r\n        \"chainId\": 1353,\r\n        \"networkId\": 1353,\r\n        \"icon\": \"cicchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CICscan\",\r\n                \"url\": \"https://cicscan.com\",\r\n                \"icon\": \"cicchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AmStar Mainnet\",\r\n        \"chain\": \"AmStar\",\r\n        \"icon\": \"amstar\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.amstarscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SINSO\",\r\n            \"symbol\": \"SINSO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sinso.io\",\r\n        \"shortName\": \"ASAR\",\r\n        \"chainId\": 1388,\r\n        \"networkId\": 1388,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"amstarscan\",\r\n                \"url\": \"https://mainnet.amstarscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Polygon zkEVM Testnet old\",\r\n        \"title\": \"Polygon zkEVM Testnet\",\r\n        \"chain\": \"Polygon\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polygon.technology/solutions/polygon-zkevm/\",\r\n        \"shortName\": \"zkevmtest\",\r\n        \"chainId\": 1402,\r\n        \"networkId\": 1402,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.public.zkevm-test.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Polygon zkEVM Testnet\",\r\n        \"title\": \"Polygon zkEVM Testnet\",\r\n        \"chain\": \"Polygon\",\r\n        \"rpc\": [\r\n            \"https://rpc.public.zkevm-test.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polygon.technology/solutions/polygon-zkevm/\",\r\n        \"shortName\": \"testnet-zkEVM-mango\",\r\n        \"chainId\": 1422,\r\n        \"networkId\": 1422,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polygon zkEVM explorer\",\r\n                \"url\": \"https://explorer.public.zkevm-test.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ctex Scan Blockchain\",\r\n        \"chain\": \"Ctex Scan Blockchain\",\r\n        \"icon\": \"ctex\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.ctexscan.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.ctexscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CTEX\",\r\n            \"symbol\": \"CTEX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ctextoken.io\",\r\n        \"shortName\": \"CTEX\",\r\n        \"chainId\": 1455,\r\n        \"networkId\": 1455,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ctex Scan Explorer\",\r\n                \"url\": \"https://ctexscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Beagle Messaging Chain\",\r\n        \"chain\": \"BMC\",\r\n        \"rpc\": [\r\n            \"https://beagle.chat/eth\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.beagle.chat/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Beagle\",\r\n            \"symbol\": \"BG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://beagle.chat/\",\r\n        \"shortName\": \"beagle\",\r\n        \"chainId\": 1515,\r\n        \"networkId\": 1515,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beagle Messaging Chain Explorer\",\r\n                \"url\": \"https://eth.beagle.chat\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Horizen Yuma Testnet\",\r\n        \"shortName\": \"Yuma\",\r\n        \"chain\": \"Yuma\",\r\n        \"icon\": \"eon\",\r\n        \"rpc\": [\r\n            \"https://yuma-testnet.horizenlabs.io/ethv1\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://yuma-testnet-faucet.horizen.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Zen\",\r\n            \"symbol\": \"tZEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://horizen.io/\",\r\n        \"chainId\": 1662,\r\n        \"networkId\": 1662,\r\n        \"slip44\": 121,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Yuma Testnet Block Explorer\",\r\n                \"url\": \"https://yuma-explorer.horizen.io\",\r\n                \"icon\": \"eon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Anytype EVM Chain\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"any\",\r\n        \"rpc\": [\r\n            \"https://geth.anytype.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://evm.anytype.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ANY\",\r\n            \"symbol\": \"ANY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evm.anytype.io\",\r\n        \"shortName\": \"AnytypeChain\",\r\n        \"chainId\": 1701,\r\n        \"networkId\": 1701,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Anytype Explorer\",\r\n                \"url\": \"https://explorer.anytype.io\",\r\n                \"icon\": \"any\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TBSI Mainnet\",\r\n        \"title\": \"Thai Blockchain Service Infrastructure Mainnet\",\r\n        \"chain\": \"TBSI\",\r\n        \"rpc\": [\r\n            \"https://rpc.blockchain.or.th\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Jinda\",\r\n            \"symbol\": \"JINDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blockchain.or.th\",\r\n        \"shortName\": \"TBSI\",\r\n        \"chainId\": 1707,\r\n        \"networkId\": 1707\r\n    },\r\n    {\r\n        \"name\": \"TBSI Testnet\",\r\n        \"title\": \"Thai Blockchain Service Infrastructure Testnet\",\r\n        \"chain\": \"TBSI\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.blockchain.or.th\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.blockchain.or.th\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Jinda\",\r\n            \"symbol\": \"JINDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blockchain.or.th\",\r\n        \"shortName\": \"tTBSI\",\r\n        \"chainId\": 1708,\r\n        \"networkId\": 1708\r\n    },\r\n    {\r\n        \"name\": \"Kerleano\",\r\n        \"title\": \"Proof of Carbon Reduction testnet\",\r\n        \"chain\": \"CRC\",\r\n        \"status\": \"active\",\r\n        \"rpc\": [\r\n            \"https://cacib-saturn-test.francecentral.cloudapp.azure.com\",\r\n            \"wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Carbon Reduction Coin\",\r\n            \"symbol\": \"CRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/ethereum-pocr/kerleano\",\r\n        \"shortName\": \"kerleano\",\r\n        \"chainId\": 1804,\r\n        \"networkId\": 1804,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lite Explorer\",\r\n                \"url\": \"https://ethereum-pocr.github.io/explorer/kerleano\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rabbit Analog Testnet Chain\",\r\n        \"chain\": \"rAna\",\r\n        \"icon\": \"rabbit\",\r\n        \"rpc\": [\r\n            \"https://rabbit.analog-rpc.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://analogfaucet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rabbit Analog Test Chain Native Token \",\r\n            \"symbol\": \"rAna\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rabbit.analogscan.com\",\r\n        \"shortName\": \"rAna\",\r\n        \"chainId\": 1807,\r\n        \"networkId\": 1807,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://rabbit.analogscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gitshock Cartenz Testnet\",\r\n        \"chain\": \"Gitshock Cartenz\",\r\n        \"icon\": \"gitshockchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.cartenz.works\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gitshock Cartenz\",\r\n            \"symbol\": \"tGTFX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gitshock.com\",\r\n        \"shortName\": \"gitshockchain\",\r\n        \"chainId\": 1881,\r\n        \"networkId\": 1881,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.cartenz.works\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitcichain Mainnet\",\r\n        \"chain\": \"BITCI\",\r\n        \"icon\": \"bitci\",\r\n        \"rpc\": [\r\n            \"https://rpc.bitci.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitci\",\r\n            \"symbol\": \"BITCI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bitcichain.com\",\r\n        \"shortName\": \"bitci\",\r\n        \"chainId\": 1907,\r\n        \"networkId\": 1907,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitci Explorer\",\r\n                \"url\": \"https://bitciexplorer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitcichain Testnet\",\r\n        \"chain\": \"TBITCI\",\r\n        \"icon\": \"bitci\",\r\n        \"rpc\": [\r\n            \"https://testnet.bitcichain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bitcichain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Bitci\",\r\n            \"symbol\": \"TBITCI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bitcichain.com\",\r\n        \"shortName\": \"tbitci\",\r\n        \"chainId\": 1908,\r\n        \"networkId\": 1908,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitci Explorer Testnet\",\r\n                \"url\": \"https://testnet.bitciexplorer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ONUS Chain Testnet\",\r\n        \"title\": \"ONUS Chain Testnet\",\r\n        \"chain\": \"onus\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.onuschain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONUS\",\r\n            \"symbol\": \"ONUS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://onuschain.io\",\r\n        \"shortName\": \"onus-testnet\",\r\n        \"chainId\": 1945,\r\n        \"networkId\": 1945,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Onus explorer testnet\",\r\n                \"url\": \"https://explorer-testnet.onuschain.io\",\r\n                \"icon\": \"onus\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"D-Chain Mainnet\",\r\n        \"chain\": \"D-Chain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOINX\",\r\n            \"symbol\": \"DOINX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"dchain-mainnet\",\r\n        \"chainId\": 1951,\r\n        \"networkId\": 1951,\r\n        \"icon\": \"dchain\",\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\"\r\n    },\r\n    {\r\n        \"name\": \"Atelier\",\r\n        \"title\": \"Atelier Test Network\",\r\n        \"chain\": \"ALTR\",\r\n        \"rpc\": [\r\n            \"https://1971.network/atlr\",\r\n            \"wss://1971.network/atlr\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ATLR\",\r\n            \"symbol\": \"ATLR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://1971.network/\",\r\n        \"shortName\": \"atlr\",\r\n        \"chainId\": 1971,\r\n        \"networkId\": 1971,\r\n        \"icon\": \"atlr\"\r\n    },\r\n    {\r\n        \"name\": \"ONUS Chain Mainnet\",\r\n        \"title\": \"ONUS Chain Mainnet\",\r\n        \"chain\": \"onus\",\r\n        \"rpc\": [\r\n            \"https://rpc.onuschain.io\",\r\n            \"wss://ws.onuschain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONUS\",\r\n            \"symbol\": \"ONUS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://onuschain.io\",\r\n        \"shortName\": \"onus-mainnet\",\r\n        \"chainId\": 1975,\r\n        \"networkId\": 1975,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Onus explorer mainnet\",\r\n                \"url\": \"https://explorer.onuschain.io\",\r\n                \"icon\": \"onus\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ekta\",\r\n        \"chain\": \"EKTA\",\r\n        \"rpc\": [\r\n            \"https://main.ekta.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EKTA\",\r\n            \"symbol\": \"EKTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ekta.io\",\r\n        \"shortName\": \"ekta\",\r\n        \"chainId\": 1994,\r\n        \"networkId\": 1994,\r\n        \"icon\": \"ekta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ektascan\",\r\n                \"url\": \"https://ektascan.io\",\r\n                \"icon\": \"ekta\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"edeXa Testnet\",\r\n        \"chain\": \"edeXa TestNetwork\",\r\n        \"rpc\": [\r\n            \"https://testnet.edexa.com/rpc\",\r\n            \"https://io-dataseed1.testnet.edexa.io-market.com/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.edexa.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EDEXA\",\r\n            \"symbol\": \"EDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://edexa.com/\",\r\n        \"shortName\": \"edx\",\r\n        \"chainId\": 1995,\r\n        \"networkId\": 1995,\r\n        \"icon\": \"edexa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"edexa-testnet\",\r\n                \"url\": \"https://explorer.edexa.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dogechain Mainnet\",\r\n        \"chain\": \"DC\",\r\n        \"icon\": \"dogechain\",\r\n        \"rpc\": [\r\n            \"https://rpc.dogechain.dog\",\r\n            \"https://rpc-us.dogechain.dog\",\r\n            \"https://rpc01.dogechain.dog\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogecoin\",\r\n            \"symbol\": \"DOGE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dogechain.dog\",\r\n        \"shortName\": \"dc\",\r\n        \"chainId\": 2000,\r\n        \"networkId\": 2000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dogechain explorer\",\r\n                \"url\": \"https://explorer.dogechain.dog\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Milkomeda A1 Mainnet\",\r\n        \"chain\": \"milkALGO\",\r\n        \"icon\": \"milkomeda\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet-algorand-rollup.a1.milkomeda.com\",\r\n            \"wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"milkALGO\",\r\n            \"symbol\": \"mALGO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://milkomeda.com\",\r\n        \"shortName\": \"milkALGO\",\r\n        \"chainId\": 2002,\r\n        \"networkId\": 2002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer-mainnet-algorand-rollup.a1.milkomeda.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MainnetZ Mainnet\",\r\n        \"chain\": \"NetZ\",\r\n        \"icon\": \"mainnetz\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.mainnetz.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mainnetz.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MainnetZ\",\r\n            \"symbol\": \"NetZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mainnetz.io\",\r\n        \"shortName\": \"NetZm\",\r\n        \"chainId\": 2016,\r\n        \"networkId\": 2016,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MainnetZ\",\r\n                \"url\": \"https://explorer.mainnetz.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PublicMint Devnet\",\r\n        \"title\": \"Public Mint Devnet\",\r\n        \"chain\": \"PublicMint\",\r\n        \"rpc\": [\r\n            \"https://rpc.dev.publicmint.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD\",\r\n            \"symbol\": \"USD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://publicmint.com\",\r\n        \"shortName\": \"pmint_dev\",\r\n        \"chainId\": 2018,\r\n        \"networkId\": 2018,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PublicMint Explorer\",\r\n                \"url\": \"https://explorer.dev.publicmint.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PublicMint Testnet\",\r\n        \"title\": \"Public Mint Testnet\",\r\n        \"chain\": \"PublicMint\",\r\n        \"rpc\": [\r\n            \"https://rpc.tst.publicmint.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD\",\r\n            \"symbol\": \"USD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://publicmint.com\",\r\n        \"shortName\": \"pmint_test\",\r\n        \"chainId\": 2019,\r\n        \"networkId\": 2019,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PublicMint Explorer\",\r\n                \"url\": \"https://explorer.tst.publicmint.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OriginTrail Parachain\",\r\n        \"chain\": \"OTP\",\r\n        \"rpc\": [\r\n            \"https://astrosat.origintrail.network\",\r\n            \"wss://parachain-rpc.origin-trail.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OriginTrail Parachain Token\",\r\n            \"symbol\": \"OTP\",\r\n            \"decimals\": 12\r\n        },\r\n        \"infoURL\": \"https://parachain.origintrail.io\",\r\n        \"shortName\": \"otp\",\r\n        \"chainId\": 2043,\r\n        \"networkId\": 2043\r\n    },\r\n    {\r\n        \"name\": \"Stratos Testnet\",\r\n        \"chain\": \"STOS\",\r\n        \"rpc\": [\r\n            \"https://web3-testnet-rpc.thestratos.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"STOS\",\r\n            \"symbol\": \"STOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.thestratos.org\",\r\n        \"shortName\": \"stos-testnet\",\r\n        \"chainId\": 2047,\r\n        \"networkId\": 2047,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Stratos EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://web3-testnet-explorer.thestratos.org\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Stratos Cosmos Explorer (BigDipper)\",\r\n                \"url\": \"https://big-dipper-dev.thestratos.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Stratos Mainnet\",\r\n        \"chain\": \"STOS\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"STOS\",\r\n            \"symbol\": \"STOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.thestratos.org\",\r\n        \"shortName\": \"stos-mainnet\",\r\n        \"chainId\": 2048,\r\n        \"networkId\": 2048,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Quokkacoin Mainnet\",\r\n        \"chain\": \"Qkacoin\",\r\n        \"rpc\": [\r\n            \"https://rpc.qkacoin.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qkacoin\",\r\n            \"symbol\": \"QKA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://qkacoin.org\",\r\n        \"shortName\": \"QKA\",\r\n        \"chainId\": 2077,\r\n        \"networkId\": 2077,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.qkacoin.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Exosama Network\",\r\n        \"chain\": \"EXN\",\r\n        \"rpc\": [\r\n            \"https://rpc.exosama.com\",\r\n            \"wss://rpc.exosama.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sama Token\",\r\n            \"symbol\": \"SAMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://moonsama.com\",\r\n        \"shortName\": \"exn\",\r\n        \"chainId\": 2109,\r\n        \"networkId\": 2109,\r\n        \"slip44\": 2109,\r\n        \"icon\": \"exn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.exosama.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metaplayerone Mainnet\",\r\n        \"chain\": \"METAD\",\r\n        \"icon\": \"metad\",\r\n        \"rpc\": [\r\n            \"https://rpc.metaplayer.one/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"METAD\",\r\n            \"symbol\": \"METAD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.metaplayer.one/\",\r\n        \"shortName\": \"Metad\",\r\n        \"chainId\": 2122,\r\n        \"networkId\": 2122,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Metad Scan\",\r\n                \"url\": \"https://scan.metaplayer.one\",\r\n                \"icon\": \"metad\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BOSagora Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.bosagora.org\",\r\n            \"https://rpc.bosagora.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BOSAGORA\",\r\n            \"symbol\": \"BOA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.bosagora.org\",\r\n        \"shortName\": \"boa\",\r\n        \"chainId\": 2151,\r\n        \"networkId\": 2151,\r\n        \"icon\": \"agora\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BOASCAN\",\r\n                \"url\": \"https://boascan.io\",\r\n                \"icon\": \"agora\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Findora Forge\",\r\n        \"chain\": \"Testnet-forge\",\r\n        \"rpc\": [\r\n            \"https://prod-forge.prod.findora.org:8545/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FRA\",\r\n            \"symbol\": \"FRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://findora.org/\",\r\n        \"shortName\": \"findora-forge\",\r\n        \"chainId\": 2154,\r\n        \"networkId\": 2154,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"findorascan\",\r\n                \"url\": \"https://testnet-forge.evm.findorascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitcoin EVM\",\r\n        \"chain\": \"Bitcoin EVM\",\r\n        \"rpc\": [\r\n            \"https://connect.bitcoinevm.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"eBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitcoinevm.com\",\r\n        \"shortName\": \"eBTC\",\r\n        \"chainId\": 2203,\r\n        \"networkId\": 2203,\r\n        \"icon\": \"ebtc\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Explorer\",\r\n                \"url\": \"https://explorer.bitcoinevm.com\",\r\n                \"icon\": \"ebtc\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BOMB Chain\",\r\n        \"chain\": \"BOMB\",\r\n        \"rpc\": [\r\n            \"https://rpc.bombchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BOMB Token\",\r\n            \"symbol\": \"BOMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bombchain.com\",\r\n        \"shortName\": \"bomb\",\r\n        \"chainId\": 2300,\r\n        \"networkId\": 2300,\r\n        \"icon\": \"bomb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bombscan\",\r\n                \"icon\": \"bomb\",\r\n                \"url\": \"https://bombscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arevia\",\r\n        \"chain\": \"Arevia\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arev\",\r\n            \"symbol\": \"ARÉV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"arevia\",\r\n        \"chainId\": 2309,\r\n        \"networkId\": 2309,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Altcoinchain\",\r\n        \"chain\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc0.altcoinchain.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Altcoin\",\r\n            \"symbol\": \"ALT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://altcoinchain.org\",\r\n        \"shortName\": \"alt\",\r\n        \"chainId\": 2330,\r\n        \"networkId\": 2330,\r\n        \"icon\": \"altcoinchain\",\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"expedition\",\r\n                \"url\": \"http://expedition.altcoinchain.org\",\r\n                \"icon\": \"altcoinchain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BOMB Chain Testnet\",\r\n        \"chain\": \"BOMB\",\r\n        \"rpc\": [\r\n            \"https://bombchain-testnet.ankr.com/bas_full_rpc_1\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bombchain-testnet.ankr.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BOMB Token\",\r\n            \"symbol\": \"tBOMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bombmoney.com\",\r\n        \"shortName\": \"bombt\",\r\n        \"chainId\": 2399,\r\n        \"networkId\": 2399,\r\n        \"icon\": \"bomb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bombscan-testnet\",\r\n                \"icon\": \"bomb\",\r\n                \"url\": \"https://explorer.bombchain-testnet.ankr.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TCG Verse Mainnet\",\r\n        \"chain\": \"TCG Verse\",\r\n        \"icon\": \"tcg_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.tcgverse.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tcgverse.xyz/\",\r\n        \"shortName\": \"TCGV\",\r\n        \"chainId\": 2400,\r\n        \"networkId\": 2400,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TCG Verse Explorer\",\r\n                \"url\": \"https://explorer.tcgverse.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"XODEX\",\r\n        \"chain\": \"XODEX\",\r\n        \"rpc\": [\r\n            \"https://mainnet.xo-dex.com/rpc\",\r\n            \"https://xo-dex.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XODEX Native Token\",\r\n            \"symbol\": \"XODEX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xo-dex.com\",\r\n        \"shortName\": \"xodex\",\r\n        \"chainId\": 2415,\r\n        \"networkId\": 10,\r\n        \"icon\": \"xodex\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XODEX Explorer\",\r\n                \"url\": \"https://explorer.xo-dex.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"xodex\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PoCRNet\",\r\n        \"title\": \"Proof of Carbon Reduction mainnet\",\r\n        \"chain\": \"CRC\",\r\n        \"status\": \"active\",\r\n        \"rpc\": [\r\n            \"https://pocrnet.westeurope.cloudapp.azure.com/http\",\r\n            \"wss://pocrnet.westeurope.cloudapp.azure.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Carbon Reduction Coin\",\r\n            \"symbol\": \"CRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/ethereum-pocr/pocrnet\",\r\n        \"shortName\": \"pocrnet\",\r\n        \"chainId\": 2606,\r\n        \"networkId\": 2606,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lite Explorer\",\r\n                \"url\": \"https://ethereum-pocr.github.io/explorer/pocrnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Redlight Chain Mainnet\",\r\n        \"chain\": \"REDLC\",\r\n        \"rpc\": [\r\n            \"https://dataseed2.redlightscan.finance\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Redlight Coin\",\r\n            \"symbol\": \"REDLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://redlight.finance/\",\r\n        \"shortName\": \"REDLC\",\r\n        \"chainId\": 2611,\r\n        \"networkId\": 2611,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"REDLC Explorer\",\r\n                \"url\": \"https://redlightscan.finance\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba Network Goerli Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://goerli.boba.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Goerli Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"Bobagoerli\",\r\n        \"chainId\": 2888,\r\n        \"networkId\": 2888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://testnet.bobascan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://gateway.goerli.boba.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"BitYuan Mainnet\",\r\n        \"chain\": \"BTY\",\r\n        \"rpc\": [\r\n            \"https://mainnet.bityuan.com/eth\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTY\",\r\n            \"symbol\": \"BTY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bityuan.com\",\r\n        \"shortName\": \"bty\",\r\n        \"chainId\": 2999,\r\n        \"networkId\": 2999,\r\n        \"icon\": \"bty\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BitYuan Block Chain Explorer\",\r\n                \"url\": \"https://mainnet.bityuan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Orlando Chain\",\r\n        \"chain\": \"ORL\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.orlchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Orlando\",\r\n            \"symbol\": \"ORL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://orlchain.com\",\r\n        \"shortName\": \"ORL\",\r\n        \"chainId\": 3031,\r\n        \"networkId\": 3031,\r\n        \"icon\": \"orl\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Orlando (ORL) Explorer\",\r\n                \"url\": \"https://orlscan.com\",\r\n                \"icon\": \"orl\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bifrost Mainnet\",\r\n        \"title\": \"The Bifrost Mainnet network\",\r\n        \"chain\": \"BFC\",\r\n        \"rpc\": [\r\n            \"https://public-01.mainnet.thebifrost.io/rpc\",\r\n            \"https://public-02.mainnet.thebifrost.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bifrost\",\r\n            \"symbol\": \"BFC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thebifrost.io\",\r\n        \"shortName\": \"bfc\",\r\n        \"chainId\": 3068,\r\n        \"networkId\": 3068,\r\n        \"icon\": \"bifrost\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer-thebifrost\",\r\n                \"url\": \"https://explorer.mainnet.thebifrost.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filecoin - Hyperspace testnet\",\r\n        \"chain\": \"FIL\",\r\n        \"icon\": \"filecoin\",\r\n        \"rpc\": [\r\n            \"https://api.hyperspace.node.glif.io/rpc/v1\",\r\n            \"https://filecoin-hyperspace.chainstacklabs.com/rpc/v1\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://hyperspace.yoga/#faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testnet filecoin\",\r\n            \"symbol\": \"tFIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filecoin.io\",\r\n        \"shortName\": \"filecoin-hyperspace\",\r\n        \"chainId\": 3141,\r\n        \"networkId\": 3141,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Filfox - Hyperspace\",\r\n                \"url\": \"https://hyperspace.filfox.info/en\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Glif Explorer - Hyperspace\",\r\n                \"url\": \"https://explorer.glif.io/?network=hyperspace\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Beryx\",\r\n                \"url\": \"https://beryx.zondax.ch\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Filmine\",\r\n                \"url\": \"https://explorer.filmine.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Filscan - Hyperspace\",\r\n                \"url\": \"https://hyperspace.filscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Debounce Subnet Testnet\",\r\n        \"chain\": \"Debounce Network\",\r\n        \"icon\": \"debounce\",\r\n        \"rpc\": [\r\n            \"https://dev-rpc.debounce.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Debounce Network\",\r\n            \"symbol\": \"DB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://debounce.network\",\r\n        \"shortName\": \"debounce-devnet\",\r\n        \"chainId\": 3306,\r\n        \"networkId\": 3306,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Debounce Devnet Explorer\",\r\n                \"url\": \"https://explorer.debounce.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PandoProject Mainnet\",\r\n        \"chain\": \"PandoProject\",\r\n        \"icon\": \"pando\",\r\n        \"rpc\": [\r\n            \"https://eth-rpc-api.pandoproject.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"pando-token\",\r\n            \"symbol\": \"PTX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.pandoproject.org/\",\r\n        \"shortName\": \"pando-mainnet\",\r\n        \"chainId\": 3601,\r\n        \"networkId\": 3601,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pando Mainnet Explorer\",\r\n                \"url\": \"https://explorer.pandoproject.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PandoProject Testnet\",\r\n        \"chain\": \"PandoProject\",\r\n        \"icon\": \"pando\",\r\n        \"rpc\": [\r\n            \"https://testnet.ethrpc.pandoproject.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"pando-token\",\r\n            \"symbol\": \"PTX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.pandoproject.org/\",\r\n        \"shortName\": \"pando-testnet\",\r\n        \"chainId\": 3602,\r\n        \"networkId\": 3602,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pando Testnet Explorer\",\r\n                \"url\": \"https://testnet.explorer.pandoproject.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metacodechain\",\r\n        \"chain\": \"metacode\",\r\n        \"rpc\": [\r\n            \"https://j.blockcoach.com:8503\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"J\",\r\n            \"symbol\": \"J\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://j.blockcoach.com:8089\",\r\n        \"shortName\": \"metacode\",\r\n        \"chainId\": 3666,\r\n        \"networkId\": 3666,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"meta\",\r\n                \"url\": \"https://j.blockcoach.com:8089\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Empire Network\",\r\n        \"chain\": \"EMPIRE\",\r\n        \"rpc\": [\r\n            \"https://rpc.empirenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Empire\",\r\n            \"symbol\": \"EMPIRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.empirenetwork.io/\",\r\n        \"shortName\": \"empire\",\r\n        \"chainId\": 3693,\r\n        \"networkId\": 3693,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Empire Explorer\",\r\n                \"url\": \"https://explorer.empirenetwork.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DRAC Network\",\r\n        \"chain\": \"DRAC\",\r\n        \"rpc\": [\r\n            \"https://www.dracscan.com/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.dracscan.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DRAC\",\r\n            \"symbol\": \"DRAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://drac.io/\",\r\n        \"shortName\": \"drac\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"chainId\": 3912,\r\n        \"networkId\": 3912,\r\n        \"icon\": \"drac\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DRAC_Network Scan\",\r\n                \"url\": \"https://www.dracscan.io\",\r\n                \"icon\": \"DRAC\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitindi Testnet\",\r\n        \"chain\": \"BNI\",\r\n        \"icon\": \"bitindiTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.bitindi.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bitindi.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNI\",\r\n            \"symbol\": \"$BNI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitindi.org\",\r\n        \"shortName\": \"BNIt\",\r\n        \"chainId\": 4096,\r\n        \"networkId\": 4096,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitindi\",\r\n                \"url\": \"https://testnet.bitindiscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitindi Mainnet\",\r\n        \"chain\": \"BNI\",\r\n        \"icon\": \"bitindi\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.bitindi.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bitindi.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNI\",\r\n            \"symbol\": \"$BNI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitindi.org\",\r\n        \"shortName\": \"BNIm\",\r\n        \"chainId\": 4099,\r\n        \"networkId\": 4099,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitindi\",\r\n                \"url\": \"https://bitindiscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bobafuji Testnet\",\r\n        \"chain\": \"Bobafuji Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.avax.boba.network\",\r\n            \"wss://wss.testnet.avax.boba.network\",\r\n            \"https://replica.testnet.avax.boba.network\",\r\n            \"wss://replica-wss.testnet.avax.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"BobaFujiTestnet\",\r\n        \"chainId\": 4328,\r\n        \"networkId\": 4328,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bobafuji Testnet block explorer\",\r\n                \"url\": \"https://blockexplorer.testnet.avax.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Htmlcoin Mainnet\",\r\n        \"chain\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://janus.htmlcoin.com/api/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://gruvin.me/htmlcoin\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Htmlcoin\",\r\n            \"symbol\": \"HTML\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://htmlcoin.com\",\r\n        \"shortName\": \"html\",\r\n        \"chainId\": 4444,\r\n        \"networkId\": 4444,\r\n        \"icon\": \"htmlcoin\",\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"htmlcoin\",\r\n                \"url\": \"https://explorer.htmlcoin.com\",\r\n                \"icon\": \"htmlcoin\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlackFort Exchange Network Testnet\",\r\n        \"chain\": \"TBXN\",\r\n        \"rpc\": [\r\n            \"https://testnet.blackfort.network/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BlackFort Testnet Token\",\r\n            \"symbol\": \"TBXN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blackfort.exchange\",\r\n        \"shortName\": \"TBXN\",\r\n        \"chainId\": 4777,\r\n        \"networkId\": 4777,\r\n        \"icon\": \"bxn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-explorer.blackfort.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlackFort Exchange Network\",\r\n        \"chain\": \"BXN\",\r\n        \"rpc\": [\r\n            \"https://mainnet.blackfort.network/rpc\",\r\n            \"https://mainnet-1.blackfort.network/rpc\",\r\n            \"https://mainnet-2.blackfort.network/rpc\",\r\n            \"https://mainnet-3.blackfort.network/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BlackFort Token\",\r\n            \"symbol\": \"BXN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blackfort.exchange\",\r\n        \"shortName\": \"BXN\",\r\n        \"chainId\": 4999,\r\n        \"networkId\": 4999,\r\n        \"icon\": \"bxn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.blackfort.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mantle\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.mantle.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BitDAO\",\r\n            \"symbol\": \"BIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mantle.xyz\",\r\n        \"shortName\": \"mantle\",\r\n        \"chainId\": 5000,\r\n        \"networkId\": 5000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mantle Explorer\",\r\n                \"url\": \"https://explorer.mantle.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mantle Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.mantle.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.mantle.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet BitDAO\",\r\n            \"symbol\": \"BIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mantle.xyz\",\r\n        \"shortName\": \"mantle-testnet\",\r\n        \"chainId\": 5001,\r\n        \"networkId\": 5001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mantle Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.mantle.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Humanode Mainnet\",\r\n        \"chain\": \"HMND\",\r\n        \"rpc\": [\r\n            \"https://explorer-rpc-http.mainnet.stages.humanode.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HMND\",\r\n            \"symbol\": \"HMND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://humanode.io\",\r\n        \"shortName\": \"hmnd\",\r\n        \"chainId\": 5234,\r\n        \"networkId\": 5234,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Firechain Mainnet Old\",\r\n        \"chain\": \"FIRE\",\r\n        \"icon\": \"firechain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.rpc1.thefirechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Firechain\",\r\n            \"symbol\": \"FIRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thefirechain.com\",\r\n        \"shortName\": \"_old_fire\",\r\n        \"chainId\": 5290,\r\n        \"networkId\": 5290,\r\n        \"explorers\": [],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Chain Verse Mainnet\",\r\n        \"chain\": \"CVERSE\",\r\n        \"icon\": \"chain_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.chainverse.info\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oasys\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://chainverse.info\",\r\n        \"shortName\": \"cverse\",\r\n        \"chainId\": 5555,\r\n        \"networkId\": 5555,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Chain Verse Explorer\",\r\n                \"url\": \"https://explorer.chainverse.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hika Network Testnet\",\r\n        \"title\": \"Hika Network Testnet\",\r\n        \"chain\": \"HIK\",\r\n        \"icon\": \"hik\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.hika.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hik Token\",\r\n            \"symbol\": \"HIK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hika.network/\",\r\n        \"shortName\": \"hik\",\r\n        \"chainId\": 5729,\r\n        \"networkId\": 5729,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hika Network Testnet Explorer\",\r\n                \"url\": \"https://scan-testnet.hika.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tres Testnet\",\r\n        \"chain\": \"TresLeches\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.tresleches.finance/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.tresleches.finance:8080\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TRES\",\r\n            \"symbol\": \"TRES\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://treschain.com\",\r\n        \"shortName\": \"TRESTEST\",\r\n        \"chainId\": 6065,\r\n        \"networkId\": 6065,\r\n        \"icon\": \"tresleches\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"treslechesexplorer\",\r\n                \"url\": \"https://explorer-test.tresleches.finance\",\r\n                \"icon\": \"treslechesexplorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tres Mainnet\",\r\n        \"chain\": \"TresLeches\",\r\n        \"rpc\": [\r\n            \"https://rpc.tresleches.finance/\",\r\n            \"https://rpc.treschain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TRES\",\r\n            \"symbol\": \"TRES\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://treschain.com\",\r\n        \"shortName\": \"TRESMAIN\",\r\n        \"chainId\": 6066,\r\n        \"networkId\": 6066,\r\n        \"icon\": \"tresleches\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"treslechesexplorer\",\r\n                \"url\": \"https://explorer.tresleches.finance\",\r\n                \"icon\": \"treslechesexplorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gold Smart Chain Mainnet\",\r\n        \"chain\": \"STAND\",\r\n        \"icon\": \"stand\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.goldsmartchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.goldsmartchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Standard in Gold\",\r\n            \"symbol\": \"STAND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://goldsmartchain.com\",\r\n        \"shortName\": \"STANDm\",\r\n        \"chainId\": 6789,\r\n        \"networkId\": 6789,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gold Smart Chain\",\r\n                \"url\": \"https://mainnet.goldsmartchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PolySmartChain\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://seed0.polysmartchain.com/\",\r\n            \"https://seed1.polysmartchain.com/\",\r\n            \"https://seed2.polysmartchain.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PSC\",\r\n            \"symbol\": \"PSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.polysmartchain.com/\",\r\n        \"shortName\": \"psc\",\r\n        \"chainId\": 6999,\r\n        \"networkId\": 6999\r\n    },\r\n    {\r\n        \"name\": \"ZetaChain Mainnet\",\r\n        \"chain\": \"ZetaChain\",\r\n        \"icon\": \"zetachain\",\r\n        \"rpc\": [\r\n            \"https://api.mainnet.zetachain.com/evm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zeta\",\r\n            \"symbol\": \"ZETA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.zetachain.com/\",\r\n        \"shortName\": \"zetachain-mainnet\",\r\n        \"chainId\": 7000,\r\n        \"networkId\": 7000,\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZetaChain Mainnet Explorer\",\r\n                \"url\": \"https://explorer.mainnet.zetachain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZetaChain Athens Testnet\",\r\n        \"chain\": \"ZetaChain\",\r\n        \"icon\": \"zetachain\",\r\n        \"rpc\": [\r\n            \"https://zetachain-athens-evm.blockpi.network/v1/rpc/public\",\r\n            \"https://rpc.ankr.com/zetachain_evm_athens_testnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://labs.zetachain.com/get-zeta\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZETA\",\r\n            \"symbol\": \"tZETA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zetachain.com/docs\",\r\n        \"shortName\": \"zetachain-athens\",\r\n        \"chainId\": 7001,\r\n        \"networkId\": 7001,\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZetaChain Athens Testnet Explorer\",\r\n                \"url\": \"https://explorer.zetachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1695111759609.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1695111789559.png\",\r\n            \"color_chain_bg\": \"0x005741\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1695181451439.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1695181482445.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Planq Mainnet\",\r\n        \"chain\": \"Planq\",\r\n        \"icon\": \"planq\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.planq.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Planq\",\r\n            \"symbol\": \"PLQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://planq.network\",\r\n        \"shortName\": \"planq\",\r\n        \"chainId\": 7070,\r\n        \"networkId\": 7070,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Planq EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm.planq.network\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Planq Cosmos Explorer (BigDipper)\",\r\n                \"url\": \"https://explorer.planq.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shardeum Liberty 2.X\",\r\n        \"chain\": \"Shardeum\",\r\n        \"icon\": \"shardeum\",\r\n        \"rpc\": [\r\n            \"https://liberty20.shardeum.org/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.liberty20.shardeum.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shardeum SHM\",\r\n            \"symbol\": \"SHM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.shardeum.org/\",\r\n        \"shortName\": \"Liberty20\",\r\n        \"chainId\": 8081,\r\n        \"networkId\": 8081,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shardeum Scan\",\r\n                \"url\": \"https://explorer-liberty20.shardeum.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"redFlags\": [\r\n            \"reusedChainId\"\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shardeum Sphinx 1.X\",\r\n        \"chain\": \"Shardeum\",\r\n        \"icon\": \"shardeum\",\r\n        \"rpc\": [\r\n            \"https://sphinx.shardeum.org/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-sphinx.shardeum.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shardeum SHM\",\r\n            \"symbol\": \"SHM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.shardeum.org/\",\r\n        \"shortName\": \"Sphinx10\",\r\n        \"chainId\": 8082,\r\n        \"networkId\": 8082,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shardeum Scan\",\r\n                \"url\": \"https://explorer-sphinx.shardeum.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"redFlags\": [\r\n            \"reusedChainId\"\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"StreamuX Blockchain\",\r\n        \"chain\": \"StreamuX\",\r\n        \"rpc\": [\r\n            \"https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"StreamuX\",\r\n            \"symbol\": \"SmuX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.streamux.cloud\",\r\n        \"shortName\": \"StreamuX\",\r\n        \"chainId\": 8098,\r\n        \"networkId\": 8098\r\n    },\r\n    {\r\n        \"name\": \"Qitmeer Network Testnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [\r\n            \"https://testnet-qng.rpc.qitmeer.io\",\r\n            \"https://testnet.meerlabs.com\",\r\n            \"https://meer.testnet.meerfans.club\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.qitmeer.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qitmeer Testnet\",\r\n            \"symbol\": \"MEER-T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"meertest\",\r\n        \"chainId\": 8131,\r\n        \"networkId\": 8131,\r\n        \"icon\": \"meer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"meerscan testnet\",\r\n                \"url\": \"https://testnet.qng.meerscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BeOne Chain Testnet\",\r\n        \"chain\": \"BOC\",\r\n        \"rpc\": [\r\n            \"https://pre-boc1.beonechain.com\",\r\n            \"https://pre-boc2.beonechain.com\",\r\n            \"https://pre-boc3.beonechain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.beonescan.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BeOne Chain Testnet\",\r\n            \"symbol\": \"BOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.beonescan.com\",\r\n        \"shortName\": \"tBOC\",\r\n        \"chainId\": 8181,\r\n        \"networkId\": 8181,\r\n        \"icon\": \"beonechain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BeOne Chain Testnet\",\r\n                \"url\": \"https://testnet.beonescan.com\",\r\n                \"icon\": \"beonechain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blockton Blockchain\",\r\n        \"chain\": \"Blockton Blockchain\",\r\n        \"icon\": \"bton\",\r\n        \"rpc\": [\r\n            \"https://rpc.blocktonscan.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.blocktonscan.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BLOCKTON\",\r\n            \"symbol\": \"BTON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blocktoncoin.com\",\r\n        \"shortName\": \"BTON\",\r\n        \"chainId\": 8272,\r\n        \"networkId\": 8272,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockton Explorer\",\r\n                \"url\": \"https://blocktonscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KorthoTest\",\r\n        \"chain\": \"Kortho\",\r\n        \"rpc\": [\r\n            \"https://www.krotho-test.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kortho Test\",\r\n            \"symbol\": \"KTO\",\r\n            \"decimals\": 11\r\n        },\r\n        \"infoURL\": \"https://www.kortho.io/\",\r\n        \"shortName\": \"Kortho\",\r\n        \"chainId\": 8285,\r\n        \"networkId\": 8285\r\n    },\r\n    {\r\n        \"name\": \"Base\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://base.org\",\r\n        \"shortName\": \"base\",\r\n        \"chainId\": 8453,\r\n        \"networkId\": 8453,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Toki Network\",\r\n        \"chain\": \"TOKI\",\r\n        \"rpc\": [\r\n            \"https://mainnet.buildwithtoki.com/v0/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Toki\",\r\n            \"symbol\": \"TOKI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.buildwithtoki.com\",\r\n        \"shortName\": \"toki\",\r\n        \"chainId\": 8654,\r\n        \"networkId\": 8654,\r\n        \"icon\": \"toki\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Toki Testnet\",\r\n        \"chain\": \"TOKI\",\r\n        \"rpc\": [\r\n            \"https://testnet.buildwithtoki.com/v0/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Toki\",\r\n            \"symbol\": \"TOKI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.buildwithtoki.com\",\r\n        \"shortName\": \"toki-testnet\",\r\n        \"chainId\": 8655,\r\n        \"networkId\": 8655,\r\n        \"icon\": \"toki\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Alph Network\",\r\n        \"chain\": \"ALPH\",\r\n        \"rpc\": [\r\n            \"https://rpc.alph.network\",\r\n            \"wss://rpc.alph.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Alph Network\",\r\n            \"symbol\": \"ALPH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alph.network\",\r\n        \"shortName\": \"alph\",\r\n        \"chainId\": 8738,\r\n        \"networkId\": 8738,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"alphscan\",\r\n                \"url\": \"https://explorer.alph.network\",\r\n                \"icon\": \"alphscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TMY Chain\",\r\n        \"chain\": \"TMY\",\r\n        \"icon\": \"ethereum\",\r\n        \"rpc\": [\r\n            \"https://node1.tmyblockchain.org/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tmychain.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TMY\",\r\n            \"symbol\": \"TMY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tmychain.org/\",\r\n        \"shortName\": \"tmy\",\r\n        \"chainId\": 8768,\r\n        \"networkId\": 8768\r\n    },\r\n    {\r\n        \"name\": \"MARO Blockchain Mainnet\",\r\n        \"chain\": \"MARO Blockchain\",\r\n        \"icon\": \"MARO\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.ma.ro\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MARO\",\r\n            \"symbol\": \"MARO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ma.ro/\",\r\n        \"shortName\": \"maro\",\r\n        \"chainId\": 8848,\r\n        \"networkId\": 8848,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MARO Scan\",\r\n                \"url\": \"https://scan.ma.ro/#\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Unique\",\r\n        \"icon\": \"unique\",\r\n        \"chain\": \"UNQ\",\r\n        \"rpc\": [\r\n            \"https://rpc.unique.network\",\r\n            \"https://eu-rpc.unique.network\",\r\n            \"https://asia-rpc.unique.network\",\r\n            \"https://us-rpc.unique.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Unique\",\r\n            \"symbol\": \"UNQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://unique.network\",\r\n        \"shortName\": \"unq\",\r\n        \"chainId\": 8880,\r\n        \"networkId\": 8880,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unique Scan\",\r\n                \"url\": \"https://uniquescan.io/unique\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Quartz by Unique\",\r\n        \"icon\": \"quartz\",\r\n        \"chain\": \"UNQ\",\r\n        \"rpc\": [\r\n            \"https://rpc-quartz.unique.network\",\r\n            \"https://quartz.api.onfinality.io/public-ws\",\r\n            \"https://eu-rpc-quartz.unique.network\",\r\n            \"https://asia-rpc-quartz.unique.network\",\r\n            \"https://us-rpc-quartz.unique.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quartz\",\r\n            \"symbol\": \"QTZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://unique.network\",\r\n        \"shortName\": \"qtz\",\r\n        \"chainId\": 8881,\r\n        \"networkId\": 8881,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unique Scan / Quartz\",\r\n                \"url\": \"https://uniquescan.io/quartz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Opal testnet by Unique\",\r\n        \"icon\": \"opal\",\r\n        \"chain\": \"UNQ\",\r\n        \"rpc\": [\r\n            \"https://rpc-opal.unique.network\",\r\n            \"https://us-rpc-opal.unique.network\",\r\n            \"https://eu-rpc-opal.unique.network\",\r\n            \"https://asia-rpc-opal.unique.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://t.me/unique2faucet_opal_bot\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Opal\",\r\n            \"symbol\": \"UNQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://unique.network\",\r\n        \"shortName\": \"opl\",\r\n        \"chainId\": 8882,\r\n        \"networkId\": 8882,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unique Scan / Opal\",\r\n                \"url\": \"https://uniquescan.io/opal\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sapphire by Unique\",\r\n        \"icon\": \"sapphire\",\r\n        \"chain\": \"UNQ\",\r\n        \"rpc\": [\r\n            \"https://rpc-sapphire.unique.network\",\r\n            \"https://us-rpc-sapphire.unique.network\",\r\n            \"https://eu-rpc-sapphire.unique.network\",\r\n            \"https://asia-rpc-sapphire.unique.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quartz\",\r\n            \"symbol\": \"QTZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://unique.network\",\r\n        \"shortName\": \"sph\",\r\n        \"chainId\": 8883,\r\n        \"networkId\": 8883,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unique Scan / Sapphire\",\r\n                \"url\": \"https://uniquescan.io/sapphire\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vyvo Smart Chain\",\r\n        \"chain\": \"VSC\",\r\n        \"rpc\": [\r\n            \"https://vsc-dataseed.vyvo.org:8889\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VSC\",\r\n            \"symbol\": \"VSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vsc-dataseed.vyvo.org\",\r\n        \"shortName\": \"vsc\",\r\n        \"chainId\": 8889,\r\n        \"networkId\": 8889\r\n    },\r\n    {\r\n        \"name\": \"JIBCHAIN L1\",\r\n        \"chain\": \"JBC\",\r\n        \"rpc\": [\r\n            \"https://rpc-l1.jibchain.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JIBCOIN\",\r\n            \"symbol\": \"JBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://jibchain.net\",\r\n        \"shortName\": \"jbc\",\r\n        \"chainId\": 8899,\r\n        \"networkId\": 8899,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JIBCHAIN Explorer\",\r\n                \"url\": \"https://exp-l1.jibchain.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Giant Mammoth Mainnet\",\r\n        \"title\": \"Giant Mammoth Chain\",\r\n        \"chain\": \"GMMT\",\r\n        \"rpc\": [\r\n            \"https://rpc-asia.gmmtchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Giant Mammoth Coin\",\r\n            \"symbol\": \"GMMT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gmmtchain.io/\",\r\n        \"shortName\": \"gmmt\",\r\n        \"chainId\": 8989,\r\n        \"networkId\": 8989,\r\n        \"icon\": \"gmmt\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"gmmtscan\",\r\n                \"url\": \"https://scan.gmmtchain.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"gmmt\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rinia Testnet Old\",\r\n        \"chain\": \"FIRE\",\r\n        \"icon\": \"rinia\",\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://faucet.thefirechain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Firechain\",\r\n            \"symbol\": \"FIRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thefirechain.com\",\r\n        \"shortName\": \"_old_tfire\",\r\n        \"chainId\": 9170,\r\n        \"networkId\": 9170,\r\n        \"explorers\": [],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Dogcoin Testnet\",\r\n        \"chain\": \"DOGS\",\r\n        \"icon\": \"dogs\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.dogcoin.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dogcoin.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogcoin\",\r\n            \"symbol\": \"DOGS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dogcoin.network\",\r\n        \"shortName\": \"DOGSt\",\r\n        \"chainId\": 9339,\r\n        \"networkId\": 9339,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dogcoin\",\r\n                \"url\": \"https://testnet.dogcoin.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QEasyWeb3 Testnet\",\r\n        \"chain\": \"QET\",\r\n        \"rpc\": [\r\n            \"https://qeasyweb3.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.qeasyweb3.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QET\",\r\n            \"symbol\": \"QET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.qeasyweb3.com\",\r\n        \"shortName\": \"QETTest\",\r\n        \"chainId\": 9528,\r\n        \"networkId\": 9528,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"QEasyWeb3 Explorer\",\r\n                \"url\": \"https://www.qeasyweb3.com\",\r\n                \"icon\": \"qetscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oort MainnetDev\",\r\n        \"title\": \"Oort MainnetDev\",\r\n        \"chain\": \"MainnetDev\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oort\",\r\n            \"symbol\": \"CCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oortech.com\",\r\n        \"shortName\": \"MainnetDev\",\r\n        \"chainId\": 9700,\r\n        \"networkId\": 9700,\r\n        \"icon\": \"ccn\"\r\n    },\r\n    {\r\n        \"name\": \"Boba BNB Testnet\",\r\n        \"chain\": \"Boba BNB Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.bnb.boba.network\",\r\n            \"wss://wss.testnet.bnb.boba.network\",\r\n            \"https://replica.testnet.bnb.boba.network\",\r\n            \"wss://replica-wss.testnet.bnb.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"BobaBnbTestnet\",\r\n        \"chainId\": 9728,\r\n        \"networkId\": 9728,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Boba BNB Testnet block explorer\",\r\n                \"url\": \"https://blockexplorer.testnet.bnb.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MainnetZ Testnet\",\r\n        \"chain\": \"NetZ\",\r\n        \"icon\": \"mainnetzTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.mainnetz.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mainnetz.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MainnetZ\",\r\n            \"symbol\": \"NetZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.mainnetz.io\",\r\n        \"shortName\": \"NetZt\",\r\n        \"chainId\": 9768,\r\n        \"networkId\": 9768,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MainnetZ\",\r\n                \"url\": \"https://testnet.mainnetz.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gon Chain\",\r\n        \"chain\": \"GonChain\",\r\n        \"icon\": \"gonchain\",\r\n        \"rpc\": [\r\n            \"https://node1.testnet.gaiaopen.network\",\r\n            \"http://database1.gaiaopen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gon Token\",\r\n            \"symbol\": \"GT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"gon\",\r\n        \"chainId\": 10024,\r\n        \"networkId\": 10024,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gon Explorer\",\r\n                \"url\": \"https://gonscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SJATSH\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"http://geth.free.idcfengye.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sjis.me\",\r\n        \"shortName\": \"SJ\",\r\n        \"chainId\": 10086,\r\n        \"networkId\": 10086\r\n    },\r\n    {\r\n        \"name\": \"Chiado Testnet\",\r\n        \"chain\": \"CHI\",\r\n        \"icon\": \"gnosis\",\r\n        \"rpc\": [\r\n            \"https://rpc.chiadochain.net\",\r\n            \"https://rpc.eu-central-2.gateway.fm/v3/gnosis/archival/chiado\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://gnosisfaucet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Chiado xDAI\",\r\n            \"symbol\": \"xDAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.gnosischain.com\",\r\n        \"shortName\": \"chi\",\r\n        \"chainId\": 10200,\r\n        \"networkId\": 10200,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.chiadochain.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"0XTade\",\r\n        \"chain\": \"0XTade Chain\",\r\n        \"rpc\": [\r\n            \"https://node.0xtchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"0XT\",\r\n            \"symbol\": \"0XT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.0xtrade.finance/\",\r\n        \"shortName\": \"0xt\",\r\n        \"chainId\": 10248,\r\n        \"networkId\": 10248,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"0xtrade Scan\",\r\n                \"url\": \"https://www.0xtscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Numbers Mainnet\",\r\n        \"chain\": \"NUM\",\r\n        \"icon\": \"num\",\r\n        \"rpc\": [\r\n            \"https://mainnetrpc.num.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NUM Token\",\r\n            \"symbol\": \"NUM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://numbersprotocol.io\",\r\n        \"shortName\": \"Jade\",\r\n        \"chainId\": 10507,\r\n        \"networkId\": 10507,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ethernal\",\r\n                \"url\": \"https://mainnet.num.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Numbers Testnet\",\r\n        \"chain\": \"NUM\",\r\n        \"icon\": \"num\",\r\n        \"rpc\": [\r\n            \"https://testnetrpc.num.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.avax.network/?subnet=num\",\r\n            \"https://faucet.num.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NUM Token\",\r\n            \"symbol\": \"NUM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://numbersprotocol.io\",\r\n        \"shortName\": \"Snow\",\r\n        \"chainId\": 10508,\r\n        \"networkId\": 10508,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ethernal\",\r\n                \"url\": \"https://testnet.num.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Astra\",\r\n        \"chain\": \"Astra\",\r\n        \"rpc\": [\r\n            \"https://rpc.astranaut.io\",\r\n            \"https://rpc1.astranaut.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Astra\",\r\n            \"symbol\": \"ASA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astranaut.io\",\r\n        \"shortName\": \"astra\",\r\n        \"chainId\": 11110,\r\n        \"networkId\": 11110,\r\n        \"icon\": \"astra\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Astra EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.astranaut.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"astra\"\r\n            },\r\n            {\r\n                \"name\": \"Astra PingPub Explorer\",\r\n                \"url\": \"https://ping.astranaut.io/astra\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"astra\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Astra Testnet\",\r\n        \"chain\": \"Astra\",\r\n        \"rpc\": [\r\n            \"https://rpc.astranaut.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.astranaut.dev\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-Astra\",\r\n            \"symbol\": \"tASA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astranaut.io\",\r\n        \"shortName\": \"astra-testnet\",\r\n        \"chainId\": 11115,\r\n        \"networkId\": 11115,\r\n        \"icon\": \"astra\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Astra EVM Explorer\",\r\n                \"url\": \"https://explorer.astranaut.dev\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"astra\"\r\n            },\r\n            {\r\n                \"name\": \"Astra PingPub Explorer\",\r\n                \"url\": \"https://ping.astranaut.dev/astra\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"astra\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haqq Network\",\r\n        \"chain\": \"Haqq\",\r\n        \"rpc\": [\r\n            \"https://rpc.eth.haqq.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Islamic Coin\",\r\n            \"symbol\": \"ISLM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://islamiccoin.net\",\r\n        \"shortName\": \"ISLM\",\r\n        \"chainId\": 11235,\r\n        \"networkId\": 11235,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mainnet HAQQ Explorer\",\r\n                \"url\": \"https://explorer.haqq.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sardis Testnet\",\r\n        \"chain\": \"SRDX\",\r\n        \"icon\": \"sardisTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.sardisnetwork.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.sardisnetwork.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sardis\",\r\n            \"symbol\": \"SRDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mysardis.com\",\r\n        \"shortName\": \"SRDXt\",\r\n        \"chainId\": 11612,\r\n        \"networkId\": 11612,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sardis\",\r\n                \"url\": \"https://testnet.sardisnetwork.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SanR Chain\",\r\n        \"chain\": \"SanRChain\",\r\n        \"rpc\": [\r\n            \"https://sanrchain-node.santiment.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"nSAN\",\r\n            \"symbol\": \"nSAN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sanr.app\",\r\n        \"shortName\": \"SAN\",\r\n        \"chainId\": 11888,\r\n        \"networkId\": 11888,\r\n        \"icon\": \"sanrchain\",\r\n        \"parent\": {\r\n            \"chain\": \"eip155-1\",\r\n            \"type\": \"L2\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sanr.app\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SanR Chain Explorer\",\r\n                \"url\": \"https://sanrchain-explorer.santiment.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BLG Testnet\",\r\n        \"chain\": \"BLG\",\r\n        \"icon\": \"blg\",\r\n        \"rpc\": [\r\n            \"https://rpc.blgchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.blgchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Blg\",\r\n            \"symbol\": \"BLG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blgchain.com\",\r\n        \"shortName\": \"blgchain\",\r\n        \"chainId\": 12321,\r\n        \"networkId\": 12321\r\n    },\r\n    {\r\n        \"name\": \"Step Testnet\",\r\n        \"title\": \"Step Test Network\",\r\n        \"chain\": \"STEP\",\r\n        \"icon\": \"step\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.step.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.step.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FITFI\",\r\n            \"symbol\": \"FITFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://step.network\",\r\n        \"shortName\": \"steptest\",\r\n        \"chainId\": 12345,\r\n        \"networkId\": 12345,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"StepScan\",\r\n                \"url\": \"https://testnet.stepscan.io\",\r\n                \"icon\": \"step\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-43113\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"SPS\",\r\n        \"chain\": \"SPS\",\r\n        \"rpc\": [\r\n            \"https://rpc.ssquad.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ECG\",\r\n            \"symbol\": \"ECG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ssquad.games/\",\r\n        \"shortName\": \"SPS\",\r\n        \"chainId\": 13000,\r\n        \"networkId\": 13000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SPS Explorer\",\r\n                \"url\": \"http://spsscan.ssquad.games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Credit Smartchain Mainnet\",\r\n        \"chain\": \"CREDIT\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.cscscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Credit\",\r\n            \"symbol\": \"CREDIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://creditsmartchain.com\",\r\n        \"shortName\": \"Credit\",\r\n        \"chainId\": 13308,\r\n        \"networkId\": 1,\r\n        \"icon\": \"credit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CSC Scan\",\r\n                \"url\": \"https://explorer.cscscan.io\",\r\n                \"icon\": \"credit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Susono\",\r\n        \"chain\": \"SUS\",\r\n        \"rpc\": [\r\n            \"https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Susono\",\r\n            \"symbol\": \"OPN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"sus\",\r\n        \"chainId\": 13812,\r\n        \"networkId\": 13812,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Susono\",\r\n                \"url\": \"http://explorer.opn.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SPS Testnet\",\r\n        \"chain\": \"SPS-Testnet\",\r\n        \"rpc\": [\r\n            \"https://www.3sps.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ECG\",\r\n            \"symbol\": \"ECG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ssquad.games/\",\r\n        \"shortName\": \"SPS-Test\",\r\n        \"chainId\": 14000,\r\n        \"networkId\": 14000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SPS Test Explorer\",\r\n                \"url\": \"https://explorer.3sps.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AirDAO Mainnet\",\r\n        \"chain\": \"ambnet\",\r\n        \"icon\": \"airdao\",\r\n        \"rpc\": [\r\n            \"https://network.ambrosus.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Amber\",\r\n            \"symbol\": \"AMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://airdao.io\",\r\n        \"shortName\": \"airdao\",\r\n        \"chainId\": 16718,\r\n        \"networkId\": 16718,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AirDAO Network Explorer\",\r\n                \"url\": \"https://airdao.io/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Frontier of Dreams Testnet\",\r\n        \"chain\": \"Game Network\",\r\n        \"rpc\": [\r\n            \"https://rpc.fod.games/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZKST\",\r\n            \"symbol\": \"ZKST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"shortName\": \"ZKST\",\r\n        \"chainId\": 18000,\r\n        \"networkId\": 18000,\r\n        \"infoURL\": \"https://goexosphere.com\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Game Network\",\r\n                \"url\": \"https://explorer.fod.games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Proof Of Memes\",\r\n        \"title\": \"Proof Of Memes Mainnet\",\r\n        \"chain\": \"POM\",\r\n        \"icon\": \"pom\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.memescan.io\",\r\n            \"https://mainnet-rpc2.memescan.io\",\r\n            \"https://mainnet-rpc3.memescan.io\",\r\n            \"https://mainnet-rpc4.memescan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Proof Of Memes\",\r\n            \"symbol\": \"POM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://proofofmemes.org\",\r\n        \"shortName\": \"pom\",\r\n        \"chainId\": 18159,\r\n        \"networkId\": 18159,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer-proofofmemes\",\r\n                \"url\": \"https://memescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HOME Verse Mainnet\",\r\n        \"chain\": \"HOME Verse\",\r\n        \"icon\": \"home_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.oasys.homeverse.games/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.homeverse.games/\",\r\n        \"shortName\": \"HMV\",\r\n        \"chainId\": 19011,\r\n        \"networkId\": 19011,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HOME Verse Explorer\",\r\n                \"url\": \"https://explorer.oasys.homeverse.games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Callisto Testnet\",\r\n        \"chain\": \"CLO\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.callisto.network/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.callisto.network/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Callisto\",\r\n            \"symbol\": \"CLO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://callisto.network\",\r\n        \"shortName\": \"CLOTestnet\",\r\n        \"chainId\": 20729,\r\n        \"networkId\": 79\r\n    },\r\n    {\r\n        \"name\": \"P12 Chain\",\r\n        \"chain\": \"P12\",\r\n        \"icon\": \"p12\",\r\n        \"rpc\": [\r\n            \"https://rpc-chain.p12.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hooked P2\",\r\n            \"symbol\": \"hP2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://p12.network\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"shortName\": \"p12\",\r\n        \"chainId\": 20736,\r\n        \"networkId\": 20736,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"P12 Chain Explorer\",\r\n                \"url\": \"https://explorer.p12.games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AirDAO Testnet\",\r\n        \"chain\": \"ambnet-test\",\r\n        \"icon\": \"airdao\",\r\n        \"rpc\": [\r\n            \"https://network.ambrosus-test.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Amber\",\r\n            \"symbol\": \"AMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.airdao.io\",\r\n        \"shortName\": \"airdao-test\",\r\n        \"chainId\": 22040,\r\n        \"networkId\": 22040,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AirDAO Network Explorer\",\r\n                \"url\": \"https://testnet.airdao.io/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MAP Protocol\",\r\n        \"chain\": \"MAPO\",\r\n        \"icon\": \"map\",\r\n        \"rpc\": [\r\n            \"https://rpc.maplabs.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAPO\",\r\n            \"symbol\": \"MAPO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mapprotocol.io/\",\r\n        \"shortName\": \"mapo\",\r\n        \"chainId\": 22776,\r\n        \"networkId\": 22776,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maposcan\",\r\n                \"url\": \"https://maposcan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Opside Testnet\",\r\n        \"chain\": \"Opside\",\r\n        \"rpc\": [\r\n            \"https://testrpc.opside.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.opside.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IDE\",\r\n            \"symbol\": \"IDE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://opside.network\",\r\n        \"shortName\": \"opside\",\r\n        \"chainId\": 23118,\r\n        \"networkId\": 23118,\r\n        \"icon\": \"opside\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"opsideInfo\",\r\n                \"url\": \"https://opside.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oasis Sapphire\",\r\n        \"chain\": \"Sapphire\",\r\n        \"icon\": \"oasis\",\r\n        \"rpc\": [\r\n            \"https://sapphire.oasis.io\",\r\n            \"wss://sapphire.oasis.io/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sapphire Rose\",\r\n            \"symbol\": \"ROSE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.oasis.io/dapp/sapphire\",\r\n        \"shortName\": \"sapphire\",\r\n        \"chainId\": 23294,\r\n        \"networkId\": 23294,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Oasis Sapphire Explorer\",\r\n                \"url\": \"https://explorer.sapphire.oasis.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oasis Sapphire Testnet\",\r\n        \"chain\": \"Sapphire\",\r\n        \"icon\": \"oasis\",\r\n        \"rpc\": [\r\n            \"https://testnet.sapphire.oasis.dev\",\r\n            \"wss://testnet.sapphire.oasis.dev/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sapphire Test Rose\",\r\n            \"symbol\": \"TEST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.oasis.io/dapp/sapphire\",\r\n        \"shortName\": \"sapphire-testnet\",\r\n        \"chainId\": 23295,\r\n        \"networkId\": 23295,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Oasis Sapphire Testnet Explorer\",\r\n                \"url\": \"https://testnet.explorer.sapphire.oasis.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hammer Chain Mainnet\",\r\n        \"chain\": \"HammerChain\",\r\n        \"rpc\": [\r\n            \"https://www.hammerchain.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GOLDT\",\r\n            \"symbol\": \"GOLDT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.hammerchain.io\",\r\n        \"shortName\": \"GOLDT\",\r\n        \"chainId\": 25888,\r\n        \"networkId\": 25888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hammer Chain Explorer\",\r\n                \"url\": \"https://www.hammerchain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitkub Chain Testnet\",\r\n        \"chain\": \"BKC\",\r\n        \"icon\": \"bkc\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.bitkubchain.io\",\r\n            \"wss://wss-testnet.bitkubchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bitkubchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitkub Coin\",\r\n            \"symbol\": \"tKUB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bitkubchain.com/\",\r\n        \"shortName\": \"bkct\",\r\n        \"chainId\": 25925,\r\n        \"networkId\": 25925,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bkcscan-testnet\",\r\n                \"url\": \"https://testnet.bkcscan.com\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"bkc\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hertz Network Mainnet\",\r\n        \"chain\": \"HTZ\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.hertzscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hertz\",\r\n            \"symbol\": \"HTZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.hertz-network.com\",\r\n        \"shortName\": \"HTZ\",\r\n        \"chainId\": 26600,\r\n        \"networkId\": 26600,\r\n        \"icon\": \"hertz-network\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hertz Scan\",\r\n                \"url\": \"https://hertzscan.com\",\r\n                \"icon\": \"hertz-network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Optimism Bedrock (Goerli Alpha Testnet)\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://alpha-1-replica-0.bedrock-goerli.optimism.io\",\r\n            \"https://alpha-1-replica-1.bedrock-goerli.optimism.io\",\r\n            \"https://alpha-1-replica-2.bedrock-goerli.optimism.io\",\r\n            \"https://alpha-1-replica-2.bedrock-goerli.optimism.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Goerli Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://community.optimism.io/docs/developers/bedrock\",\r\n        \"shortName\": \"obgor\",\r\n        \"chainId\": 28528,\r\n        \"networkId\": 28528,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.com/optimism/bedrock-alpha\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CloudTx Mainnet\",\r\n        \"chain\": \"CLD\",\r\n        \"icon\": \"cloudtx\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.cloudtx.finance\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CloudTx\",\r\n            \"symbol\": \"CLD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cloudtx.finance\",\r\n        \"shortName\": \"CLDTX\",\r\n        \"chainId\": 31223,\r\n        \"networkId\": 31223,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"cloudtxscan\",\r\n                \"url\": \"https://scan.cloudtx.finance\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CloudTx Testnet\",\r\n        \"chain\": \"CloudTx\",\r\n        \"icon\": \"cloudtx\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.cloudtx.finance\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.cloudtx.finance\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CloudTx\",\r\n            \"symbol\": \"CLD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cloudtx.finance/\",\r\n        \"shortName\": \"CLD\",\r\n        \"chainId\": 31224,\r\n        \"networkId\": 31224,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"cloudtxexplorer\",\r\n                \"url\": \"https://explorer.cloudtx.finance\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filecoin - Wallaby testnet\",\r\n        \"chain\": \"FIL\",\r\n        \"icon\": \"filecoin\",\r\n        \"rpc\": [\r\n            \"https://wallaby.node.glif.io/rpc/v1\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://wallaby.yoga/#faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testnet filecoin\",\r\n            \"symbol\": \"tFIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filecoin.io\",\r\n        \"shortName\": \"filecoin-wallaby\",\r\n        \"chainId\": 31415,\r\n        \"networkId\": 31415,\r\n        \"slip44\": 1,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Aves Mainnet\",\r\n        \"chain\": \"AVS\",\r\n        \"rpc\": [\r\n            \"https://rpc.avescoin.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aves\",\r\n            \"symbol\": \"AVS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://avescoin.io\",\r\n        \"shortName\": \"avs\",\r\n        \"chainId\": 33333,\r\n        \"networkId\": 33333,\r\n        \"icon\": \"aves\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"avescan\",\r\n                \"url\": \"https://avescan.io\",\r\n                \"icon\": \"avescan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"J2O Taro\",\r\n        \"chain\": \"TARO\",\r\n        \"rpc\": [\r\n            \"https://rpc.j2o.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TARO Coin\",\r\n            \"symbol\": \"taro\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://j2o.io\",\r\n        \"shortName\": \"j2o\",\r\n        \"chainId\": 35011,\r\n        \"networkId\": 35011,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"J2O Taro Explorer\",\r\n                \"url\": \"https://exp.j2o.io\",\r\n                \"icon\": \"j2otaro\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OHO Mainnet\",\r\n        \"chain\": \"OHO\",\r\n        \"rpc\": [\r\n            \"https://mainnet.oho.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OHO\",\r\n            \"symbol\": \"OHO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oho.ai\",\r\n        \"shortName\": \"oho\",\r\n        \"chainId\": 39815,\r\n        \"networkId\": 39815,\r\n        \"icon\": \"oho\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ohoscan\",\r\n                \"url\": \"https://ohoscan.com\",\r\n                \"icon\": \"ohoscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Opulent-X BETA\",\r\n        \"chainId\": 41500,\r\n        \"shortName\": \"ox-beta\",\r\n        \"chain\": \"Opulent-X\",\r\n        \"networkId\": 41500,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oxyn Gas\",\r\n            \"symbol\": \"OXYN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://connect.opulent-x.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://beta.opulent-x.com\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Opulent-X BETA Explorer\",\r\n                \"url\": \"https://explorer.opulent-x.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba Avax\",\r\n        \"chain\": \"Boba Avax\",\r\n        \"rpc\": [\r\n            \"https://avax.boba.network\",\r\n            \"wss://wss.avax.boba.network\",\r\n            \"https://replica.avax.boba.network\",\r\n            \"wss://replica-wss.avax.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.boba.network/for-developers/network-avalanche\",\r\n        \"shortName\": \"bobaavax\",\r\n        \"chainId\": 43288,\r\n        \"networkId\": 43288,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Boba Avax Explorer\",\r\n                \"url\": \"https://blockexplorer.avax.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Frenchain\",\r\n        \"chain\": \"fren\",\r\n        \"rpc\": [\r\n            \"https://rpc-02.frenscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FREN\",\r\n            \"symbol\": \"FREN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://frenchain.app\",\r\n        \"shortName\": \"FREN\",\r\n        \"chainId\": 44444,\r\n        \"networkId\": 44444,\r\n        \"icon\": \"fren\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://frenscan.io\",\r\n                \"icon\": \"fren\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fusion Testnet\",\r\n        \"chain\": \"FSN\",\r\n        \"icon\": \"fusion\",\r\n        \"rpc\": [\r\n            \"https://testnet.fusionnetwork.io\",\r\n            \"wss://testnet.fusionnetwork.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Fusion\",\r\n            \"symbol\": \"T-FSN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fusion.org\",\r\n        \"shortName\": \"tfsn\",\r\n        \"chainId\": 46688,\r\n        \"networkId\": 46688,\r\n        \"slip44\": 288,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"fsnscan\",\r\n                \"url\": \"https://testnet.fsnscan.com\",\r\n                \"icon\": \"fsnscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Floripa\",\r\n        \"title\": \"Wireshape Testnet Floripa\",\r\n        \"chain\": \"Wireshape\",\r\n        \"rpc\": [\r\n            \"https://rpc-floripa.wireshape.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WIRE\",\r\n            \"symbol\": \"WIRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wireshape.org\",\r\n        \"shortName\": \"floripa\",\r\n        \"chainId\": 49049,\r\n        \"networkId\": 49049,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Wire Explorer\",\r\n                \"url\": \"https://floripa-explorer.wireshape.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bifrost Testnet\",\r\n        \"title\": \"The Bifrost Testnet network\",\r\n        \"chain\": \"BFC\",\r\n        \"rpc\": [\r\n            \"https://public-01.testnet.thebifrost.io/rpc\",\r\n            \"https://public-02.testnet.thebifrost.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bifrost\",\r\n            \"symbol\": \"BFC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://thebifrost.io\",\r\n        \"shortName\": \"tbfc\",\r\n        \"chainId\": 49088,\r\n        \"networkId\": 49088,\r\n        \"icon\": \"bifrost\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer-thebifrost\",\r\n                \"url\": \"https://explorer.testnet.thebifrost.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Liveplex OracleEVM\",\r\n        \"chain\": \"Liveplex OracleEVM Network\",\r\n        \"rpc\": [\r\n            \"https://rpc.oracle.liveplex.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"LOE\",\r\n        \"chainId\": 50001,\r\n        \"networkId\": 50001,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Sardis Mainnet\",\r\n        \"chain\": \"SRDX\",\r\n        \"icon\": \"sardis\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.sardisnetwork.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.sardisnetwork.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sardis\",\r\n            \"symbol\": \"SRDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mysardis.com\",\r\n        \"shortName\": \"SRDXm\",\r\n        \"chainId\": 51712,\r\n        \"networkId\": 51712,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sardis\",\r\n                \"url\": \"https://contract-mainnet.sardisnetwork.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haqq Chain Testnet\",\r\n        \"chain\": \"TestEdge2\",\r\n        \"rpc\": [\r\n            \"https://rpc.eth.testedge2.haqq.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testedge2.haqq.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Islamic Coin\",\r\n            \"symbol\": \"ISLMT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://islamiccoin.net\",\r\n        \"shortName\": \"ISLMT\",\r\n        \"chainId\": 54211,\r\n        \"networkId\": 54211,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TestEdge HAQQ Explorer\",\r\n                \"url\": \"https://explorer.testedge2.haqq.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba BNB Mainnet\",\r\n        \"chain\": \"Boba BNB Mainnet\",\r\n        \"rpc\": [\r\n            \"https://bnb.boba.network\",\r\n            \"wss://wss.bnb.boba.network\",\r\n            \"https://replica.bnb.boba.network\",\r\n            \"wss://replica-wss.bnb.boba.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"BobaBnb\",\r\n        \"chainId\": 56288,\r\n        \"networkId\": 56288,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Boba BNB block explorer\",\r\n                \"url\": \"https://blockexplorer.bnb.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Etica Mainnet\",\r\n        \"chain\": \"Etica Protocol (ETI/EGAZ)\",\r\n        \"icon\": \"etica\",\r\n        \"rpc\": [\r\n            \"https://eticamainnet.eticascan.org\",\r\n            \"https://eticamainnet.eticaprotocol.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.etica-stats.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EGAZ\",\r\n            \"symbol\": \"EGAZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eticaprotocol.org\",\r\n        \"shortName\": \"Etica\",\r\n        \"chainId\": 61803,\r\n        \"networkId\": 61803,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eticascan\",\r\n                \"url\": \"https://eticascan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"eticastats\",\r\n                \"url\": \"http://explorer.etica-stats.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DoKEN Super Chain Mainnet\",\r\n        \"chain\": \"DoKEN Super Chain\",\r\n        \"rpc\": [\r\n            \"https://sgrpc.doken.dev\",\r\n            \"https://nyrpc.doken.dev\",\r\n            \"https://ukrpc.doken.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DoKEN\",\r\n            \"symbol\": \"DKN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://doken.dev/\",\r\n        \"shortName\": \"DoKEN\",\r\n        \"chainId\": 61916,\r\n        \"networkId\": 61916,\r\n        \"icon\": \"doken\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DSC Scan\",\r\n                \"url\": \"https://explore.doken.dev\",\r\n                \"icon\": \"doken\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SiriusNet\",\r\n        \"chain\": \"SIN\",\r\n        \"status\": \"deprecated\",\r\n        \"rpc\": [\r\n            \"https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MCD\",\r\n            \"symbol\": \"MCD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://macaucasinolisboa.xyz\",\r\n        \"shortName\": \"mcl\",\r\n        \"chainId\": 67390,\r\n        \"networkId\": 67390,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"siriusnetscan\",\r\n                \"url\": \"https://siriusnet.tryethernal.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vention Smart Chain Mainnet\",\r\n        \"chain\": \"VSC\",\r\n        \"icon\": \"vention\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.vention.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.vention.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VNT\",\r\n            \"symbol\": \"VNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ventionscan.io\",\r\n        \"shortName\": \"vscm\",\r\n        \"chainId\": 77612,\r\n        \"networkId\": 77612,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ventionscan\",\r\n                \"url\": \"https://ventionscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gold Smart Chain Testnet\",\r\n        \"chain\": \"STAND\",\r\n        \"icon\": \"standTestnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.goldsmartchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.goldsmartchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Standard in Gold\",\r\n            \"symbol\": \"STAND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://goldsmartchain.com\",\r\n        \"shortName\": \"STANDt\",\r\n        \"chainId\": 79879,\r\n        \"networkId\": 79879,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gold Smart Chain\",\r\n                \"url\": \"https://testnet.goldsmartchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Base Goerli Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://goerli.base.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.coinbase.com/faucets/base-ethereum-goerli-faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Goerli Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://base.org\",\r\n        \"shortName\": \"basegor\",\r\n        \"chainId\": 84531,\r\n        \"networkId\": 84531,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"basescan\",\r\n                \"url\": \"https://goerli.basescan.org\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"basescout\",\r\n                \"url\": \"https://base-goerli.blockscout.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chiliz Scoville Testnet\",\r\n        \"chain\": \"CHZ\",\r\n        \"rpc\": [\r\n            \"https://scoville-rpc.chiliz.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://scoville-faucet.chiliz.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Chiliz\",\r\n            \"symbol\": \"CHZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"chiliz\",\r\n        \"infoURL\": \"https://www.chiliz.com/en/chain\",\r\n        \"shortName\": \"chz\",\r\n        \"chainId\": 88880,\r\n        \"networkId\": 88880,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"scoville-explorer\",\r\n                \"url\": \"https://scoville-explorer.chiliz.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Beverly Hills\",\r\n        \"title\": \"Ethereum multi-client Verkle Testnet Beverly Hills\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.beverlyhills.ethdevops.io:8545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.beverlyhills.ethdevops.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Beverly Hills Testnet Ether\",\r\n            \"symbol\": \"BVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://beverlyhills.ethdevops.io\",\r\n        \"shortName\": \"bvhl\",\r\n        \"chainId\": 90210,\r\n        \"networkId\": 90210,\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beverly Hills explorer\",\r\n                \"url\": \"https://explorer.beverlyhills.ethdevops.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lambda Testnet\",\r\n        \"chain\": \"Lambda\",\r\n        \"rpc\": [\r\n            \"https://evm.lambda.top/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lambda.top\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-Lamb\",\r\n            \"symbol\": \"LAMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lambda.im\",\r\n        \"shortName\": \"lambda-testnet\",\r\n        \"chainId\": 92001,\r\n        \"networkId\": 92001,\r\n        \"icon\": \"lambda\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lambda EVM Explorer\",\r\n                \"url\": \"https://explorer.lambda.top\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"lambda\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Boba BNB Mainnet Old\",\r\n        \"chain\": \"Boba BNB Mainnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boba Token\",\r\n            \"symbol\": \"BOBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"BobaBnbOld\",\r\n        \"chainId\": 97288,\r\n        \"networkId\": 97288,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Boba BNB block explorer\",\r\n                \"url\": \"https://blockexplorer.bnb.boba.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"VeChain\",\r\n        \"chain\": \"VeChain\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VeChain\",\r\n            \"symbol\": \"VET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vechain.org\",\r\n        \"shortName\": \"vechain\",\r\n        \"chainId\": 100009,\r\n        \"networkId\": 100009,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VeChain Stats\",\r\n                \"url\": \"https://vechainstats.com\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"VeChain Explorer\",\r\n                \"url\": \"https://explore.vechain.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VeChain Testnet\",\r\n        \"chain\": \"VeChain\",\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://faucet.vecha.in\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VeChain\",\r\n            \"symbol\": \"VET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vechain.org\",\r\n        \"shortName\": \"vechain-testnet\",\r\n        \"chainId\": 100010,\r\n        \"networkId\": 100010,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VeChain Explorer\",\r\n                \"url\": \"https://explore-testnet.vechain.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Deprecated Chiado Testnet\",\r\n        \"chain\": \"CHI1\",\r\n        \"icon\": \"gnosis\",\r\n        \"rpc\": [\r\n            \"https://rpc-chiado.gnosistestnet.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://gnosisfaucet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Chiado xDAI\",\r\n            \"symbol\": \"xDAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.gnosischain.com\",\r\n        \"shortName\": \"chi1\",\r\n        \"chainId\": 100100,\r\n        \"networkId\": 100100,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout-chiado.gnosistestnet.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Soverun Testnet\",\r\n        \"chain\": \"SVRN\",\r\n        \"icon\": \"soverunTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.soverun.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.soverun.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Soverun\",\r\n            \"symbol\": \"SVRN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://soverun.com\",\r\n        \"shortName\": \"SVRNt\",\r\n        \"chainId\": 101010,\r\n        \"networkId\": 101010,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Soverun\",\r\n                \"url\": \"https://testnet.soverun.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Condor Test Network\",\r\n        \"chain\": \"CONDOR\",\r\n        \"icon\": \"condor\",\r\n        \"rpc\": [\r\n            \"https://testnet.condor.systems/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.condor.systems\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Condor Native Token\",\r\n            \"symbol\": \"CONDOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://condor.systems\",\r\n        \"shortName\": \"condor\",\r\n        \"chainId\": 188881,\r\n        \"networkId\": 188881,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CondorScan\",\r\n                \"url\": \"https://explorer.condor.systems\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Milkomeda A1 Testnet\",\r\n        \"chain\": \"milkTAlgo\",\r\n        \"icon\": \"milkomeda\",\r\n        \"rpc\": [\r\n            \"https://rpc-devnet-algorand-rollup.a1.milkomeda.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"milkTAlgo\",\r\n            \"symbol\": \"mTAlgo\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://milkomeda.com\",\r\n        \"shortName\": \"milkTAlgo\",\r\n        \"chainId\": 200202,\r\n        \"networkId\": 200202,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer-devnet-algorand-rollup.a1.milkomeda.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mythical Chain\",\r\n        \"chain\": \"MYTH\",\r\n        \"rpc\": [\r\n            \"https://chain-rpc.mythicalgames.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mythos\",\r\n            \"symbol\": \"MYTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mythicalgames.com/\",\r\n        \"shortName\": \"myth\",\r\n        \"chainId\": 201804,\r\n        \"networkId\": 201804,\r\n        \"icon\": \"mythical\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mythical Chain Explorer\",\r\n                \"url\": \"https://explorer.mythicalgames.com\",\r\n                \"icon\": \"mythical\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Decimal Smart Chain Testnet\",\r\n        \"chain\": \"tDSC\",\r\n        \"rpc\": [\r\n            \"https://testnet-val.decimalchain.com/web3\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Decimal\",\r\n            \"symbol\": \"tDEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://decimalchain.com\",\r\n        \"shortName\": \"tDSC\",\r\n        \"chainId\": 202020,\r\n        \"networkId\": 202020,\r\n        \"icon\": \"dsc\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DSC Explorer Testnet\",\r\n                \"url\": \"https://testnet.explorer.decimalchain.com\",\r\n                \"icon\": \"dsc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Jellie\",\r\n        \"title\": \"Twala Testnet Jellie\",\r\n        \"shortName\": \"twl-jellie\",\r\n        \"chain\": \"ETH\",\r\n        \"chainId\": 202624,\r\n        \"networkId\": 202624,\r\n        \"icon\": \"twala\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Twala Coin\",\r\n            \"symbol\": \"TWL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://jellie-rpc.twala.io/\",\r\n            \"wss://jellie-rpc-wss.twala.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://twala.io/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Jellie Blockchain Explorer\",\r\n                \"url\": \"https://jellie.twala.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"twala\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mas Mainnet\",\r\n        \"chain\": \"MAS\",\r\n        \"rpc\": [\r\n            \"http://node.masnet.ai:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Master Bank\",\r\n            \"symbol\": \"MAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://masterbank.org\",\r\n        \"shortName\": \"mas\",\r\n        \"chainId\": 220315,\r\n        \"networkId\": 220315,\r\n        \"icon\": \"mas\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer masnet\",\r\n                \"url\": \"https://explorer.masnet.ai\",\r\n                \"icon\": \"explorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Saakuru Testnet\",\r\n        \"chain\": \"Saakuru\",\r\n        \"icon\": \"saakuru\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.saakuru.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://saakuru.network\",\r\n        \"shortName\": \"saakuru-testnet\",\r\n        \"chainId\": 247253,\r\n        \"networkId\": 247253,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"saakuru-explorer-testnet\",\r\n                \"url\": \"https://explorer-testnet.saakuru.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CMP-Mainnet\",\r\n        \"chain\": \"CMP\",\r\n        \"rpc\": [\r\n            \"https://mainnet.block.caduceus.foundation\",\r\n            \"wss://mainnet.block.caduceus.foundation\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Caduceus Token\",\r\n            \"symbol\": \"CMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://caduceus.foundation/\",\r\n        \"shortName\": \"cmp-mainnet\",\r\n        \"chainId\": 256256,\r\n        \"networkId\": 256256,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mainnet Scan\",\r\n                \"url\": \"https://mainnet.scan.caduceus.foundation\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gear Zero Network Testnet\",\r\n        \"chain\": \"GearZero\",\r\n        \"rpc\": [\r\n            \"https://gzn-test.linksme.info\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gear Zero Network Native Token\",\r\n            \"symbol\": \"GZN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://token.gearzero.ca/testnet\",\r\n        \"shortName\": \"gz-testnet\",\r\n        \"chainId\": 266256,\r\n        \"networkId\": 266256,\r\n        \"slip44\": 266256,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Filecoin - Calibration testnet\",\r\n        \"chain\": \"FIL\",\r\n        \"icon\": \"filecoin\",\r\n        \"rpc\": [\r\n            \"https://api.calibration.node.glif.io/rpc/v1\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.calibration.fildev.network/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testnet filecoin\",\r\n            \"symbol\": \"tFIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filecoin.io\",\r\n        \"shortName\": \"filecoin-calibration\",\r\n        \"chainId\": 314159,\r\n        \"networkId\": 314159,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Filscan - Calibration\",\r\n                \"url\": \"https://calibration.filscan.io\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Filscout - Calibration\",\r\n                \"url\": \"https://calibration.filscout.com/en\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oone Chain Testnet\",\r\n        \"chain\": \"OONE\",\r\n        \"rpc\": [\r\n            \"https://blockchain-test.adigium.world\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://apps-test.adigium.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oone\",\r\n            \"symbol\": \"tOONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oone.world\",\r\n        \"shortName\": \"oonetest\",\r\n        \"chainId\": 333777,\r\n        \"networkId\": 333777,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"expedition\",\r\n                \"url\": \"https://explorer-test.adigium.world\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metal C-Chain\",\r\n        \"chain\": \"Metal\",\r\n        \"rpc\": [\r\n            \"https://api.metalblockchain.org/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metal\",\r\n            \"symbol\": \"METAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.metalblockchain.org/\",\r\n        \"shortName\": \"metal\",\r\n        \"chainId\": 381931,\r\n        \"networkId\": 381931,\r\n        \"slip44\": 9005,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"metalscan\",\r\n                \"url\": \"https://metalscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metal Tahoe C-Chain\",\r\n        \"chain\": \"Metal\",\r\n        \"rpc\": [\r\n            \"https://tahoe.metalblockchain.org/ext/bc/C/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metal\",\r\n            \"symbol\": \"METAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.metalblockchain.org/\",\r\n        \"shortName\": \"Tahoe\",\r\n        \"chainId\": 381932,\r\n        \"networkId\": 381932,\r\n        \"slip44\": 9005,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"metalscan\",\r\n                \"url\": \"https://tahoe.metalscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kekchain\",\r\n        \"chain\": \"kek\",\r\n        \"rpc\": [\r\n            \"https://mainnet.kekchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KEK\",\r\n            \"symbol\": \"KEK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kekchain.com\",\r\n        \"shortName\": \"KEK\",\r\n        \"chainId\": 420420,\r\n        \"networkId\": 103090,\r\n        \"icon\": \"kek\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://mainnet-explorer.kekchain.com\",\r\n                \"icon\": \"kek\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kekchain (kektest)\",\r\n        \"chain\": \"kek\",\r\n        \"rpc\": [\r\n            \"https://testnet.kekchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tKEK\",\r\n            \"symbol\": \"tKEK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kekchain.com\",\r\n        \"shortName\": \"tKEK\",\r\n        \"chainId\": 420666,\r\n        \"networkId\": 1,\r\n        \"icon\": \"kek\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-explorer.kekchain.com\",\r\n                \"icon\": \"kek\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fastex Chain testnet\",\r\n        \"chain\": \"FTN\",\r\n        \"title\": \"Fastex Chain testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.fastexchain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FTN\",\r\n            \"symbol\": \"FTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fastex.com\",\r\n        \"shortName\": \"ftn\",\r\n        \"chainId\": 424242,\r\n        \"networkId\": 424242,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.ftnscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dexalot Subnet\",\r\n        \"chain\": \"DEXALOT\",\r\n        \"icon\": \"dexalot\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/dexalot/mainnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dexalot\",\r\n            \"symbol\": \"ALOT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dexalot.com\",\r\n        \"shortName\": \"dexalot\",\r\n        \"chainId\": 432204,\r\n        \"networkId\": 432204,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Avalanche Subnet Explorer\",\r\n                \"url\": \"https://subnets.avax.network/dexalot\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Scroll\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scroll.io\",\r\n        \"shortName\": \"scr\",\r\n        \"chainId\": 534352,\r\n        \"networkId\": 534352,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Scroll Alpha Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [\r\n            \"https://alpha-rpc.scroll.io/l2\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scroll.io\",\r\n        \"shortName\": \"scr-alpha\",\r\n        \"chainId\": 534353,\r\n        \"networkId\": 534353,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Scroll Alpha Testnet Block Explorer\",\r\n                \"url\": \"https://blockscout.scroll.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Scroll Pre-Alpha Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://prealpha-rpc.scroll.io/l2\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://prealpha.scroll.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"TSETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scroll.io\",\r\n        \"shortName\": \"scr-prealpha\",\r\n        \"chainId\": 534354,\r\n        \"networkId\": 534354,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Scroll L2 Block Explorer\",\r\n                \"url\": \"https://l2scan.scroll.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bear Network Chain Mainnet\",\r\n        \"chain\": \"BRNKC\",\r\n        \"icon\": \"brnkc\",\r\n        \"rpc\": [\r\n            \"https://brnkc-mainnet.bearnetwork.net\",\r\n            \"https://brnkc-mainnet1.bearnetwork.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bear Network Chain Native Token\",\r\n            \"symbol\": \"BRNKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bearnetwork.net\",\r\n        \"shortName\": \"BRNKC\",\r\n        \"chainId\": 641230,\r\n        \"networkId\": 641230,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"brnkscan\",\r\n                \"url\": \"https://brnkscan.bearnetwork.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bear Network Chain Testnet\",\r\n        \"chain\": \"BRNKCTEST\",\r\n        \"icon\": \"brnkc\",\r\n        \"rpc\": [\r\n            \"https://brnkc-test.bearnetwork.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bearnetwork.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bear Network Chain Testnet Token\",\r\n            \"symbol\": \"tBRNKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bearnetwork.net\",\r\n        \"shortName\": \"BRNKCTEST\",\r\n        \"chainId\": 751230,\r\n        \"networkId\": 751230,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"brnktestscan\",\r\n                \"url\": \"https://brnktest-scan.bearnetwork.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OctaSpace\",\r\n        \"chain\": \"OCTA\",\r\n        \"rpc\": [\r\n            \"https://rpc.octa.space\",\r\n            \"wss://rpc.octa.space\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OctaSpace\",\r\n            \"symbol\": \"OCTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://octa.space\",\r\n        \"shortName\": \"octa\",\r\n        \"chainId\": 800001,\r\n        \"networkId\": 800001,\r\n        \"icon\": \"octaspace\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.octa.space\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Posichain Mainnet Shard 0\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://api.posichain.org\",\r\n            \"https://api.s0.posichain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.posichain.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Posichain Native Token\",\r\n            \"symbol\": \"POSI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://posichain.org\",\r\n        \"shortName\": \"psc-s0\",\r\n        \"chainId\": 900000,\r\n        \"networkId\": 900000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Posichain Explorer\",\r\n                \"url\": \"https://explorer.posichain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Posichain Testnet Shard 0\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://api.s0.t.posichain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.posichain.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Posichain Native Token\",\r\n            \"symbol\": \"POSI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://posichain.org\",\r\n        \"shortName\": \"psc-t-s0\",\r\n        \"chainId\": 910000,\r\n        \"networkId\": 910000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Posichain Explorer Testnet\",\r\n                \"url\": \"https://explorer-testnet.posichain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Posichain Devnet Shard 0\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://api.s0.d.posichain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.posichain.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Posichain Native Token\",\r\n            \"symbol\": \"POSI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://posichain.org\",\r\n        \"shortName\": \"psc-d-s0\",\r\n        \"chainId\": 920000,\r\n        \"networkId\": 920000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Posichain Explorer Devnet\",\r\n                \"url\": \"https://explorer-devnet.posichain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Posichain Devnet Shard 1\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://api.s1.d.posichain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.posichain.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Posichain Native Token\",\r\n            \"symbol\": \"POSI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://posichain.org\",\r\n        \"shortName\": \"psc-d-s1\",\r\n        \"chainId\": 920001,\r\n        \"networkId\": 920001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Posichain Explorer Devnet\",\r\n                \"url\": \"https://explorer-devnet.posichain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"FNCY Testnet\",\r\n        \"chain\": \"FNCY\",\r\n        \"rpc\": [\r\n            \"https://fncy-testnet-seed.fncy.world\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.fncy.world\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FNCY\",\r\n            \"symbol\": \"FNCY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fncyscan-testnet.fncy.world\",\r\n        \"shortName\": \"tFNCY\",\r\n        \"chainId\": 923018,\r\n        \"networkId\": 923018,\r\n        \"icon\": \"fncy\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"fncy scan testnet\",\r\n                \"url\": \"https://fncyscan-testnet.fncy.world\",\r\n                \"icon\": \"fncy\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zhejiang\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.zhejiang.ethpandaops.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zhejiang.ethpandaops.io\",\r\n            \"https://zhejiang-faucet.pk910.de\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zhejiang.ethpandaops.io\",\r\n        \"shortName\": \"zhejiang\",\r\n        \"chainId\": 1337803,\r\n        \"networkId\": 1337803,\r\n        \"icon\": \"ethereum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zhejiang Explorer\",\r\n                \"url\": \"https://zhejiang.beaconcha.in\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plian Mainnet Main\",\r\n        \"chain\": \"Plian\",\r\n        \"rpc\": [\r\n            \"https://mainnet.plian.io/pchain\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plian Token\",\r\n            \"symbol\": \"PI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plian.org/\",\r\n        \"shortName\": \"plian-mainnet\",\r\n        \"chainId\": 2099156,\r\n        \"networkId\": 2099156,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"piscan\",\r\n                \"url\": \"https://piscan.plian.org/pchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filecoin - Butterfly testnet\",\r\n        \"chain\": \"FIL\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://faucet.butterfly.fildev.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testnet filecoin\",\r\n            \"symbol\": \"tFIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filecoin.io\",\r\n        \"shortName\": \"filecoin-butterfly\",\r\n        \"icon\": \"filecoin\",\r\n        \"chainId\": 3141592,\r\n        \"networkId\": 3141592,\r\n        \"slip44\": 1,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Imversed Mainnet\",\r\n        \"chain\": \"Imversed\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc.imversed.network\",\r\n            \"https://ws-jsonrpc.imversed.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Imversed Token\",\r\n            \"symbol\": \"IMV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://imversed.com\",\r\n        \"shortName\": \"imversed\",\r\n        \"chainId\": 5555555,\r\n        \"networkId\": 5555555,\r\n        \"icon\": \"imversed\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Imversed EVM explorer (Blockscout)\",\r\n                \"url\": \"https://txe.imversed.network\",\r\n                \"icon\": \"imversed\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Imversed Cosmos Explorer (Big Dipper)\",\r\n                \"url\": \"https://tex-c.imversed.com\",\r\n                \"icon\": \"imversed\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Imversed Testnet\",\r\n        \"chain\": \"Imversed\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc-test.imversed.network\",\r\n            \"https://ws-jsonrpc-test.imversed.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Imversed Token\",\r\n            \"symbol\": \"IMV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://imversed.com\",\r\n        \"shortName\": \"imversed-testnet\",\r\n        \"chainId\": 5555558,\r\n        \"networkId\": 5555558,\r\n        \"icon\": \"imversed\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Imversed EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://txe-test.imversed.network\",\r\n                \"icon\": \"imversed\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Imversed Cosmos Explorer (Big Dipper)\",\r\n                \"url\": \"https://tex-t.imversed.com\",\r\n                \"icon\": \"imversed\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Saakuru Mainnet\",\r\n        \"chain\": \"Saakuru\",\r\n        \"icon\": \"saakuru\",\r\n        \"rpc\": [\r\n            \"https://rpc.saakuru.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://saakuru.network\",\r\n        \"shortName\": \"saakuru\",\r\n        \"chainId\": 7225878,\r\n        \"networkId\": 7225878,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"saakuru-explorer\",\r\n                \"url\": \"https://explorer.saakuru.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpenVessel\",\r\n        \"chain\": \"VSL\",\r\n        \"icon\": \"vsl\",\r\n        \"rpc\": [\r\n            \"https://mainnet-external.openvessel.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vessel ETH\",\r\n            \"symbol\": \"VETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.openvessel.io\",\r\n        \"shortName\": \"vsl\",\r\n        \"chainId\": 7355310,\r\n        \"networkId\": 7355310,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"openvessel-mainnet\",\r\n                \"url\": \"https://mainnet-explorer.openvessel.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QL1 Testnet\",\r\n        \"chain\": \"QOM\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.qom.one\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.qom.one\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shiba Predator\",\r\n            \"symbol\": \"QOM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://qom.one\",\r\n        \"shortName\": \"tqom\",\r\n        \"chainId\": 7668378,\r\n        \"networkId\": 7668378,\r\n        \"icon\": \"qom\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"QL1 Testnet Explorer\",\r\n                \"url\": \"https://testnet.qom.one\",\r\n                \"icon\": \"qom\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plian Mainnet Subchain 1\",\r\n        \"chain\": \"Plian\",\r\n        \"rpc\": [\r\n            \"https://mainnet.plian.io/child_0\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plian Token\",\r\n            \"symbol\": \"PI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plian.org\",\r\n        \"shortName\": \"plian-mainnet-l2\",\r\n        \"chainId\": 8007736,\r\n        \"networkId\": 8007736,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"piscan\",\r\n                \"url\": \"https://piscan.plian.org/child_0\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-2099156\",\r\n            \"type\": \"L2\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Plian Testnet Subchain 1\",\r\n        \"chain\": \"Plian\",\r\n        \"rpc\": [\r\n            \"https://testnet.plian.io/child_test\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plian Token\",\r\n            \"symbol\": \"TPI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plian.org/\",\r\n        \"shortName\": \"plian-testnet-l2\",\r\n        \"chainId\": 10067275,\r\n        \"networkId\": 10067275,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"piscan\",\r\n                \"url\": \"https://testnet.plian.org/child_test\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-16658437\",\r\n            \"type\": \"L2\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Soverun Mainnet\",\r\n        \"chain\": \"SVRN\",\r\n        \"icon\": \"soverun\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.soverun.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.soverun.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Soverun\",\r\n            \"symbol\": \"SVRN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://soverun.com\",\r\n        \"shortName\": \"SVRNm\",\r\n        \"chainId\": 10101010,\r\n        \"networkId\": 10101010,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Soverun\",\r\n                \"url\": \"https://explorer.soverun.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Anduschain Mainnet\",\r\n        \"chain\": \"anduschain\",\r\n        \"rpc\": [\r\n            \"https://rpc.anduschain.io/rpc\",\r\n            \"wss://rpc.anduschain.io/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DAON\",\r\n            \"symbol\": \"DEB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://anduschain.io/\",\r\n        \"shortName\": \"anduschain-mainnet\",\r\n        \"chainId\": 14288640,\r\n        \"networkId\": 14288640,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"anduschain explorer\",\r\n                \"url\": \"https://explorer.anduschain.io\",\r\n                \"icon\": \"daon\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plian Testnet Main\",\r\n        \"chain\": \"Plian\",\r\n        \"rpc\": [\r\n            \"https://testnet.plian.io/testnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plian Testnet Token\",\r\n            \"symbol\": \"TPI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plian.org\",\r\n        \"shortName\": \"plian-testnet\",\r\n        \"chainId\": 16658437,\r\n        \"networkId\": 16658437,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"piscan\",\r\n                \"url\": \"https://testnet.plian.org/testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Excelon Mainnet\",\r\n        \"chain\": \"XLON\",\r\n        \"icon\": \"xlon\",\r\n        \"rpc\": [\r\n            \"https://edgewallet1.xlon.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Excelon\",\r\n            \"symbol\": \"xlon\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xlon.org\",\r\n        \"shortName\": \"xlon\",\r\n        \"chainId\": 22052002,\r\n        \"networkId\": 22052002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Excelon explorer\",\r\n                \"url\": \"https://explorer.excelon.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Excoincial Chain Volta-Testnet\",\r\n        \"chain\": \"TEXL\",\r\n        \"icon\": \"exl\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.exlscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.exlscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TExlcoin\",\r\n            \"symbol\": \"TEXL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"exlvolta\",\r\n        \"chainId\": 27082017,\r\n        \"networkId\": 27082017,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"exlscan\",\r\n                \"url\": \"https://testnet-explorer.exlscan.com\",\r\n                \"icon\": \"exl\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Excoincial Chain Mainnet\",\r\n        \"chain\": \"EXL\",\r\n        \"icon\": \"exl\",\r\n        \"rpc\": [\r\n            \"https://rpc.exlscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Exlcoin\",\r\n            \"symbol\": \"EXL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"exl\",\r\n        \"chainId\": 27082022,\r\n        \"networkId\": 27082022,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"exlscan\",\r\n                \"url\": \"https://exlscan.com\",\r\n                \"icon\": \"exl\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Flachain Mainnet\",\r\n        \"chain\": \"FLX\",\r\n        \"icon\": \"flacoin\",\r\n        \"rpc\": [\r\n            \"https://flachain.flaexchange.top/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flacoin\",\r\n            \"symbol\": \"FLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.flaexchange.top\",\r\n        \"shortName\": \"fla\",\r\n        \"chainId\": 29032022,\r\n        \"networkId\": 29032022,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FLXExplorer\",\r\n                \"url\": \"https://explorer.flaexchange.top\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filecoin - Local testnet\",\r\n        \"chain\": \"FIL\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testnet filecoin\",\r\n            \"symbol\": \"tFIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filecoin.io\",\r\n        \"shortName\": \"filecoin-local\",\r\n        \"icon\": \"filecoin\",\r\n        \"chainId\": 31415926,\r\n        \"networkId\": 31415926,\r\n        \"slip44\": 1,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"maistestsubnet\",\r\n        \"chain\": \"MAI\",\r\n        \"rpc\": [\r\n            \"http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"maistestsubnet\",\r\n            \"symbol\": \"MAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"mais\",\r\n        \"chainId\": 43214913,\r\n        \"networkId\": 43214913,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maistesntet\",\r\n                \"url\": \"http://174.138.9.169:3006/?network=maistesntet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Bakerloo (Thames) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://rpc1.bakerloo.autonity.org/\",\r\n            \"wss://rpc1.bakerloo.autonity.org/ws/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.autonity.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bakerloo Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"bakerloo-0\",\r\n        \"chainId\": 65010000,\r\n        \"networkId\": 65010000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://bakerloo.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Piccadilly (Thames) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://rpc1.piccadilly.autonity.org/\",\r\n            \"wss://rpc1.piccadilly.autonity.org/ws/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.autonity.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Piccadilly Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"piccadilly-0\",\r\n        \"chainId\": 65100000,\r\n        \"networkId\": 65100000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://piccadilly.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Calypso NFT Hub (SKALE Testnet)\",\r\n        \"title\": \"Calypso NFT Hub Testnet\",\r\n        \"chain\": \"staging-utter-unripe-menkar\",\r\n        \"rpc\": [\r\n            \"https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfuel.dirtroad.dev/staging\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://calypsohub.network/\",\r\n        \"shortName\": \"calypso-testnet\",\r\n        \"chainId\": 344106930,\r\n        \"networkId\": 344106930,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com\",\r\n                \"icon\": \"calypso\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nebula Staging\",\r\n        \"chain\": \"staging-faint-slimy-achird\",\r\n        \"rpc\": [\r\n            \"https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird\",\r\n            \"wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nebulachain.io/\",\r\n        \"shortName\": \"nebula-staging\",\r\n        \"chainId\": 503129905,\r\n        \"networkId\": 503129905,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nebula\",\r\n                \"url\": \"https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com\",\r\n                \"icon\": \"nebula\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nebula Mainnet\",\r\n        \"chain\": \"green-giddy-denebola\",\r\n        \"rpc\": [\r\n            \"https://mainnet.skalenodes.com/v1/green-giddy-denebola\",\r\n            \"wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nebulachain.io/\",\r\n        \"shortName\": \"nebula-mainnet\",\r\n        \"chainId\": 1482601649,\r\n        \"networkId\": 1482601649,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nebula\",\r\n                \"url\": \"https://green-giddy-denebola.explorer.mainnet.skalenodes.com\",\r\n                \"icon\": \"nebula\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Calypso NFT Hub (SKALE)\",\r\n        \"title\": \"Calypso NFT Hub Mainnet\",\r\n        \"chain\": \"honorable-steel-rasalhague\",\r\n        \"rpc\": [\r\n            \"https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfuel.dirtroad.dev\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://calypsohub.network/\",\r\n        \"shortName\": \"calypso-mainnet\",\r\n        \"chainId\": 1564830818,\r\n        \"networkId\": 1564830818,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com\",\r\n                \"icon\": \"calypso\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Harmony Devnet Shard 0\",\r\n        \"chain\": \"Harmony\",\r\n        \"rpc\": [\r\n            \"https://api.s1.ps.hmny.io\",\r\n            \"https://api.s1.ps.hmny.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://dev.faucet.easynode.one/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.harmony.one/\",\r\n        \"shortName\": \"hmy-ps-s0\",\r\n        \"chainId\": 1666900000,\r\n        \"networkId\": 1666900000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Harmony Block Explorer\",\r\n                \"url\": \"https://explorer.ps.hmny.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Europa SKALE Chain\",\r\n        \"chain\": \"europa\",\r\n        \"icon\": \"europa\",\r\n        \"rpc\": [\r\n            \"https://mainnet.skalenodes.com/v1/elated-tan-skat\",\r\n            \"wss://mainnet.skalenodes.com/v1/elated-tan-skat\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://ruby.exchange/faucet.html\",\r\n            \"https://sfuel.mylilius.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://europahub.network/\",\r\n        \"shortName\": \"europa\",\r\n        \"chainId\": 2046399126,\r\n        \"networkId\": 2046399126,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://elated-tan-skat.explorer.mainnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://ruby.exchange/bridge.html\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Zeniq\",\r\n        \"chain\": \"ZENIQ\",\r\n        \"rpc\": [\r\n            \"https://smart.zeniq.network:9545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zeniq.net/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zeniq\",\r\n            \"symbol\": \"ZENIQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zeniq.dev/\",\r\n        \"shortName\": \"zeniq\",\r\n        \"chainId\": 383414847825,\r\n        \"networkId\": 383414847825,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zeniq-smart-chain-explorer\",\r\n                \"url\": \"https://smart.zeniq.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PDC Mainnet\",\r\n        \"chain\": \"IPDC\",\r\n        \"rpc\": [\r\n            \"https://mainnet.ipdc.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PDC\",\r\n            \"symbol\": \"PDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ipdc.io\",\r\n        \"shortName\": \"ipdc\",\r\n        \"chainId\": 666301171999,\r\n        \"networkId\": 666301171999,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ipdcscan\",\r\n                \"url\": \"https://scan.ipdc.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AlveyChain Mainnet\",\r\n        \"chain\": \"ALV\",\r\n        \"rpc\": [\r\n            \"https://elves-core1.alvey.io\",\r\n            \"https://elves-core2.alvey.io\",\r\n            \"https://elves-core3.alvey.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AlveyCoin\",\r\n            \"symbol\": \"ALV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.alveychain.com/\",\r\n        \"shortName\": \"ALV\",\r\n        \"chainId\": 3797,\r\n        \"networkId\": 3797,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AlveyScan\",\r\n                \"url\": \"https://alveyscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1685016287246.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1685016249560.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1685016218214.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1685016276305.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"PEGO Mainnet\",\r\n        \"chainId\": 20201022,\r\n        \"shortName\": \"PEGO\",\r\n        \"chain\": \"PEGO\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 20201022,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PEGO\",\r\n            \"symbol\": \"PG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://pegorpc.com\",\r\n            \"https://node1.pegorpc.com\",\r\n            \" https://node2.pegorpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://pego.network\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://drive.google.com/file/d/1eoxLbi4CIXW_St3fkoctRwPrdD4-Nyb8/view?usp=drive_link\",\r\n            \"ic_chain_unselect\": \"https://drive.google.com/file/d/1_UgiAXINqJhMWloRz2W5dkBxmTtmugvM/view?usp=drive_link\",\r\n            \"color_chain_bg\": \"0xFF9D00\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Acria IntelliChain\",\r\n        \"chain\": \"AIC\",\r\n        \"rpc\": [\r\n            \"https://aic.acria.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ACRIA\",\r\n            \"symbol\": \"ACRIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://acria.ai\",\r\n        \"shortName\": \"aic\",\r\n        \"chainId\": 47,\r\n        \"networkId\": 47,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Acria IntelliChain-Explorer\",\r\n                \"url\": \"https://explorer.acria.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Linqto Devnet\",\r\n        \"chain\": \"LNQ\",\r\n        \"rpc\": [\r\n            \"https://linqto-dev.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XRP\",\r\n            \"symbol\": \"XRP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://linqto.com\",\r\n        \"shortName\": \"linqto-devnet\",\r\n        \"chainId\": 84,\r\n        \"networkId\": 84,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Linqto Devnet Explorer\",\r\n                \"url\": \"https://explorer.linqto-dev.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SwissDLT\",\r\n        \"chain\": \"SDLT\",\r\n        \"rpc\": [\r\n            \"https://rpc.swissdlt.ch\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BCTS\",\r\n            \"symbol\": \"BCTS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://bcts.ch\",\r\n        \"shortName\": \"sdlt\",\r\n        \"chainId\": 94,\r\n        \"networkId\": 94,\r\n        \"icon\": \"bcts\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SwissDLT Explorer\",\r\n                \"url\": \"https://explorer.swissdlt.ch\",\r\n                \"icon\": \"bcts\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Six Protocol\",\r\n        \"chain\": \"SIXNET\",\r\n        \"icon\": \"six\",\r\n        \"rpc\": [\r\n            \"https://sixnet-rpc-evm.sixprotocol.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SIX evm token\",\r\n            \"symbol\": \"SIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://six.network/\",\r\n        \"shortName\": \"six\",\r\n        \"chainId\": 98,\r\n        \"networkId\": 98,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SIX Scan\",\r\n                \"url\": \"https://sixscan.io/sixnet\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"six\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Coinbit Mainnet\",\r\n        \"chain\": \"Coinbit\",\r\n        \"rpc\": [\r\n            \"https://coinbit-rpc-mainnet.chain.sbcrypto.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gas IDR\",\r\n            \"symbol\": \"GIDR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://crypto.stockbit.com/\",\r\n        \"shortName\": \"coinbit\",\r\n        \"chainId\": 112,\r\n        \"networkId\": 112,\r\n        \"icon\": \"coinbit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://coinbit-explorer.chain.sbcrypto.app\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Uptick Mainnet\",\r\n        \"chain\": \"Uptick\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.uptick.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Uptick\",\r\n            \"symbol\": \"UPTICK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.uptick.network\",\r\n        \"shortName\": \"auptick\",\r\n        \"chainId\": 117,\r\n        \"networkId\": 117,\r\n        \"icon\": \"uptick\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Uptick Explorer\",\r\n                \"url\": \"https://evm-explorer.uptick.network\",\r\n                \"icon\": \"uptick\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"iExec Sidechain\",\r\n        \"chain\": \"Bellecour\",\r\n        \"icon\": \"rlc\",\r\n        \"rpc\": [\r\n            \"https://bellecour.iex.ec\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"xRLC\",\r\n            \"symbol\": \"xRLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://iex.ec\",\r\n        \"shortName\": \"rlc\",\r\n        \"chainId\": 134,\r\n        \"networkId\": 134,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.bellecour.iex.ec\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Deamchain Mainnet\",\r\n        \"chain\": \"Deamchain\",\r\n        \"icon\": \"deam\",\r\n        \"rpc\": [\r\n            \"https://mainnet.deamchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Deamchain Native Token\",\r\n            \"symbol\": \"DEAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://deamchain.com\",\r\n        \"shortName\": \"deam\",\r\n        \"chainId\": 136,\r\n        \"networkId\": 136,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Deamchain Block Explorer\",\r\n                \"url\": \"https://scan.deamchain.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"deam\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Defi Oracle Meta Mainnet\",\r\n        \"chain\": \"dfiometa\",\r\n        \"icon\": \"defioraclemeta\",\r\n        \"rpc\": [\r\n            \"https://rpc.public-0138.defi-oracle.io\",\r\n            \"wss://rpc.public-0138.defi-oracle.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defi-oracle.io/\",\r\n        \"shortName\": \"dfio-meta-main\",\r\n        \"chainId\": 138,\r\n        \"networkId\": 1,\r\n        \"slip44\": 60,\r\n        \"ens\": {\r\n            \"registry\": \"0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Quorum Explorer\",\r\n                \"url\": \"https://public-0138.defi-oracle.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WoopChain Mainnet\",\r\n        \"chain\": \"WOOP\",\r\n        \"icon\": \"woopchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.woop.ai/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WoopCoin\",\r\n            \"symbol\": \"WOOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wikiwoop.com\",\r\n        \"shortName\": \"woop\",\r\n        \"chainId\": 139,\r\n        \"networkId\": 139,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"wikiwoop\",\r\n                \"url\": \"https://explorer.wikiwoop.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Six Protocol Testnet\",\r\n        \"chain\": \"FIVENET\",\r\n        \"icon\": \"six\",\r\n        \"rpc\": [\r\n            \"https://rpc-evm.fivenet.sixprotocol.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.sixprotocol.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SIX testnet evm token\",\r\n            \"symbol\": \"tSIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://six.network/\",\r\n        \"shortName\": \"sixt\",\r\n        \"chainId\": 150,\r\n        \"networkId\": 150,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SIX Scan fivenet\",\r\n                \"url\": \"https://sixscan.io/fivenet\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"six\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tenet Testnet\",\r\n        \"title\": \"Tenet Testnet\",\r\n        \"chain\": \"TENET\",\r\n        \"icon\": \"tenet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.tenet.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.tenet.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TENET\",\r\n            \"symbol\": \"TENET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tenet.org/\",\r\n        \"shortName\": \"tenet-testnet\",\r\n        \"chainId\": 155,\r\n        \"networkId\": 155,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TenetScan Testnet\",\r\n                \"url\": \"https://testnet.tenetscan.io\",\r\n                \"icon\": \"tenet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OEBlock Testnet\",\r\n        \"chain\": \"OEBt\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.oeblock.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OEBlock\",\r\n            \"symbol\": \"OEB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.oeblock.com/\",\r\n        \"shortName\": \"obe\",\r\n        \"chainId\": 156,\r\n        \"networkId\": 156,\r\n        \"icon\": \"oescan\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OEScan explorer\",\r\n                \"url\": \"https://testnet.oescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Omni Testnet 1\",\r\n        \"chain\": \"Omni\",\r\n        \"rpc\": [\r\n            \"https://testnet-1.omni.network\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Omni\",\r\n            \"symbol\": \"OMNI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.omni.network/\",\r\n        \"shortName\": \"omni_testnet\",\r\n        \"chainId\": 165,\r\n        \"networkId\": 165,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Omni Explorer\",\r\n                \"url\": \"https://testnet-1.explorer.omni.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OKBChain Testnet\",\r\n        \"chain\": \"okbchain\",\r\n        \"rpc\": [\r\n            \"https://okbtestrpc.okbchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.oklink.com/okbc-test\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OKBChain Global Utility Token in testnet\",\r\n            \"symbol\": \"OKB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain\",\r\n        \"shortName\": \"tokb\",\r\n        \"chainId\": 195,\r\n        \"networkId\": 195,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OKLink\",\r\n                \"url\": \"https://www.oklink.com/okbc-test\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Neutrinos TestNet\",\r\n        \"chain\": \"NEUTR\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.neutrinoschain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://neutrinoschain.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neutrinos\",\r\n            \"symbol\": \"NEUTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.neutrinoschain.com\",\r\n        \"shortName\": \"NEUTR\",\r\n        \"chainId\": 197,\r\n        \"networkId\": 197,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.neutrinoschain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Structx Mainnet\",\r\n        \"chain\": \"utx\",\r\n        \"rpc\": [\r\n            \"https://mainnet.structx.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Notes\",\r\n            \"symbol\": \"utx\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://structx.io\",\r\n        \"shortName\": \"utx\",\r\n        \"chainId\": 208,\r\n        \"networkId\": 208\r\n    },\r\n    {\r\n        \"name\": \"SwapDEX\",\r\n        \"chain\": \"SDX\",\r\n        \"rpc\": [\r\n            \"https://rpc.swapdex.network\",\r\n            \"wss://ss.swapdex.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SwapDEX\",\r\n            \"symbol\": \"SDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://swapdex.network/\",\r\n        \"shortName\": \"SDX\",\r\n        \"chainId\": 230,\r\n        \"networkId\": 230,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SwapDEX\",\r\n                \"url\": \"https://evm.swapdex.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Deamchain Testnet\",\r\n        \"chain\": \"Deamchain\",\r\n        \"icon\": \"deam\",\r\n        \"rpc\": [\r\n            \"https://testnet.deamchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.deamchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Deamchain Native Token\",\r\n            \"symbol\": \"DEAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://deamchain.com\",\r\n        \"shortName\": \"deamtest\",\r\n        \"chainId\": 236,\r\n        \"networkId\": 236,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Deamchain Testnet Explorer\",\r\n                \"url\": \"https://testnet-scan.deamchain.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"deam\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plinga Mainnet\",\r\n        \"chain\": \"Plinga\",\r\n        \"icon\": \"plinga\",\r\n        \"rpc\": [\r\n            \"https://rpcurl.mainnet.plgchain.com\",\r\n            \"https://rpcurl.plgchain.blockchain.evmnode.online\",\r\n            \"https://rpcurl.mainnet.plgchain.plinga.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plinga\",\r\n            \"symbol\": \"PLINGA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.plinga.technology/\",\r\n        \"shortName\": \"plgchain\",\r\n        \"chainId\": 242,\r\n        \"networkId\": 242,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"plgscan\",\r\n                \"url\": \"https://www.plgscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Neonlink Mainnet\",\r\n        \"chain\": \"Neonlink\",\r\n        \"rpc\": [\r\n            \"https://mainnet.neonlink.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neonlink Native Token\",\r\n            \"symbol\": \"NEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neonlink.io\",\r\n        \"shortName\": \"neon\",\r\n        \"chainId\": 259,\r\n        \"networkId\": 259,\r\n        \"icon\": \"neonlink\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Neon Blockchain Explorer\",\r\n                \"url\": \"https://scan.neonlink.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"neonlink\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EgonCoin Mainnet\",\r\n        \"chain\": \"EGON\",\r\n        \"icon\": \"egonicon\",\r\n        \"rpc\": [\r\n            \"https://rpc.egcscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.egcscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EgonCoin\",\r\n            \"symbol\": \"EGON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://egcscan.com\",\r\n        \"shortName\": \"EGONm\",\r\n        \"chainId\": 271,\r\n        \"networkId\": 271,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EgonCoin Mainnet\",\r\n                \"url\": \"https://egcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LaChain\",\r\n        \"chain\": \"LaChain\",\r\n        \"icon\": \"LaChain\",\r\n        \"rpc\": [\r\n            \"https://rpc1.mainnet.lachain.network\",\r\n            \"https://rpc2.mainnet.lachain.network\",\r\n            \"https://lachain.rpc-nodes.cedalio.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LaCoin\",\r\n            \"symbol\": \"LAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"lachain\",\r\n        \"chainId\": 274,\r\n        \"networkId\": 274,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LaChain Explorer\",\r\n                \"url\": \"https://explorer.lachain.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Neurochain Testnet\",\r\n        \"chain\": \"NCN\",\r\n        \"rpc\": [\r\n            \"https://nc-rpc-test1.neurochain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neurochain\",\r\n            \"symbol\": \"tNCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.neurochain.ai\",\r\n        \"shortName\": \"ncnt\",\r\n        \"chainId\": 303,\r\n        \"networkId\": 303,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"neuroscan\",\r\n                \"url\": \"https://testnet.ncnscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Neurochain Mainnet\",\r\n        \"chain\": \"NCN\",\r\n        \"rpc\": [\r\n            \"https://nc-rpc-prd1.neurochain.io\",\r\n            \"https://nc-rpc-prd2.neurochain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neurochain\",\r\n            \"symbol\": \"NCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.neurochain.ai\",\r\n        \"shortName\": \"ncn\",\r\n        \"chainId\": 313,\r\n        \"networkId\": 313,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"neuroscan\",\r\n                \"url\": \"https://ncnscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ozone Chain Testnet\",\r\n        \"chain\": \"OZONE\",\r\n        \"rpc\": [\r\n            \"https://node1.testnet.ozonechain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OZONE\",\r\n            \"symbol\": \"OZO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ozonechain.io\",\r\n        \"shortName\": \"ozo_tst\",\r\n        \"chainId\": 401,\r\n        \"networkId\": 401,\r\n        \"icon\": \"ozonechain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OZONE Scan\",\r\n                \"url\": \"https://testnet.ozonescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LaTestnet\",\r\n        \"chain\": \"LaTestnet\",\r\n        \"icon\": \"LaChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.lachain.network\",\r\n            \"https://lachain-testnet.rpc-nodes.cedalio.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lachain.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test LaCoin\",\r\n            \"symbol\": \"TLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"latestnet\",\r\n        \"chainId\": 418,\r\n        \"networkId\": 418,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LaTestnet Explorer\",\r\n                \"url\": \"https://testexplorer.lachain.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PGN (Public Goods Network)\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.publicgoods.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://publicgoods.network/\",\r\n        \"shortName\": \"PGN\",\r\n        \"chainId\": 424,\r\n        \"networkId\": 424,\r\n        \"icon\": \"publicGoodsNetwork\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.publicgoods.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.publicgoods.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ARZIO Chain\",\r\n        \"chain\": \"ARZIO\",\r\n        \"icon\": \"arzio\",\r\n        \"rpc\": [\r\n            \"https://chain-rpc.arzio.co\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ARZIO\",\r\n            \"symbol\": \"AZO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://chain.arzio.co\",\r\n        \"shortName\": \"arzio\",\r\n        \"chainId\": 456,\r\n        \"networkId\": 456,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ARZIO Scan\",\r\n                \"url\": \"https://scan.arzio.co\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rollux Mainnet\",\r\n        \"chain\": \"SYS\",\r\n        \"rpc\": [\r\n            \"https://rpc.rollux.com\",\r\n            \"https://rollux.public-rpc.com\",\r\n            \"wss://rpc.rollux.com/wss\",\r\n            \"https://rpc.ankr.com/rollux/${ANKR_API_KEY}\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://rollux.id/faucetapp\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Syscoin\",\r\n            \"symbol\": \"SYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rollux.com\",\r\n        \"shortName\": \"sys-rollux\",\r\n        \"chainId\": 570,\r\n        \"networkId\": 570,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rollux Explorer\",\r\n                \"url\": \"https://explorer.rollux.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Avocado\",\r\n        \"chain\": \"Avocado\",\r\n        \"rpc\": [\r\n            \"https://rpc.avocado.instadapp.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDC\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://avocado.instadapp.io\",\r\n        \"shortName\": \"avocado\",\r\n        \"chainId\": 634,\r\n        \"networkId\": 634,\r\n        \"icon\": \"avocado\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"avoscan\",\r\n                \"url\": \"https://avoscan.co\",\r\n                \"icon\": \"avocado\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shibarium Beta\",\r\n        \"chain\": \"Shibarium\",\r\n        \"icon\": \"shibarium\",\r\n        \"rpc\": [\r\n            \"https://puppynet.shibrpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BONE\",\r\n            \"symbol\": \"BONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://beta.shibariumtech.com\",\r\n        \"shortName\": \"shibarium\",\r\n        \"chainId\": 719,\r\n        \"networkId\": 719,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shibscan\",\r\n                \"url\": \"https://puppyscan.shib.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MAAL Sharia Chain\",\r\n        \"chain\": \"MAAL\",\r\n        \"icon\": \"maal\",\r\n        \"rpc\": [\r\n            \"https://node1-mainnet.maalscan.io/\",\r\n            \"https://node2-mainnet.maalscan.io/\",\r\n            \"https://node3-mainnet.maalscan.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAAL\",\r\n            \"symbol\": \"MAAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.maalblockchain.com/\",\r\n        \"shortName\": \"maal\",\r\n        \"chainId\": 786,\r\n        \"networkId\": 786,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maalscan\",\r\n                \"url\": \"https://maalscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Patex\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"patex\",\r\n        \"rpc\": [\r\n            \"https://rpc.patex.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://patex.io/\",\r\n        \"shortName\": \"peth\",\r\n        \"chainId\": 789,\r\n        \"networkId\": 789,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"patexscan\",\r\n                \"url\": \"https://patexscan.io\",\r\n                \"icon\": \"patex\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BeOne Chain Mainnet\",\r\n        \"chain\": \"BOC\",\r\n        \"icon\": \"beonechain\",\r\n        \"rpc\": [\r\n            \"https://dataseed1.beonechain.com\",\r\n            \"https://dataseed2.beonechain.com\",\r\n            \"https://dataseed-us1.beonechain.com\",\r\n            \"https://dataseed-us2.beonechain.com\",\r\n            \"https://dataseed-uk1.beonechain.com\",\r\n            \"https://dataseed-uk2.beonechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BeOne Chain Mainnet\",\r\n            \"symbol\": \"BOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://beonechain.com\",\r\n        \"shortName\": \"BOC\",\r\n        \"chainId\": 818,\r\n        \"networkId\": 818,\r\n        \"slip44\": 8181,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BeOne Chain Mainnet\",\r\n                \"url\": \"https://beonescan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DecentraBone Layer1 Testnet\",\r\n        \"chain\": \"DBONE\",\r\n        \"rpc\": [\r\n            \"https://layer1test.decentrabone.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DecentraBone\",\r\n            \"symbol\": \"DBONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://decentrabone.com\",\r\n        \"shortName\": \"DBONE\",\r\n        \"chainId\": 910,\r\n        \"networkId\": 910\r\n    },\r\n    {\r\n        \"name\": \"PulseChain Testnet v4\",\r\n        \"shortName\": \"t4pls\",\r\n        \"chain\": \"t4PLS\",\r\n        \"chainId\": 943,\r\n        \"networkId\": 943,\r\n        \"icon\": \"pulsechain\",\r\n        \"infoURL\": \"https://pulsechain.com\",\r\n        \"rpc\": [\r\n            \"https://rpc.v4.testnet.pulsechain.com/\",\r\n            \"wss://rpc.v4.testnet.pulsechain.com/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.v4.testnet.pulsechain.com/\"\r\n        ],\r\n        \"ens\": {\r\n            \"registry\": \"0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e\"\r\n        },\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Pulse\",\r\n            \"symbol\": \"tPLS\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"5ireChain Thunder\",\r\n        \"chain\": \"5ireChain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.5ire.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://explorer.5ire.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"5ire Token\",\r\n            \"symbol\": \"5ire\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://5ire.org\",\r\n        \"shortName\": \"5ire\",\r\n        \"chainId\": 997,\r\n        \"networkId\": 997,\r\n        \"icon\": \"5ireChain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"5ireChain Explorer\",\r\n                \"url\": \"https://explorer.5ire.network\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"5ireChain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ShimmerEVM Testnet Deprecated\",\r\n        \"title\": \"ShimmerEVM Testnet Deprecated\",\r\n        \"chain\": \"ShimmerEVM\",\r\n        \"icon\": \"shimmerevm\",\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://evm-toolkit.evm.testnet.shimmer.network\",\r\n            \"https://evm-faucet.testnet.shimmer.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SMR\",\r\n            \"symbol\": \"SMR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shimmer.network\",\r\n        \"shortName\": \"shimmerevm-testnet-deprecated\",\r\n        \"chainId\": 1071,\r\n        \"networkId\": 1071,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.evm.testnet.shimmer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"ShimmerEVM Testnet\",\r\n        \"title\": \"ShimmerEVM Testnet\",\r\n        \"chain\": \"ShimmerEVM\",\r\n        \"icon\": \"shimmerevm\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.evm.testnet.shimmer.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://evm-toolkit.evm.testnet.shimmer.network\",\r\n            \"https://evm-faucet.testnet.shimmer.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SMR\",\r\n            \"symbol\": \"SMR\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://shimmer.network\",\r\n        \"shortName\": \"shimmerevm-testnet\",\r\n        \"chainId\": 1072,\r\n        \"networkId\": 1072,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.evm.testnet.shimmer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mintara Testnet\",\r\n        \"title\": \"Mintara Testnet\",\r\n        \"chain\": \"Mintara\",\r\n        \"icon\": \"mintara\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/mintara/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MINTARA\",\r\n            \"symbol\": \"MNTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://playthink.co.jp\",\r\n        \"shortName\": \"mintara-testnet\",\r\n        \"chainId\": 1079,\r\n        \"networkId\": 1079,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/mintara\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Polygon zkEVM\",\r\n        \"title\": \"Polygon zkEVM\",\r\n        \"chain\": \"Polygon\",\r\n        \"rpc\": [\r\n            \"https://zkevm-rpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polygon.technology/polygon-zkevm\",\r\n        \"shortName\": \"zkevm\",\r\n        \"chainId\": 1101,\r\n        \"networkId\": 1101,\r\n        \"icon\": \"zkevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://zkevm.polygonscan.com\",\r\n                \"icon\": \"zkevm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.zkevm-rpc.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Symplexia Smart Chain\",\r\n        \"chain\": \"Plexchain\",\r\n        \"rpc\": [\r\n            \"https://plex-rpc.plexfinance.us\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plex Native Token\",\r\n            \"symbol\": \"PLEX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plexfinance.us/\",\r\n        \"shortName\": \"Plexchain\",\r\n        \"chainId\": 1149,\r\n        \"networkId\": 1149,\r\n        \"icon\": \"plexchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Plexchain Explorer\",\r\n                \"url\": \"https://explorer.plexfinance.us\",\r\n                \"icon\": \"plexchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Origin Testnet\",\r\n        \"chain\": \"Origin\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.origin.uptick.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Origin\",\r\n            \"symbol\": \"UOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.uptick.network\",\r\n        \"shortName\": \"auoc\",\r\n        \"chainId\": 1170,\r\n        \"networkId\": 1170,\r\n        \"icon\": \"origin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Origin Explorer\",\r\n                \"url\": \"https://evm-explorer.origin.uptick.network\",\r\n                \"icon\": \"origin\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ARC Mainnet\",\r\n        \"chain\": \"ARC\",\r\n        \"icon\": \"arc\",\r\n        \"rpc\": [\r\n            \"https://rpc-main-1.archiechain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ARC\",\r\n            \"symbol\": \"ARC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://archiechain.io/\",\r\n        \"shortName\": \"ARC\",\r\n        \"chainId\": 1243,\r\n        \"networkId\": 1243,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"archiescan\",\r\n                \"url\": \"https://app.archiescan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ARC Testnet\",\r\n        \"chain\": \"ARC\",\r\n        \"icon\": \"arc\",\r\n        \"rpc\": [\r\n            \"https://rpc-test-1.archiechain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.archiechain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ARC\",\r\n            \"symbol\": \"ARC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://archiechain.io/\",\r\n        \"shortName\": \"TARC\",\r\n        \"chainId\": 1244,\r\n        \"networkId\": 1244,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"archiescan\",\r\n                \"url\": \"https://testnet.archiescan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zafirium Mainnet\",\r\n        \"chain\": \"ZAFIC\",\r\n        \"icon\": \"zafirium\",\r\n        \"rpc\": [\r\n            \"https://mainnet.zakumi.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zakumi Chain Native Token\",\r\n            \"symbol\": \"ZAFIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zakumi.io\",\r\n        \"shortName\": \"zafic\",\r\n        \"chainId\": 1369,\r\n        \"networkId\": 1369,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zafirium-explorer\",\r\n                \"url\": \"https://explorer.zakumi.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Joseon Mainnet\",\r\n        \"chain\": \"Joseon\",\r\n        \"icon\": \"joseon\",\r\n        \"rpc\": [\r\n            \"https://rpc.modchain.net/blockchain.joseon.com/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Joseon Mun\",\r\n            \"symbol\": \"JSM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.joseon.com/\",\r\n        \"shortName\": \"mun\",\r\n        \"chainId\": 1392,\r\n        \"networkId\": 1392,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockExplorer\",\r\n                \"url\": \"https://www.blockexplorer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rikeza Network Mainnet\",\r\n        \"title\": \"Rikeza Network Mainnet\",\r\n        \"chain\": \"Rikeza\",\r\n        \"icon\": \"rikeza\",\r\n        \"rpc\": [\r\n            \"https://rpc.rikscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rikeza\",\r\n            \"symbol\": \"RIK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rikeza.io\",\r\n        \"shortName\": \"RIK\",\r\n        \"chainId\": 1433,\r\n        \"networkId\": 1433,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rikeza Blockchain explorer\",\r\n                \"url\": \"https://rikscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Living Assets Mainnet\",\r\n        \"chain\": \"LAS\",\r\n        \"icon\": \"livingassets\",\r\n        \"rpc\": [\r\n            \"https://beta.mainnet.livingassets.io/rpc\",\r\n            \"https://gamma.mainnet.livingassets.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAS\",\r\n            \"symbol\": \"LAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dev.livingassets.io/\",\r\n        \"shortName\": \"LAS\",\r\n        \"chainId\": 1440,\r\n        \"networkId\": 1440\r\n    },\r\n    {\r\n        \"name\": \"Polygon zkEVM Testnet\",\r\n        \"title\": \"Polygon zkEVM Testnet\",\r\n        \"chain\": \"Polygon\",\r\n        \"rpc\": [\r\n            \"https://rpc.public.zkevm-test.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polygon.technology/solutions/polygon-zkevm/\",\r\n        \"shortName\": \"testnet-zkEVM-mango\",\r\n        \"chainId\": 1442,\r\n        \"networkId\": 1442,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polygon zkEVM explorer\",\r\n                \"url\": \"https://explorer.public.zkevm-test.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GIL Testnet\",\r\n        \"chain\": \"GIL\",\r\n        \"icon\": \"gauss\",\r\n        \"rpc\": [\r\n            \"https://rpc.giltestnet.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GANG\",\r\n            \"symbol\": \"GANG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gaussgang.com/\",\r\n        \"shortName\": \"gil\",\r\n        \"chainId\": 1452,\r\n        \"networkId\": 1452,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GIL Explorer\",\r\n                \"url\": \"https://explorer.giltestnet.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BEVM\",\r\n        \"chain\": \"ChainX\",\r\n        \"rpc\": [\r\n            \"https://mainnet.chainx.org/rpc\",\r\n            \"https://mainnet2.chainx.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://chainx.org\",\r\n        \"shortName\": \"chainx\",\r\n        \"chainId\": 1501,\r\n        \"networkId\": 1501,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bevm scan\",\r\n                \"url\": \"https://evm.chainx.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tenet\",\r\n        \"title\": \"Tenet Mainnet\",\r\n        \"chain\": \"TENET\",\r\n        \"icon\": \"tenet\",\r\n        \"rpc\": [\r\n            \"https://rpc.tenet.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TENET\",\r\n            \"symbol\": \"TENET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tenet.org/\",\r\n        \"shortName\": \"tenet\",\r\n        \"chainId\": 1559,\r\n        \"networkId\": 1559,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TenetScan Mainnet\",\r\n                \"url\": \"https://tenetscan.io\",\r\n                \"icon\": \"tenet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Horizen Gobi Testnet\",\r\n        \"shortName\": \"Gobi\",\r\n        \"chain\": \"Gobi\",\r\n        \"icon\": \"eon\",\r\n        \"rpc\": [\r\n            \"https://gobi-testnet.horizenlabs.io/ethv1\",\r\n            \"https://rpc.ankr.com/horizen_testnet_evm\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.horizen.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Zen\",\r\n            \"symbol\": \"tZEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://horizen.io/\",\r\n        \"chainId\": 1663,\r\n        \"networkId\": 1663,\r\n        \"slip44\": 121,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gobi Testnet Block Explorer\",\r\n                \"url\": \"https://gobi-explorer.horizen.io\",\r\n                \"icon\": \"eon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Palette Chain Mainnet\",\r\n        \"chain\": \"PLT\",\r\n        \"rpc\": [\r\n            \"https://palette-rpc.com:22000\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Palette Token\",\r\n            \"symbol\": \"PLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://hashpalette.com/\",\r\n        \"shortName\": \"PCM\",\r\n        \"chainId\": 1718,\r\n        \"networkId\": 1718,\r\n        \"icon\": \"PLT\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Palettescan\",\r\n                \"url\": \"https://palettescan.com\",\r\n                \"icon\": \"PLT\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PartyChain\",\r\n        \"chain\": \"mainnet\",\r\n        \"rpc\": [\r\n            \"https://tea.mining4people.com/rpc\",\r\n            \"http://172.104.194.36:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Grams\",\r\n            \"symbol\": \"GRAMS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"TeaPartyCrypto.com\",\r\n        \"shortName\": \"TeaParty\",\r\n        \"chainId\": 1773,\r\n        \"networkId\": 1773,\r\n        \"icon\": \"grams\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PartyExplorer\",\r\n                \"url\": \"https://partyexplorer.co\",\r\n                \"icon\": \"grams\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gauss Mainnet\",\r\n        \"chain\": \"Gauss\",\r\n        \"icon\": \"gauss\",\r\n        \"rpc\": [\r\n            \"https://rpc.gaussgang.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GANG\",\r\n            \"symbol\": \"GANG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gaussgang.com/\",\r\n        \"shortName\": \"gauss\",\r\n        \"chainId\": 1777,\r\n        \"networkId\": 1777,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gauss Explorer\",\r\n                \"url\": \"https://explorer.gaussgang.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lightlink Phoenix Mainnet\",\r\n        \"chain\": \"Lightlink Phoenix Mainnet\",\r\n        \"icon\": \"lightlink\",\r\n        \"rpc\": [\r\n            \"https://endpoints.omniatech.io/v1/lightlink/phoenix/public\",\r\n            \"https://replicator-01.phoenix.lightlink.io/rpc/v1\",\r\n            \"https://replicator-02.phoenix.lightlink.io/rpc/v1\",\r\n            \"https://replicator.phoenix.lightlink.io/rpc/v1\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lightlink.io\",\r\n        \"shortName\": \"lightlink_phoenix\",\r\n        \"chainId\": 1890,\r\n        \"networkId\": 1890,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"phoenix\",\r\n                \"url\": \"https://phoenix.lightlink.io\",\r\n                \"icon\": \"lightlink\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1714378866804.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1714378840768.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1714378852669.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1714379070381.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lightlink Pegasus Testnet\",\r\n        \"chain\": \"Lightlink Pegasus Testnet\",\r\n        \"icon\": \"lightlink\",\r\n        \"rpc\": [\r\n            \"https://replicator-01.pegasus.lightlink.io/rpc/v1\",\r\n            \"https://replicator-02.pegasus.lightlink.io/rpc/v1\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://pegasus-faucet-react.vercel.app\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lightlink.io\",\r\n        \"shortName\": \"lightlink_pegasus\",\r\n        \"chainId\": 1891,\r\n        \"networkId\": 1891,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"pegasus\",\r\n                \"url\": \"https://pegasus.lightlink.io\",\r\n                \"icon\": \"lightlink\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dexilla Testnet\",\r\n        \"chain\": \"Dexilla\",\r\n        \"rpc\": [\r\n            \"https://rpc.dexilla.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"dxz\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dexilla Native Token\",\r\n            \"symbol\": \"DXZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dexilla.com\",\r\n        \"shortName\": \"Dexilla\",\r\n        \"chainId\": 1954,\r\n        \"networkId\": 1954,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dos-mainnet\",\r\n                \"url\": \"https://exp.dexilla.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.dexilla.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Eleanor\",\r\n        \"title\": \"Metatime Testnet Eleanor\",\r\n        \"chain\": \"MTC\",\r\n        \"rpc\": [\r\n            \"https://rpc.metatime.com/eleanor\",\r\n            \"wss://ws.metatime.com/eleanor\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.metatime.com/eleanor\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eleanor Metacoin\",\r\n            \"symbol\": \"MTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eleanor.metatime.com\",\r\n        \"shortName\": \"mtc\",\r\n        \"chainId\": 1967,\r\n        \"networkId\": 1967,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"metaexplorer-eleanor\",\r\n                \"url\": \"https://explorer.metatime.com/eleanor\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Super Smart Chain Testnet\",\r\n        \"chain\": \"TSCS\",\r\n        \"rpc\": [\r\n            \"https://testnetrpc.scschain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.scschain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Super Chain Native Token\",\r\n            \"symbol\": \"TSCS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.scschain.com\",\r\n        \"shortName\": \"tscs\",\r\n        \"chainId\": 1969,\r\n        \"networkId\": 1969,\r\n        \"icon\": \"super\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnetscan.scschain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Super Smart Chain Mainnet\",\r\n        \"chain\": \"SCS\",\r\n        \"rpc\": [\r\n            \"https://rpc.scschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Super Chain Native Token\",\r\n            \"symbol\": \"SCS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scschain.com\",\r\n        \"shortName\": \"scs\",\r\n        \"chainId\": 1970,\r\n        \"networkId\": 1970,\r\n        \"icon\": \"super\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.scschain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shrapnel Subnet\",\r\n        \"chain\": \"shrapnel\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/shrapnel/mainnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shrapnel Gas Token\",\r\n            \"symbol\": \"SHRAPG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.shrapnel.com/\",\r\n        \"shortName\": \"Shrapnel\",\r\n        \"chainId\": 2044,\r\n        \"networkId\": 2044\r\n    },\r\n    {\r\n        \"name\": \"Metaplayerone Dubai Testnet\",\r\n        \"chain\": \"MP1 Dubai-Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-dubai.mp1network.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metaunit\",\r\n            \"symbol\": \"MEU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.metaplayer.one/\",\r\n        \"shortName\": \"MEU\",\r\n        \"chainId\": 2124,\r\n        \"networkId\": 2124,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MP1Scan\",\r\n                \"url\": \"https://dubai.mp1scan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Defi Oracle Meta Testnet\",\r\n        \"chain\": \"dfiometatest\",\r\n        \"icon\": \"defioraclemeta\",\r\n        \"rpc\": [\r\n            \"https://rpc.public-2138.defi-oracle.io\",\r\n            \"wss://rpc.public-2138.defi-oracle.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testEther\",\r\n            \"symbol\": \"tETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defi-oracle.io/\",\r\n        \"shortName\": \"dfio-meta-test\",\r\n        \"chainId\": 2138,\r\n        \"networkId\": 21,\r\n        \"slip44\": 60,\r\n        \"ens\": {\r\n            \"registry\": \"0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Quorum Explorer\",\r\n                \"url\": \"https://public-2138.defi-oracle.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Moonsama Network\",\r\n        \"chain\": \"MSN\",\r\n        \"rpc\": [\r\n            \"https://rpc.moonsama.com\",\r\n            \"wss://rpc.moonsama.com/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://multiverse.moonsama.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sama Token\",\r\n            \"symbol\": \"SAMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://moonsama.com\",\r\n        \"shortName\": \"msn\",\r\n        \"chainId\": 2199,\r\n        \"networkId\": 2199,\r\n        \"slip44\": 2199,\r\n        \"icon\": \"msn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.moonsama.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Antofy Mainnet\",\r\n        \"chain\": \"ABN\",\r\n        \"icon\": \"antofy\",\r\n        \"rpc\": [\r\n            \"https://rpc.antofy.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.antofy.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Antofy\",\r\n            \"symbol\": \"ABN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://antofy.io\",\r\n        \"shortName\": \"ABNm\",\r\n        \"chainId\": 2202,\r\n        \"networkId\": 2202,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Antofy Mainnet\",\r\n                \"url\": \"https://antofyscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SOMA Network Testnet\",\r\n        \"chain\": \"SOMA\",\r\n        \"rpc\": [\r\n            \"https://data-testnet-v1.somanetwork.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.somanetwork.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SMA\",\r\n            \"symbol\": \"tSMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://somanetwork.io\",\r\n        \"shortName\": \"sma\",\r\n        \"chainId\": 2323,\r\n        \"networkId\": 2323,\r\n        \"icon\": \"soma\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SOMA Testnet Explorer\",\r\n                \"icon\": \"soma\",\r\n                \"url\": \"https://testnet.somascan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SOMA Network Mainnet\",\r\n        \"chain\": \"SOMA\",\r\n        \"rpc\": [\r\n            \"https://data-mainnet-v1.somanetwork.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://airdrop.somanetwork.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Soma Native Token\",\r\n            \"symbol\": \"SMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://somanetwork.io\",\r\n        \"shortName\": \"smam\",\r\n        \"chainId\": 2332,\r\n        \"networkId\": 2332,\r\n        \"icon\": \"soma\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SOMA Explorer Mainnet\",\r\n                \"icon\": \"soma\",\r\n                \"url\": \"https://somascan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"(deprecated) Kroma Sepolia\",\r\n        \"title\": \"(deprecated) Kroma Testnet Sepolia\",\r\n        \"chainId\": 2357,\r\n        \"shortName\": \"deprecated-kroma-sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 2357,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.sepolia-deprecated.kroma.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://kroma.network\",\r\n        \"icon\": \"kroma\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.sepolia-deprecated.kroma.network\",\r\n                \"icon\": \"kroma\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://kroma.network/bridge\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Kroma Sepolia\",\r\n        \"title\": \"Kroma Testnet Sepolia\",\r\n        \"chainId\": 2358,\r\n        \"shortName\": \"kroma-sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 2358,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://api.sepolia.kroma.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://kroma.network\",\r\n        \"icon\": \"kroma\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.sepolia.kroma.network\",\r\n                \"icon\": \"kroma\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://kroma.network/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"WhiteBIT Network Testnet\",\r\n        \"chain\": \"WBT\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.whitebit.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://explorer.whitebit.network/testnet/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WhiteBIT Coin\",\r\n            \"symbol\": \"WBT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://whitebit.com/wbt\",\r\n        \"shortName\": \"twbt\",\r\n        \"chainId\": 2625,\r\n        \"networkId\": 2625,\r\n        \"icon\": \"whitebit-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"wb-explorer-testnet\",\r\n                \"url\": \"https://explorer.whitebit.network/testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Canxium Mainnet\",\r\n        \"chain\": \"CAU\",\r\n        \"rpc\": [\r\n            \"https://rpc.canxium.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Canxium\",\r\n            \"symbol\": \"CAU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://canxium.org\",\r\n        \"shortName\": \"cau\",\r\n        \"chainId\": 3003,\r\n        \"networkId\": 3003,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"canxium explorer\",\r\n                \"url\": \"https://explorer.canxium.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PLAYA3ULL GAMES\",\r\n        \"chain\": \"3ULL\",\r\n        \"rpc\": [\r\n            \"https://api.mainnet.playa3ull.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"3ULL\",\r\n            \"symbol\": \"3ULL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://playa3ull.games\",\r\n        \"shortName\": \"3ULL\",\r\n        \"chainId\": 3011,\r\n        \"networkId\": 3011,\r\n        \"icon\": \"playa3ull\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PLAYA3ULL GAMES Explorer\",\r\n                \"url\": \"https://3011.routescan.io\",\r\n                \"icon\": \"playa3ull\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SecureChain Testnet\",\r\n        \"chain\": \"SCAI\",\r\n        \"icon\": \"scaiIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.securechain.ai\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.securechain.ai\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SCAI\",\r\n            \"symbol\": \"SCAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://securechain.ai\",\r\n        \"shortName\": \"SCAIt\",\r\n        \"chainId\": 3434,\r\n        \"networkId\": 3434,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SecureChain\",\r\n                \"url\": \"https://testnet.securechain.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Botanix Testnet\",\r\n        \"chain\": \"BTC\",\r\n        \"icon\": \"botanix\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.btxtestchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.btxtestchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Botanix\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://btxtestchain.com\",\r\n        \"shortName\": \"BTCt\",\r\n        \"chainId\": 3636,\r\n        \"networkId\": 3636,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Botanix\",\r\n                \"url\": \"https://testnet.btxtestchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Botanix Mainnet\",\r\n        \"chain\": \"BTC\",\r\n        \"icon\": \"botanix\",\r\n        \"rpc\": [\r\n            \"https://rpc.btxtestchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.btxtestchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Botanix\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://btxtestchain.com\",\r\n        \"shortName\": \"BTCm\",\r\n        \"chainId\": 3637,\r\n        \"networkId\": 3637,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Botanix\",\r\n                \"url\": \"https://btxtestchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SenjePowers Testnet\",\r\n        \"chain\": \"SPC\",\r\n        \"icon\": \"SenjePowers\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.senjepowersscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.senjepowersscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SenjePowers\",\r\n            \"symbol\": \"SPC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://senjepowersscan.com\",\r\n        \"shortName\": \"SPCt\",\r\n        \"chainId\": 3698,\r\n        \"networkId\": 3698,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SenjePowers\",\r\n                \"url\": \"https://testnet.senjepowersscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SenjePowers Mainnet\",\r\n        \"chain\": \"SPC\",\r\n        \"icon\": \"SenjePowers\",\r\n        \"rpc\": [\r\n            \"https://rpc.senjepowersscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.senjepowersscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SenjePowers\",\r\n            \"symbol\": \"SPC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://senjepowersscan.com\",\r\n        \"shortName\": \"SPCm\",\r\n        \"chainId\": 3699,\r\n        \"networkId\": 3699,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SenjePowers\",\r\n                \"url\": \"https://senjepowersscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DOS Tesnet\",\r\n        \"chain\": \"DOS\",\r\n        \"rpc\": [\r\n            \"https://test.doschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOS\",\r\n            \"symbol\": \"DOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://doschain.io/\",\r\n        \"shortName\": \"dost\",\r\n        \"chainId\": 3939,\r\n        \"networkId\": 3939,\r\n        \"icon\": \"doschain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DOScan-Test\",\r\n                \"url\": \"https://test.doscan.io\",\r\n                \"icon\": \"doschain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ozone Chain Mainnet\",\r\n        \"chain\": \"OZONE\",\r\n        \"rpc\": [\r\n            \"https://node1.ozonechain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OZONE\",\r\n            \"symbol\": \"OZO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ozonechain.io\",\r\n        \"shortName\": \"ozo\",\r\n        \"chainId\": 4000,\r\n        \"networkId\": 4000,\r\n        \"icon\": \"ozonechain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OZONE Scan\",\r\n                \"url\": \"https://ozonescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Peperium Chain Testnet\",\r\n        \"chain\": \"PERIUM\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.peperium.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Peperium Chain Testnet\",\r\n            \"symbol\": \"PERIUM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://peperium.io\",\r\n        \"shortName\": \"PERIUM\",\r\n        \"chainId\": 4001,\r\n        \"networkId\": 4001,\r\n        \"icon\": \"peperium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Peperium Chain Explorer\",\r\n                \"url\": \"https://scan-testnet.peperium.io\",\r\n                \"icon\": \"peperium\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nahmii 3 Mainnet\",\r\n        \"chain\": \"Nahmii\",\r\n        \"rpc\": [],\r\n        \"status\": \"incubating\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nahmii.io\",\r\n        \"shortName\": \"Nahmii3Mainnet\",\r\n        \"chainId\": 4061,\r\n        \"networkId\": 4061,\r\n        \"icon\": \"nahmii\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.nahmii.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Nahmii 3 Testnet\",\r\n        \"chain\": \"Nahmii\",\r\n        \"rpc\": [\r\n            \"https://ngeth.testnet.n3.nahmii.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Goerli Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nahmii.io\",\r\n        \"shortName\": \"Nahmii3Testnet\",\r\n        \"chainId\": 4062,\r\n        \"networkId\": 4062,\r\n        \"icon\": \"nahmii\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nahmii 3 Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.n3.nahmii.io\",\r\n                \"icon\": \"nahmii\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-3\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.testnet.n3.nahmii.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Fastex Chain (Bahamut) Oasis Testnet\",\r\n        \"title\": \"Bahamut testnet Oasis\",\r\n        \"icon\": \"bahamut\",\r\n        \"chain\": \"Fastex Chain (Bahamut)\",\r\n        \"rpc\": [\r\n            \"https://rpc1.oasis.bahamutchain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.oasis.fastexchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FTN\",\r\n            \"symbol\": \"FTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fastexchain.com\",\r\n        \"shortName\": \"Oasis\",\r\n        \"chainId\": 4090,\r\n        \"networkId\": 4090,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://oasis.ftnscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tipboxcoin Testnet\",\r\n        \"chain\": \"TPBX\",\r\n        \"icon\": \"tipboxcoinIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.tipboxcoin.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tipboxcoin.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tipboxcoin\",\r\n            \"symbol\": \"TPBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tipboxcoin.net\",\r\n        \"shortName\": \"TPBXt\",\r\n        \"chainId\": 4141,\r\n        \"networkId\": 4141,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tipboxcoin\",\r\n                \"url\": \"https://testnet.tipboxcoin.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LUKSO Testnet\",\r\n        \"chain\": \"LUKSO Testnet\",\r\n        \"icon\": \"lukso\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.lukso.network\",\r\n            \"wss://ws-rpc.testnet.lukso.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.lukso.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TestLYX\",\r\n            \"symbol\": \"LYXt\",\r\n            \"decimals\": 18\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.execution.testnet.lukso.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://lukso.network\",\r\n        \"shortName\": \"lukso-testnet\",\r\n        \"chainId\": 4201,\r\n        \"networkId\": 4201,\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexi Mainnet\",\r\n        \"chain\": \"Nexi\",\r\n        \"icon\": \"nexi\",\r\n        \"rpc\": [\r\n            \"https://rpc.chain.nexi.technology/\",\r\n            \"https://chain.nexilix.com\",\r\n            \"https://chain.nexi.evmnode.online\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nexi\",\r\n            \"symbol\": \"NEXI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nexi.technology/\",\r\n        \"shortName\": \"nexi\",\r\n        \"chainId\": 4242,\r\n        \"networkId\": 4242,\r\n        \"slip44\": 2500,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nexiscan\",\r\n                \"url\": \"https://www.nexiscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MEVerse Chain Testnet\",\r\n        \"chain\": \"MEVerse\",\r\n        \"rpc\": [\r\n            \"https://rpc.meversetestnet.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MEVerse\",\r\n            \"symbol\": \"MEV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.meverse.sg\",\r\n        \"shortName\": \"TESTMEV\",\r\n        \"chainId\": 4759,\r\n        \"networkId\": 4759,\r\n        \"icon\": \"meverse\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MEVerse Chain Testnet Explorer\",\r\n                \"url\": \"https://testnet.meversescan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"meverse\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fastex Chain (Bahamut)\",\r\n        \"title\": \"Bahamut mainnet Sahara\",\r\n        \"chain\": \"Fastex Chain (Bahamut)\",\r\n        \"icon\": \"bahamut\",\r\n        \"rpc\": [\r\n            \"https://rpc1.sahara.bahamutchain.com\",\r\n            \"https://rpc2.sahara.bahamutchain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FTN\",\r\n            \"symbol\": \"FTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"ftn\",\r\n        \"infoURL\": \"https://fastexchain.com\",\r\n        \"chainId\": 5165,\r\n        \"networkId\": 5165,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://ftnscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SatoshiChain Testnet\",\r\n        \"chain\": \"SATS\",\r\n        \"icon\": \"satoshichain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.satoshichain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.satoshichain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SatoshiChain Coin\",\r\n            \"symbol\": \"SATS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://satoshichain.net\",\r\n        \"shortName\": \"satst\",\r\n        \"chainId\": 5758,\r\n        \"networkId\": 5758,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SatoshiChain Testnet Explorer\",\r\n                \"url\": \"https://testnet.satoshiscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cascadia Testnet\",\r\n        \"chain\": \"Cascadia\",\r\n        \"rpc\": [\r\n            \"https://testnet.cascadia.foundation\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.cascadia.foundation/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CC\",\r\n            \"symbol\": \"tCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cascadia.foundation\",\r\n        \"shortName\": \"cascadia\",\r\n        \"chainId\": 6102,\r\n        \"networkId\": 6102,\r\n        \"icon\": \"cascadia\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cascadia EVM Explorer\",\r\n                \"url\": \"https://explorer.cascadia.foundation\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"cascadia\"\r\n            },\r\n            {\r\n                \"name\": \"Cascadia Cosmos Explorer\",\r\n                \"url\": \"https://validator.cascadia.foundation\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"cascadia\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UPTN Testnet\",\r\n        \"chain\": \"UPTN\",\r\n        \"icon\": \"uptn\",\r\n        \"rpc\": [\r\n            \"https://node-api.alp.uptn.io/v1/ext/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UPTN\",\r\n            \"symbol\": \"UPTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://uptn.io\",\r\n        \"shortName\": \"UPTN-TEST\",\r\n        \"chainId\": 6118,\r\n        \"networkId\": 6118,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UPTN Testnet Explorer\",\r\n                \"url\": \"https://testnet.explorer.uptn.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UPTN\",\r\n        \"chain\": \"UPTN\",\r\n        \"icon\": \"uptn\",\r\n        \"rpc\": [\r\n            \"https://node-api.uptn.io/v1/ext/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UPTN\",\r\n            \"symbol\": \"UPTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://uptn.io\",\r\n        \"shortName\": \"UPTN\",\r\n        \"chainId\": 6119,\r\n        \"networkId\": 6119,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UPTN Explorer\",\r\n                \"url\": \"https://explorer.uptn.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Peerpay\",\r\n        \"chain\": \"P2P\",\r\n        \"rpc\": [\r\n            \"https://peerpay.su.gy/p2p\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Peerpay\",\r\n            \"symbol\": \"P2P\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://peerpay.su.gy\",\r\n        \"shortName\": \"Peerpay\",\r\n        \"chainId\": 6502,\r\n        \"networkId\": 6502,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Scolcoin WeiChain Testnet\",\r\n        \"chain\": \"SCOLWEI-testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.scolcoin.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.scolcoin.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Scolcoin\",\r\n            \"symbol\": \"SCOL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scolcoin.com\",\r\n        \"shortName\": \"SRC-test\",\r\n        \"chainId\": 6552,\r\n        \"networkId\": 6552,\r\n        \"icon\": \"scolcoin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Scolscan Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.scolcoin.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fox Testnet Network\",\r\n        \"chain\": \"FOX\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet-v1.foxchain.app/\",\r\n            \"https://rpc2-testnet-v1.foxchain.app/\",\r\n            \"https://rpc3-testnet-v1.foxchain.app\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.foxchain.app\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FOX Native Token\",\r\n            \"symbol\": \"tFOX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://foxchain.app\",\r\n        \"shortName\": \"fox\",\r\n        \"chainId\": 6565,\r\n        \"networkId\": 6565,\r\n        \"icon\": \"fox\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FOX Testnet Explorer\",\r\n                \"icon\": \"fox\",\r\n                \"url\": \"https://testnet.foxscan.app\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IRIShub\",\r\n        \"chain\": \"IRIShub\",\r\n        \"rpc\": [\r\n            \"https://evmrpc.irishub-1.irisnet.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eris\",\r\n            \"symbol\": \"ERIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.irisnet.org\",\r\n        \"shortName\": \"iris\",\r\n        \"chainId\": 6688,\r\n        \"networkId\": 6688,\r\n        \"icon\": \"irishub\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"IRISHub Cosmos Explorer (IOBScan)\",\r\n                \"url\": \"https://irishub.iobscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"irishub\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitrock Mainnet\",\r\n        \"chain\": \"Bitrock\",\r\n        \"icon\": \"bitrock\",\r\n        \"rpc\": [\r\n            \"https://connect.bit-rock.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BITROCK\",\r\n            \"symbol\": \"BROCK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bit-rock.io\",\r\n        \"shortName\": \"bitrock\",\r\n        \"chainId\": 7171,\r\n        \"networkId\": 7171,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitrock Explorer\",\r\n                \"url\": \"https://scan.bit-rock.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KLYNTAR\",\r\n        \"chain\": \"KLY\",\r\n        \"rpc\": [\r\n            \"https://evm.klyntar.org/kly_evm_rpc\",\r\n            \"https://evm.klyntarscan.org/kly_evm_rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KLYNTAR\",\r\n            \"symbol\": \"KLY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://klyntar.org\",\r\n        \"shortName\": \"kly\",\r\n        \"chainId\": 7331,\r\n        \"networkId\": 7331,\r\n        \"icon\": \"klyntar\",\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Raba Network Mainnet\",\r\n        \"chain\": \"Raba\",\r\n        \"icon\": \"raba\",\r\n        \"rpc\": [\r\n            \"https://rpc.x.raba.app/\",\r\n            \"wss://rpc.x.raba.app/ws/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Raba\",\r\n            \"symbol\": \"RABA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://x.raba.app/\",\r\n        \"shortName\": \"raba\",\r\n        \"chainId\": 7484,\r\n        \"networkId\": 7484,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"raba\",\r\n                \"url\": \"https://x.raba.app/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MEVerse Chain Mainnet\",\r\n        \"chain\": \"MEVerse\",\r\n        \"rpc\": [\r\n            \"https://rpc.meversemainnet.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MEVerse\",\r\n            \"symbol\": \"MEV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.meverse.sg\",\r\n        \"shortName\": \"MEV\",\r\n        \"chainId\": 7518,\r\n        \"networkId\": 7518,\r\n        \"icon\": \"meverse\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MEVerse Chain Explorer\",\r\n                \"url\": \"https://www.meversescan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"meverse\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ADIL Testnet\",\r\n        \"chain\": \"ADIL\",\r\n        \"icon\": \"adil\",\r\n        \"rpc\": [\r\n            \"https://testnet.adilchain-rpc.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.adil-scan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet ADIL\",\r\n            \"symbol\": \"ADIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://adilchain.io\",\r\n        \"shortName\": \"tadil\",\r\n        \"chainId\": 7575,\r\n        \"networkId\": 7575,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ADIL Testnet Explorer\",\r\n                \"url\": \"https://testnet.adilchain-scan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Adil Chain V2 Mainnet\",\r\n        \"chain\": \"ADIL\",\r\n        \"icon\": \"adil\",\r\n        \"rpc\": [\r\n            \"https://adilchain-rpc.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ADIL\",\r\n            \"symbol\": \"ADIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://adilchain.io\",\r\n        \"shortName\": \"adil\",\r\n        \"chainId\": 7576,\r\n        \"networkId\": 7576,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ADIL Mainnet Explorer\",\r\n                \"url\": \"https://adilchain-scan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"The Root Network - Mainnet\",\r\n        \"chain\": \"TRN\",\r\n        \"rpc\": [\r\n            \"https://root.rootnet.live/archive\",\r\n            \"wss://root.rootnet.live/archive/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XRP\",\r\n            \"symbol\": \"XRP\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://www.futureverse.com/technology/root\",\r\n        \"shortName\": \"trn-mainnet\",\r\n        \"chainId\": 7668,\r\n        \"networkId\": 7668,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rootnet\",\r\n                \"url\": \"https://explorer.rootnet.live\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"The Root Network - Porcini Testnet\",\r\n        \"chain\": \"TRN\",\r\n        \"rpc\": [\r\n            \"https://porcini.rootnet.app/archive\",\r\n            \"wss://porcini.rootnet.app/archive/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XRP\",\r\n            \"symbol\": \"XRP\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://www.futureverse.com/technology/root\",\r\n        \"shortName\": \"trn-porcini\",\r\n        \"chainId\": 7672,\r\n        \"networkId\": 7672,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rootnet\",\r\n                \"url\": \"https://explorer.rootnet.cloud\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Canto Tesnet\",\r\n        \"chain\": \"Canto\",\r\n        \"rpc\": [\r\n            \"https://testnet-archive.plexnode.wtf\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Canto\",\r\n            \"symbol\": \"CANTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://canto.io\",\r\n        \"shortName\": \"TestnetCanto\",\r\n        \"chainId\": 7701,\r\n        \"networkId\": 7701,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Canto Testnet EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://testnet.tuber.build\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitrock Testnet\",\r\n        \"chain\": \"Bitrock\",\r\n        \"icon\": \"bitrock\",\r\n        \"rpc\": [\r\n            \"https://testnet.bit-rock.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bit-rock.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BITROCK\",\r\n            \"symbol\": \"BROCK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bit-rock.io\",\r\n        \"shortName\": \"tbitrock\",\r\n        \"chainId\": 7771,\r\n        \"networkId\": 7771,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitrock Testnet Explorer\",\r\n                \"url\": \"https://testnetscan.bit-rock.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ARDENIUM Athena\",\r\n        \"chain\": \"ATHENA\",\r\n        \"rpc\": [\r\n            \"https://rpc-athena.ardescan.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-athena.ardescan.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ARD\",\r\n            \"symbol\": \"tARD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ardenium.org\",\r\n        \"shortName\": \"ard\",\r\n        \"chainId\": 7895,\r\n        \"networkId\": 7895,\r\n        \"icon\": \"ard\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ARDENIUM Athena Explorer\",\r\n                \"icon\": \"ard\",\r\n                \"url\": \"https://testnet.ardscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DOS Chain\",\r\n        \"chain\": \"DOS\",\r\n        \"rpc\": [\r\n            \"https://main.doschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOS\",\r\n            \"symbol\": \"DOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://doschain.io\",\r\n        \"shortName\": \"dos\",\r\n        \"chainId\": 7979,\r\n        \"networkId\": 7979,\r\n        \"icon\": \"doschain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DOScan\",\r\n                \"url\": \"https://doscan.io\",\r\n                \"icon\": \"doschain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BitEth\",\r\n        \"chain\": \"BTE\",\r\n        \"rpc\": [\r\n            \"https://rpc.biteth.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BitEth\",\r\n            \"symbol\": \"BTE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://biteth.org\",\r\n        \"shortName\": \"BitEth\",\r\n        \"chainId\": 8086,\r\n        \"networkId\": 8086,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Qitmeer Network Mixnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qitmeer Mixnet\",\r\n            \"symbol\": \"MEER-M\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"meermix\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 8132,\r\n        \"networkId\": 8132,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Qitmeer Network Privnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qitmeer Privnet\",\r\n            \"symbol\": \"MEER-P\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"meerpriv\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 8133,\r\n        \"networkId\": 8133,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Amana\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Amana Mainnet\",\r\n            \"symbol\": \"MEER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"amana\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 8134,\r\n        \"networkId\": 8134,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Flana\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flana Mainnet\",\r\n            \"symbol\": \"MEER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"flana\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 8135,\r\n        \"networkId\": 8135,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Mizana\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mizana Mainnet\",\r\n            \"symbol\": \"MEER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"mizana\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 8136,\r\n        \"networkId\": 8136,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Dracones Financial Services\",\r\n        \"title\": \"The Dracones Mainnet\",\r\n        \"chain\": \"FUCK\",\r\n        \"rpc\": [\r\n            \"https://api.dracones.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Functionally Universal Coin Kind\",\r\n            \"symbol\": \"FUCK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wolfery.com\",\r\n        \"shortName\": \"fuck\",\r\n        \"chainId\": 8387,\r\n        \"networkId\": 8387,\r\n        \"icon\": \"dracones\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Neonlink Testnet\",\r\n        \"chain\": \"Neonlink\",\r\n        \"rpc\": [\r\n            \"https://testnet.neonlink.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.neonlink.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neonlink Native Token\",\r\n            \"symbol\": \"tNEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neonlink.io\",\r\n        \"shortName\": \"testneon\",\r\n        \"chainId\": 9559,\r\n        \"networkId\": 9559,\r\n        \"icon\": \"neonlink\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Neon Blockchain Explorer\",\r\n                \"url\": \"https://testnet-scan.neonlink.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"neonlink\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PepeNetwork Mainnet\",\r\n        \"chain\": \"PepeNetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.pepenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pepe\",\r\n            \"symbol\": \"WPEPE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pepenetwork.io\",\r\n        \"shortName\": \"pn\",\r\n        \"chainId\": 9779,\r\n        \"networkId\": 9779,\r\n        \"icon\": \"pepenetwork\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pepe Explorer\",\r\n                \"url\": \"https://explorer.pepenetwork.io\",\r\n                \"icon\": \"pepenetwork\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Carbon EVM\",\r\n        \"chain\": \"Carbon\",\r\n        \"icon\": \"carbon\",\r\n        \"rpc\": [\r\n            \"https://evm-api.carbon.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"swth\",\r\n            \"symbol\": \"SWTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://carbon.network/\",\r\n        \"shortName\": \"carbon\",\r\n        \"chainId\": 9790,\r\n        \"networkId\": 9790,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Carbon EVM Testnet\",\r\n        \"chain\": \"Carbon\",\r\n        \"icon\": \"carbon\",\r\n        \"rpc\": [\r\n            \"https://test-evm-api.carbon.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"swth\",\r\n            \"symbol\": \"SWTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://carbon.network/\",\r\n        \"shortName\": \"carbon-testnet\",\r\n        \"chainId\": 9792,\r\n        \"networkId\": 9792,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"AltLayer Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://testnet-rollup-api.altlayer.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://altlayer.io\",\r\n        \"shortName\": \"alt-testnet\",\r\n        \"chainId\": 9997,\r\n        \"networkId\": 9997,\r\n        \"icon\": \"altlayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-rollup-explorer.altlayer.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HashBit Mainnet\",\r\n        \"chain\": \"HBIT\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.hashbit.org\",\r\n            \"https://rpc.hashbit.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://free-online-app.com/faucet-for-eth-evm-chains/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HashBit Native Token\",\r\n            \"symbol\": \"HBIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hashbit.org\",\r\n        \"shortName\": \"hbit\",\r\n        \"chainId\": 11119,\r\n        \"networkId\": 11119,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"hashbitscan\",\r\n                \"url\": \"https://explorer.hashbit.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SatoshiChain Mainnet\",\r\n        \"chain\": \"SATS\",\r\n        \"icon\": \"satoshichain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.satoshichain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SatoshiChain Coin\",\r\n            \"symbol\": \"SATS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://satoshichain.net\",\r\n        \"shortName\": \"sats\",\r\n        \"chainId\": 12009,\r\n        \"networkId\": 12009,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SatoshiChain Explorer\",\r\n                \"url\": \"https://satoshiscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BRC Chain Mainnet\",\r\n        \"chain\": \"BRC\",\r\n        \"rpc\": [\r\n            \"https://rpc.brcchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.brcchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BRC Chain mainnet native token\",\r\n            \"symbol\": \"BRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bridge.brcchain.io\",\r\n        \"shortName\": \"BRC\",\r\n        \"chainId\": 12123,\r\n        \"networkId\": 12123,\r\n        \"icon\": \"brcchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BRC Chain Explorer\",\r\n                \"url\": \"https://scan.brcchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fibonacci Mainnet\",\r\n        \"chain\": \"FIBO\",\r\n        \"icon\": \"fibonacci\",\r\n        \"rpc\": [\r\n            \"https://node1.fibo-api.asia\",\r\n            \"https://node2.fibo-api.asia\",\r\n            \"https://node3.fibo-api.asia\",\r\n            \"https://node4.fibo-api.asia\",\r\n            \"https://node5.fibo-api.asia\",\r\n            \"https://node6.fibo-api.asia\",\r\n            \"https://node7.fibo-api.asia\",\r\n            \"https://node1.fibo-rpc.asia\",\r\n            \"https://node2.fibo-rpc.asia\",\r\n            \"https://node3.fibo-rpc.asia\",\r\n            \"https://node4.fibo-rpc.asia\",\r\n            \"https://node5.fibo-rpc.asia\",\r\n            \"https://node6.fibo-rpc.asia\",\r\n            \"https://node7.fibo-rpc.asia\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://test.fibochain.org/faucets\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FIBONACCI UTILITY TOKEN\",\r\n            \"symbol\": \"FIBO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fibochain.org\",\r\n        \"shortName\": \"fibo\",\r\n        \"chainId\": 12306,\r\n        \"networkId\": 1230,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"fiboscan\",\r\n                \"url\": \"https://scan.fibochain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rikeza Network Testnet\",\r\n        \"title\": \"Rikeza Network Testnet\",\r\n        \"chain\": \"Rikeza\",\r\n        \"icon\": \"rikeza\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.rikscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rikeza\",\r\n            \"symbol\": \"RIK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rikeza.io\",\r\n        \"shortName\": \"tRIK\",\r\n        \"chainId\": 12715,\r\n        \"networkId\": 12715,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rikeza Blockchain explorer\",\r\n                \"url\": \"https://testnet.rikscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LoopNetwork Mainnet\",\r\n        \"chain\": \"LoopNetwork\",\r\n        \"rpc\": [\r\n            \"https://api.mainnetloop.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LOOP\",\r\n            \"symbol\": \"LOOP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://theloopnetwork.org/\",\r\n        \"shortName\": \"loop\",\r\n        \"chainId\": 15551,\r\n        \"networkId\": 15551,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"loopscan\",\r\n                \"url\": \"http://explorer.mainnetloop.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EOS EVM Network Testnet\",\r\n        \"chain\": \"EOS\",\r\n        \"icon\": \"eos\",\r\n        \"rpc\": [\r\n            \"https://api.testnet.evm.eosnetwork.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EOS\",\r\n            \"symbol\": \"EOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eosnetwork.com/eos-evm\",\r\n        \"shortName\": \"eos-testnet\",\r\n        \"chainId\": 15557,\r\n        \"networkId\": 15557,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EOS EVM Explorer\",\r\n                \"url\": \"https://explorer.testnet.evm.eosnetwork.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.testnet.evm.eosnetwork.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Genesys Mainnet\",\r\n        \"chain\": \"Genesys\",\r\n        \"icon\": \"genesys\",\r\n        \"rpc\": [\r\n            \"https://rpc.genesys.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Genesys\",\r\n            \"symbol\": \"GSYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.genesys.network/\",\r\n        \"shortName\": \"Genesys\",\r\n        \"chainId\": 16507,\r\n        \"networkId\": 16507,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GchainExplorer\",\r\n                \"url\": \"https://gchainexplorer.genesys.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IRIShub Testnet\",\r\n        \"chain\": \"IRIShub\",\r\n        \"rpc\": [\r\n            \"https://evmrpc.nyancat.irisnet.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eris\",\r\n            \"symbol\": \"ERIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.irisnet.org\",\r\n        \"shortName\": \"nyancat\",\r\n        \"chainId\": 16688,\r\n        \"networkId\": 16688,\r\n        \"icon\": \"nyancat\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"IRISHub Testnet Cosmos Explorer (IOBScan)\",\r\n                \"url\": \"https://nyancat.iobscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nyancat\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Palette Chain Testnet\",\r\n        \"chain\": \"PLT\",\r\n        \"rpc\": [\r\n            \"https://palette-opennet.com:22000\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Palette Token\",\r\n            \"symbol\": \"PLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://hashpalette.com/\",\r\n        \"shortName\": \"PCT\",\r\n        \"chainId\": 17180,\r\n        \"networkId\": 17180,\r\n        \"icon\": \"PLT\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Palettescan\",\r\n                \"url\": \"https://testnet.palettescan.com\",\r\n                \"icon\": \"PLT\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EOS EVM Network\",\r\n        \"chain\": \"EOS\",\r\n        \"icon\": \"eos\",\r\n        \"rpc\": [\r\n            \"https://api.evm.eosnetwork.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EOS\",\r\n            \"symbol\": \"EOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eosnetwork.com/eos-evm\",\r\n        \"shortName\": \"eos\",\r\n        \"chainId\": 17777,\r\n        \"networkId\": 17777,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EOS EVM Explorer\",\r\n                \"url\": \"https://explorer.evm.eosnetwork.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.evm.eosnetwork.com\"\r\n                },\r\n                {\r\n                    \"url\": \"https://app.multichain.org\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MXC zkEVM Mainnet\",\r\n        \"chain\": \"MXC zkEVM\",\r\n        \"icon\": \"mxczkevm\",\r\n        \"rpc\": [\r\n            \"https://rpc.mxc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MXC zkEVM Mainnet\",\r\n            \"symbol\": \"MXC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://doc.mxc.com/docs/intro\",\r\n        \"shortName\": \"MXCzkEVM\",\r\n        \"chainId\": 18686,\r\n        \"networkId\": 18686,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MXC zkEVM Mainnet\",\r\n                \"url\": \"https://explorer.mxc.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Camelark Mainnet\",\r\n        \"chainId\": 20001,\r\n        \"shortName\": \"Camelark\",\r\n        \"chain\": \"ETHW\",\r\n        \"icon\": \"camelark\",\r\n        \"networkId\": 20001,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EthereumPoW\",\r\n            \"symbol\": \"ETHW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet-http-rpc.camelark.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CamelarkScan\",\r\n                \"url\": \"https://scan.camelark.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.camelark.com\"\r\n    },\r\n    {\r\n        \"name\": \"Antofy Testnet\",\r\n        \"chain\": \"ABN\",\r\n        \"icon\": \"antofy\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.antofy.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.antofy.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Antofy\",\r\n            \"symbol\": \"ABN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://antofy.io\",\r\n        \"shortName\": \"ABNt\",\r\n        \"chainId\": 23006,\r\n        \"networkId\": 23006,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Antofy Testnet\",\r\n                \"url\": \"https://test.antofyscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ferrum Testnet\",\r\n        \"chain\": \"tFRM\",\r\n        \"rpc\": [\r\n            \"http://testnet.dev.svcs.ferrumnetwork.io:9933\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.faucet.ferrumnetwork.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ferrum\",\r\n            \"symbol\": \"tFRM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://ferrum.network\",\r\n        \"shortName\": \"frm\",\r\n        \"chainId\": 26026,\r\n        \"networkId\": 26026,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"polkadotjs\",\r\n                \"url\": \"https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa EVM\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://api.zilliqa.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zil\",\r\n        \"chainId\": 32769,\r\n        \"networkId\": 32769,\r\n        \"icon\": \"zilliqa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa EVM Explorer\",\r\n                \"url\": \"https://evmx.zilliqa.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa EVM Testnet\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://dev-api.zilliqa.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://dev-wallet.zilliqa.com/faucet?network=testnet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zil-testnet\",\r\n        \"chainId\": 33101,\r\n        \"networkId\": 33101,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa EVM Explorer\",\r\n                \"url\": \"https://evmx.zilliqa.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Opside Testnet Pre-Alpha\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://pre-alpha-us-http-geth.opside.network\",\r\n            \"https://pre-alpha-hk-http-geth.opside.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IDE Test Token\",\r\n            \"symbol\": \"IDE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://opsi.de/\",\r\n        \"shortName\": \"Opside-Testnet\",\r\n        \"chainId\": 51178,\r\n        \"networkId\": 51178,\r\n        \"icon\": \"opside-new\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OpsideTestnetInfo\",\r\n                \"url\": \"https://pre-alpha.opside.info\",\r\n                \"icon\": \"opside-new\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Toronet Testnet\",\r\n        \"chain\": \"Toronet\",\r\n        \"icon\": \"toronet\",\r\n        \"rpc\": [\r\n            \"http://testnet.toronet.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Toro\",\r\n            \"symbol\": \"TORO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://toronet.org\",\r\n        \"shortName\": \"ToronetTestnet\",\r\n        \"chainId\": 54321,\r\n        \"networkId\": 54321,\r\n        \"ens\": {\r\n            \"registry\": \"0x059C474f26D65B0458F9da10A649a7322aB02C09\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"toronet_explorer\",\r\n                \"url\": \"https://testnet.toronet.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Titan\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.titan.tokamak.network\",\r\n            \"wss://rpc.titan.tokamak.network/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tokamak.network\",\r\n        \"shortName\": \"teth\",\r\n        \"chainId\": 55004,\r\n        \"networkId\": 55004,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.titan.tokamak.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rollux Testnet\",\r\n        \"chain\": \"SYS\",\r\n        \"rpc\": [\r\n            \"https://rpc-tanenbaum.rollux.com\",\r\n            \"https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}\",\r\n            \"wss://rpc-tanenbaum.rollux.com/wss\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://rollux.id/faucetapp\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Syscoin\",\r\n            \"symbol\": \"TSYS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rollux.com\",\r\n        \"shortName\": \"tsys-rollux\",\r\n        \"chainId\": 57000,\r\n        \"networkId\": 57000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rollux Testnet Explorer\",\r\n                \"url\": \"https://rollux.tanenbaum.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sepolia PGN (Public Goods Network)\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.publicgoods.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://publicgoods.network/\",\r\n        \"shortName\": \"sepPGN\",\r\n        \"chainId\": 58008,\r\n        \"networkId\": 58008,\r\n        \"icon\": \"publicGoodsNetwork\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.sepolia.publicgoods.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://pgn-bridge.vercel.app/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Linea Testnet\",\r\n        \"title\": \"Linea Goerli Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.goerli.linea.build\",\r\n            \"wss://rpc.goerli.linea.build\",\r\n            \"https://linea-goerli.infura.io/v3/${INFURA_API_KEY}\",\r\n            \"wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucetlink.to/goerli\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Linea Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://linea.build\",\r\n        \"shortName\": \"linea-testnet\",\r\n        \"chainId\": 59140,\r\n        \"networkId\": 59140,\r\n        \"icon\": \"linea\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.goerli.linea.build\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"linea\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"AxelChain Dev-Net\",\r\n        \"chain\": \"AXEL\",\r\n        \"rpc\": [\r\n            \"https://aium-rpc-dev.viacube.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Axelium\",\r\n            \"symbol\": \"AIUM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.axel.org\",\r\n        \"shortName\": \"aium-dev\",\r\n        \"chainId\": 61800,\r\n        \"networkId\": 61800,\r\n        \"icon\": \"axelium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AxelChain Dev-Net Explorer\",\r\n                \"url\": \"https://devexplorer2.viacube.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Scolcoin Mainnet\",\r\n        \"chain\": \"SCOLWEI\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.scolcoin.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Scolcoin\",\r\n            \"symbol\": \"SCOL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scolcoin.com\",\r\n        \"shortName\": \"SRC\",\r\n        \"chainId\": 65450,\r\n        \"networkId\": 65450,\r\n        \"icon\": \"scolcoin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Scolscan Explorer\",\r\n                \"url\": \"https://explorer.scolcoin.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cosmic Chain\",\r\n        \"chain\": \"COSMIC\",\r\n        \"rpc\": [\r\n            \"http://testnet.cosmicchain.site:3344\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cosmic Chain\",\r\n            \"symbol\": \"COSMIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cosmicchain.site\",\r\n        \"shortName\": \"Cosmic\",\r\n        \"chainId\": 67588,\r\n        \"networkId\": 3344\r\n    },\r\n    {\r\n        \"name\": \"GuapcoinX\",\r\n        \"chain\": \"GuapcoinX\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.guapcoinx.com/\",\r\n            \"https://rpc-mainnet-1.guapcoinx.com/\",\r\n            \"https://rpc-mainnet-2.guapcoinx.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GuapcoinX\",\r\n            \"symbol\": \"GuapX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://guapcoin.org/\",\r\n        \"shortName\": \"GuapX\",\r\n        \"chainId\": 71111,\r\n        \"networkId\": 71111,\r\n        \"icon\": \"guapcoinx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GuapcoinX Explorer\",\r\n                \"url\": \"http://explorer.guapcoinx.com\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"guapcoinx\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Toronet Mainnet\",\r\n        \"chain\": \"Toronet\",\r\n        \"icon\": \"toronet\",\r\n        \"rpc\": [\r\n            \"http://toronet.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Toro\",\r\n            \"symbol\": \"TORO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://toronet.org\",\r\n        \"shortName\": \"Toronet\",\r\n        \"chainId\": 77777,\r\n        \"networkId\": 77777,\r\n        \"ens\": {\r\n            \"registry\": \"0x1f45a71f4aAD769E27c969c4359E0e250C67165c\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"toronet_explorer\",\r\n                \"url\": \"https://toronet.org/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dragonfly Mainnet (Hexapod)\",\r\n        \"chain\": \"Dragonfly\",\r\n        \"icon\": \"dragonfly\",\r\n        \"rpc\": [\r\n            \"https://dragonfly-rpc.switch.ch\",\r\n            \"https://dragonfly-rpc.kore-technologies.ch\",\r\n            \"https://dragonfly-rpc.phoenix-systems.io\",\r\n            \"https://dragonfly-rpc.block-spirit.ch\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dragonfly\",\r\n            \"symbol\": \"DFLY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hexapod.network\",\r\n        \"shortName\": \"dfly\",\r\n        \"chainId\": 78281,\r\n        \"networkId\": 78281,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dragonfly Blockscout\",\r\n                \"url\": \"https://blockscout.dragonfly.hexapod.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Amana Testnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Amana Testnet\",\r\n            \"symbol\": \"MEER-T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"amanatest\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81341,\r\n        \"networkId\": 81341,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Amana Mixnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Amana Mixnet\",\r\n            \"symbol\": \"MEER-M\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"amanamix\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81342,\r\n        \"networkId\": 81342,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Amana Privnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Amana Privnet\",\r\n            \"symbol\": \"MEER-P\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"amanapriv\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81343,\r\n        \"networkId\": 81343,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Flana Testnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flana Testnet\",\r\n            \"symbol\": \"MEER-T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"flanatest\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81351,\r\n        \"networkId\": 81351,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Flana Mixnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flana Mixnet\",\r\n            \"symbol\": \"MEER-M\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"flanamix\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81352,\r\n        \"networkId\": 81352,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Flana Privnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flana Privnet\",\r\n            \"symbol\": \"MEER-P\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"flanapriv\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81353,\r\n        \"networkId\": 81353,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Mizana Testnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mizana Testnet\",\r\n            \"symbol\": \"MEER-T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"mizanatest\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81361,\r\n        \"networkId\": 81361,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Mizana Mixnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mizana Mixnet\",\r\n            \"symbol\": \"MEER-M\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"mizanamix\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81362,\r\n        \"networkId\": 81362,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Mizana Privnet\",\r\n        \"chain\": \"MEER\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mizana Privnet\",\r\n            \"symbol\": \"MEER-P\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/Qitmeer\",\r\n        \"shortName\": \"mizanapriv\",\r\n        \"icon\": \"meer\",\r\n        \"chainId\": 81363,\r\n        \"networkId\": 81363,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"CYBERTRUST\",\r\n        \"chain\": \"CYBER\",\r\n        \"rpc\": [\r\n            \"http://testnet.cybertrust.space:48501\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cyber Trust\",\r\n            \"symbol\": \"CYBER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cybertrust.space\",\r\n        \"shortName\": \"Cyber\",\r\n        \"chainId\": 85449,\r\n        \"networkId\": 48501\r\n    },\r\n    {\r\n        \"name\": \"Nautilus Chain\",\r\n        \"title\": \"Nautilus Trition Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"nautilus\",\r\n        \"rpc\": [\r\n            \"https://triton.api.nautchain.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.eclipse.builders\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nautilus Zebec Testnet Tokens\",\r\n            \"symbol\": \"tZBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.nautchain.xyz\",\r\n        \"shortName\": \"NAUT\",\r\n        \"chainId\": 91002,\r\n        \"networkId\": 91002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nautscan\",\r\n                \"url\": \"https://triton.nautscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mantis Testnet (Hexapod)\",\r\n        \"chain\": \"Mantis\",\r\n        \"icon\": \"mantis\",\r\n        \"rpc\": [\r\n            \"https://mantis-rpc.switch.ch\",\r\n            \"https://mantis-rpc.kore-technologies.ch\",\r\n            \"https://mantis-rpc.phoenix-systems.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://mantis.switch.ch/faucet\",\r\n            \"https://mantis.kore-technologies.ch/faucet\",\r\n            \"https://mantis.phoenix-systems.io/faucet\",\r\n            \"https://mantis.block-spirit.ch/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mantis\",\r\n            \"symbol\": \"MANTIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hexapod.network\",\r\n        \"shortName\": \"mantis\",\r\n        \"chainId\": 96970,\r\n        \"networkId\": 96970,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mantis Blockscout\",\r\n                \"url\": \"https://blockscout.mantis.hexapod.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Siberium Test Network\",\r\n        \"chain\": \"SBR\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.siberium.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TestSIBR\",\r\n            \"symbol\": \"SIBR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://siberium.net\",\r\n        \"shortName\": \"testsbr\",\r\n        \"chainId\": 111000,\r\n        \"networkId\": 111000,\r\n        \"icon\": \"siberium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Siberium Testnet Explorer - blockscout\",\r\n                \"url\": \"https://explorer.test.siberium.net\",\r\n                \"icon\": \"siberium\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Siberium Network\",\r\n        \"chain\": \"SBR\",\r\n        \"rpc\": [\r\n            \"https://rpc.main.siberium.net\",\r\n            \"https://rpc.main.siberium.net.ru\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Siberium\",\r\n            \"symbol\": \"SIBR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://siberium.net\",\r\n        \"shortName\": \"sbr\",\r\n        \"chainId\": 111111,\r\n        \"networkId\": 111111,\r\n        \"icon\": \"siberium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Siberium Mainnet Explorer - blockscout - 1\",\r\n                \"url\": \"https://explorer.main.siberium.net\",\r\n                \"icon\": \"siberium\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Siberium Mainnet Explorer - blockscout - 2\",\r\n                \"url\": \"https://explorer.main.siberium.net.ru\",\r\n                \"icon\": \"siberium\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metachain One Mainnet\",\r\n        \"chain\": \"METAO\",\r\n        \"icon\": \"metao\",\r\n        \"rpc\": [\r\n            \"https://rpc.metachain.one\",\r\n            \"https://rpc2.metachain.one\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metao\",\r\n            \"symbol\": \"METAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metachain.one\",\r\n        \"shortName\": \"metao\",\r\n        \"chainId\": 112358,\r\n        \"networkId\": 112358,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.metachain.one\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ADIL Devnet\",\r\n        \"chain\": \"ADIL\",\r\n        \"icon\": \"adil\",\r\n        \"rpc\": [\r\n            \"https://devnet.adilchain-rpc.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Devnet ADIL\",\r\n            \"symbol\": \"ADIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://adilchain.io\",\r\n        \"shortName\": \"dadil\",\r\n        \"chainId\": 123456,\r\n        \"networkId\": 123456,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ADIL Devnet Explorer\",\r\n                \"url\": \"https://devnet.adilchain-scan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ICPlaza Mainnet\",\r\n        \"chain\": \"ICPlaza\",\r\n        \"icon\": \"icplaza\",\r\n        \"rpc\": [\r\n            \"https://rpcmainnet.ic-plaza.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ict\",\r\n            \"symbol\": \"ict\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.ic-plaza.org/\",\r\n        \"shortName\": \"ICPlaza\",\r\n        \"chainId\": 142857,\r\n        \"networkId\": 142857,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ICPlaza\",\r\n                \"url\": \"https://browsemainnet.ic-plaza.org/index\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taf ECO Chain Mainnet\",\r\n        \"chain\": \"Taf ECO Chain\",\r\n        \"icon\": \"taf\",\r\n        \"rpc\": [\r\n            \"https://mainnet.tafchain.com/v1\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Taf ECO Chain Mainnet\",\r\n            \"symbol\": \"TAFECO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.tafchain.com\",\r\n        \"shortName\": \"TAFECO\",\r\n        \"chainId\": 224168,\r\n        \"networkId\": 224168,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Taf ECO Chain Mainnet\",\r\n                \"url\": \"https://ecoscan.tafchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HashKey Chain Testnet\",\r\n        \"chain\": \"HashKey\",\r\n        \"rpc\": [\r\n            \"https://testnet.hashkeychain/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.hashkeychain/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HashKey Token\",\r\n            \"symbol\": \"tHSK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.hashkey.com\",\r\n        \"shortName\": \"hsktest\",\r\n        \"chainId\": 230315,\r\n        \"networkId\": 230315,\r\n        \"icon\": \"hsk\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HashKey Chain Testnet Explorer\",\r\n                \"url\": \"https://testnet.hashkeyscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EgonCoin Testnet\",\r\n        \"chain\": \"EGON\",\r\n        \"icon\": \"egonicon\",\r\n        \"rpc\": [\r\n            \"https://rpctest.egcscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.egcscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EgonCoin\",\r\n            \"symbol\": \"EGON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://egcscan.com\",\r\n        \"shortName\": \"EGONt\",\r\n        \"chainId\": 271271,\r\n        \"networkId\": 271271,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EgonCoin Testnet\",\r\n                \"url\": \"https://testnet.egcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TTcoin Smart Chain Mainnet\",\r\n        \"chain\": \"TSC\",\r\n        \"icon\": \"tscscan\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.tscscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tscscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TTcoin\",\r\n            \"symbol\": \"TC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ttcoin.info/\",\r\n        \"shortName\": \"tc\",\r\n        \"chainId\": 330844,\r\n        \"networkId\": 330844,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TTcoin Smart Chain Explorer\",\r\n                \"url\": \"https://tscscan.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"tscscan\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aves Testnet\",\r\n        \"chain\": \"AVST\",\r\n        \"rpc\": [\r\n            \"https://test.rpc.avescoin.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AvesT\",\r\n            \"symbol\": \"AVST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://ethereum.org\",\r\n        \"shortName\": \"avst\",\r\n        \"chainId\": 333331,\r\n        \"networkId\": 333331,\r\n        \"icon\": \"aves\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"avescan\",\r\n                \"url\": \"https://testnet.avescoin.io\",\r\n                \"icon\": \"avescan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitfinity Network Testnet\",\r\n        \"chain\": \"BFT\",\r\n        \"rpc\": [\r\n            \"https://testnet.bitfinity.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://bitfinity.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BITFINITY\",\r\n            \"symbol\": \"BFT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitfinity.network\",\r\n        \"shortName\": \"Bitfinity\",\r\n        \"chainId\": 355113,\r\n        \"networkId\": 355113,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitfinity Block Explorer\",\r\n                \"url\": \"https://explorer.bitfinity.network\",\r\n                \"icon\": \"bitfinity\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HAPchain Testnet\",\r\n        \"chain\": \"HAPchain\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc-test.hap.land\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HAP\",\r\n            \"symbol\": \"HAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hap.land\",\r\n        \"shortName\": \"hap-testnet\",\r\n        \"chainId\": 373737,\r\n        \"networkId\": 373737,\r\n        \"icon\": \"hap\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HAP EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://blockscout-test.hap.land\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"hap\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tipboxcoin Mainnet\",\r\n        \"chain\": \"TPBX\",\r\n        \"icon\": \"tipboxcoinIcon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.tipboxcoin.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tipboxcoin.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tipboxcoin\",\r\n            \"symbol\": \"TPBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tipboxcoin.net\",\r\n        \"shortName\": \"TPBXm\",\r\n        \"chainId\": 404040,\r\n        \"networkId\": 404040,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tipboxcoin\",\r\n                \"url\": \"https://tipboxcoin.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Markr Go\",\r\n        \"chain\": \"Unified\",\r\n        \"icon\": \"markrgo\",\r\n        \"rpc\": [\r\n            \"https://rpc.markr.io/ext/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Avalanche\",\r\n            \"symbol\": \"AVAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.markr.io/\",\r\n        \"shortName\": \"markr-go\",\r\n        \"chainId\": 431140,\r\n        \"networkId\": 431140,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Patex Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://test-rpc.patex.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://patex.io/\",\r\n        \"shortName\": \"psep\",\r\n        \"chainId\": 471100,\r\n        \"networkId\": 471100\r\n    },\r\n    {\r\n        \"name\": \"Scroll Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scroll.io\",\r\n        \"shortName\": \"scr-sepolia\",\r\n        \"chainId\": 534351,\r\n        \"networkId\": 534351,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Shinarium Beta\",\r\n        \"chain\": \"Shinarium\",\r\n        \"rpc\": [\r\n            \"https://rpc.shinarium.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.shinarium.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shina Inu\",\r\n            \"symbol\": \"SHI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shinarium.org\",\r\n        \"shortName\": \"shi\",\r\n        \"chainId\": 534849,\r\n        \"networkId\": 534849,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shinascan\",\r\n                \"url\": \"https://shinascan.shinarium.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BeanEco SmartChain\",\r\n        \"title\": \"BESC Mainnet\",\r\n        \"chain\": \"BESC\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.bescscan.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"faucet.bescscan.ion\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BeanEco SmartChain\",\r\n            \"symbol\": \"BESC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"besceco.finance\",\r\n        \"shortName\": \"BESC\",\r\n        \"chainId\": 535037,\r\n        \"networkId\": 535037,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bescscan\",\r\n                \"url\": \"https://Bescscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ALL Mainnet\",\r\n        \"chain\": \"ALL\",\r\n        \"icon\": \"alltra\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.alltra.global\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALL\",\r\n            \"symbol\": \"ALL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alltra.world\",\r\n        \"shortName\": \"ALL\",\r\n        \"chainId\": 651940,\r\n        \"networkId\": 651940,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Alltra SmartChain Explorer\",\r\n                \"url\": \"https://alltra.global\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CURVE Mainnet\",\r\n        \"chain\": \"CURVE\",\r\n        \"icon\": \"curveIcon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.curvescan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Curve\",\r\n            \"symbol\": \"CURVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://curvescan.io\",\r\n        \"shortName\": \"CURVEm\",\r\n        \"chainId\": 827431,\r\n        \"networkId\": 827431,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CURVE Mainnet\",\r\n                \"url\": \"https://curvescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AltLayer Zero Gas Network\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://zero.alt.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZERO\",\r\n            \"symbol\": \"ZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://altlayer.io\",\r\n        \"shortName\": \"alt-zerogas\",\r\n        \"chainId\": 4000003,\r\n        \"networkId\": 4000003,\r\n        \"icon\": \"altlayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://zero-explorer.alt.technology\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Worlds Caldera\",\r\n        \"chain\": \"WCal\",\r\n        \"rpc\": [\r\n            \"https://worlds-test.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://caldera.xyz/\",\r\n        \"shortName\": \"worldscal\",\r\n        \"chainId\": 4281033,\r\n        \"networkId\": 4281033,\r\n        \"icon\": \"ethereum\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"MXC Wannsee zkEVM Testnet\",\r\n        \"chain\": \"MXC zkEVM\",\r\n        \"icon\": \"mxc\",\r\n        \"rpc\": [\r\n            \"https://wannsee-rpc.mxc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MXC Wannsee zkEVM Testnet\",\r\n            \"symbol\": \"MXC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wannsee.mxc.com/docs/intro\",\r\n        \"shortName\": \"MXC\",\r\n        \"chainId\": 5167003,\r\n        \"networkId\": 5167003,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MXC Wannsee zkEVM Testnet\",\r\n                \"url\": \"https://wannsee-explorer.mxc.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HAPchain\",\r\n        \"chain\": \"HAPchain\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc.hap.land\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HAP\",\r\n            \"symbol\": \"HAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hap.land\",\r\n        \"shortName\": \"hap\",\r\n        \"chainId\": 8794598,\r\n        \"networkId\": 8794598,\r\n        \"icon\": \"hap\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HAP EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://blockscout.hap.land\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"hap\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Quarix Testnet\",\r\n        \"chain\": \"Quarix\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Q\",\r\n            \"symbol\": \"Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"quarix-testnet\",\r\n        \"chainId\": 8888881,\r\n        \"networkId\": 8888881,\r\n        \"icon\": \"quarix\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Quarix\",\r\n        \"chain\": \"Quarix\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Q\",\r\n            \"symbol\": \"Q\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"quarix\",\r\n        \"chainId\": 8888888,\r\n        \"networkId\": 8888888,\r\n        \"icon\": \"quarix\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"T.E.A.M Blockchain\",\r\n        \"chain\": \"TEAM\",\r\n        \"icon\": \"team\",\r\n        \"rpc\": [\r\n            \"https://rpc.teamblockchain.team\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TEAM\",\r\n            \"symbol\": \"$TEAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://teamblockchain.team\",\r\n        \"shortName\": \"team\",\r\n        \"chainId\": 88888888,\r\n        \"networkId\": 88888888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"teamscan\",\r\n                \"url\": \"https://teamblockchain.team\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kanazawa\",\r\n        \"title\": \"Meld Testnet Kanazawa\",\r\n        \"chain\": \"Kanazawa\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/meld/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"gMeld\",\r\n            \"symbol\": \"gMELD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"meld\",\r\n        \"infoURL\": \"https://meld.com\",\r\n        \"shortName\": \"kanazawa\",\r\n        \"chainId\": 222000222,\r\n        \"networkId\": 222000222,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/meld\",\r\n                \"icon\": \"meld\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Razor Skale Chain\",\r\n        \"chain\": \"Razor Schain\",\r\n        \"icon\": \"razornetwork\",\r\n        \"rpc\": [\r\n            \"https://mainnet.skalenodes.com/v1/turbulent-unique-scheat\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.razorscan.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFuel\",\r\n            \"symbol\": \"SFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://razor.network\",\r\n        \"shortName\": \"razor\",\r\n        \"chainId\": 278611351,\r\n        \"networkId\": 278611351,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"turbulent-unique-scheat\",\r\n                \"url\": \"https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Meld\",\r\n        \"title\": \"Meld Mainnet\",\r\n        \"chain\": \"MELD\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/meld/mainnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"gMeld\",\r\n            \"symbol\": \"gMELD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"meld\",\r\n        \"infoURL\": \"https://meld.com\",\r\n        \"shortName\": \"meld\",\r\n        \"chainId\": 333000333,\r\n        \"networkId\": 333000333,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://subnets.avax.network/meld\",\r\n                \"icon\": \"meld\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CyberdeckNet\",\r\n        \"chain\": \"cyberdeck\",\r\n        \"rpc\": [\r\n            \"http://cybeth1.cyberdeck.eu:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cyb\",\r\n            \"symbol\": \"CYB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cyberdeck.eu\",\r\n        \"shortName\": \"cyb\",\r\n        \"chainId\": 1146703430,\r\n        \"networkId\": 1146703430,\r\n        \"icon\": \"cyberdeck\",\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CybEthExplorer\",\r\n                \"url\": \"http://cybeth1.cyberdeck.eu:8000\",\r\n                \"icon\": \"cyberdeck\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HUMAN Protocol\",\r\n        \"title\": \"HUMAN Protocol\",\r\n        \"chain\": \"wan-red-ain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.skalenodes.com/v1/wan-red-ain\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://dashboard.humanprotocol.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.humanprotocol.org\",\r\n        \"shortName\": \"human-mainnet\",\r\n        \"chainId\": 1273227453,\r\n        \"networkId\": 1273227453,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://wan-red-ain.explorer.mainnet.skalenodes.com\",\r\n                \"icon\": \"human\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chaos (SKALE Testnet)\",\r\n        \"title\": \"Chaos Testnet\",\r\n        \"chain\": \"staging-fast-active-bellatrix\",\r\n        \"rpc\": [\r\n            \"https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfuel.skale.network/staging/chaos\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.skale.network/develop/\",\r\n        \"shortName\": \"chaos-tenet\",\r\n        \"chainId\": 1351057110,\r\n        \"networkId\": 1351057110,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com\",\r\n                \"icon\": \"chaos\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"RaptorChain\",\r\n        \"chain\": \"RPTR\",\r\n        \"rpc\": [\r\n            \"https://rpc.raptorchain.io/web3\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Raptor\",\r\n            \"symbol\": \"RPTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://raptorchain.io\",\r\n        \"shortName\": \"rptr\",\r\n        \"chainId\": 1380996178,\r\n        \"networkId\": 1380996178,\r\n        \"icon\": \"raptorchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RaptorChain Explorer\",\r\n                \"url\": \"https://explorer.raptorchain.io\",\r\n                \"icon\": \"raptorchain_explorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Alphabet Mainnet\",\r\n        \"chain\": \"Alphabet Network\",\r\n        \"icon\": \"alphabetnetwork\",\r\n        \"rpc\": [\r\n            \"https://londonpublic.alphabetnetwork.org\",\r\n            \"wss://londonpublic.alphabetnetwork.org/ws/\",\r\n            \"https://main-rpc.com\",\r\n            \"wss://main-rpc.com/ws/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALT\",\r\n            \"symbol\": \"ALT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alphabetnetwork.org\",\r\n        \"shortName\": \"alphabet\",\r\n        \"chainId\": 111222333444,\r\n        \"networkId\": 111222333444,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Alphabet Explorer\",\r\n                \"url\": \"https://scan.alphabetnetwork.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Express\",\r\n        \"chainId\": 8957,\r\n        \"shortName\": \"ETE\",\r\n        \"chain\": \"ETE\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 8957,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETE\",\r\n            \"symbol\": \"ETE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://www.etescan.net/rpc\",\r\n            \"https://www.etelondon.com/rpc\",\r\n            \"https://test.uaechain.net/rpc\",\r\n            \"https://rpc.web3russia.org/ete\",\r\n            \"https://www.etecanada.com/rpc\",\r\n            \"https://node.brazildao.biz/ete\",\r\n            \"https://ete.indiaio.net/fast\",\r\n            \"https://ete.auhacker.xyz/data\",\r\n            \"https://service.saalliance.net/ete\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.ethereumexpress.net\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/select.png\",\r\n            \"ic_chain_unselect\": \"https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/unselect.png\",\r\n            \"color_chain_bg\": \"0x013162\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Pink Chain\",\r\n        \"chainId\": 9801,\r\n        \"shortName\": \"pink\",\r\n        \"chain\": \"Pink\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 9801,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pink Coin\",\r\n            \"symbol\": \"PKB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://pinkchain.co/\",\r\n            \"https://rpc1.pinkchain.co/\",\r\n            \"https://rpc2.pinkchain.co/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://pink-chain.com/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://photos.pinksale.finance/file/pinksale-logo-upload/1702275871180-28ecbadd98de7c6db5ea578a380e4468.png\",\r\n            \"ic_chain_unselect\": \"https://photos.pinksale.finance/file/pinksale-logo-upload/1702275894734-6f8825a9413b793fe9462b093fb3c906.png\",\r\n            \"color_chain_bg\": \"0xf95192\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Worldland Mainnet\",\r\n        \"chain\": \"Worldland\",\r\n        \"icon\": \"worldland\",\r\n        \"rpc\": [\r\n            \"https://seoul.worldland.foundation\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Worldland\",\r\n            \"symbol\": \"WL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://worldland.foundation\",\r\n        \"shortName\": \"WLC\",\r\n        \"chainId\": 103,\r\n        \"networkId\": 103,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Worldland Explorer\",\r\n                \"url\": \"https://scan.worldland.foundation\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shibarium\",\r\n        \"chain\": \"Shibarium\",\r\n        \"icon\": \"shibarium\",\r\n        \"rpc\": [\r\n            \"https://www.shibrpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BONE Shibarium\",\r\n            \"symbol\": \"BONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shibariumecosystem.com\",\r\n        \"shortName\": \"shibariumecosystem\",\r\n        \"chainId\": 109,\r\n        \"networkId\": 109,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shibariumscan\",\r\n                \"url\": \"https://www.shibariumscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ShimmerEVM Mainnet\",\r\n        \"title\": \"ShimmerEVM Mainnet\",\r\n        \"chain\": \"ShimmerEVM\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.evm.shimmer.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SMR\",\r\n            \"symbol\": \"SMR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shimmer.network\",\r\n        \"shortName\": \"shimmerevm-mainnet\",\r\n        \"chainId\": 148,\r\n        \"networkId\": 148,\r\n        \"icon\": \"shimmerevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.evm.shimmer.network\",\r\n                \"icon\": \"shimmerevm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Redbelly Network Mainnet\",\r\n        \"shortName\": \"rbn\",\r\n        \"chain\": \"RBN\",\r\n        \"chainId\": 151,\r\n        \"networkId\": 151,\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://redbelly.network\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Redbelly Network Coin\",\r\n            \"symbol\": \"RBNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Redbelly Network Devnet\",\r\n        \"shortName\": \"rbn-devnet\",\r\n        \"chain\": \"RBN\",\r\n        \"chainId\": 152,\r\n        \"networkId\": 152,\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://redbelly.network\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Redbelly Network Coin\",\r\n            \"symbol\": \"RBNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Redbelly Network Testnet\",\r\n        \"shortName\": \"rbn-testnet\",\r\n        \"chain\": \"RBN\",\r\n        \"chainId\": 153,\r\n        \"networkId\": 153,\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://redbelly.network\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Redbelly Network Coin\",\r\n            \"symbol\": \"RBNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Redbelly Network TGE\",\r\n        \"shortName\": \"rbn-tge\",\r\n        \"chain\": \"RBN\",\r\n        \"chainId\": 154,\r\n        \"networkId\": 154,\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://redbelly.network\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Redbelly Network Coin\",\r\n            \"symbol\": \"RBNT\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Manta Pacific Mainnet\",\r\n        \"chain\": \"Manta Pacific\",\r\n        \"rpc\": [\r\n            \"https://pacific-rpc.manta.network/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://pacific-info.manta.network\",\r\n        \"shortName\": \"manta\",\r\n        \"chainId\": 169,\r\n        \"networkId\": 169,\r\n        \"icon\": \"manta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"manta-pacific Explorer\",\r\n                \"url\": \"https://pacific-explorer.manta.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitchain Mainnet\",\r\n        \"chain\": \"Bit\",\r\n        \"rpc\": [\r\n            \"https://rpc.bitchain.biz/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bitchain.biz/\",\r\n        \"shortName\": \"bit\",\r\n        \"chainId\": 198,\r\n        \"networkId\": 198,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitchain Scan\",\r\n                \"url\": \"https://explorer.bitchain.biz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"opBNB Mainnet\",\r\n        \"icon\": \"bnbchain\",\r\n        \"chain\": \"opBNB\",\r\n        \"rpc\": [\r\n            \"https://opbnb-mainnet-rpc.bnbchain.org\",\r\n            \"https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3\",\r\n            \"wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3\",\r\n            \"https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5\",\r\n            \"wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5\",\r\n            \"https://opbnb.publicnode.com\",\r\n            \"wss://opbnb.publicnode.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB Chain Native Token\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://opbnb.bnbchain.org/en\",\r\n        \"shortName\": \"obnb\",\r\n        \"chainId\": 204,\r\n        \"networkId\": 204,\r\n        \"slip44\": 714,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"opbnbscan\",\r\n                \"url\": \"https://mainnet.opbnbscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VinuChain Testnet\",\r\n        \"chain\": \"VinuChain Testnet\",\r\n        \"rpc\": [\r\n            \"https://vinufoundation-rpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VinuChain\",\r\n            \"symbol\": \"VС\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vitainu.org\",\r\n        \"shortName\": \"VCTEST\",\r\n        \"chainId\": 206,\r\n        \"networkId\": 206,\r\n        \"icon\": \"vitainu-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VinuScan Testnet\",\r\n                \"url\": \"https://testnet.vinuscan.com\",\r\n                \"icon\": \"vinuscan-testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VinuChain Network\",\r\n        \"chain\": \"VinuChain\",\r\n        \"rpc\": [\r\n            \"https://vinuchain-rpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VinuChain\",\r\n            \"symbol\": \"VС\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vitainu.org\",\r\n        \"shortName\": \"VC\",\r\n        \"chainId\": 207,\r\n        \"networkId\": 207,\r\n        \"icon\": \"vitainu\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VinuScan\",\r\n                \"url\": \"https://vinuscan.com\",\r\n                \"icon\": \"vinuscan\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitnet\",\r\n        \"chain\": \"BTN\",\r\n        \"icon\": \"bitnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.bitnet.money\",\r\n            \"https://rpc.btnscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitnet\",\r\n            \"symbol\": \"BTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitnet.money\",\r\n        \"shortName\": \"BTN\",\r\n        \"chainId\": 210,\r\n        \"networkId\": 210,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitnet Explorer\",\r\n                \"url\": \"https://btnscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shinarium Mainnet\",\r\n        \"chain\": \"Shinarium\",\r\n        \"icon\": \"shinarium\",\r\n        \"rpc\": [\r\n            \"https://mainnet.shinarium.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shina Inu\",\r\n            \"symbol\": \"SHI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shinarium.org\",\r\n        \"shortName\": \"shinarium\",\r\n        \"chainId\": 214,\r\n        \"networkId\": 214,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shinascan\",\r\n                \"url\": \"https://shinascan.shinarium.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kroma\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://api.kroma.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kroma.network\",\r\n        \"icon\": \"kroma\",\r\n        \"shortName\": \"kroma\",\r\n        \"chainId\": 255,\r\n        \"networkId\": 255,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.kroma.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://kroma.network/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Orderly Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.orderly.network\",\r\n            \"https://l2-orderly-mainnet-0.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"www.orderly.network\",\r\n        \"shortName\": \"orderly\",\r\n        \"chainId\": 291,\r\n        \"networkId\": 291,\r\n        \"icon\": \"orderly\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"orderlyscout\",\r\n                \"url\": \"https://explorer.orderly.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Wyzth Testnet\",\r\n        \"chain\": \"WYZ\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet3.wyzthchain.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Wyzth\",\r\n            \"symbol\": \"WYZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://wyzth.org/\",\r\n        \"shortName\": \"wyz\",\r\n        \"chainId\": 309,\r\n        \"networkId\": 309,\r\n        \"icon\": \"wyzth_icon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"wyzth\",\r\n                \"url\": \"http://24.199.108.65:4000\",\r\n                \"icon\": \"wyzth\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Yooldo Verse Mainnet\",\r\n        \"chain\": \"Yooldo Verse\",\r\n        \"icon\": \"yooldo_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.yooldo-verse.xyz/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://yooldo.gg/\",\r\n        \"shortName\": \"YVM\",\r\n        \"chainId\": 345,\r\n        \"networkId\": 345,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Yooldo Verse Explorer\",\r\n                \"url\": \"https://explorer.yooldo-verse.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Nativ3 Mainnet\",\r\n        \"chainId\": 399,\r\n        \"shortName\": \"N3\",\r\n        \"chain\": \"Nativ3\",\r\n        \"icon\": \"nativ3\",\r\n        \"networkId\": 399,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USNT\",\r\n            \"symbol\": \"USNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.nativ3.network\",\r\n            \"wss://ws.nativ3.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"N3scan\",\r\n                \"url\": \"https://scan.nativ3.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://nativ3.network\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.nativ3.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Pepe Chain Mainnet\",\r\n        \"chain\": \"PC\",\r\n        \"status\": \"active\",\r\n        \"icon\": \"pepechain\",\r\n        \"rpc\": [\r\n            \"https://rpc.pepe-chain.vip\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pepe\",\r\n            \"symbol\": \"PEPE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pepe-chain.vip\",\r\n        \"shortName\": \"pepe\",\r\n        \"chainId\": 411,\r\n        \"networkId\": 411,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"pepechain explorer\",\r\n                \"url\": \"https://explorer.pepe-chain.vip\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Geso Verse\",\r\n        \"chain\": \"Geso Verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.verse.gesoten.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gesoten.com/\",\r\n        \"shortName\": \"GSV\",\r\n        \"icon\": \"gesoten\",\r\n        \"chainId\": 428,\r\n        \"networkId\": 428,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Geso Verse Explorer\",\r\n                \"url\": \"https://explorer.verse.gesoten.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Obscuro Testnet\",\r\n        \"title\": \"Obscuro Sepolia Rollup Testnet\",\r\n        \"chainId\": 443,\r\n        \"shortName\": \"obs-testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 443,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet.obscu.ro\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://obscu.ro\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Obscuro Sepolia Rollup Explorer\",\r\n                \"url\": \"https://testnet.obscuroscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.obscu.ro\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Areon Network Testnet\",\r\n        \"chain\": \"Areon\",\r\n        \"icon\": \"areon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.areon.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Areon\",\r\n            \"symbol\": \"TAREA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://areon.network\",\r\n        \"shortName\": \"tarea\",\r\n        \"chainId\": 462,\r\n        \"networkId\": 462,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AreonScan\",\r\n                \"url\": \"https://areonscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Areon Network Mainnet\",\r\n        \"chain\": \"Areon\",\r\n        \"icon\": \"areon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.areon.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Areon\",\r\n            \"symbol\": \"AREA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://areon.network\",\r\n        \"shortName\": \"area\",\r\n        \"chainId\": 463,\r\n        \"networkId\": 463,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AreonScan\",\r\n                \"url\": \"https://areonscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PAWCHAIN Testnet\",\r\n        \"chain\": \"PAW\",\r\n        \"rpc\": [\r\n            \"https://pawchainx.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PAW\",\r\n            \"symbol\": \"PAW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pawchainx.com/\",\r\n        \"shortName\": \"PAW\",\r\n        \"chainId\": 542,\r\n        \"networkId\": 542,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PAWCHAIN Testnet\",\r\n                \"url\": \"https://pawscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PEER Testnet\",\r\n        \"chain\": \"PEER\",\r\n        \"rpc\": [\r\n            \"http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.peer.inc\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PEER Token\",\r\n            \"symbol\": \"PEER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://peer.inc\",\r\n        \"shortName\": \"PEER\",\r\n        \"chainId\": 601,\r\n        \"networkId\": 601,\r\n        \"icon\": \"peer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PEER Explorer\",\r\n                \"url\": \"https://testnet.peer.inc\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"peer\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kalichain Mainnet\",\r\n        \"chain\": \"Kalichain\",\r\n        \"rpc\": [\r\n            \"https://rpc.kalichain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"kalis\",\r\n            \"symbol\": \"KALIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kalichain.com\",\r\n        \"shortName\": \"kalichain\",\r\n        \"chainId\": 653,\r\n        \"networkId\": 653,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kalichain explorer\",\r\n                \"url\": \"https://explorer.kalichain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LAOS Arrakis\",\r\n        \"title\": \"LAOS Testnet Arrakis\",\r\n        \"chain\": \"LAOS\",\r\n        \"icon\": \"laos\",\r\n        \"rpc\": [\r\n            \"https://arrakis.gorengine.com/own\",\r\n            \"wss://arrakis.gorengine.com/own\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAOS\",\r\n            \"symbol\": \"LAOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.laosfoundation.io/\",\r\n        \"shortName\": \"laos\",\r\n        \"chainId\": 667,\r\n        \"networkId\": 667,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://arrakis.gorengine.com\",\r\n                \"icon\": \"laos\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"JuncaChain\",\r\n        \"chain\": \"JuncaChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juncachain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JuncaChain Native Token\",\r\n            \"symbol\": \"JGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://junca-cash.world\",\r\n        \"shortName\": \"junca\",\r\n        \"chainId\": 668,\r\n        \"networkId\": 668,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JuncaScan\",\r\n                \"url\": \"https://scan.juncachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"JuncaChain testnet\",\r\n        \"chain\": \"JuncaChain testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.juncachain.com\",\r\n            \"wss://ws-testnet.juncachain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.juncachain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JuncaChain Testnet Native Token\",\r\n            \"symbol\": \"JGCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://junca-cash.world\",\r\n        \"shortName\": \"juncat\",\r\n        \"chainId\": 669,\r\n        \"networkId\": 669,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JuncaScan\",\r\n                \"url\": \"https://scan-testnet.juncachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Highbury\",\r\n        \"chain\": \"HIGHBURY\",\r\n        \"rpc\": [\r\n            \"https://highbury.furya.io\",\r\n            \"https://rest.furya.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fury\",\r\n            \"symbol\": \"FURY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.fury.black\",\r\n        \"shortName\": \"fury\",\r\n        \"chainId\": 710,\r\n        \"networkId\": 710,\r\n        \"icon\": \"highbury\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Furya EVM Explorer\",\r\n                \"url\": \"https://explorer.furya.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"highbury\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blucrates\",\r\n        \"chain\": \"BLU\",\r\n        \"rpc\": [\r\n            \"https://data.bluchain.pro\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Blucrates\",\r\n            \"symbol\": \"BLU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.blucrates.com\",\r\n        \"shortName\": \"blu\",\r\n        \"chainId\": 727,\r\n        \"networkId\": 727,\r\n        \"slip44\": 727\r\n    },\r\n    {\r\n        \"name\": \"Script Testnet\",\r\n        \"chain\": \"SPAY\",\r\n        \"rpc\": [\r\n            \"https://testeth-rpc-api.script.tv/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Script\",\r\n            \"symbol\": \"SPAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://token.script.tv\",\r\n        \"shortName\": \"SPAY\",\r\n        \"chainId\": 742,\r\n        \"networkId\": 742,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Script Explorer\",\r\n                \"url\": \"https://explorer.script.tv\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mode Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.mode.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sepoliafaucet.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.mode.network/\",\r\n        \"shortName\": \"modesep\",\r\n        \"chainId\": 919,\r\n        \"networkId\": 919,\r\n        \"icon\": \"modeTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"modescout\",\r\n                \"url\": \"https://sepolia.explorer.mode.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.mode.network/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Yidark Chain Mainnet\",\r\n        \"chain\": \"Yidark\",\r\n        \"icon\": \"ydk\",\r\n        \"rpc\": [\r\n            \"https://rpc.yidark.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Yidark\",\r\n            \"symbol\": \"YDK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://yidarkscan.com\",\r\n        \"shortName\": \"ydk\",\r\n        \"chainId\": 927,\r\n        \"networkId\": 927,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Yidarkscan\",\r\n                \"url\": \"https://yidarkscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BTC20 Smart Chain\",\r\n        \"chain\": \"BTC20\",\r\n        \"rpc\": [\r\n            \"https://rpc.bitcoincode.technology/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTCC\",\r\n            \"symbol\": \"BTCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitcoincode.technology\",\r\n        \"shortName\": \"btc20\",\r\n        \"chainId\": 963,\r\n        \"networkId\": 963,\r\n        \"icon\": \"btc20\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.bitcoincode.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"eLiberty Mainnet\",\r\n        \"chain\": \"$EL\",\r\n        \"icon\": \"eLiberty\",\r\n        \"rpc\": [\r\n            \"https://rpc.eliberty.ngo\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.eliberty.ngo\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"eLiberty\",\r\n            \"symbol\": \"$EL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eliberty.ngo\",\r\n        \"shortName\": \"ELm\",\r\n        \"chainId\": 990,\r\n        \"networkId\": 990,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eLiberty Mainnet\",\r\n                \"url\": \"https://explorer.eliberty.ngo\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tectum Emission Token\",\r\n        \"chain\": \"TET\",\r\n        \"rpc\": [\r\n            \"https://rpc.softnote.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tectum\",\r\n            \"symbol\": \"TET\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://softnote.com\",\r\n        \"shortName\": \"tet\",\r\n        \"chainId\": 1003,\r\n        \"networkId\": 1003,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tectum explorer\",\r\n                \"url\": \"https://explorer.tectum.io\",\r\n                \"icon\": \"Tettoken256\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ShimmerEVM Testnet\",\r\n        \"title\": \"ShimmerEVM Testnet\",\r\n        \"chain\": \"ShimmerEVM\",\r\n        \"icon\": \"shimmerevm\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.evm.testnet.shimmer.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://evm-toolkit.evm.testnet.shimmer.network\",\r\n            \"https://evm-faucet.testnet.shimmer.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SMR\",\r\n            \"symbol\": \"SMR\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://shimmer.network\",\r\n        \"shortName\": \"shimmerevm-testnet\",\r\n        \"chainId\": 1073,\r\n        \"networkId\": 1073,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.evm.testnet.shimmer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mintara Mainnet\",\r\n        \"title\": \"Mintara Mainnet\",\r\n        \"chain\": \"Mintara\",\r\n        \"icon\": \"mintara\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/mintara/mainnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MINTARA\",\r\n            \"symbol\": \"MNTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://playthink.co.jp\",\r\n        \"shortName\": \"mintara\",\r\n        \"chainId\": 1080,\r\n        \"networkId\": 1080,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://subnets.avax.network/mintara\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Humans.ai Mainnet\",\r\n        \"chain\": \"Humans\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc.humans.nodestake.top\",\r\n            \"https://humans-mainnet-evm.itrocket.net:443\",\r\n            \"https://humans-evm-rpc.staketab.org:443\",\r\n            \"https://evm.humans.stakepool.dev.br\",\r\n            \"https://mainnet-humans-evm.konsortech.xyz\",\r\n            \"https://evm-rpc.mainnet.humans.zone\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HEART\",\r\n            \"symbol\": \"HEART\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://humans.ai\",\r\n        \"shortName\": \"humans\",\r\n        \"chainId\": 1089,\r\n        \"networkId\": 1089,\r\n        \"icon\": \"humans-dark\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer.guru\",\r\n                \"url\": \"https://humans.explorers.guru\",\r\n                \"icon\": \"humans\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BLXq Testnet\",\r\n        \"chain\": \"BLXQ\",\r\n        \"icon\": \"blxq\",\r\n        \"rpc\": [\r\n            \"https://testnetq1.blx.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BLXQ\",\r\n            \"symbol\": \"BLXQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blx.org\",\r\n        \"shortName\": \"tblxq\",\r\n        \"chainId\": 1107,\r\n        \"networkId\": 1107,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BLXq Explorer\",\r\n                \"url\": \"https://explorer.blx.org\",\r\n                \"icon\": \"blxq\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BLXq Mainnet\",\r\n        \"chain\": \"BLXQ\",\r\n        \"icon\": \"blxq\",\r\n        \"rpc\": [\r\n            \"https://mainnet.blxq.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BLXQ\",\r\n            \"symbol\": \"BLXQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blx.org\",\r\n        \"shortName\": \"blxq\",\r\n        \"chainId\": 1108,\r\n        \"networkId\": 1108,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BLXq Explorer\",\r\n                \"url\": \"https://explorer.blxq.org\",\r\n                \"icon\": \"blxq\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeFiMetaChain\",\r\n        \"icon\": \"changi\",\r\n        \"chain\": \"DFI\",\r\n        \"rpc\": [\r\n            \"https://testnet-dmc.mydefichain.com:20551\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://tc04.mydefichain.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeFiChain Token\",\r\n            \"symbol\": \"DFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defichain.com\",\r\n        \"shortName\": \"changi\",\r\n        \"chainId\": 1133,\r\n        \"networkId\": 1133,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaScan\",\r\n                \"url\": \"https://meta.defiscan.live\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Swisstronik Testnet\",\r\n        \"chain\": \"SWTR\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.testnet.swisstronik.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.swisstronik.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Swisstronik\",\r\n            \"symbol\": \"SWTR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.swisstronik.com\",\r\n        \"shortName\": \"swtr\",\r\n        \"chainId\": 1291,\r\n        \"networkId\": 1291,\r\n        \"icon\": \"swisstronik\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Swisstronik Scout\",\r\n                \"url\": \"https://explorer-evm.testnet.swisstronik.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blitz Subnet\",\r\n        \"chain\": \"BLITZ\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/blitz/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BLITZ GAS\",\r\n            \"symbol\": \"BGAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blitz.gg\",\r\n        \"shortName\": \"blitz\",\r\n        \"chainId\": 1343,\r\n        \"networkId\": 1343,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BLITZ Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/blitz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kalar Chain\",\r\n        \"chain\": \"KLC\",\r\n        \"icon\": \"kalarchain\",\r\n        \"rpc\": [\r\n            \"https://rpc-api.kalarchain.tech\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kalar\",\r\n            \"symbol\": \"KLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kalarchain.tech\",\r\n        \"shortName\": \"KLC\",\r\n        \"chainId\": 1379,\r\n        \"networkId\": 1379,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kalarscan\",\r\n                \"url\": \"https://explorer.kalarchain.tech\",\r\n                \"icon\": \"kalarscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WhiteBIT Network\",\r\n        \"chain\": \"WBT\",\r\n        \"rpc\": [\r\n            \"https://rpc.whitebit.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WhiteBIT Coin\",\r\n            \"symbol\": \"WBT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://whitebit.network\",\r\n        \"shortName\": \"wbt\",\r\n        \"chainId\": 1875,\r\n        \"networkId\": 1875,\r\n        \"icon\": \"whitebit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"wb-explorer\",\r\n                \"url\": \"https://explorer.whitebit.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sports Chain Network\",\r\n        \"chain\": \"SCN\",\r\n        \"rpc\": [\r\n            \"https://rpc.sportschainnetwork.xyz/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SCN\",\r\n            \"symbol\": \"SCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sportschainnetwork.xyz\",\r\n        \"shortName\": \"SCN\",\r\n        \"chainId\": 1904,\r\n        \"networkId\": 1904,\r\n        \"icon\": \"scn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.sportschainnetwork.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Merkle Scan\",\r\n        \"chain\": \"MRK\",\r\n        \"icon\": \"merklescan\",\r\n        \"rpc\": [\r\n            \"https://marklechain-rpc.merklescan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Merkle\",\r\n            \"symbol\": \"MRK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://merklescan.com\",\r\n        \"shortName\": \"MRK\",\r\n        \"chainId\": 1909,\r\n        \"networkId\": 1909,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://merklescan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SatoshIE\",\r\n        \"chain\": \"TUSHY\",\r\n        \"rpc\": [\r\n            \"http://rpc.satosh.ie\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tushy Token\",\r\n            \"symbol\": \"TUSHY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://satosh.ie\",\r\n        \"shortName\": \"satoshie\",\r\n        \"chainId\": 1985,\r\n        \"networkId\": 1985,\r\n        \"icon\": \"satoshie\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mainnetexplorer\",\r\n                \"url\": \"http://explore.satosh.ie\",\r\n                \"icon\": \"satoshie\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SatoshIE Testnet\",\r\n        \"chain\": \"TUSHY\",\r\n        \"rpc\": [\r\n            \"http://testnet.satosh.ie\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tushy Token\",\r\n            \"symbol\": \"TUSHY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://satosh.ie\",\r\n        \"shortName\": \"satoshie_testnet\",\r\n        \"chainId\": 1986,\r\n        \"networkId\": 1986,\r\n        \"icon\": \"satoshie\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"testnetexplorer\",\r\n                \"url\": \"http://explore-testnet.satosh.ie\",\r\n                \"icon\": \"satoshie\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Centrifuge\",\r\n        \"chain\": \"CFG\",\r\n        \"rpc\": [\r\n            \"wss://fullnode.parachain.centrifuge.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Centrifuge\",\r\n            \"symbol\": \"CFG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://centrifuge.io\",\r\n        \"shortName\": \"cfg\",\r\n        \"chainId\": 2031,\r\n        \"networkId\": 2031,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"url\": \"https://centrifuge.subscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Catalyst\",\r\n        \"chain\": \"CFG\",\r\n        \"rpc\": [\r\n            \"wss://fullnode.catalyst.cntrfg.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Catalyst CFG\",\r\n            \"symbol\": \"NCFG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://centrifuge.io\",\r\n        \"shortName\": \"ncfg\",\r\n        \"chainId\": 2032,\r\n        \"networkId\": 2032\r\n    },\r\n    {\r\n        \"name\": \"Kiwi Subnet\",\r\n        \"chain\": \"KIWI\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/kiwi/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shrapgas\",\r\n            \"symbol\": \"SHRAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"kiwi\",\r\n        \"chainId\": 2037,\r\n        \"networkId\": 2037,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KIWI Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/kiwi\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shrapnel Testnet\",\r\n        \"chain\": \"SHRAPNEL\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/shrapnel/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SHRAPG\",\r\n            \"symbol\": \"SHRAPG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.shrapnel.com/\",\r\n        \"shortName\": \"shraptest\",\r\n        \"chainId\": 2038,\r\n        \"networkId\": 2038,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SHRAPNEL Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/shrapnel\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Movo Smart Chain Mainnet\",\r\n        \"chain\": \"MOVO\",\r\n        \"icon\": \"movo\",\r\n        \"rpc\": [\r\n            \"https://msc-rpc.movoscan.com\",\r\n            \"https://msc-rpc.movochain.org\",\r\n            \"https://msc-rpc.movoswap.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Movo Smart Chain\",\r\n            \"symbol\": \"MOVO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://movo.uk\",\r\n        \"shortName\": \"movo\",\r\n        \"chainId\": 2049,\r\n        \"networkId\": 2049,\r\n        \"slip44\": 2050,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"movoscan\",\r\n                \"url\": \"https://movoscan.com\",\r\n                \"icon\": \"movoscan\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Altair\",\r\n        \"chain\": \"AIR\",\r\n        \"rpc\": [\r\n            \"wss://fullnode.altair.centrifuge.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Altair\",\r\n            \"symbol\": \"AIR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://centrifuge.io\",\r\n        \"shortName\": \"air\",\r\n        \"chainId\": 2088,\r\n        \"networkId\": 2088\r\n    },\r\n    {\r\n        \"name\": \"Algol\",\r\n        \"chain\": \"algol\",\r\n        \"rpc\": [\r\n            \"wss://fullnode.algol.cntrfg.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Algol\",\r\n            \"symbol\": \"ALGL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://centrifuge.io\",\r\n        \"shortName\": \"algl\",\r\n        \"chainId\": 2089,\r\n        \"networkId\": 2089\r\n    },\r\n    {\r\n        \"name\": \"BigShortBets\",\r\n        \"chain\": \"BIGSB\",\r\n        \"rpc\": [\r\n            \"https://market.bigsb.io\",\r\n            \"wss://market.bigsb.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD Coin\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bigshortbets.com/\",\r\n        \"shortName\": \"bigsb\",\r\n        \"chainId\": 2137,\r\n        \"networkId\": 2137,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Krest Network\",\r\n        \"chain\": \"Krest\",\r\n        \"icon\": \"krest\",\r\n        \"rpc\": [\r\n            \"https://erpc-krest.peaq.network\",\r\n            \"https://krest.unitedbloc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Krest\",\r\n            \"symbol\": \"KRST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.peaq.network\",\r\n        \"shortName\": \"KRST\",\r\n        \"chainId\": 2241,\r\n        \"networkId\": 2241,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polkadot.js\",\r\n                \"url\": \"https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Subscan\",\r\n                \"url\": \"https://krest.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ebro Network\",\r\n        \"chain\": \"ebro\",\r\n        \"rpc\": [\r\n            \"https://greendinoswap.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ebro\",\r\n            \"symbol\": \"ebro\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ebrochain.com\",\r\n        \"shortName\": \"ebro\",\r\n        \"chainId\": 2306,\r\n        \"networkId\": 2306\r\n    },\r\n    {\r\n        \"name\": \"Unicorn Ultra Nebulas Testnet\",\r\n        \"chain\": \"u2u\",\r\n        \"rpc\": [\r\n            \"https://rpc-nebulas-testnet.uniultra.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.uniultra.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Unicorn Ultra Nebulas Testnet\",\r\n            \"symbol\": \"U2U\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://uniultra.xyz\",\r\n        \"shortName\": \"u2u_nebulas\",\r\n        \"chainId\": 2484,\r\n        \"networkId\": 2484,\r\n        \"icon\": \"u2u_nebulas\",\r\n        \"explorers\": [\r\n            {\r\n                \"icon\": \"u2u_nebulas\",\r\n                \"name\": \"U2U Explorer\",\r\n                \"url\": \"https://testnet.u2uscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fraxchain Testnet\",\r\n        \"chain\": \"FRAX\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.frax.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Frax Ether\",\r\n            \"symbol\": \"frxETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.frax.com\",\r\n        \"shortName\": \"fraxchain-testnet\",\r\n        \"chainId\": 2522,\r\n        \"networkId\": 2522,\r\n        \"explorers\": [],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"K-LAOS\",\r\n        \"title\": \"K-LAOS: LAOS on Kusama\",\r\n        \"chain\": \"K-LAOS\",\r\n        \"icon\": \"k-laos\",\r\n        \"rpc\": [\r\n            \"https://rpc.klaos.laosfoundation.io\",\r\n            \"wss://rpc.klaos.laosfoundation.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KLAOS\",\r\n            \"symbol\": \"KLAOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.laosfoundation.io/\",\r\n        \"shortName\": \"k-laos\",\r\n        \"chainId\": 2718,\r\n        \"networkId\": 2718,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.klaos.laosfoundation.io\",\r\n                \"icon\": \"k-laos\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Immu3 EVM\",\r\n        \"chain\": \"EVMCC\",\r\n        \"rpc\": [\r\n            \"https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network\",\r\n            \"wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IMMU\",\r\n            \"symbol\": \"IMMU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://immu3.io\",\r\n        \"shortName\": \"Immu3\",\r\n        \"chainId\": 3100,\r\n        \"networkId\": 3100,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Vulture EVM Beta\",\r\n        \"chain\": \"VFIEVMCC\",\r\n        \"rpc\": [\r\n            \"https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network\",\r\n            \"wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VFI\",\r\n            \"symbol\": \"VFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vulture.finance\",\r\n        \"shortName\": \"VFI\",\r\n        \"chainId\": 3102,\r\n        \"networkId\": 3102,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Dubxcoin network\",\r\n        \"chain\": \"DUBX\",\r\n        \"rpc\": [\r\n            \"https://rpcmain.arabianchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dubxcoin mainnet\",\r\n            \"symbol\": \"DUBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arabianchain.org\",\r\n        \"shortName\": \"dubx\",\r\n        \"chainId\": 3269,\r\n        \"networkId\": 3269\r\n    },\r\n    {\r\n        \"name\": \"Dubxcoin testnet\",\r\n        \"chain\": \"TESTDUBX\",\r\n        \"rpc\": [\r\n            \"https://rpctestnet.arabianchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.arabianchain.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dubxcoin testnet\",\r\n            \"symbol\": \"TDUBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arabianchain.org\",\r\n        \"shortName\": \"testdubx\",\r\n        \"chainId\": 3270,\r\n        \"networkId\": 3270\r\n    },\r\n    {\r\n        \"name\": \"iChain Network\",\r\n        \"chain\": \"iChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.ichainscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ISLAMICOIN\",\r\n            \"symbol\": \"ISLAMI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://islamicoin.finance\",\r\n        \"shortName\": \"ISLAMI\",\r\n        \"chainId\": 3639,\r\n        \"networkId\": 3639,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"iChainscan\",\r\n                \"url\": \"https://ichainscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xpla Testnet\",\r\n        \"chain\": \"XPLATest\",\r\n        \"rpc\": [\r\n            \"https://dimension-rpc.xpla.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.xpla.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XPLA\",\r\n            \"symbol\": \"XPLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xpla.io\",\r\n        \"shortName\": \"xplatest\",\r\n        \"chainId\": 3701,\r\n        \"networkId\": 3701,\r\n        \"icon\": \"xpla\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XPLA Explorer\",\r\n                \"url\": \"https://explorer.xpla.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"KalyChain Mainnet\",\r\n        \"chain\": \"KLC\",\r\n        \"icon\": \"kalychain\",\r\n        \"rpc\": [\r\n            \"https://rpc.kalychain.io/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KalyCoin\",\r\n            \"symbol\": \"KLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kalychain.io\",\r\n        \"shortName\": \"kalymainnet\",\r\n        \"chainId\": 3888,\r\n        \"networkId\": 3888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KalyScan\",\r\n                \"url\": \"https://kalyscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KalyChain Testnet\",\r\n        \"chain\": \"KLC\",\r\n        \"icon\": \"kalychain\",\r\n        \"rpc\": [\r\n            \"https://testnetrpc.kalychain.io/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KalyCoin\",\r\n            \"symbol\": \"KLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kalychain.io\",\r\n        \"shortName\": \"kalytestnet\",\r\n        \"chainId\": 3889,\r\n        \"networkId\": 3889,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KalyScan\",\r\n                \"url\": \"https://testnet.kalyscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"X1 Fastnet\",\r\n        \"chain\": \"X1\",\r\n        \"rpc\": [\r\n            \"https://x1-fastnet.xen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XN\",\r\n            \"symbol\": \"XN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.xen.network/go-x1/\",\r\n        \"shortName\": \"x1-fastnet\",\r\n        \"chainId\": 4003,\r\n        \"networkId\": 4003,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.x1-fastnet.xen.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Humans.ai Testnet\",\r\n        \"chain\": \"Humans Testnet\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.testnet.humans.zone\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HEART\",\r\n            \"symbol\": \"HEART\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://humans.ai\",\r\n        \"shortName\": \"humans_testnet\",\r\n        \"chainId\": 4139,\r\n        \"networkId\": 4139,\r\n        \"icon\": \"humans-dark\"\r\n    },\r\n    {\r\n        \"name\": \"Beam\",\r\n        \"chain\": \"BEAM\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/beam/mainnet/rpc\",\r\n            \"wss://subnets.avax.network/beam/mainnet/ws\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.onbeam.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Beam\",\r\n            \"symbol\": \"BEAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.onbeam.com\",\r\n        \"shortName\": \"beam\",\r\n        \"icon\": \"beam\",\r\n        \"chainId\": 4337,\r\n        \"networkId\": 4337,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beam Explorer\",\r\n                \"url\": \"https://subnets.avax.network/beam\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Credit Smart Chain Mainnet\",\r\n        \"chain\": \"CREDIT\",\r\n        \"rpc\": [\r\n            \"https://rpc.creditsmartchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Credit\",\r\n            \"symbol\": \"CREDIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://creditsmartchain.com\",\r\n        \"shortName\": \"CreditEdge\",\r\n        \"chainId\": 4400,\r\n        \"networkId\": 4400,\r\n        \"icon\": \"credit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Creditscan\",\r\n                \"url\": \"https://scan.creditsmartchain.com\",\r\n                \"icon\": \"credit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Orderly Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"www.orderly.network\",\r\n        \"shortName\": \"orderlyl2\",\r\n        \"chainId\": 4460,\r\n        \"networkId\": 4460,\r\n        \"icon\": \"orderlyTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"basescout\",\r\n                \"url\": \"https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Globel Chain\",\r\n        \"chain\": \"GC\",\r\n        \"icon\": \"globelchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.gcscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Globel Chain\",\r\n            \"symbol\": \"GC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gcscan.io\",\r\n        \"shortName\": \"GC\",\r\n        \"chainId\": 4893,\r\n        \"networkId\": 4893,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://gcscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Treasurenet Mainnet Alpha\",\r\n        \"chain\": \"Treasurenet Mainnet Alpha\",\r\n        \"icon\": \"treasurenet\",\r\n        \"rpc\": [\r\n            \"https://node0.treasurenet.io\",\r\n            \"https://node1.treasurenet.io\",\r\n            \"https://node2.treasurenet.io\",\r\n            \"https://node3.treasurenet.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UNIT\",\r\n            \"symbol\": \"UNIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.treasurenet.io\",\r\n        \"shortName\": \"treasurenet\",\r\n        \"chainId\": 5002,\r\n        \"networkId\": 5002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Treasurenet EVM BlockExplorer\",\r\n                \"url\": \"https://evmexplorer.treasurenet.io\",\r\n                \"icon\": \"treasurenet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mantle Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.sepolia.mantle.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.sepolia.mantle.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Mantle\",\r\n            \"symbol\": \"MNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mantle.xyz\",\r\n        \"shortName\": \"mnt-sep\",\r\n        \"chainId\": 5003,\r\n        \"networkId\": 5003,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.sepolia.mantle.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Treasurenet Testnet\",\r\n        \"chain\": \"Treasurenet Testnet\",\r\n        \"icon\": \"treasurenet\",\r\n        \"rpc\": [\r\n            \"https://node0.testnet.treasurenet.io\",\r\n            \"https://node1.testnet.treasurenet.io\",\r\n            \"https://node2.testnet.treasurenet.io\",\r\n            \"https://node3.testnet.treasurenet.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UNIT\",\r\n            \"symbol\": \"UNIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.testnet.treasurenet.io\",\r\n        \"shortName\": \"tntest\",\r\n        \"chainId\": 5005,\r\n        \"networkId\": 5005,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Treasurenet EVM BlockExplorer\",\r\n                \"url\": \"https://evmexplorer.testnet.treasurenet.io\",\r\n                \"icon\": \"treasurenet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tritanium Testnet\",\r\n        \"chain\": \"TRITANIUM\",\r\n        \"rpc\": [\r\n            \"https://nodetestnet-station-one.tritanium.network/\",\r\n            \"https://nodetestnet-station-two.tritanium.network/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tritanium.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tritanium Native Token\",\r\n            \"symbol\": \"tTRN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tritanium.network\",\r\n        \"shortName\": \"ttrn\",\r\n        \"chainId\": 5353,\r\n        \"networkId\": 5353,\r\n        \"icon\": \"tritanium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TRITANIUM Testnet Explorer\",\r\n                \"icon\": \"tritanium\",\r\n                \"url\": \"https://testnet.tritanium.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VEX EVM TESTNET\",\r\n        \"chain\": \"vex\",\r\n        \"icon\": \"vex\",\r\n        \"rpc\": [\r\n            \"https://testnet.vexascan.com/evmapi\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://t.me/vexfaucetbot\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VEX EVM TESTNET\",\r\n            \"symbol\": \"VEX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vexanium.com\",\r\n        \"shortName\": \"VEX\",\r\n        \"chainId\": 5522,\r\n        \"networkId\": 5522,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vexascan-EVM-TestNet\",\r\n                \"url\": \"https://testnet.vexascan.com/evmexplorer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"opBNB Testnet\",\r\n        \"chain\": \"opBNB\",\r\n        \"icon\": \"bnbchain\",\r\n        \"rpc\": [\r\n            \"https://opbnb-testnet-rpc.bnbchain.org\",\r\n            \"https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3\",\r\n            \"wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3\",\r\n            \"https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5\",\r\n            \"wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.bnbchain.org/faucet-smart\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB Chain Native Token\",\r\n            \"symbol\": \"tBNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://opbnb.bnbchain.org/en\",\r\n        \"shortName\": \"obnbt\",\r\n        \"chainId\": 5611,\r\n        \"networkId\": 5611,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bscscan-opbnb-testnet\",\r\n                \"url\": \"https://opbnb-testnet.bscscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"opbnbscan\",\r\n                \"url\": \"https://opbnbscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arcturus Chain Testnet\",\r\n        \"chain\": \"ARCTURUS\",\r\n        \"rpc\": [\r\n            \"http://185.99.196.3:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Arct\",\r\n            \"symbol\": \"tARCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arcturuschain.io\",\r\n        \"shortName\": \"ARCT\",\r\n        \"chainId\": 5616,\r\n        \"networkId\": 5616\r\n    },\r\n    {\r\n        \"name\": \"Tanssi EVM ContainerChain\",\r\n        \"chain\": \"EVMCC\",\r\n        \"rpc\": [\r\n            \"https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network\",\r\n            \"wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Unit\",\r\n            \"symbol\": \"Unit\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tanssi.network\",\r\n        \"shortName\": \"TanssiCC\",\r\n        \"chainId\": 5678,\r\n        \"networkId\": 5678,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Digit Soul Smart Chain\",\r\n        \"chain\": \"DGS\",\r\n        \"rpc\": [\r\n            \"https://dsc-rpc.digitsoul.co.th\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"pnet\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Digit Coin\",\r\n            \"symbol\": \"DGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"DGS\",\r\n        \"chainId\": 6363,\r\n        \"networkId\": 6363\r\n    },\r\n    {\r\n        \"name\": \"Horizen EON Mainnet\",\r\n        \"shortName\": \"EON\",\r\n        \"chain\": \"EON\",\r\n        \"icon\": \"eon\",\r\n        \"rpc\": [\r\n            \"https://eon-rpc.horizenlabs.io/ethv1\",\r\n            \"https://rpc.ankr.com/horizen_eon\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zencash\",\r\n            \"symbol\": \"ZEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://horizen.io/\",\r\n        \"chainId\": 7332,\r\n        \"networkId\": 7332,\r\n        \"slip44\": 121,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Horizen EON Block Explorer\",\r\n                \"url\": \"https://eon-explorer.horizenlabs.io\",\r\n                \"icon\": \"eon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MaalChain Testnet\",\r\n        \"chain\": \"MaalChain Testnet\",\r\n        \"icon\": \"maal-test\",\r\n        \"rpc\": [\r\n            \"https://node1.maalscan.io/\",\r\n            \"https://rpc-bntest.maalscan.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.maalscan.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAAL\",\r\n            \"symbol\": \"MAAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.maalchain.com/\",\r\n        \"shortName\": \"maal-test\",\r\n        \"chainId\": 7860,\r\n        \"networkId\": 7860,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maalscan testnet\",\r\n                \"url\": \"https://testnet.maalscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Torus Mainnet\",\r\n        \"chain\": \"TQF\",\r\n        \"icon\": \"torus\",\r\n        \"rpc\": [\r\n            \"https://rpc.toruschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TQF\",\r\n            \"symbol\": \"TQF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.toruschain.com\",\r\n        \"shortName\": \"tqf\",\r\n        \"chainId\": 8192,\r\n        \"networkId\": 8192,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://toruscan.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Torus Testnet\",\r\n        \"chain\": \"TQF\",\r\n        \"icon\": \"torus\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.toruschain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tTQF\",\r\n            \"symbol\": \"TTQF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.toruschain.com\",\r\n        \"shortName\": \"ttqf\",\r\n        \"chainId\": 8194,\r\n        \"networkId\": 8194,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.toruscan.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hela Official Runtime Mainnet\",\r\n        \"chain\": \"Hela\",\r\n        \"icon\": \"hela\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.helachain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hela HLUSD\",\r\n            \"symbol\": \"HLUSD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://helalabs.com\",\r\n        \"shortName\": \"hela\",\r\n        \"chainId\": 8668,\r\n        \"networkId\": 8668,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hela Official Runtime Mainnet Explorer\",\r\n                \"url\": \"https://mainnet-blockexplorer.helachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Codefin Mainnet\",\r\n        \"chain\": \"COF\",\r\n        \"icon\": \"codefin\",\r\n        \"rpc\": [\r\n            \"https://chain-rpc.codefin.pro\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Codefin\",\r\n            \"symbol\": \"COF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://network.codefin.pro\",\r\n        \"shortName\": \"COF\",\r\n        \"chainId\": 9223,\r\n        \"networkId\": 9223,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Codefin Net Explorer\",\r\n                \"url\": \"https://explorer.codefin.pro\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IMPERIUM TESTNET\",\r\n        \"chain\": \"tIMP\",\r\n        \"rpc\": [\r\n            \"https://data-aws-testnet.imperiumchain.com\",\r\n            \"https://data-aws2-testnet.imperiumchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.imperiumchain.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tIMP\",\r\n            \"symbol\": \"tIMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://imperiumchain.com\",\r\n        \"shortName\": \"tIMP\",\r\n        \"chainId\": 9818,\r\n        \"networkId\": 9818,\r\n        \"icon\": \"timp\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"IMPERIUM TESTNET Explorer\",\r\n                \"icon\": \"timp\",\r\n                \"url\": \"https://network.impscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IMPERIUM MAINNET\",\r\n        \"chain\": \"IMP\",\r\n        \"rpc\": [\r\n            \"https://data-aws-mainnet.imperiumchain.com\",\r\n            \"https://data-aws2-mainnet.imperiumchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.imperiumchain.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IMP\",\r\n            \"symbol\": \"IMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://imperiumchain.com\",\r\n        \"shortName\": \"IMP\",\r\n        \"chainId\": 9819,\r\n        \"networkId\": 9819,\r\n        \"icon\": \"imp\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"IMPERIUM Explorer\",\r\n                \"icon\": \"imp\",\r\n                \"url\": \"https://impscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mind Smart Chain Testnet\",\r\n        \"chain\": \"tMIND\",\r\n        \"icon\": \"mindchain\",\r\n        \"rpc\": [\r\n            \"https://testnet-msc.mindchain.info/\",\r\n            \"wss://testnet-msc.mindchain.info/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mindchain.info/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MIND Coin\",\r\n            \"symbol\": \"tMIND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mindchain.info\",\r\n        \"shortName\": \"tMIND\",\r\n        \"chainId\": 9977,\r\n        \"networkId\": 9977,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mind Chain explorer\",\r\n                \"url\": \"https://testnet.mindscan.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Agung Network\",\r\n        \"chain\": \"Agung\",\r\n        \"icon\": \"agung\",\r\n        \"rpc\": [\r\n            \"https://rpcpc1-qa.agung.peaq.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Agung\",\r\n            \"symbol\": \"AGNG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.peaq.network\",\r\n        \"shortName\": \"AGNG\",\r\n        \"chainId\": 9990,\r\n        \"networkId\": 9990,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polkadot.js\",\r\n                \"url\": \"https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Subscan\",\r\n                \"url\": \"https://agung.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mind Smart Chain Mainnet\",\r\n        \"chain\": \"MIND\",\r\n        \"icon\": \"mindchain\",\r\n        \"rpc\": [\r\n            \"https://rpc-msc.mindchain.info/\",\r\n            \"https://seednode.mindchain.info\",\r\n            \"https://archive.mindchain.info/\",\r\n            \"wss://archive.mindchain.info/ws\",\r\n            \"wss://seednode.mindchain.info/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MIND Coin\",\r\n            \"symbol\": \"MIND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mindchain.info\",\r\n        \"shortName\": \"MIND\",\r\n        \"chainId\": 9996,\r\n        \"networkId\": 9996,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mind Chain explorer\",\r\n                \"url\": \"https://mainnet.mindscan.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Japan Open Chain Testnet\",\r\n        \"chain\": \"JOCT\",\r\n        \"rpc\": [\r\n            \"https://rpc-1.testnet.japanopenchain.org:8545\",\r\n            \"https://rpc-2.testnet.japanopenchain.org:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Japan Open Chain Testnet Token\",\r\n            \"symbol\": \"JOCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.japanopenchain.org/\",\r\n        \"shortName\": \"joct\",\r\n        \"chainId\": 10081,\r\n        \"networkId\": 10081,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Testnet Block Explorer\",\r\n                \"url\": \"https://explorer.testnet.japanopenchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MaxxChain Mainnet\",\r\n        \"chain\": \"MaxxChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.maxxchain.org\",\r\n            \"https://rpc1.maxxchain.org\",\r\n            \"https://rpc2.maxxchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.maxxchain.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Power\",\r\n            \"symbol\": \"PWR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"pwr\",\r\n        \"infoURL\": \"https://www.maxxchain.org/\",\r\n        \"shortName\": \"PWR\",\r\n        \"chainId\": 10201,\r\n        \"networkId\": 10201,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MaxxChain Block Explorer\",\r\n                \"url\": \"https://explorer.maxxchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arthera Testnet\",\r\n        \"chain\": \"AA\",\r\n        \"icon\": \"arthera\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.arthera.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.arthera.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arthera\",\r\n            \"symbol\": \"AA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.arthera.net\",\r\n        \"shortName\": \"aa\",\r\n        \"chainId\": 10243,\r\n        \"networkId\": 10243,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer-test.arthera.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Worldland Testnet\",\r\n        \"chain\": \"Worldland\",\r\n        \"icon\": \"worldland\",\r\n        \"rpc\": [\r\n            \"https://gwangju.worldland.foundation\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Worldland\",\r\n            \"symbol\": \"WL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://worldland.foundation\",\r\n        \"shortName\": \"TWLC\",\r\n        \"chainId\": 10395,\r\n        \"networkId\": 10395,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Worldland Explorer\",\r\n                \"url\": \"https://testscan.worldland.foundation\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Polygon Supernet Arianee\",\r\n        \"chain\": \"Arianee\",\r\n        \"rpc\": [\r\n            \"https://rpc.polygonsupernet.public.arianee.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arianee\",\r\n            \"symbol\": \"ARIA20\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arianee.org\",\r\n        \"shortName\": \"Arianee\",\r\n        \"chainId\": 11891,\r\n        \"networkId\": 11891,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polygon Supernet Arianee Explorer\",\r\n                \"url\": \"https://polygonsupernet.explorer.arianee.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-1\",\r\n            \"type\": \"L2\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Astar zkEVM\",\r\n        \"shortName\": \"astrzk\",\r\n        \"title\": \"Astar zkEVM Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"astarzk\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astar.network\",\r\n        \"chainId\": 12611,\r\n        \"networkId\": 12611,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Quantum Chain Testnet\",\r\n        \"chain\": \"tQNET\",\r\n        \"icon\": \"qnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.quantumscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quantum Chain\",\r\n            \"symbol\": \"tQNET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://quantumnetwork.gg\",\r\n        \"shortName\": \"tqnet\",\r\n        \"chainId\": 12890,\r\n        \"networkId\": 12890,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Quantum Scan Testnet\",\r\n                \"url\": \"https://testnet.quantumscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Beam Testnet\",\r\n        \"chain\": \"BEAM\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/beam/testnet/rpc\",\r\n            \"wss://subnets.avax.network/beam/testnet/ws\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.avax.network/?subnet=beam\",\r\n            \"https://faucet.onbeam.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Beam\",\r\n            \"symbol\": \"BEAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.onbeam.com\",\r\n        \"shortName\": \"beam-testnet\",\r\n        \"icon\": \"beam\",\r\n        \"chainId\": 13337,\r\n        \"networkId\": 13337,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beam Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/beam\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Immutable zkEVM Testnet\",\r\n        \"chain\": \"Immutable zkEVM\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.immutable.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://docs.immutable.com/docs/zkEVM/guides/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test IMX\",\r\n            \"symbol\": \"tIMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.immutable.com\",\r\n        \"shortName\": \"imx-testnet\",\r\n        \"chainId\": 13473,\r\n        \"networkId\": 13473,\r\n        \"icon\": \"immutable\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Immutable Testnet explorer\",\r\n                \"url\": \"https://explorer.testnet.immutable.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"immutable\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Humanode Testnet 5 Israfel\",\r\n        \"chain\": \"Humanode Testnet 5\",\r\n        \"rpc\": [\r\n            \"https://explorer-rpc-http.testnet5.stages.humanode.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://t.me/HumanodeTestnet5FaucetBot\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"eHMND\",\r\n            \"symbol\": \"eHMND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://humanode.io\",\r\n        \"shortName\": \"hmnd-t5\",\r\n        \"chainId\": 14853,\r\n        \"networkId\": 14853,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Immutable zkEVM Devnet\",\r\n        \"chain\": \"Immutable zkEVM\",\r\n        \"rpc\": [\r\n            \"https://rpc.dev.immutable.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://docs.immutable.com/docs/zkEVM/guides/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dev IMX\",\r\n            \"symbol\": \"dIMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.immutable.com\",\r\n        \"shortName\": \"imx-devnet\",\r\n        \"chainId\": 15003,\r\n        \"networkId\": 15003,\r\n        \"icon\": \"immutable\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Immutable Devnet explorer\",\r\n                \"url\": \"https://explorer.dev.immutable.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"immutable\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Holesky\",\r\n        \"title\": \"Ethereum Testnet Holesky\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.holesky.ethpandaops.io\",\r\n            \"https://ethereum-holesky.publicnode.com\",\r\n            \"wss://ethereum-holesky.publicnode.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.holesky.ethpandaops.io\",\r\n            \"https://holesky-faucet.pk910.de\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://holesky.ethpandaops.io\",\r\n        \"shortName\": \"holesky\",\r\n        \"chainId\": 17000,\r\n        \"networkId\": 17000,\r\n        \"icon\": \"ethereum\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Holesky Explorer\",\r\n                \"url\": \"https://holesky.beaconcha.in\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"otterscan-holesky\",\r\n                \"url\": \"https://holesky.otterscan.io\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Holesky Etherscan\",\r\n                \"url\": \"https://holesky.etherscan.io\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Redstone Holesky Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.holesky.redstone.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Redstone Testnet Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://redstone.xyz/docs/network-info\",\r\n        \"shortName\": \"redstone\",\r\n        \"chainId\": 17001,\r\n        \"networkId\": 17001,\r\n        \"icon\": \"redstone\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Redstone Holesky Explorer\",\r\n                \"url\": \"https://explorer.holesky.redstone.xyz\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"G8Chain Mainnet\",\r\n        \"chain\": \"G8C\",\r\n        \"icon\": \"G8Chain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.oneg8.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.oneg8.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"G8Chain\",\r\n            \"symbol\": \"G8C\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oneg8.one\",\r\n        \"shortName\": \"G8Cm\",\r\n        \"chainId\": 17171,\r\n        \"networkId\": 17171,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"G8Chain\",\r\n                \"url\": \"https://mainnet.oneg8.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Smart Trade Networks\",\r\n        \"chain\": \"Smart Trade Networks\",\r\n        \"rpc\": [\r\n            \"https://beefledgerwallet.com:8544\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"STN\",\r\n            \"symbol\": \"STN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.smarttradenetworks.com\",\r\n        \"shortName\": \"STN\",\r\n        \"chainId\": 18122,\r\n        \"networkId\": 18122,\r\n        \"icon\": \"stn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"stnscan\",\r\n                \"url\": \"https://stnscan.com\",\r\n                \"icon\": \"stn\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"G8Chain Testnet\",\r\n        \"chain\": \"G8C\",\r\n        \"icon\": \"G8Chain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.oneg8.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.oneg8.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"G8Coin\",\r\n            \"symbol\": \"G8C\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oneg8.one\",\r\n        \"shortName\": \"G8Ct\",\r\n        \"chainId\": 18181,\r\n        \"networkId\": 18181,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"G8Chain\",\r\n                \"url\": \"https://testnet.oneg8.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nautilus Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"nautilus\",\r\n        \"rpc\": [\r\n            \"https://api.nautilus.nautchain.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zebec\",\r\n            \"symbol\": \"ZBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.nautchain.xyz\",\r\n        \"shortName\": \"NAUTCHAIN\",\r\n        \"chainId\": 22222,\r\n        \"networkId\": 22222,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nautscan\",\r\n                \"url\": \"https://nautscan.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"nautilus\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MCH Verse Mainnet\",\r\n        \"chain\": \"MCH Verse\",\r\n        \"icon\": \"mch_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.oasys.mycryptoheroes.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.mycryptoheroes.net/verse\",\r\n        \"shortName\": \"MCHV\",\r\n        \"chainId\": 29548,\r\n        \"networkId\": 29548,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MCH Verse Explorer\",\r\n                \"url\": \"https://explorer.oasys.mycryptoheroes.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Cerium Testnet\",\r\n        \"chain\": \"CAU\",\r\n        \"icon\": \"canxium\",\r\n        \"rpc\": [\r\n            \"https://cerium-rpc.canxium.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Canxium\",\r\n            \"symbol\": \"CAU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://canxium.org\",\r\n        \"shortName\": \"ceri\",\r\n        \"chainId\": 30103,\r\n        \"networkId\": 30103,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"canxium explorer\",\r\n                \"url\": \"https://cerium-explorer.canxium.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa EVM Isolated Server\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://zilliqa-isolated-server.zilliqa.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://dev-wallet.zilliqa.com/faucet?network=isolated_server\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zil-isolated-server\",\r\n        \"chainId\": 32990,\r\n        \"networkId\": 32990,\r\n        \"icon\": \"zilliqa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa EVM Isolated Server Explorer\",\r\n                \"url\": \"https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cloudverse Subnet\",\r\n        \"chain\": \"CLOUDVERSE\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/cloudverse/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XCLOUD\",\r\n            \"symbol\": \"XCLOUD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://muadao.build/\",\r\n        \"shortName\": \"cloudverse\",\r\n        \"chainId\": 33210,\r\n        \"networkId\": 33210,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CLOUDVERSE Explorer\",\r\n                \"url\": \"https://subnets.avax.network/cloudverse\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa EVM Devnet\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://api.devnet.zilliqa.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.devnet.zilliqa.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zil-devnet\",\r\n        \"chainId\": 33385,\r\n        \"networkId\": 33385,\r\n        \"icon\": \"zilliqa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa EVM Devnet Explorer\",\r\n                \"url\": \"https://otterscan.devnet.zilliqa.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa 2 EVM Devnet\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://api.zq2-devnet.zilstg.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zq2-devnet.zilstg.dev\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zq2-devnet\",\r\n        \"chainId\": 33469,\r\n        \"networkId\": 33469,\r\n        \"icon\": \"zilliqa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa 2 EVM Devnet Explorer\",\r\n                \"url\": \"https://explorer.zq2-devnet.zilstg.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ConnectorManager\",\r\n        \"chain\": \"Rangers\",\r\n        \"icon\": \"rangers\",\r\n        \"rpc\": [\r\n            \"https://cm.rangersprotocol.com/api/jsonrpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rangers Protocol Gas\",\r\n            \"symbol\": \"cmRPG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rangersprotocol.com\",\r\n        \"shortName\": \"cmrpg\",\r\n        \"chainId\": 38400,\r\n        \"networkId\": 38400,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rangersscan\",\r\n                \"url\": \"https://scan.rangersprotocol.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ConnectorManager Robin\",\r\n        \"chain\": \"Rangers\",\r\n        \"icon\": \"rangers\",\r\n        \"rpc\": [\r\n            \"https://robin-cm.rangersprotocol.com/api/jsonrpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://robin-faucet.rangersprotocol.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rangers Protocol Gas\",\r\n            \"symbol\": \"ttRPG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rangersprotocol.com\",\r\n        \"shortName\": \"ttrpg\",\r\n        \"chainId\": 38401,\r\n        \"networkId\": 38401,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rangersscan-robin\",\r\n                \"url\": \"https://robin-rangersscan.rangersprotocol.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gesoten Verse Testnet\",\r\n        \"chain\": \"Gesoten Verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.verse.gesoten.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gesoten.com/\",\r\n        \"shortName\": \"GST\",\r\n        \"icon\": \"gesoten\",\r\n        \"chainId\": 42801,\r\n        \"networkId\": 42801,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gesoten Verse Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.verse.gesoten.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kinto Testnet\",\r\n        \"title\": \"Kinto Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"http://35.215.120.180:8545\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ethereum.org\",\r\n        \"shortName\": \"keth\",\r\n        \"chainId\": 42888,\r\n        \"networkId\": 42888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kintoscan\",\r\n                \"url\": \"http://35.215.120.180:4000\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Electroneum Mainnet\",\r\n        \"chain\": \"Electroneum\",\r\n        \"rpc\": [\r\n            \"https://api.electroneum.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Electroneum\",\r\n            \"symbol\": \"ETN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://electroneum.com\",\r\n        \"shortName\": \"etn-mainnet\",\r\n        \"chainId\": 52014,\r\n        \"networkId\": 52014,\r\n        \"icon\": \"electroneum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockexplorer.electroneum.com\",\r\n                \"icon\": \"electroneum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VELO Labs Mainnet\",\r\n        \"chain\": \"NOVA chain\",\r\n        \"rpc\": [\r\n            \"https://nova.velo.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://nova-faucet.velo.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nova\",\r\n            \"symbol\": \"NOVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://velo.org\",\r\n        \"shortName\": \"VELO\",\r\n        \"chainId\": 56789,\r\n        \"networkId\": 56789,\r\n        \"icon\": \"novachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"novascan\",\r\n                \"url\": \"https://novascan.velo.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Linea\",\r\n        \"title\": \"Linea Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.linea.build\",\r\n            \"wss://rpc.linea.build\",\r\n            \"https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}\",\r\n            \"wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Linea Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://linea.build\",\r\n        \"shortName\": \"linea\",\r\n        \"chainId\": 59144,\r\n        \"networkId\": 59144,\r\n        \"icon\": \"linea\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.linea.build\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Etherscan\",\r\n                \"url\": \"https://lineascan.build\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"linea\"\r\n            },\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.linea.build\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"linea\"\r\n            },\r\n            {\r\n                \"name\": \"L2scan\",\r\n                \"url\": \"https://linea.l2scan.co\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"linea\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Genesys Code Mainnet\",\r\n        \"chain\": \"GCODE\",\r\n        \"rpc\": [\r\n            \"https://mainnet.genesyscode.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GenesysCode\",\r\n            \"symbol\": \"GCODE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://genesyscode.io\",\r\n        \"shortName\": \"gcode\",\r\n        \"chainId\": 59971,\r\n        \"networkId\": 59971,\r\n        \"icon\": \"genesyscode\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Genesys Scan\",\r\n                \"url\": \"https://genesysscan.io\",\r\n                \"icon\": \"genesyscode\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Janus Testnet\",\r\n        \"chain\": \"JanusNetwork\",\r\n        \"icon\": \"janusnetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.janusnetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Janus\",\r\n            \"symbol\": \"JNS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://janus-network.gitbook.io/janus\",\r\n        \"shortName\": \"janusnetwork-testnet\",\r\n        \"chainId\": 66988,\r\n        \"networkId\": 66988,\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JanusNetwork Testnet Explorer\",\r\n                \"url\": \"https://beta.scan.janusnetwork.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DM2 Verse Mainnet\",\r\n        \"chain\": \"DM2 Verse\",\r\n        \"icon\": \"dm2verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.dm2verse.dmm.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://seamoon.dmm.com\",\r\n        \"shortName\": \"dm2\",\r\n        \"chainId\": 68770,\r\n        \"networkId\": 68770,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DM2Verse Explorer\",\r\n                \"url\": \"https://explorer.dm2verse.dmm.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Foundry Chain Testnet\",\r\n        \"chain\": \"tFNC\",\r\n        \"icon\": \"fnc\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.foundryscan.org/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.foundryscan.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Foundry Chain Testnet\",\r\n            \"symbol\": \"tFNC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://foundrychain.org\",\r\n        \"shortName\": \"fnc\",\r\n        \"chainId\": 77238,\r\n        \"networkId\": 77238,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Foundry Scan Testnet\",\r\n                \"url\": \"https://testnet-explorer.foundryscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Amplify Subnet\",\r\n        \"chain\": \"AMPLIFY\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/amplify/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AMP\",\r\n            \"symbol\": \"AMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.avax.network\",\r\n        \"shortName\": \"amplify\",\r\n        \"chainId\": 78430,\r\n        \"networkId\": 78430,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AMPLIFY Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/amplify\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bulletin Subnet\",\r\n        \"chain\": \"BULLETIN\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/bulletin/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BLT\",\r\n            \"symbol\": \"BLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.avax.network\",\r\n        \"shortName\": \"bulletin\",\r\n        \"chainId\": 78431,\r\n        \"networkId\": 78431,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BULLETIN Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/bulletin\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Conduit Subnet\",\r\n        \"chain\": \"CONDUIT\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/conduit/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CON\",\r\n            \"symbol\": \"CON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.avax.network\",\r\n        \"shortName\": \"conduit\",\r\n        \"chainId\": 78432,\r\n        \"networkId\": 78432,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CONDUIT Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/conduit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nordek Mainnet\",\r\n        \"chain\": \"Nordek\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.nordekscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NRK\",\r\n            \"symbol\": \"NRK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nordekscan.com\",\r\n        \"shortName\": \"nordek\",\r\n        \"chainId\": 81041,\r\n        \"networkId\": 81041,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nordek\",\r\n                \"url\": \"https://nordekscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Quantum Chain Mainnet\",\r\n        \"chain\": \"QNET\",\r\n        \"icon\": \"qnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.quantumscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quantum Chain\",\r\n            \"symbol\": \"QNET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://quantumnetwork.gg\",\r\n        \"shortName\": \"qnet\",\r\n        \"chainId\": 81720,\r\n        \"networkId\": 81720,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Quantum Scan Mainnet\",\r\n                \"url\": \"https://quantumscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Base Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.base.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://base.org\",\r\n        \"shortName\": \"basesep\",\r\n        \"chainId\": 84532,\r\n        \"networkId\": 84532,\r\n        \"icon\": \"baseTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"basescout\",\r\n                \"url\": \"https://base-sepolia.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aerie Network\",\r\n        \"chain\": \"Aerie\",\r\n        \"rpc\": [\r\n            \"https://mainnet.aerielab.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aerie\",\r\n            \"symbol\": \"AER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aerielab.io/\",\r\n        \"shortName\": \"Aerie\",\r\n        \"chainId\": 84886,\r\n        \"networkId\": 84886,\r\n        \"icon\": \"aerie\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Aerie Explorer\",\r\n                \"url\": \"https://explorer.aerielab.io\",\r\n                \"icon\": \"aerie\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nautilus Proteus Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"nautilus\",\r\n        \"rpc\": [\r\n            \"https://api.proteus.nautchain.xyz/solana\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://proteusfaucet.nautchain.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zebec Test Token\",\r\n            \"symbol\": \"tZBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.nautchain.xyz\",\r\n        \"shortName\": \"NAUTTest\",\r\n        \"chainId\": 88002,\r\n        \"networkId\": 88002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nautscan\",\r\n                \"url\": \"https://proteus.nautscan.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"nautilus\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"eLiberty Testnet\",\r\n        \"chain\": \"$EL\",\r\n        \"icon\": \"eLiberty\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.eliberty.ngo\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.eliberty.ngo\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"eLiberty\",\r\n            \"symbol\": \"$EL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eliberty.ngo\",\r\n        \"shortName\": \"ELt\",\r\n        \"chainId\": 99099,\r\n        \"networkId\": 99099,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eLiberty Testnet\",\r\n                \"url\": \"https://testnet.eliberty.ngo\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko Jolnir L2\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"incubating\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.jolnir.taiko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"tko-jolnir\",\r\n        \"chainId\": 167007,\r\n        \"networkId\": 167007,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.jolnir.taiko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitica Chain Mainnet\",\r\n        \"chain\": \"BDCC\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.biticablockchain.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitica Coin\",\r\n            \"symbol\": \"BDCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://biticablockchain.com/\",\r\n        \"shortName\": \"bdcc\",\r\n        \"chainId\": 188710,\r\n        \"networkId\": 188710,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitica DPOS Blockchain Explorer\",\r\n                \"url\": \"https://biticablockchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"X1 Devnet\",\r\n        \"chain\": \"X1\",\r\n        \"rpc\": [\r\n            \"https://x1-devnet.xen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XN\",\r\n            \"symbol\": \"XN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.xen.network/x1/\",\r\n        \"shortName\": \"x1-devnet\",\r\n        \"chainId\": 202212,\r\n        \"networkId\": 202212,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.x1-devnet.xen.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"X1 Network\",\r\n        \"chain\": \"X1\",\r\n        \"rpc\": [\r\n            \"https://x1-testnet.xen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XN\",\r\n            \"symbol\": \"XN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.xen.network/go-x1/\",\r\n        \"shortName\": \"x1-testnet\",\r\n        \"chainId\": 204005,\r\n        \"networkId\": 204005,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.x1-testnet.xen.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Reapchain Mainnet\",\r\n        \"chain\": \"REAP\",\r\n        \"rpc\": [\r\n            \"https://eth.reapchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Reap\",\r\n            \"symbol\": \"REAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://reapchain.com\",\r\n        \"shortName\": \"reap\",\r\n        \"chainId\": 221230,\r\n        \"networkId\": 221230,\r\n        \"icon\": \"reapchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Reapchain Dashboard\",\r\n                \"url\": \"https://dashboard.reapchain.org\",\r\n                \"icon\": \"reapchain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Reapchain Testnet\",\r\n        \"chain\": \"REAP\",\r\n        \"rpc\": [\r\n            \"https://test-eth.reapchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.reapchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-Reap\",\r\n            \"symbol\": \"tREAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://reapchain.com\",\r\n        \"shortName\": \"reap-testnet\",\r\n        \"chainId\": 221231,\r\n        \"networkId\": 221231,\r\n        \"icon\": \"reapchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Reapchain Testnet Dashboard\",\r\n                \"url\": \"https://test-dashboard.reapchain.org\",\r\n                \"icon\": \"reapchain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nativ3 Testnet\",\r\n        \"chainId\": 333333,\r\n        \"shortName\": \"N3-Test\",\r\n        \"chain\": \"N3-Test\",\r\n        \"icon\": \"nativ3\",\r\n        \"networkId\": 333333,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USNT\",\r\n            \"symbol\": \"USNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpctest.nativ3.network\",\r\n            \"wss://wstest.nativ3.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nativ3 Test Explorer\",\r\n                \"url\": \"https://scantest.nativ3.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://nativ3.network\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421613\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridgetest.nativ3.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Oone Chain Testnet\",\r\n        \"chain\": \"OONE Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.oonechain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://apps-test.adigium.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tOONE\",\r\n            \"symbol\": \"tOONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oonechain.com\",\r\n        \"shortName\": \"oonetest\",\r\n        \"chainId\": 333666,\r\n        \"networkId\": 333666,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.oonescan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Digit Soul Smart Chain 2\",\r\n        \"chain\": \"DS2\",\r\n        \"rpc\": [\r\n            \"https://dgs-rpc.digitsoul.co.th\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"pnet\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Digit Coin\",\r\n            \"symbol\": \"DGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"DS2\",\r\n        \"chainId\": 363636,\r\n        \"networkId\": 363636\r\n    },\r\n    {\r\n        \"name\": \"Alterium L2 Testnet\",\r\n        \"chain\": \"ALT\",\r\n        \"icon\": \"alterium\",\r\n        \"rpc\": [\r\n            \"https://l2-testnet-rpc.altscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Alterium ETH\",\r\n            \"symbol\": \"AltETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alteriumprotocol.org\",\r\n        \"shortName\": \"alterium\",\r\n        \"chainId\": 420692,\r\n        \"networkId\": 420692,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.alteriumprotocol.org\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Alterium L2 Testnet Explorer\",\r\n                \"url\": \"https://l2-testnet.altscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum Sepolia\",\r\n        \"title\": \"Arbitrum Sepolia Rollup Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rollup.arbitrum.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arbitrum.io\",\r\n        \"shortName\": \"arb-sep\",\r\n        \"chainId\": 421614,\r\n        \"networkId\": 421614,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Arbitrum Sepolia Rollup Testnet Explorer\",\r\n                \"url\": \"https://sepolia-explorer.arbitrum.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Rethereum Mainnet\",\r\n        \"chain\": \"RTH\",\r\n        \"rpc\": [\r\n            \"https://rpc.rethereum.org\",\r\n            \"https://rethereum.rpc.restratagem.com\",\r\n            \"https://rpc.rthcentral.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rethereum\",\r\n            \"symbol\": \"RTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.rethereum.org\",\r\n        \"shortName\": \"rth\",\r\n        \"chainId\": 622277,\r\n        \"networkId\": 622277,\r\n        \"icon\": \"rethereum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rethereum\",\r\n                \"url\": \"https://explorer.rethereum.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hela Official Runtime Testnet\",\r\n        \"chain\": \"Hela\",\r\n        \"icon\": \"hela\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.helachain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.helachain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hela HLUSD\",\r\n            \"symbol\": \"HLUSD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://helalabs.com\",\r\n        \"shortName\": \"hela-testnet\",\r\n        \"chainId\": 666888,\r\n        \"networkId\": 666888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hela Official Runtime Testnet Explorer\",\r\n                \"url\": \"https://testnet-blockexplorer.helachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Miexs Smartchain\",\r\n        \"chain\": \"MiexsSmartchain\",\r\n        \"icon\": \"miexs\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.miexs.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Miexs Coin\",\r\n            \"symbol\": \"MIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://miexs.com\",\r\n        \"shortName\": \"Miexs\",\r\n        \"chainId\": 761412,\r\n        \"networkId\": 761412,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Miexs Smartchain Explorer\",\r\n                \"url\": \"https://miexs.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Modularium\",\r\n        \"chain\": \"EVMCC\",\r\n        \"rpc\": [\r\n            \"https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Modularium\",\r\n            \"symbol\": \"MDM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.rmrk.app/\",\r\n        \"shortName\": \"mdlrm\",\r\n        \"chainId\": 776877,\r\n        \"networkId\": 776877,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tanssi Explorer\",\r\n                \"url\": \"https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dodao\",\r\n        \"chain\": \"EVMCC\",\r\n        \"rpc\": [\r\n            \"https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network\",\r\n            \"wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dodao\",\r\n            \"symbol\": \"DODAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dodao.dev/\",\r\n        \"shortName\": \"dodao\",\r\n        \"chainId\": 855456,\r\n        \"networkId\": 855456,\r\n        \"icon\": \"dodao\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dodao Explorer\",\r\n                \"url\": \"https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network\",\r\n                \"icon\": \"dodao\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ecrox Chain Mainnet\",\r\n        \"chain\": \"Ecrox Chain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.ecroxscan.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ECROX COIN\",\r\n            \"symbol\": \"ECROX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ecroxcoin.io/\",\r\n        \"shortName\": \"ecrox\",\r\n        \"icon\": \"ecrox\",\r\n        \"chainId\": 988207,\r\n        \"networkId\": 988207,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ecrox Chain Explorer\",\r\n                \"url\": \"https://ecroxscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tiltyard Subnet\",\r\n        \"chain\": \"TILTYARD\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/tiltyard/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tiltyard Token\",\r\n            \"symbol\": \"TILTG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"tiltyard\",\r\n        \"chainId\": 1127469,\r\n        \"networkId\": 1127469,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TILTYARD Explorer\",\r\n                \"url\": \"http://testnet-explorer.tiltyard.gg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"zKatana\",\r\n        \"shortName\": \"azktn\",\r\n        \"title\": \"Astar zkEVM Testnet zKatana\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"astarzk\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkatana.gelato.digital\",\r\n            \"https://rpc.startale.com/zkatana\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astar.network\",\r\n        \"chainId\": 1261120,\r\n        \"networkId\": 1261120,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout zKatana chain explorer\",\r\n                \"url\": \"https://zkatana.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Startale zKatana chain explorer\",\r\n                \"url\": \"https://zkatana.explorer.startale.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.astar.network\"\r\n                },\r\n                {\r\n                    \"url\": \"https://bridge.zkatana.gelato.digital\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"DeBank Testnet\",\r\n        \"chain\": \"DeBank\",\r\n        \"rpc\": [\r\n            \"http://rpc.testnet.debank.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"debank\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeBank USD\",\r\n            \"symbol\": \"USD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://debank.com\",\r\n        \"shortName\": \"dbk\",\r\n        \"chainId\": 2021398,\r\n        \"networkId\": 2021398,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeBank Chain Explorer\",\r\n                \"url\": \"https://explorer.testnet.debank.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DPU Chain\",\r\n        \"chain\": \"DPU\",\r\n        \"rpc\": [\r\n            \"https://sc-rpc.dpu.ac.th\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DGC\",\r\n            \"symbol\": \"DGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"DPU\",\r\n        \"chainId\": 2611555,\r\n        \"networkId\": 2611555\r\n    },\r\n    {\r\n        \"name\": \"Manta Pacific Testnet\",\r\n        \"chain\": \"Manta Pacific\",\r\n        \"rpc\": [\r\n            \"https://manta-testnet.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Manta\",\r\n            \"symbol\": \"MANTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://manta-testnet.caldera.dev/\",\r\n        \"shortName\": \"mantaTestnet\",\r\n        \"chainId\": 3441005,\r\n        \"networkId\": 3441005,\r\n        \"icon\": \"manta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"manta-testnet Explorer\",\r\n                \"url\": \"https://manta-testnet.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Electroneum Testnet\",\r\n        \"chain\": \"Electroneum\",\r\n        \"rpc\": [\r\n            \"https://api.electroneum.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Electroneum\",\r\n            \"symbol\": \"ETN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://electroneum.com\",\r\n        \"shortName\": \"etn-testnet\",\r\n        \"chainId\": 5201420,\r\n        \"networkId\": 5201420,\r\n        \"icon\": \"electroneum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockexplorer.thesecurityteam.rocks\",\r\n                \"icon\": \"electroneum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XCAP\",\r\n        \"title\": \"XCAP Mainnet\",\r\n        \"chain\": \"XCAP\",\r\n        \"rpc\": [\r\n            \"https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gas\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xcap.network/\",\r\n        \"shortName\": \"xcap\",\r\n        \"chainId\": 9322252,\r\n        \"networkId\": 9322252,\r\n        \"icon\": \"xcap\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://xcap-mainnet.explorer.xcap.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Milvine\",\r\n        \"title\": \"XCAP Testnet Milvine\",\r\n        \"chain\": \"XCAP\",\r\n        \"rpc\": [\r\n            \"https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gas\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xcap.network/\",\r\n        \"shortName\": \"milv\",\r\n        \"chainId\": 9322253,\r\n        \"networkId\": 9322253,\r\n        \"icon\": \"xcap\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://xcap-milvine.explorer.xcap.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OP Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.optimism.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app.optimism.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://optimism.io\",\r\n        \"shortName\": \"opsep\",\r\n        \"chainId\": 11155420,\r\n        \"networkId\": 11155420,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"opscout\",\r\n                \"url\": \"https://optimism-sepolia.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Bakerloo (Barada) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://rpc1.bakerloo.autonity.org/\",\r\n            \"wss://rpc1.bakerloo.autonity.org/ws/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.autonity.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bakerloo Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"bakerloo-01\",\r\n        \"chainId\": 65010001,\r\n        \"networkId\": 65010001,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://bakerloo.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Frame Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.frame.xyz/http\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.triangleplatform.com/frame/testnet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"frameTestnet\",\r\n        \"infoURL\": \"https://www.frame.xyz/\",\r\n        \"shortName\": \"frametest\",\r\n        \"chainId\": 68840142,\r\n        \"networkId\": 68840142,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Frame Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.frame.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Europa Hub Testnet\",\r\n        \"title\": \"Europa Hub Testnet\",\r\n        \"chain\": \"staging-legal-crazy-castor\",\r\n        \"icon\": \"europa\",\r\n        \"rpc\": [\r\n            \"https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfuel.dirtroad.dev/staging\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://europahub.network/\",\r\n        \"shortName\": \"europa-testnet\",\r\n        \"chainId\": 476158412,\r\n        \"networkId\": 476158412,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zora Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.rpc.zora.energy\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"zoraSepoliaTestnet\",\r\n        \"infoURL\": \"https://zora.energy\",\r\n        \"shortName\": \"zsep\",\r\n        \"chainId\": 999999999,\r\n        \"networkId\": 999999999,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zora Sepolia Testnet Network Explorer\",\r\n                \"url\": \"https://sepolia.explorer.zora.energy\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Titan Hub\",\r\n        \"chain\": \"parallel-stormy-spica\",\r\n        \"icon\": \"titan\",\r\n        \"rpc\": [\r\n            \"https://mainnet.skalenodes.com/v1/parallel-stormy-spica\",\r\n            \"wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfuel.skale.network/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"titan-mainnet\",\r\n        \"chainId\": 1350216234,\r\n        \"networkId\": 1350216234,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://parallel-stormy-spica.explorer.mainnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Titan Hub Testnet\",\r\n        \"chain\": \"staging-aware-chief-gianfar\",\r\n        \"icon\": \"titan\",\r\n        \"rpc\": [\r\n            \"https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar\",\r\n            \"wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sfuel.dirtroad.dev/staging\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"titan-testnet\",\r\n        \"chainId\": 1517929550,\r\n        \"networkId\": 1517929550,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Harmony Devnet Shard 1\",\r\n        \"chain\": \"Harmony\",\r\n        \"rpc\": [\r\n            \"https://api.s1.ps.hmny.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONE\",\r\n            \"symbol\": \"ONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.harmony.one/\",\r\n        \"shortName\": \"hmy-ps-s1\",\r\n        \"chainId\": 1666900001,\r\n        \"networkId\": 1666900001,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Ancient8 Testnet\",\r\n        \"chain\": \"Ancient8\",\r\n        \"icon\": \"ancient8\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.ancient8.gg\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ancient8.gg/\",\r\n        \"shortName\": \"a8\",\r\n        \"chainId\": 2863311531,\r\n        \"networkId\": 2863311531,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"a8scan-testnet\",\r\n                \"url\": \"https://testnet.a8scan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKFair Testnet\",\r\n        \"title\": \"ZKFair Testnet\",\r\n        \"chain\": \"ZKFair\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.zkfair.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDC\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zkfair.io/\",\r\n        \"shortName\": \"zkfairtest\",\r\n        \"chainId\": 43851,\r\n        \"networkId\": 43851,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-scan.zkfair.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blast Sepolia\",\r\n        \"chain\": \"Blast Sepolia\",\r\n        \"icon\": \"Blast Sepolia\",\r\n        \"rpc\": [\r\n            \"https://sepolia.blast.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"blastscan.io/\",\r\n        \"shortName\": \"Blast Sepolia\",\r\n        \"chainId\": 168587773,\r\n        \"networkId\": 168587773,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blast testnet\",\r\n                \"url\": \"https://testnet.blastscan.io/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1706000813543.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1706000827437.png\",\r\n            \"color_chain_bg\": \"0xFDFE03\",\r\n            \"color_chain_text\": \"0x000000\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1706000856201.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1706000876568.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ProtoJumbo Testnet\",\r\n        \"chain\": \"Jumbo\",\r\n        \"rpc\": [\r\n            \"https://testnode.jumbochain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://protojumbo.jumbochain.org/faucet-smart\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JNFTC\",\r\n            \"symbol\": \"JNFTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://jumbochain.org\",\r\n        \"shortName\": \"ProtoJumbo\",\r\n        \"chainId\": 129,\r\n        \"networkId\": 129,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ProtoJumbo\",\r\n                \"url\": \"https://protojumbo.jumbochain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Engram Testnet\",\r\n        \"chain\": \"tGRAM\",\r\n        \"icon\": \"engram\",\r\n        \"rpc\": [\r\n            \"https://tokioswift.engram.tech\",\r\n            \"https://tokio-archive.engram.tech\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Engram Tokio Testnet\",\r\n            \"symbol\": \"tGRAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://engramnet.io\",\r\n        \"shortName\": \"tgram\",\r\n        \"chainId\": 131,\r\n        \"networkId\": 131,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://tokioscan-v2.engram.tech\",\r\n                \"icon\": \"engram\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Scalind Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"scalind\",\r\n        \"rpc\": [\r\n            \"https://rpc-sepolia.scalind.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.scalind.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scalind.com\",\r\n        \"shortName\": \"sepscal\",\r\n        \"chainId\": 220,\r\n        \"networkId\": 220,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"scalind\",\r\n                \"url\": \"https://explorer-sepolia.scalind.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaChain Mainnet\",\r\n        \"chain\": \"MTC\",\r\n        \"icon\": \"metachain\",\r\n        \"rpc\": [\r\n            \"https://rpc.metatime.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metatime Coin\",\r\n            \"symbol\": \"MTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metatime.com/en\",\r\n        \"shortName\": \"metatime\",\r\n        \"chainId\": 571,\r\n        \"networkId\": 571,\r\n        \"slip44\": 571,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaExplorer\",\r\n                \"url\": \"https://explorer.metatime.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kalichain\",\r\n        \"chain\": \"Kalichain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.kalichain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"kalis\",\r\n            \"symbol\": \"KALIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kalichain.com\",\r\n        \"shortName\": \"kalichainMainnet\",\r\n        \"chainId\": 654,\r\n        \"networkId\": 654,\r\n        \"icon\": \"kalichain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"kalichain explorer\",\r\n                \"url\": \"https://explorer.kalichain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haven1 Testnet\",\r\n        \"chain\": \"haven1\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.haven1.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.haven1.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Haven1\",\r\n            \"symbol\": \"H1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.haven1.org\",\r\n        \"shortName\": \"h1\",\r\n        \"chainId\": 810,\r\n        \"networkId\": 810,\r\n        \"icon\": \"haven1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Haven1 Explorer\",\r\n                \"url\": \"https://testnet-explorer.haven1.org\",\r\n                \"icon\": \"haven1\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Firechain zkEVM\",\r\n        \"title\": \"Firechain zkEVM\",\r\n        \"chain\": \"Firechain\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkevm.thefirechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.thefirechain.com/\",\r\n        \"shortName\": \"firechan-zkEVM\",\r\n        \"chainId\": 814,\r\n        \"networkId\": 814,\r\n        \"icon\": \"firechain\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://zkevm.bridge.rpc.thefirechain.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lyra Chain\",\r\n        \"chain\": \"Lyra\",\r\n        \"rpc\": [\r\n            \"https://rpc.lyra.finance\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://lyra.finance\",\r\n        \"shortName\": \"lyra\",\r\n        \"chainId\": 957,\r\n        \"networkId\": 957,\r\n        \"icon\": \"lyra\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lyra Explorer\",\r\n                \"url\": \"https://explorer.lyra.finance\",\r\n                \"icon\": \"lyra\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dogether Mainnet\",\r\n        \"chain\": \"Dogether\",\r\n        \"rpc\": [\r\n            \"https://rpc.dogether.dog/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogether\",\r\n            \"symbol\": \"dogeth\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dogether.dog/\",\r\n        \"shortName\": \"Dogether\",\r\n        \"chainId\": 1248,\r\n        \"networkId\": 1248,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DogetherExplorer\",\r\n                \"url\": \"https://explorer.dogether.dog\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ruby Smart Chain MAINNET\",\r\n        \"chain\": \"RUBY\",\r\n        \"rpc\": [\r\n            \"https://mainnet-data.rubychain.io/\",\r\n            \"https://mainnet.rubychain.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RUBY Smart Chain Native Token\",\r\n            \"symbol\": \"RUBY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rubychain.io\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"RUBY\",\r\n        \"chainId\": 1821,\r\n        \"networkId\": 1821,\r\n        \"slip44\": 1,\r\n        \"icon\": \"ruby\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RUBY Smart Chain MAINNET Explorer\",\r\n                \"icon\": \"ruby\",\r\n                \"url\": \"https://rubyscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Scalind\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"scalind\",\r\n        \"rpc\": [\r\n            \"https://rpc.scalind.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scalind.com\",\r\n        \"shortName\": \"scal\",\r\n        \"chainId\": 1911,\r\n        \"networkId\": 1911,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"scalind\",\r\n                \"url\": \"https://explorer.scalind.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ruby Smart Chain Testnet\",\r\n        \"chain\": \"RUBY\",\r\n        \"rpc\": [\r\n            \"https://testnet-rchain.rubychain.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RUBY Smart Chain Native Token\",\r\n            \"symbol\": \"tRUBY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rubychain.io\",\r\n        \"faucets\": [\r\n            \"https://claim-faucet.rubychain.io/\"\r\n        ],\r\n        \"shortName\": \"tRUBY\",\r\n        \"chainId\": 1912,\r\n        \"networkId\": 1912,\r\n        \"slip44\": 1,\r\n        \"icon\": \"ruby\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RUBY Smart Chain Testnet Explorer\",\r\n                \"icon\": \"ruby\",\r\n                \"url\": \"https://testnet.rubyscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"RedeCoin\",\r\n        \"chain\": \"REDEV2\",\r\n        \"rpc\": [\r\n            \"https://rpc2.redecoin.eu\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RedeCoin\",\r\n            \"symbol\": \"REDEV2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.redecoin.eu\",\r\n        \"shortName\": \"rede\",\r\n        \"chainId\": 1972,\r\n        \"networkId\": 1972,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RedeCoin Explorer\",\r\n                \"url\": \"https://explorer3.redecoin.eu\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kyoto Testnet\",\r\n        \"chain\": \"KYOTO\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.kyotoprotocol.io:8545\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.kyotoprotocol.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kyoto\",\r\n            \"symbol\": \"KYOTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://kyotoprotocol.io\",\r\n        \"shortName\": \"kyoto-testnet\",\r\n        \"chainId\": 1998,\r\n        \"networkId\": 1998,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kyotoscan\",\r\n                \"url\": \"https://testnet.kyotoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Phala Network\",\r\n        \"chain\": \"PHA\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Phala\",\r\n            \"symbol\": \"PHA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://phala.network\",\r\n        \"shortName\": \"pha\",\r\n        \"chainId\": 2035,\r\n        \"networkId\": 2035\r\n    },\r\n    {\r\n        \"name\": \"Hybrid Chain Network Testnet\",\r\n        \"chain\": \"HYBRID\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.hybridchain.ai/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.hybridchain.ai\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hybrid Chain Native Token\",\r\n            \"symbol\": \"tHRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hybridchain.ai\",\r\n        \"shortName\": \"thrc\",\r\n        \"chainId\": 2458,\r\n        \"networkId\": 2458,\r\n        \"slip44\": 1,\r\n        \"icon\": \"hybrid\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hybrid Chain Explorer Testnet\",\r\n                \"icon\": \"hybrid\",\r\n                \"url\": \"https://testnet.hybridscan.ai\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hybrid Chain Network Mainnet\",\r\n        \"chain\": \"HYBRID\",\r\n        \"rpc\": [\r\n            \"https://coredata-mainnet.hybridchain.ai/\",\r\n            \"https://rpc-mainnet.hybridchain.ai\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.hybridchain.ai\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hybrid Chain Native Token\",\r\n            \"symbol\": \"HRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hybridchain.ai\",\r\n        \"shortName\": \"hrc\",\r\n        \"chainId\": 2468,\r\n        \"networkId\": 2468,\r\n        \"icon\": \"hybrid\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hybrid Chain Explorer Mainnet\",\r\n                \"icon\": \"hybrid\",\r\n                \"url\": \"https://hybridscan.ai\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tangle Testnet\",\r\n        \"chain\": \"Tangle Testnet\",\r\n        \"icon\": \"tangle\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.tangle.tools\",\r\n            \"https://testnet-rpc-archive.tangle.tools\",\r\n            \"wss://testnet-rpc.tangle.tools\",\r\n            \"wss://testnet-rpc-archive.tangle.tools\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tangle.tools\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Tangle Network Token\",\r\n            \"symbol\": \"tTNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.tangle.tools\",\r\n        \"shortName\": \"tTangle\",\r\n        \"chainId\": 3799,\r\n        \"networkId\": 3799,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ttntscan\",\r\n                \"url\": \"https://testnet-explorer.tangle.tools\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Firechain zkEVM Ghostrider\",\r\n        \"title\": \"Firechain zkEVM Ghostrider\",\r\n        \"chain\": \"Firechain\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkevm.ghostrider.thefirechain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"zkevm-faucet.thefirechain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.thefirechain.com/\",\r\n        \"shortName\": \"firechain-zkEVM-ghostrider\",\r\n        \"chainId\": 3885,\r\n        \"networkId\": 3885,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Muster Mainnet\",\r\n        \"chainId\": 4078,\r\n        \"shortName\": \"muster\",\r\n        \"chain\": \"Muster\",\r\n        \"icon\": \"muster\",\r\n        \"networkId\": 4078,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://muster.alt.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Musterscan\",\r\n                \"url\": \"https://muster-explorer.alt.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Nexi V2 Mainnet\",\r\n        \"chain\": \"Nexi V2\",\r\n        \"icon\": \"nexi\",\r\n        \"rpc\": [\r\n            \"https://chain.nexiv2.nexilix.com\",\r\n            \"https://rpc.chainv1.nexi.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NexiV2\",\r\n            \"symbol\": \"NEXI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nexi.technology/\",\r\n        \"shortName\": \"NexiV2\",\r\n        \"chainId\": 4243,\r\n        \"networkId\": 4243,\r\n        \"slip44\": 2500,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nexiscan\",\r\n                \"url\": \"https://www.nexiscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Smart Layer Network\",\r\n        \"chain\": \"SLN\",\r\n        \"rpc\": [\r\n            \"https://rpc.main.smartlayer.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Service Unit Token\",\r\n            \"symbol\": \"SU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.smartlayer.network/\",\r\n        \"shortName\": \"SLN\",\r\n        \"chainId\": 5169,\r\n        \"networkId\": 5169,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SLN Mainnet Explorer\",\r\n                \"url\": \"https://explorer.main.smartlayer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Latest Chain Testnet\",\r\n        \"chain\": \"LATEST\",\r\n        \"icon\": \"latestChain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.latestcoin.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"http://faucet.latestchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Latest\",\r\n            \"symbol\": \"LATEST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://latestcoin.io\",\r\n        \"shortName\": \"LATESTt\",\r\n        \"chainId\": 6660,\r\n        \"networkId\": 6660,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Latest Chain\",\r\n                \"url\": \"http://testnet.latestchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cybria Mainnet\",\r\n        \"chain\": \"CYBA\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.cybria.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cybria\",\r\n            \"symbol\": \"CYBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://cybria.io\",\r\n        \"shortName\": \"cyba\",\r\n        \"chainId\": 6661,\r\n        \"networkId\": 6661,\r\n        \"icon\": \"cybria\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cybria Explorer\",\r\n                \"url\": \"https://cybascan.io\",\r\n                \"icon\": \"cybascan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155420\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://app.optimism.io/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Cybria Testnet\",\r\n        \"chain\": \"CYBA\",\r\n        \"rpc\": [\r\n            \"https://l2-rpc.cybascan.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.cybascan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cybria\",\r\n            \"symbol\": \"CYBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://cybria.io\",\r\n        \"shortName\": \"tcyba\",\r\n        \"chainId\": 6666,\r\n        \"networkId\": 6666,\r\n        \"icon\": \"cybria\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cybria Explorer\",\r\n                \"url\": \"https://explorer.cybascan.io\",\r\n                \"icon\": \"cybascan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155420\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://app.optimism.io/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"PAXB Mainnet\",\r\n        \"chain\": \"PAXB\",\r\n        \"rpc\": [\r\n            \"https://chain.paxb.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PAXB\",\r\n            \"symbol\": \"PAXB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://paxb.io/\",\r\n        \"shortName\": \"PAXB\",\r\n        \"chainId\": 6701,\r\n        \"networkId\": 6701,\r\n        \"icon\": \"paxb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PAXB Explorer\",\r\n                \"url\": \"https://scan.paxb.io\",\r\n                \"icon\": \"paxb\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Compverse Mainnet\",\r\n        \"chain\": \"CPV\",\r\n        \"icon\": \"compverse\",\r\n        \"rpc\": [\r\n            \"https://rpc.compverse.io/\",\r\n            \"https://rpc-useast1.compverse.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"compverse\",\r\n            \"symbol\": \"CPV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://compverse.io\",\r\n        \"shortName\": \"compverse\",\r\n        \"chainId\": 6779,\r\n        \"networkId\": 6779,\r\n        \"slip44\": 7779,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"cpvscan\",\r\n                \"url\": \"https://scan.compverse.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nume\",\r\n        \"title\": \"Nume\",\r\n        \"chain\": \"Nume\",\r\n        \"rpc\": [\r\n            \"https://rpc.numecrypto.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dai Stablecoin\",\r\n            \"symbol\": \"DAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://numecrypto.com\",\r\n        \"shortName\": \"nume\",\r\n        \"chainId\": 7100,\r\n        \"networkId\": 7100,\r\n        \"icon\": \"nume\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"numeexplorer\",\r\n                \"url\": \"https://explorer.numecrypto.com\",\r\n                \"icon\": \"nume\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Help The Homeless\",\r\n        \"chain\": \"mainnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Help The Homeless Coin\",\r\n            \"symbol\": \"HTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hth.world\",\r\n        \"shortName\": \"hth\",\r\n        \"chainId\": 7118,\r\n        \"networkId\": 7118,\r\n        \"icon\": \"hth\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"E-Dollar\",\r\n        \"chain\": \"USD\",\r\n        \"rpc\": [\r\n            \"https://rpc.e-dollar.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"E-Dollar\",\r\n            \"symbol\": \"USD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://e-dollar.org\",\r\n        \"shortName\": \"E-Dollar\",\r\n        \"chainId\": 8087,\r\n        \"networkId\": 8087,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Storagechain Mainnet\",\r\n        \"chain\": \"Storagechain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-validator.storagechain.io\"\r\n        ],\r\n        \"icon\": \"storagechain\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"stor\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Storagechain\",\r\n            \"symbol\": \"STOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://storagechain.io/about-us\",\r\n        \"chainId\": 8726,\r\n        \"networkId\": 8726,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Storscan\",\r\n                \"url\": \"https://explorer-storagechain.invo.zone/?network=StorageChain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Storagechain Testnet\",\r\n        \"chain\": \"Storagechain\",\r\n        \"rpc\": [\r\n            \"https://testnet-validator.storagechain.io\"\r\n        ],\r\n        \"icon\": \"storagechain\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Storagechain\",\r\n            \"symbol\": \"STOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"tstor\",\r\n        \"infoURL\": \"https://storagechain.io/about-us\",\r\n        \"chainId\": 8727,\r\n        \"networkId\": 8727,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Storscan\",\r\n                \"url\": \"https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Evoke Mainnet\",\r\n        \"chain\": \"MTHN\",\r\n        \"icon\": \"mthn\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.evokescan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MTHN\",\r\n            \"symbol\": \"MTHN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.evokescan.org\",\r\n        \"shortName\": \"MTHN\",\r\n        \"chainId\": 9395,\r\n        \"networkId\": 9395,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evoke SmartChain Explorer\",\r\n                \"url\": \"https://explorer.evokescan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dogelayer Mainnet\",\r\n        \"chain\": \"Dogelayer\",\r\n        \"rpc\": [\r\n            \"https://dl-rpc.dogelayer.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogecoin\",\r\n            \"symbol\": \"DOGE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dogelayer.org\",\r\n        \"shortName\": \"Dogelayer\",\r\n        \"chainId\": 9888,\r\n        \"networkId\": 9888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dogelayer mainnet explorer\",\r\n                \"url\": \"https://dl-explorer.dogelayer.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Combo Mainnet\",\r\n        \"chain\": \"Combo\",\r\n        \"icon\": \"combo\",\r\n        \"rpc\": [\r\n            \"https://rpc.combonetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB Chain Native Token\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://combonetwork.io\",\r\n        \"shortName\": \"combo-mainnet\",\r\n        \"chainId\": 9980,\r\n        \"networkId\": 9980,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"combotrace explorer\",\r\n                \"url\": \"https://combotrace.nodereal.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arthera Mainnet\",\r\n        \"chain\": \"AA\",\r\n        \"icon\": \"arthera\",\r\n        \"rpc\": [\r\n            \"https://rpc.arthera.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arthera\",\r\n            \"symbol\": \"AA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.arthera.net/build/developing-sc/using-hardhat\",\r\n        \"shortName\": \"aa\",\r\n        \"chainId\": 10242,\r\n        \"networkId\": 10242,\r\n        \"slip44\": 10242,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.arthera.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Immutable zkEVM\",\r\n        \"chain\": \"Immutable zkEVM\",\r\n        \"rpc\": [\r\n            \"https://rpc.immutable.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://docs.immutable.com/docs/zkEVM/guides/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IMX\",\r\n            \"symbol\": \"IMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.immutable.com\",\r\n        \"shortName\": \"imx\",\r\n        \"chainId\": 13371,\r\n        \"networkId\": 13371,\r\n        \"icon\": \"immutable\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Immutable explorer\",\r\n                \"url\": \"https://explorer.immutable.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"immutable\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BSL Mainnet\",\r\n        \"chain\": \"BSL\",\r\n        \"rpc\": [\r\n            \"http://rpc-mainnet.nftruth.io:8545\",\r\n            \"ws://rpc-mainnet.nftruth.io:8645\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Origin NFT\",\r\n            \"symbol\": \"ONF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bsquarelab.com/\",\r\n        \"shortName\": \"onf\",\r\n        \"chainId\": 21912,\r\n        \"networkId\": 21912,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BSL Mainnet Explorer\",\r\n                \"url\": \"https://scan.nftruth.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GoldXChain Testnet\",\r\n        \"chain\": \"GoldXTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.goldxchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.goldxchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoldX\",\r\n            \"symbol\": \"GOLDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://goldxchain.io\",\r\n        \"shortName\": \"goldx-testnet\",\r\n        \"chainId\": 22324,\r\n        \"networkId\": 22324,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GoldXChain Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.goldxchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blast Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"blastIcon\",\r\n        \"rpc\": [\r\n            \"http://testnet-rpc.blastblockchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.blastblockchain.com\",\r\n        \"shortName\": \"blastT\",\r\n        \"chainId\": 23888,\r\n        \"networkId\": 23888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blast Testnet\",\r\n                \"url\": \"http://testnet-explorer.blastblockchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Evoke Testnet\",\r\n        \"chain\": \"Evoke\",\r\n        \"icon\": \"mthn\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.evokescan.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.evokescan.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MTHN Testnet\",\r\n            \"symbol\": \"MTHN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.evokescan.org\",\r\n        \"shortName\": \"tmthn\",\r\n        \"chainId\": 31414,\r\n        \"networkId\": 31414,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evoke SmartChain Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.evokescan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"W3Gamez Holesky Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc-holesky.w3gamez.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"W3Gamez Testnet Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://web3games.com/\",\r\n        \"shortName\": \"w3gamez\",\r\n        \"chainId\": 32001,\r\n        \"networkId\": 32001,\r\n        \"slip44\": 1,\r\n        \"icon\": \"w3gamez\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"W3Gamez Holesky Explorer\",\r\n                \"url\": \"https://w3gamez-holesky.web3games.com\",\r\n                \"icon\": \"web3games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GoldXChain Mainnet\",\r\n        \"chain\": \"GoldX\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.goldxchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoldX\",\r\n            \"symbol\": \"GOLDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://goldxchain.io\",\r\n        \"shortName\": \"goldx\",\r\n        \"chainId\": 42355,\r\n        \"networkId\": 42355,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GoldXChain Explorer\",\r\n                \"url\": \"https://explorer.goldxchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKFair Mainnet\",\r\n        \"title\": \"ZKFair Mainnet\",\r\n        \"chain\": \"ZKFair\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkfair.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDC Token\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zkfair.io\",\r\n        \"shortName\": \"ZKFair-Mainnet\",\r\n        \"chainId\": 42766,\r\n        \"networkId\": 42766,\r\n        \"icon\": \"zkfair\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.zkfair.io\",\r\n                \"icon\": \"zkfair\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://wallet.zkfair.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Deelance Mainnet\",\r\n        \"title\": \"Deelance Network Mainnet\",\r\n        \"chain\": \"DEE\",\r\n        \"rpc\": [\r\n            \"https://rpc.deelance.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.deelance.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Deelance\",\r\n            \"symbol\": \"DEE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://deelance.com\",\r\n        \"shortName\": \"dee\",\r\n        \"chainId\": 45510,\r\n        \"networkId\": 45510,\r\n        \"icon\": \"deelance\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Deelance Mainnet Explorer\",\r\n                \"url\": \"https://deescan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Yooldo Verse Mainnet\",\r\n        \"chain\": \"Yooldo Verse\",\r\n        \"icon\": \"yooldo_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.yooldo-verse.xyz/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://yooldo.gg/\",\r\n        \"shortName\": \"YVM\",\r\n        \"chainId\": 50005,\r\n        \"networkId\": 50005,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Yooldo Verse Explorer\",\r\n                \"url\": \"https://explorer.yooldo-verse.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Yooldo Verse Testnet\",\r\n        \"chain\": \"Yooldo Verse\",\r\n        \"icon\": \"yooldo_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.yooldo-verse.xyz/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://yooldo.gg/\",\r\n        \"shortName\": \"YVT\",\r\n        \"chainId\": 50006,\r\n        \"networkId\": 50006,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Yooldo Verse Explorer\",\r\n                \"url\": \"https://explorer.testnet.yooldo-verse.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Grok Chain Mainnet\",\r\n        \"chain\": \"Grok\",\r\n        \"icon\": \"grokicon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.grokchain.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Groc\",\r\n            \"symbol\": \"GROC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://grokchain.dev\",\r\n        \"shortName\": \"GrokChain\",\r\n        \"chainId\": 72992,\r\n        \"networkId\": 72992,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GrokScan\",\r\n                \"url\": \"https://mainnet-explorer.grokchain.dev\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Smart Layer Network Testnet\",\r\n        \"chain\": \"SLN\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.smartlayer.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Service Unit Token\",\r\n            \"symbol\": \"SU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.smartlayer.network/\",\r\n        \"shortName\": \"tSLN\",\r\n        \"chainId\": 82459,\r\n        \"networkId\": 82459,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SLN Testnet Explorer\",\r\n                \"url\": \"https://explorer.test.smartlayer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Combo Testnet\",\r\n        \"chain\": \"Combo\",\r\n        \"icon\": \"combo\",\r\n        \"rpc\": [\r\n            \"https://test-rpc.combonetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB Chain Native Token\",\r\n            \"symbol\": \"tcBNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://combonetwork.io\",\r\n        \"shortName\": \"combo-testnet\",\r\n        \"chainId\": 91715,\r\n        \"networkId\": 91715,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"combotrace explorer\",\r\n                \"url\": \"https://combotrace-testnet.nodereal.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Etherlink Testnet\",\r\n        \"chain\": \"Etherlink\",\r\n        \"icon\": \"etherlink\",\r\n        \"chainId\": 128123,\r\n        \"networkId\": 128123,\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://etherlink.com\",\r\n        \"shortName\": \"etlt\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tez\",\r\n            \"symbol\": \"XTZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.ghostnet.etherlink.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.etherlink.com\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Etherlink Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.etherlink.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko Katla L2\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"active\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.katla.taiko.xyz\",\r\n            \"https://taiko-katla.blockpi.network/v1/rpc/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"tko-katla\",\r\n        \"chainId\": 167008,\r\n        \"networkId\": 167008,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.katla.taiko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CONET Sebolia Testnet\",\r\n        \"chain\": \"CONET\",\r\n        \"rpc\": [\r\n            \"https://rpc1.conet.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CONET Sebolia\",\r\n            \"symbol\": \"CONET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://conet.network\",\r\n        \"shortName\": \"conet-sebolia\",\r\n        \"chainId\": 224422,\r\n        \"networkId\": 224422,\r\n        \"slip44\": 1,\r\n        \"icon\": \"conet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CONET Scan\",\r\n                \"url\": \"https://scan.conet.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CONET Holesky\",\r\n        \"chain\": \"CONET Holesky\",\r\n        \"rpc\": [\r\n            \"https://holeskyrpc1.conet.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CONET Holesky\",\r\n            \"symbol\": \"CONET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://conet.network\",\r\n        \"shortName\": \"conet-holesky\",\r\n        \"chainId\": 224433,\r\n        \"networkId\": 224433,\r\n        \"slip44\": 2147708081,\r\n        \"icon\": \"conet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CONET Holesky Scan\",\r\n                \"url\": \"https://scan.conet.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ultra Pro Mainnet\",\r\n        \"chain\": \"ultrapro\",\r\n        \"icon\": \"ultrapro\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.ultraproscan.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ultra Pro\",\r\n            \"symbol\": \"UPRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ultrapro.info\",\r\n        \"shortName\": \"ultrapro\",\r\n        \"chainId\": 473861,\r\n        \"networkId\": 473861,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ultraproscan\",\r\n                \"url\": \"https://ultraproscan.io\",\r\n                \"icon\": \"ultrapro\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlocX Mainnet\",\r\n        \"chain\": \"BLX\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.blxscan.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BlocX\",\r\n            \"symbol\": \"BLX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.blocxchain.org/\",\r\n        \"shortName\": \"blx\",\r\n        \"chainId\": 879151,\r\n        \"networkId\": 879151,\r\n        \"icon\": \"blx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlocX Mainnet Explorer\",\r\n                \"url\": \"https://explorer.blxscan.com\",\r\n                \"icon\": \"blx\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Astria EVM Dusknet\",\r\n        \"chain\": \"RIA\",\r\n        \"icon\": \"astria\",\r\n        \"chainId\": 912559,\r\n        \"networkId\": 912559,\r\n        \"infoURL\": \"https://docs.astria.org\",\r\n        \"shortName\": \"ria-dev\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RIA\",\r\n            \"symbol\": \"RIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.evm.dusk-2.devnet.astria.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.evm.dusk-2.devnet.astria.org/\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Astria EVM Dusknet Explorer\",\r\n                \"url\": \"https://explorer.evm.dusk-2.devnet.astria.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Turkey Demo Dev\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://devchain-poa.huabeizhenxuan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"TDD\",\r\n        \"chainId\": 1731313,\r\n        \"networkId\": 1731313\r\n    },\r\n    {\r\n        \"name\": \"Hokum\",\r\n        \"chain\": \"Hokum\",\r\n        \"icon\": \"hokum\",\r\n        \"rpc\": [\r\n            \"https://mainnet.hokum.gg\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hokum.gg\",\r\n        \"shortName\": \"hokum\",\r\n        \"chainId\": 8080808,\r\n        \"networkId\": 8080808,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hokum Explorer\",\r\n                \"url\": \"https://explorer.hokum.gg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hokum Testnet\",\r\n        \"chain\": \"HokumTestnet\",\r\n        \"icon\": \"hokum\",\r\n        \"rpc\": [\r\n            \"https://testnet.hokum.gg\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hokum.gg\",\r\n        \"shortName\": \"hokum-testnet\",\r\n        \"chainId\": 20482050,\r\n        \"networkId\": 20482050,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hokum Explorer\",\r\n                \"url\": \"https://testnet-explorer.hokum.gg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ancient8 Testnet\",\r\n        \"chain\": \"Ancient8\",\r\n        \"icon\": \"ancient8\",\r\n        \"rpc\": [\r\n            \"https://rpcv2-testnet.ancient8.gg\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ancient8.gg/\",\r\n        \"shortName\": \"a8\",\r\n        \"chainId\": 28122024,\r\n        \"networkId\": 28122024,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"scan-testnet\",\r\n                \"url\": \"https://scanv2-testnet.ancient8.gg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Piccadilly (Barada) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://rpc1.piccadilly.autonity.org/\",\r\n            \"wss://rpc1.piccadilly.autonity.org/ws/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Piccadilly Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"piccadilly-01\",\r\n        \"chainId\": 65100001,\r\n        \"networkId\": 65100001,\r\n        \"slip44\": 1,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://piccadilly.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Puppynet Shibarium\",\r\n        \"chain\": \"Puppynet Shibarium\",\r\n        \"icon\": \"shibarium\",\r\n        \"rpc\": [\r\n            \"https://puppynet.shibrpc.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://beta.shibariumtech.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BONE\",\r\n            \"symbol\": \"BONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shibariumecosystem.com\",\r\n        \"shortName\": \"puppynet\",\r\n        \"chainId\": 157,\r\n        \"networkId\": 157,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"puppyscan\",\r\n                \"url\": \"https://puppyscan.shib.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Viridis Testnet\",\r\n        \"chain\": \"VRD\",\r\n        \"icon\": \"viridis\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.vrd.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.vrd.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Viridis Token\",\r\n            \"symbol\": \"VRD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://viridis.network\",\r\n        \"shortName\": \"VRD-Testnet\",\r\n        \"chainId\": 224,\r\n        \"networkId\": 224,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Viridis Testnet\",\r\n                \"url\": \"https://testnet.vrd.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ProtoJumbo Testnet\",\r\n        \"chain\": \"Jumbo\",\r\n        \"rpc\": [\r\n            \"https://testnode.jumbochain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://protojumbo.jumbochain.org/faucet-smart\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JNFTC\",\r\n            \"symbol\": \"JNFTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://jumbochain.org\",\r\n        \"shortName\": \"ProtoJumbo\",\r\n        \"chainId\": 234,\r\n        \"networkId\": 234,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ProtoJumbo\",\r\n                \"url\": \"https://protojumbo.jumbochain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BPX Blockchain\",\r\n        \"chain\": \"BPX\",\r\n        \"icon\": \"bpx\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.bpxchain.cc\",\r\n            \"https://bpx-dataseed.infinex.cc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BPX\",\r\n            \"symbol\": \"BPX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bpxchain.cc\",\r\n        \"shortName\": \"bpx\",\r\n        \"chainId\": 279,\r\n        \"networkId\": 279\r\n    },\r\n    {\r\n        \"name\": \"ZKSats Mainnet\",\r\n        \"title\": \"ZKSats Mainnet\",\r\n        \"chain\": \"ZKSats\",\r\n        \"rpc\": [\r\n            \"https://mainnet.zksats.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zksats.io\",\r\n        \"shortName\": \"ZKSats-Mainnet\",\r\n        \"chainId\": 305,\r\n        \"networkId\": 305,\r\n        \"icon\": \"zksats\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.zksats.io\",\r\n                \"icon\": \"zksats\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lovely Network Testnet\",\r\n        \"chain\": \"Lovely\",\r\n        \"icon\": \"lovely\",\r\n        \"rpc\": [\r\n            \"https://trpc.lovely.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lovely.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lovely\",\r\n            \"symbol\": \"LOVELY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lovely.network\",\r\n        \"shortName\": \"LOVELY-Testnet\",\r\n        \"chainId\": 307,\r\n        \"networkId\": 307,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lovely Network Testnet\",\r\n                \"url\": \"https://tscan.lovely.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cosvm Mainnet\",\r\n        \"chain\": \"CVM\",\r\n        \"rpc\": [\r\n            \"https://rpc.cosvm.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cosvm\",\r\n            \"symbol\": \"CVM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cosvm.network\",\r\n        \"shortName\": \"cvm\",\r\n        \"chainId\": 323,\r\n        \"networkId\": 323,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.cosvm.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKAmoeba Testnet\",\r\n        \"chain\": \"FIL\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.zkamoeba.com:4050/\",\r\n            \"https://rpc1.testnet.zkamoeba.com:4050/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"filecoin\",\r\n            \"symbol\": \"FIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.zkamoeba.com\",\r\n        \"shortName\": \"zkamoeba-test\",\r\n        \"chainId\": 380,\r\n        \"networkId\": 380,\r\n        \"icon\": \"zkamoeba-micro\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZKAmoeba Test Explorer\",\r\n                \"url\": \"https://testnetexplorer.zkamoeba.com\",\r\n                \"icon\": \"zkamoeba-micro\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-314\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet.zkamoeba.com/en/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ZKAmoeba Mainnet\",\r\n        \"chain\": \"FIL\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.zkamoeba.com/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"filecoin\",\r\n            \"symbol\": \"FIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zkamoeba.com\",\r\n        \"shortName\": \"zkamoeba\",\r\n        \"chainId\": 381,\r\n        \"networkId\": 381,\r\n        \"icon\": \"zkamoeba-micro\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZKAmoeba Explorer\",\r\n                \"url\": \"https://explorer.zkamoeba.com\",\r\n                \"icon\": \"zkamoeba-micro\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-314\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://www.zkamoeba.com/en/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Viridis Mainnet\",\r\n        \"chain\": \"VRD\",\r\n        \"icon\": \"viridis\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.vrd.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Viridis Token\",\r\n            \"symbol\": \"VRD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://viridis.network\",\r\n        \"shortName\": \"vrd\",\r\n        \"chainId\": 422,\r\n        \"networkId\": 422,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Viridis Mainnet\",\r\n                \"url\": \"https://explorer.vrd.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Syndicate Chain\",\r\n        \"title\": \"Syndicate Chain\",\r\n        \"chain\": \"Syndicate\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.syndicate.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://syndicate.io\",\r\n        \"shortName\": \"syndicate-chain-mainnet\",\r\n        \"chainId\": 510,\r\n        \"networkId\": 510,\r\n        \"status\": \"incubating\",\r\n        \"icon\": \"syndicate\"\r\n    },\r\n    {\r\n        \"name\": \"EIOB Mainnet\",\r\n        \"chain\": \"EIOB\",\r\n        \"icon\": \"eiob\",\r\n        \"rpc\": [\r\n            \"https://rpc.eiob.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EIOB\",\r\n            \"symbol\": \"EIOB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"eiob\",\r\n        \"chainId\": 612,\r\n        \"networkId\": 612,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EIOB Explorer\",\r\n                \"url\": \"https://explorer.eiob.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vrcscan Mainnet\",\r\n        \"chain\": \"VRC\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet-5.vrcscan.com\",\r\n            \"https://rpc-mainnet-6.vrcscan.com\",\r\n            \"https://rpc-mainnet-7.vrcscan.com\",\r\n            \"https://rpc-mainnet-8.vrcscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VRC Chain\",\r\n            \"symbol\": \"VRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vrccoin.com\",\r\n        \"shortName\": \"vrc\",\r\n        \"chainId\": 713,\r\n        \"networkId\": 713,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"vrcscan\",\r\n                \"url\": \"https://vrcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"dxbscan\",\r\n                \"url\": \"https://dxb.vrcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"icon\": \"vrcscan\"\r\n    },\r\n    {\r\n        \"name\": \"Lovely Network Mainnet\",\r\n        \"chain\": \"Lovely\",\r\n        \"icon\": \"lovely\",\r\n        \"rpc\": [\r\n            \"https://rpc.lovely.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lovely\",\r\n            \"symbol\": \"LOVELY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lovely.network\",\r\n        \"shortName\": \"LOVELY\",\r\n        \"chainId\": 730,\r\n        \"networkId\": 730,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lovely Network Mainnet\",\r\n                \"url\": \"https://scan.lovely.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rupaya Testnet\",\r\n        \"chain\": \"Rupaya Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.rupaya.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.rupaya.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Rupaya\",\r\n            \"symbol\": \"TRUPX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.rupaya.io\",\r\n        \"shortName\": \"RupayaTestnet\",\r\n        \"chainId\": 799,\r\n        \"networkId\": 799,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rupayascan\",\r\n                \"url\": \"https://scan.testnet.rupaya.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CheckDot Blockchain Devnet\",\r\n        \"chain\": \"CDT Blockchain\",\r\n        \"rpc\": [\r\n            \"https://devnet.checkdot.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CDT\",\r\n            \"symbol\": \"CDT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://checkdot.io\",\r\n        \"shortName\": \"cdt\",\r\n        \"chainId\": 831,\r\n        \"networkId\": 831,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CDT Explorer\",\r\n                \"url\": \"https://explorer.checkdot.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dymension\",\r\n        \"chain\": \"Dymension\",\r\n        \"rpc\": [\r\n            \"https://dymension-evm.blockpi.network/v1/rpc/public\",\r\n            \"https://dymension-evm-rpc.publicnode.com\",\r\n            \"wss://dymension-evm-rpc.publicnode.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DYM\",\r\n            \"symbol\": \"DYM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dymension.xyz\",\r\n        \"shortName\": \"dymension\",\r\n        \"icon\": \"dymension\",\r\n        \"chainId\": 1100,\r\n        \"networkId\": 1100,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dym.fyi\",\r\n                \"url\": \"https://dym.fyi\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hybrid Testnet\",\r\n        \"chain\": \"$HYB\",\r\n        \"icon\": \"hybridIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.buildonhybrid.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hybrid\",\r\n            \"symbol\": \"$HYB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://buildonhybrid.com\",\r\n        \"shortName\": \"hyb\",\r\n        \"chainId\": 1224,\r\n        \"networkId\": 1224,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hybrid Testnet\",\r\n                \"url\": \"https://alphatestnet.buildonhybrid.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaChain Istanbul\",\r\n        \"title\": \"MetaChain Testnet Istanbul\",\r\n        \"chain\": \"MTC\",\r\n        \"icon\": \"metachain\",\r\n        \"rpc\": [\r\n            \"https://istanbul-rpc.metachain.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://istanbul-faucet.metachain.dev\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metatime Coin\",\r\n            \"symbol\": \"MTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metatime.com/en\",\r\n        \"shortName\": \"metatimeistanbul\",\r\n        \"chainId\": 1453,\r\n        \"networkId\": 1453,\r\n        \"slip44\": 1453,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaExplorer\",\r\n                \"url\": \"https://istanbul-explorer.metachain.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vitruveo Mainnet\",\r\n        \"title\": \"Vitruveo is a blockchain for Creators\",\r\n        \"chain\": \"Vitruveo\",\r\n        \"rpc\": [\r\n            \"https://rpc.vitruveo.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vitruveo Coin\",\r\n            \"symbol\": \"VTRU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.vitruveo.xyz\",\r\n        \"shortName\": \"vitruveo\",\r\n        \"chainId\": 1490,\r\n        \"networkId\": 1490,\r\n        \"icon\": \"vitruveo\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vitruveo Explorer\",\r\n                \"url\": \"https://explorer.vitruveo.xyz\",\r\n                \"icon\": \"vitruveo\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Selendra Network Testnet\",\r\n        \"chain\": \"tSEL\",\r\n        \"rpc\": [\r\n            \"https://rpc0-testnet.selendra.org\",\r\n            \"https://rpc1-testnet.selendra.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Selendra\",\r\n            \"symbol\": \"tSEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://selendra.org\",\r\n        \"shortName\": \"tSEL\",\r\n        \"chainId\": 1953,\r\n        \"networkId\": 1953,\r\n        \"icon\": \"selendra\"\r\n    },\r\n    {\r\n        \"name\": \"Selendra Network Mainnet\",\r\n        \"chain\": \"SEL\",\r\n        \"rpc\": [\r\n            \"https://rpc0.selendra.org\",\r\n            \"https://rpc1.selendra.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Selendra\",\r\n            \"symbol\": \"SEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://selendra.org\",\r\n        \"shortName\": \"SEL\",\r\n        \"chainId\": 1961,\r\n        \"networkId\": 1961,\r\n        \"icon\": \"selendra\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Selendra Scan\",\r\n                \"url\": \"https://scan.selendra.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Swan Saturn Testnet\",\r\n        \"chain\": \"SWAN\",\r\n        \"rpc\": [\r\n            \"https://saturn-rpc.swanchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SWANETH\",\r\n            \"symbol\": \"SWAN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://swanchain.io/\",\r\n        \"shortName\": \"swan\",\r\n        \"chainId\": 2024,\r\n        \"networkId\": 2024\r\n    },\r\n    {\r\n        \"name\": \"Karak Mainnet\",\r\n        \"chain\": \"Karak\",\r\n        \"icon\": \"karak\",\r\n        \"rpc\": [\r\n            \"https://rpc.karak.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://karak.network\",\r\n        \"shortName\": \"karak-mainnet\",\r\n        \"chainId\": 2410,\r\n        \"networkId\": 2410,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Karak Mainnet Explorer\",\r\n                \"url\": \"https://explorer.karak.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Polygon zkEVM Cardona Testnet\",\r\n        \"title\": \"Polygon zkEVM Cardona Testnet\",\r\n        \"chain\": \"Polygon\",\r\n        \"rpc\": [\r\n            \"https://rpc.cardona.zkevm-rpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polygon.technology/polygon-zkevm\",\r\n        \"shortName\": \"zkevm-testnet-cardona\",\r\n        \"chainId\": 2442,\r\n        \"networkId\": 2442,\r\n        \"icon\": \"zkevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"polygonscan\",\r\n                \"url\": \"https://cardona-zkevm.polygonscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-ui.cardona.zkevm-rpc.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Karak Testnet\",\r\n        \"chain\": \"Karak\",\r\n        \"icon\": \"karak\",\r\n        \"rpc\": [\r\n            \"https://goerli.node1.karak.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Karak\",\r\n            \"symbol\": \"KRK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://karak.network\",\r\n        \"shortName\": \"karak-testnet\",\r\n        \"chainId\": 2511,\r\n        \"networkId\": 2511,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Karak Testnet Explorer\",\r\n                \"url\": \"https://goerli.scan.karak.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Elizabeth Testnet\",\r\n        \"chain\": \"Elizabeth\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.timenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TIME\",\r\n            \"symbol\": \"TIME\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://whitepaper.anttime.net/overview/anttime\",\r\n        \"shortName\": \"TIME\",\r\n        \"chainId\": 2731,\r\n        \"networkId\": 2731,\r\n        \"icon\": \"timenet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Time Network Explorer\",\r\n                \"url\": \"https://testnet-scanner.timenetwork.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"timenet\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xenon Chain Testnet\",\r\n        \"chain\": \"XEN\",\r\n        \"rpc\": [\r\n            \"https://testnet-chain.xenonchain.com/\",\r\n            \"https://testnet-dev.xenonchain.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://xfaucet.xenonchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xenon Testnet\",\r\n            \"symbol\": \"tXEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xenonchain.com\",\r\n        \"shortName\": \"xenon\",\r\n        \"chainId\": 2941,\r\n        \"networkId\": 2941,\r\n        \"icon\": \"xenon\",\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xenon testnet Explorer\",\r\n                \"url\": \"https://testnet.xenonchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"APEX Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://exp-testnet.apexlayer.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sepoliafaucet.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.apexlayer.xyz/\",\r\n        \"shortName\": \"apexsep\",\r\n        \"chainId\": 3993,\r\n        \"networkId\": 3993,\r\n        \"slip44\": 1,\r\n        \"icon\": \"apextestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://exp-testnet.apexlayer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://apexlayer.xyz/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lisk Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.sepolia-api.lisk.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lisk.com\",\r\n        \"shortName\": \"lisksep\",\r\n        \"chainId\": 4202,\r\n        \"networkId\": 4202,\r\n        \"slip44\": 134,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"liskscout\",\r\n                \"url\": \"https://sepolia-blockscout.lisk.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Emoney Network Testnet\",\r\n        \"chain\": \"Emoney\",\r\n        \"rpc\": [\r\n            \"https://testnet.emoney.network/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.emoney.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Emoney Network\",\r\n            \"symbol\": \"EMYC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://emoney.network/\",\r\n        \"shortName\": \"emoney\",\r\n        \"chainId\": 4544,\r\n        \"networkId\": 4544,\r\n        \"slip44\": 118,\r\n        \"icon\": \"emoney\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EMoney ethscan\",\r\n                \"url\": \"https://ethscan.emoney.network\",\r\n                \"icon\": \"emoney\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gold Chain\",\r\n        \"title\": \"Gold Chain\",\r\n        \"chain\": \"Gold\",\r\n        \"rpc\": [\r\n            \"https://chain-rpc.gold.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gold.dev\",\r\n        \"shortName\": \"gold\",\r\n        \"chainId\": 4653,\r\n        \"networkId\": 4653,\r\n        \"status\": \"incubating\",\r\n        \"icon\": \"gold\"\r\n    },\r\n    {\r\n        \"name\": \"Syndicate Testnet\",\r\n        \"title\": \"Syndicate Testnet\",\r\n        \"chain\": \"Syndicate\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.syndicate.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"S-Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://syndicate.io\",\r\n        \"shortName\": \"syndicate-chain-testnet\",\r\n        \"chainId\": 5100,\r\n        \"networkId\": 5100,\r\n        \"status\": \"incubating\",\r\n        \"icon\": \"syndicate\"\r\n    },\r\n    {\r\n        \"name\": \"Syndicate Frame Chain\",\r\n        \"title\": \"Syndicate Frame Chain\",\r\n        \"chain\": \"Syndicate Frame\",\r\n        \"rpc\": [\r\n            \"https://rpc-frame.syndicate.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://syndicate.io\",\r\n        \"shortName\": \"syndicate-chain-frame\",\r\n        \"chainId\": 5101,\r\n        \"networkId\": 5101,\r\n        \"status\": \"incubating\",\r\n        \"icon\": \"syndicate\"\r\n    },\r\n    {\r\n        \"name\": \"BST Chain\",\r\n        \"chain\": \"BSTC\",\r\n        \"rpc\": [\r\n            \"https://rpc.bstchain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BST Chain\",\r\n            \"symbol\": \"BSTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bstchain.io\",\r\n        \"shortName\": \"BSTC\",\r\n        \"chainId\": 7007,\r\n        \"networkId\": 7007,\r\n        \"icon\": \"bstc\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://bstscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kinto Mainnet\",\r\n        \"chain\": \"Kinto Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.kinto.xyz/http\",\r\n            \"https://kinto-mainnet.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kinto.xyz\",\r\n        \"shortName\": \"kintoMainnet\",\r\n        \"chainId\": 7887,\r\n        \"networkId\": 7887,\r\n        \"icon\": \"kinto\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kinto Explorer\",\r\n                \"url\": \"https://explorer.kinto.xyz\",\r\n                \"icon\": \"kinto\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Orenium Testnet Protocol\",\r\n        \"chain\": \"ORE\",\r\n        \"rpc\": [\r\n            \"https://rpc-dev-testnet.orenium.org/\",\r\n            \"https://rpc-testnet.orenium.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ORENIUM\",\r\n            \"symbol\": \"tORE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://orenium.org\",\r\n        \"shortName\": \"tore\",\r\n        \"chainId\": 8890,\r\n        \"networkId\": 8890,\r\n        \"slip44\": 1,\r\n        \"icon\": \"ore\",\r\n        \"faucets\": [\r\n            \"https://faucetcoin.orenium.org\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ORE Testnet Explorer\",\r\n                \"icon\": \"ore\",\r\n                \"url\": \"https://testnet.oreniumscan.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexa Testnet Block\",\r\n        \"chain\": \"Nexa Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet-nodes.nexablockscan.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.nexablockscan.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nexa Testnet Token\",\r\n            \"symbol\": \"NEXB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nexablock.io\",\r\n        \"shortName\": \"NexaTestnet\",\r\n        \"chainId\": 9024,\r\n        \"networkId\": 9024,\r\n        \"icon\": \"nexaChain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nexablock Testnet Explorer\",\r\n                \"url\": \"https://testnet.nexablockscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nexaChain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexa Mainnet Block\",\r\n        \"chain\": \"Nexa Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-nodes.nexablockscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nexa Mainnet Token\",\r\n            \"symbol\": \"NEXB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nexablock.io\",\r\n        \"shortName\": \"Nexa\",\r\n        \"chainId\": 9025,\r\n        \"networkId\": 9025,\r\n        \"icon\": \"nexaChain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nexablock Mainnet Explorer\",\r\n                \"url\": \"https://nexablockscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nexaChain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dela Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia-dela.deperp.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.deperp.com/dela\",\r\n        \"shortName\": \"delasep\",\r\n        \"chainId\": 9393,\r\n        \"networkId\": 9393,\r\n        \"slip44\": 1,\r\n        \"icon\": \"delaTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"basescout\",\r\n                \"url\": \"https://sepolia-delascan.deperp.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BEVM Testnet\",\r\n        \"chain\": \"BEVM\",\r\n        \"rpc\": [\r\n            \"https://testnet.bevm.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bevm.io\",\r\n        \"shortName\": \"bevm\",\r\n        \"chainId\": 11503,\r\n        \"networkId\": 11503,\r\n        \"icon\": \"bevmcanary\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bevm testnet scan\",\r\n                \"url\": \"https://scan-testnet.bevm.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aternos\",\r\n        \"chain\": \"Aternos\",\r\n        \"icon\": \"aternos\",\r\n        \"rpc\": [\r\n            \"https://rpc.aternoschain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.aternoschain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aternos\",\r\n            \"symbol\": \"ATR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aternoschain.com\",\r\n        \"shortName\": \"ATR\",\r\n        \"chainId\": 12020,\r\n        \"networkId\": 12020,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.aternoschain.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vitruveo Testnet\",\r\n        \"title\": \"Vitruveo is a blockchain for Creators\",\r\n        \"chain\": \"Vitruveo\",\r\n        \"rpc\": [\r\n            \"https://test-rpc.vitruveo.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.vitruveo.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vitruveo Test Coin\",\r\n            \"symbol\": \"tVTRU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.vitruveo.xyz\",\r\n        \"shortName\": \"vitruveo-test\",\r\n        \"chainId\": 14333,\r\n        \"networkId\": 14333,\r\n        \"icon\": \"vitruveo\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vitruveo Testnet Explorer\",\r\n                \"url\": \"https://test-explorer.vitruveo.xyz\",\r\n                \"icon\": \"vitruveo\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Eclipse Subnet\",\r\n        \"chain\": \"ECLIPSE\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/eclipse/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eclipse\",\r\n            \"symbol\": \"ECLP\",\r\n            \"decimals\": 16\r\n        },\r\n        \"infoURL\": \"http://eclipsenet.io\",\r\n        \"shortName\": \"eclipse\",\r\n        \"chainId\": 17172,\r\n        \"networkId\": 17172,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ECLIPSE Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/eclipse\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KONET Mainnet\",\r\n        \"chain\": \"KONET\",\r\n        \"rpc\": [\r\n            \"https://api.kon-wallet.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KONET\",\r\n            \"symbol\": \"KONET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://konetmain.com\",\r\n        \"shortName\": \"KONET\",\r\n        \"chainId\": 17217,\r\n        \"networkId\": 17217,\r\n        \"slip44\": 1,\r\n        \"icon\": \"konet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"konet-explorer\",\r\n                \"url\": \"https://explorer.kon-wallet.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"unreal\",\r\n        \"title\": \"unreal testnet for re.al\",\r\n        \"chain\": \"unreal\",\r\n        \"rpc\": [\r\n            \"https://rpc.unreal.gelato.digital\",\r\n            \"wss://ws.unreal.gelato.digital\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"unreal Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/unreal\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"unreal\",\r\n        \"chainId\": 18231,\r\n        \"networkId\": 18231,\r\n        \"slip44\": 60,\r\n        \"icon\": \"unreal\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://unreal.blockscout.com\",\r\n                \"icon\": \"unreal\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.unreal.gelato.digital\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Titan (TKX) Testnet\",\r\n        \"chain\": \"Titan (TKX)\",\r\n        \"rpc\": [\r\n            \"https://titan-testnet-json-rpc-1.tokenize-dev.com\",\r\n            \"https://titan-testnet-json-rpc-2.tokenize-dev.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Titan tkx\",\r\n            \"symbol\": \"TKX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tokenize.exchange\",\r\n        \"shortName\": \"titan_tkx-testnet\",\r\n        \"chainId\": 18889,\r\n        \"networkId\": 18889,\r\n        \"slip44\": 1,\r\n        \"icon\": \"titan_tkx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Titan Explorer\",\r\n                \"url\": \"https://titan-testnet-explorer-light.tokenize-dev.com\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"titan_tkx\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Decentraconnect Social\",\r\n        \"chain\": \"DCSM\",\r\n        \"icon\": \"dcsmIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.decentraconnect.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Decentraconnect Social\",\r\n            \"symbol\": \"DCSM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.decentraconnect.io\",\r\n        \"shortName\": \"DCSMs\",\r\n        \"chainId\": 19224,\r\n        \"networkId\": 19224,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Decentraconnect Social\",\r\n                \"url\": \"https://decentraconnect.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Magnet Network\",\r\n        \"chain\": \"Magnet\",\r\n        \"rpc\": [\r\n            \"https://magnet-rpc.magport.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Magnet Network\",\r\n            \"symbol\": \"DOT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://magnet.magport.io/\",\r\n        \"shortName\": \"mgt\",\r\n        \"chainId\": 19527,\r\n        \"networkId\": 19527,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Jono11 Subnet\",\r\n        \"chain\": \"JONO11\",\r\n        \"icon\": \"jono11\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/jono11/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Jono11 Token\",\r\n            \"symbol\": \"JONO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"jono11\",\r\n        \"chainId\": 20765,\r\n        \"networkId\": 20765,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JONO11 Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/jono11\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"C4EI\",\r\n        \"chain\": \"C4EI\",\r\n        \"rpc\": [\r\n            \"https://rpc.c4ei.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://play.google.com/store/apps/details?id=net.c4ei.fps2\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"C4EI\",\r\n            \"symbol\": \"C4EI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://c4ei.net\",\r\n        \"shortName\": \"c4ei\",\r\n        \"chainId\": 21004,\r\n        \"networkId\": 21004,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"C4EI sirato\",\r\n                \"url\": \"https://exp.c4ei.net\",\r\n                \"icon\": \"c4ei\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"All About Healthy\",\r\n        \"chain\": \"AAH\",\r\n        \"rpc\": [\r\n            \"https://rpc.c4ex.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://t.me/c4eiAirdrop\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AAH\",\r\n            \"symbol\": \"AAH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://c4ex.net\",\r\n        \"shortName\": \"aah\",\r\n        \"chainId\": 21133,\r\n        \"networkId\": 21133,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AAH Blockscout\",\r\n                \"url\": \"https://exp.c4ex.net\",\r\n                \"icon\": \"aah\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LiquidLayer Mainnet\",\r\n        \"chain\": \"LiquidLayer\",\r\n        \"icon\": \"lila\",\r\n        \"rpc\": [\r\n            \"https://mainnet.liquidlayer.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LiquidLayer\",\r\n            \"symbol\": \"LILA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan.liquidlayer.network\",\r\n        \"shortName\": \"LILA\",\r\n        \"chainId\": 25186,\r\n        \"networkId\": 25186,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LiquidLayer Mainnet Explorer\",\r\n                \"url\": \"https://scan.liquidlayer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AlveyChain Testnet\",\r\n        \"chain\": \"tALV\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.alvey.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.alveytestnet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AlveyCoin Testnet\",\r\n            \"symbol\": \"tALV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alveychain.com/\",\r\n        \"shortName\": \"talv\",\r\n        \"chainId\": 25839,\r\n        \"networkId\": 25839,\r\n        \"icon\": \"alveychain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AlveyScan Testnet\",\r\n                \"url\": \"https://alveytestnet.com\",\r\n                \"icon\": \"alveychain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GUNZ Testnet\",\r\n        \"chain\": \"tGUN\",\r\n        \"rpc\": [\r\n            \"https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GUN\",\r\n            \"symbol\": \"GUN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"guntestnet\",\r\n        \"infoURL\": \"https://gunbygunz.com\",\r\n        \"shortName\": \"Stork\",\r\n        \"chainId\": 49321,\r\n        \"networkId\": 49321,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.gunzscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DOID\",\r\n        \"chain\": \"DOID\",\r\n        \"rpc\": [\r\n            \"https://rpc.doid.tech\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOID\",\r\n            \"symbol\": \"DOID\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://doid.tech\",\r\n        \"shortName\": \"DOID\",\r\n        \"chainId\": 53277,\r\n        \"networkId\": 53277,\r\n        \"icon\": \"doid\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DOID Scan\",\r\n                \"url\": \"https://scan.doid.tech\",\r\n                \"icon\": \"doid\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DOID Testnet\",\r\n        \"chain\": \"DOID\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.doid.tech\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOID\",\r\n            \"symbol\": \"DOID\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://doid.tech\",\r\n        \"shortName\": \"doidTestnet\",\r\n        \"chainId\": 56797,\r\n        \"networkId\": 56797,\r\n        \"icon\": \"doid\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DOID Testnet Scan\",\r\n                \"url\": \"https://scan.testnet.doid.tech\",\r\n                \"icon\": \"doid\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vanguard\",\r\n        \"title\": \"Vanar Testnet Vanguard\",\r\n        \"chain\": \"VANAR\",\r\n        \"rpc\": [\r\n            \"https://rpc-vanguard.vanarchain.com\",\r\n            \"wss://ws-vanguard.vanarchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.vanarchain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vanguard Vanry\",\r\n            \"symbol\": \"VG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://vanarchain.com\",\r\n        \"shortName\": \"vanguard\",\r\n        \"chainId\": 78600,\r\n        \"networkId\": 78600,\r\n        \"icon\": \"vanguard\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vanguard Explorer\",\r\n                \"url\": \"https://explorer-vanguard.vanarchain.com\",\r\n                \"icon\": \"vanguard\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hizoco mainnet\",\r\n        \"chain\": \"HZC\",\r\n        \"icon\": \"hizoco\",\r\n        \"rpc\": [\r\n            \"https://hizoco.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hizoco\",\r\n            \"symbol\": \"HZC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://hizoco.net\",\r\n        \"shortName\": \"hzc\",\r\n        \"chainId\": 80096,\r\n        \"networkId\": 80096,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://hizoco.net:38443\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blast\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://blast.blockpi.network/v1/rpc/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blast.io/\",\r\n        \"shortName\": \"blastmainnet\",\r\n        \"chainId\": 81457,\r\n        \"networkId\": 81457,\r\n        \"icon\": \"blast\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MetaDAP Enterprise Mainnet\",\r\n        \"title\": \"MetaDAP Enterprise Mainnet\",\r\n        \"chain\": \"MetaDAP\",\r\n        \"icon\": \"metadap\",\r\n        \"faucets\": [],\r\n        \"rpc\": [\r\n            \"https://rpc.chain.metadap.io\",\r\n            \"wss://rpc-ws.chain.metadap.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DAP\",\r\n            \"symbol\": \"DAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metadap.io/\",\r\n        \"shortName\": \"MetaDAP\",\r\n        \"chainId\": 91120,\r\n        \"networkId\": 91120,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaDAP Enterprise Mainnet explorer\",\r\n                \"url\": \"https://explorer.chain.metadap.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LiquidLayer Testnet\",\r\n        \"chain\": \"LILA\",\r\n        \"icon\": \"lila\",\r\n        \"rpc\": [\r\n            \"https://testnet.liquidlayer.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://claim.liquidlayer.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LiquidLayer Testnet\",\r\n            \"symbol\": \"LILA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-scan.liquidlayer.network\",\r\n        \"shortName\": \"tLILA\",\r\n        \"chainId\": 93572,\r\n        \"networkId\": 93572,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LiquidLayer Testnet Explorer\",\r\n                \"url\": \"https://testnet-scan.liquidlayer.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Masa Testnet\",\r\n        \"chain\": \"MASA\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/masatestne/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Masa Token\",\r\n            \"symbol\": \"MASA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://masa.finance\",\r\n        \"shortName\": \"masa\",\r\n        \"chainId\": 103454,\r\n        \"networkId\": 103454,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Masa Testnet Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/masatestnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaDAP Enterprise Testnet\",\r\n        \"title\": \"MetaDAP Enterprise Testnet\",\r\n        \"chain\": \"MetaDAP\",\r\n        \"icon\": \"metadap\",\r\n        \"faucets\": [],\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.chain.metadap.io\",\r\n            \"wss://rpc-ws.testnet.chain.metadap.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DAP\",\r\n            \"symbol\": \"DAP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metadap.io/\",\r\n        \"shortName\": \"MetaDAP-T\",\r\n        \"chainId\": 119139,\r\n        \"networkId\": 119139,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaDAP Enterprise Testnet explorer\",\r\n                \"url\": \"https://explorer.testnet.chain.metadap.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko (Alpha-2 Testnet)\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"deprecated\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.a2.taiko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"taiko-a2\",\r\n        \"chainId\": 167004,\r\n        \"networkId\": 167004,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.a2.taiko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko Grimsvotn L2\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"deprecated\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.taiko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"taiko-l2\",\r\n        \"chainId\": 167005,\r\n        \"networkId\": 167005,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.test.taiko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko Eldfell L3\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"deprecated\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.l3test.taiko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"taiko-l3\",\r\n        \"chainId\": 167006,\r\n        \"networkId\": 167006,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.l3test.taiko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitlayer Testnet\",\r\n        \"chain\": \"Bitlayer\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.bitlayer.org\",\r\n            \"wss://testnet-ws.bitlayer.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.bitlayer.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.bitlayer.org/\",\r\n        \"shortName\": \"Bitlayer\",\r\n        \"chainId\": 200810,\r\n        \"networkId\": 200810,\r\n        \"slip44\": 1,\r\n        \"icon\": \"bitlayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bitlayer testnet scan\",\r\n                \"url\": \"https://testnet-scan.bitlayer.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bloom Genesis Testnet\",\r\n        \"chain\": \"Bloom\",\r\n        \"icon\": \"bloom\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.bloomgenesis.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.bloomgenesis.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bloom\",\r\n            \"symbol\": \"BGBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bloomgenesis.com\",\r\n        \"shortName\": \"BGBC-Testnet\",\r\n        \"chainId\": 323213,\r\n        \"networkId\": 323213,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bloom Genesis Testnet\",\r\n                \"url\": \"https://testnet.bloomgenesis.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bloom Genesis Mainnet\",\r\n        \"chain\": \"Bloom\",\r\n        \"icon\": \"bloom\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.bloomgenesis.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bloom\",\r\n            \"symbol\": \"BGBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bloomgenesis.com\",\r\n        \"shortName\": \"BGBC\",\r\n        \"chainId\": 333313,\r\n        \"networkId\": 333313,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bloom Genesis Mainnet\",\r\n                \"url\": \"https://explorer.bloomgenesis.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Syndr L3 Sepolia\",\r\n        \"title\": \"Syndr L3 Sepolia Rollup Testnet\",\r\n        \"chain\": \"SYNDRSEPOLIA\",\r\n        \"rpc\": [\r\n            \"https://sepolia.syndr.com/http\",\r\n            \"wss://sepolia.syndr.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://syndr.com\",\r\n        \"shortName\": \"syndr\",\r\n        \"chainId\": 444444,\r\n        \"networkId\": 444444,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Syndr L3 Sepolia Testnet Explorer\",\r\n                \"url\": \"https://sepolia-explorer.syndr.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia-bridge.syndr.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Sei Devnet\",\r\n        \"chain\": \"Sei\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc-arctic-1.sei-apis.com\",\r\n            \"https://evm-rpc.arctic-1.seinetwork.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sei-faucet.nima.enterprises\",\r\n            \"https://sei-evm.faucetme.pro\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sei\",\r\n            \"symbol\": \"SEI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sei.io\",\r\n        \"shortName\": \"sei-devnet\",\r\n        \"chainId\": 713715,\r\n        \"networkId\": 713715,\r\n        \"icon\": \"sei\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Seistream\",\r\n                \"url\": \"https://seistream.app\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Seitrace\",\r\n                \"url\": \"https://seitrace.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Jono12 Subnet\",\r\n        \"chain\": \"JONO12\",\r\n        \"icon\": \"jono12\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/jono12/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Jono12 Token\",\r\n            \"symbol\": \"JONO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"jono12\",\r\n        \"chainId\": 955081,\r\n        \"networkId\": 955081,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JONO12 Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/jono12\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Nebula Hub Testnet\",\r\n        \"title\": \"SKALE Nebula Hub Testnet\",\r\n        \"chain\": \"lanky-ill-funny-testnet\",\r\n        \"icon\": \"nebula\",\r\n        \"rpc\": [\r\n            \"https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet\",\r\n            \"wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.sfuelstation.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nebulachain.io/\",\r\n        \"shortName\": \"nebula-testnet\",\r\n        \"chainId\": 37084624,\r\n        \"networkId\": 37084624,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plume Testnet\",\r\n        \"title\": \"Plume Sepolia Rollup Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://plume-testnet.rpc.caldera.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plume Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.plumenetwork.xyz/\",\r\n        \"shortName\": \"plume-testnet\",\r\n        \"chainId\": 161221135,\r\n        \"networkId\": 161221135,\r\n        \"slip44\": 1,\r\n        \"icon\": \"plume\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://plume-testnet.explorer.caldera.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://plume-testnet.calderabridge.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Ancient8\",\r\n        \"chain\": \"Ancient8\",\r\n        \"icon\": \"ancient8\",\r\n        \"rpc\": [\r\n            \"https://rpc.ancient8.gg\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ancient8.gg/\",\r\n        \"shortName\": \"ancient8\",\r\n        \"chainId\": 888888888,\r\n        \"networkId\": 888888888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ancient8 Explorer\",\r\n                \"url\": \"https://scan.ancient8.gg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Calypso Hub Testnet\",\r\n        \"title\": \"SKALE Calypso Hub Testnet\",\r\n        \"chain\": \"giant-half-dual-testnet\",\r\n        \"icon\": \"calypso\",\r\n        \"rpc\": [\r\n            \"https://testnet.skalenodes.com/v1/giant-half-dual-testnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.sfuelstation.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://calypsohub.network/\",\r\n        \"shortName\": \"calypso-testnet\",\r\n        \"chainId\": 974399131,\r\n        \"networkId\": 974399131,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://giant-half-dual-testnet.explorer.testnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Titan Hub Testnet\",\r\n        \"title\": \"SKALE Titan Hub Testnet\",\r\n        \"chain\": \"aware-fake-trim-testnet\",\r\n        \"icon\": \"titan\",\r\n        \"rpc\": [\r\n            \"https://testnet.skalenodes.com/v1/aware-fake-trim-testnet\",\r\n            \"wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.sfuelstation.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"titan-testnet\",\r\n        \"chainId\": 1020352220,\r\n        \"networkId\": 1020352220,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PowerGold\",\r\n        \"chain\": \"NEAR\",\r\n        \"rpc\": [\r\n            \"https://powergold.aurora.dev\"\r\n        ],\r\n        \"icon\": \"powergold\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.powergold.tech\",\r\n        \"shortName\": \"powergold\",\r\n        \"chainId\": 1313161560,\r\n        \"networkId\": 1313161560,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PowerGold explorer\",\r\n                \"url\": \"https://explorer.powergold.aurora.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SKALE Europa Hub Testnet\",\r\n        \"title\": \"SKALE Europa Hub Testnet\",\r\n        \"chain\": \"juicy-low-small-testnet\",\r\n        \"icon\": \"europa\",\r\n        \"rpc\": [\r\n            \"https://testnet.skalenodes.com/v1/juicy-low-small-testnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.sfuelstation.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sFUEL\",\r\n            \"symbol\": \"sFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://europahub.network/\",\r\n        \"shortName\": \"europa-testnet\",\r\n        \"chainId\": 1444673419,\r\n        \"networkId\": 1444673419,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://juicy-low-small-testnet.explorer.testnet.skalenodes.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GitSwarm Test Network\",\r\n        \"title\": \"GitSwarm Test Network\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"gitswarm\",\r\n        \"rpc\": [\r\n            \"https://gitswarm.com:2096\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GitSwarm Ether\",\r\n            \"symbol\": \"GS-ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gitswarm.com/\",\r\n        \"shortName\": \"GS-ETH\",\r\n        \"chainId\": 28872323069,\r\n        \"networkId\": 28872323069,\r\n        \"slip44\": 1,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Kakarot Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"kakarot\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kakarot.org\",\r\n        \"shortName\": \"kkrt-sepolia\",\r\n        \"chainId\": 107107114116,\r\n        \"networkId\": 107107114116,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"WDC Chain\",\r\n        \"chainId\": 999999,\r\n        \"shortName\": \"WDC\",\r\n        \"chain\": \"WDC\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 999999,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"World\",\r\n            \"symbol\": \"WORLD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.worldcoin.group\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WDCScan\",\r\n                \"url\": \"https://scan.worldcoin.group\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1709901010969.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1709900938585.png\",\r\n            \"color_chain_bg\": \"0x110044\",\r\n            \"color_chain_text\": \"0x15cad3\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1709900563540.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1709900974713.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Hoo Smart Chain Testnet\",\r\n        \"chain\": \"HSC\",\r\n        \"network\": \"testnet\",\r\n        \"rpc\": [\r\n            \"https://http-testnet.hoosmartchain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.hscscan.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HOO\",\r\n            \"symbol\": \"HOO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.hoosmartchain.com\",\r\n        \"shortName\": \"HSC\",\r\n        \"chainId\": 170,\r\n        \"networkId\": 170,\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/1.png\",\r\n            \"ic_chain_unselect\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/0.png\",\r\n            \"ic_chain_unselect_dark\": \"https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/2.png\",\r\n            \"color_chain_bg\": \"0x00C0AB\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"EtherLite Chain\",\r\n        \"chainId\": 111,\r\n        \"shortName\": \"ETL\",\r\n        \"chain\": \"EtherLite\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 111,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EtherLite Coin\",\r\n            \"symbol\": \"ETL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.etherlite.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://etherlite.org/faucets\"\r\n        ],\r\n        \"infoURL\": \"https://forum.etherlite.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Namefi Chain Mainnet\",\r\n        \"chain\": \"NFIC\",\r\n        \"rpc\": [\r\n            \"https://rpc.chain.namefi.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Namefi Coin\",\r\n            \"symbol\": \"NFIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://namefi.io/\",\r\n        \"shortName\": \"nfic\",\r\n        \"chainId\": 132,\r\n        \"networkId\": 132\r\n    },\r\n    {\r\n        \"name\": \"HashKey Chain Testnet\",\r\n        \"title\": \"HashKey Chain Testnet\",\r\n        \"chain\": \"HashKey Chain Testnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HashKey EcoPoints\",\r\n            \"symbol\": \"HSK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hashkey.cloud\",\r\n        \"shortName\": \"HSKT\",\r\n        \"chainId\": 133,\r\n        \"networkId\": 133,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"EternalCoin Mainnet\",\r\n        \"chain\": \"Eter\",\r\n        \"icon\": \"eternal\",\r\n        \"rpc\": [\r\n            \"https://mainnet.eternalcoin.io/v1\",\r\n            \"ws://mainnet.eternalcoin.io/v1/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eternal\",\r\n            \"symbol\": \"Eter\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eternalcoin.io\",\r\n        \"shortName\": \"Eter\",\r\n        \"chainId\": 140,\r\n        \"networkId\": 140\r\n    },\r\n    {\r\n        \"name\": \"SoraAI Testnet\",\r\n        \"chain\": \"SETH\",\r\n        \"icon\": \"ethereum\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.soraai.bot\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SoraETH\",\r\n            \"symbol\": \"SETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://soraai.bot\",\r\n        \"shortName\": \"SETH\",\r\n        \"chainId\": 145,\r\n        \"networkId\": 145,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.soraai.bot\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.soraai.bot\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Flag Mainnet\",\r\n        \"chain\": \"Flag\",\r\n        \"icon\": \"flag\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.flagscan.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flag\",\r\n            \"symbol\": \"FLAG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://flagscan.xyz\",\r\n        \"shortName\": \"FLAG\",\r\n        \"chainId\": 147,\r\n        \"networkId\": 147,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Flag Mainnet Explorer\",\r\n                \"url\": \"https://flagscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Roburna Mainnet\",\r\n        \"chain\": \"RBA\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://dataseed.roburna.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Roburna\",\r\n            \"symbol\": \"RBA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.roburna.com/\",\r\n        \"shortName\": \"rba\",\r\n        \"chainId\": 158,\r\n        \"networkId\": 158,\r\n        \"icon\": \"roburna\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rbascan Explorer\",\r\n                \"url\": \"https://rbascan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Roburna Testnet\",\r\n        \"chain\": \"RBAT\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://preseed-testnet-1.roburna.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Roburna\",\r\n            \"symbol\": \"RBAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.roburna.com/\",\r\n        \"shortName\": \"rbat\",\r\n        \"chainId\": 159,\r\n        \"networkId\": 159,\r\n        \"icon\": \"roburna\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rbascan Testnet Explorer\",\r\n                \"url\": \"https://testnet.rbascan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Omni Testnet\",\r\n        \"chain\": \"Omni\",\r\n        \"status\": \"active\",\r\n        \"rpc\": [\r\n            \"https://testnet.omni.network\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Omni\",\r\n            \"symbol\": \"OMNI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.omni.network\",\r\n        \"shortName\": \"omni_testnet\",\r\n        \"chainId\": 164,\r\n        \"networkId\": 164,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Omni X-Explorer\",\r\n                \"url\": \"https://explorer.testnet.omni.network\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Omni EVM Explorer on Blockscout\",\r\n                \"url\": \"https://omni-testnet.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Omni EVM Explorer on Routescan\",\r\n                \"url\": \"https://testnet.omniscan.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Omni\",\r\n        \"chain\": \"Omni\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Omni\",\r\n            \"symbol\": \"OMNI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.omni.network/\",\r\n        \"shortName\": \"omni\",\r\n        \"chainId\": 166,\r\n        \"networkId\": 166,\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"DC Mainnet\",\r\n        \"chain\": \"dcchain\",\r\n        \"icon\": \"dcchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.dcnetio.cloud\",\r\n            \"wss://ws.dcnetio.cloud\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DC Native Token\",\r\n            \"symbol\": \"DCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dcnetio.cloud\",\r\n        \"shortName\": \"dcchain\",\r\n        \"chainId\": 176,\r\n        \"networkId\": 176,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dcscan\",\r\n                \"url\": \"https://exp.dcnetio.cloud\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Waterfall Network\",\r\n        \"chain\": \"Waterfall Network\",\r\n        \"rpc\": [\r\n            \"https://rpc.waterfall.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WATER\",\r\n            \"symbol\": \"WATER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://waterfall.network\",\r\n        \"shortName\": \"water\",\r\n        \"chainId\": 181,\r\n        \"networkId\": 181,\r\n        \"icon\": \"waterfall-main\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Mint Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.mintchain.io\",\r\n            \"https://global.rpc.mintchain.io\",\r\n            \"https://asia.rpc.mintchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.mintchain.io\",\r\n        \"shortName\": \"mint\",\r\n        \"chainId\": 185,\r\n        \"networkId\": 185,\r\n        \"icon\": \"mint\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.mintchain.io\",\r\n                \"icon\": \"mint\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"FileFileGo\",\r\n        \"chain\": \"FFG\",\r\n        \"icon\": \"ffgIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.filefilego.com/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FFG\",\r\n            \"symbol\": \"FFG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filefilego.com\",\r\n        \"shortName\": \"ffg\",\r\n        \"chainId\": 191,\r\n        \"networkId\": 191\r\n    },\r\n    {\r\n        \"name\": \"X Layer Mainnet\",\r\n        \"chain\": \"X Layer\",\r\n        \"rpc\": [\r\n            \"https://rpc.xlayer.tech\",\r\n            \"https://xlayerrpc.okx.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"X Layer Global Utility Token\",\r\n            \"symbol\": \"OKB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://www.okx.com/xlayer\",\r\n        \"shortName\": \"okb\",\r\n        \"chainId\": 196,\r\n        \"networkId\": 196,\r\n        \"icon\": \"xlayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OKLink\",\r\n                \"url\": \"https://www.oklink.com/xlayer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Edgeless Testnet\",\r\n        \"chain\": \"EdgelessTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.edgeless.network/http\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Edgeless Wrapped Eth\",\r\n            \"symbol\": \"EwEth\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://edgeless.network\",\r\n        \"shortName\": \"edgeless-testnet\",\r\n        \"chainId\": 202,\r\n        \"networkId\": 202,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Edgeless Explorer\",\r\n                \"url\": \"https://testnet.explorer.edgeless.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"B2 Hub Mainnet\",\r\n        \"chain\": \"B2\",\r\n        \"rpc\": [\r\n            \"https://hub-rpc.bsquared.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BSquared Token\",\r\n            \"symbol\": \"B2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bsquared.network\",\r\n        \"shortName\": \"B2Hub-mainnet\",\r\n        \"chainId\": 213,\r\n        \"networkId\": 213,\r\n        \"icon\": \"bsquare\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"B2 Hub Mainnet Explorer\",\r\n                \"url\": \"https://hub-explorer.bsquared.network\",\r\n                \"icon\": \"bsquare\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"B2 Mainnet\",\r\n        \"title\": \"B2 Mainnet\",\r\n        \"chain\": \"B2\",\r\n        \"rpc\": [\r\n            \"https://mainnet.b2-rpc.com\",\r\n            \"https://rpc.bsquared.network\",\r\n            \"https://b2-mainnet.alt.technology\",\r\n            \"https://b2-mainnet-public.s.chainbase.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bsquared.network\",\r\n        \"shortName\": \"B2-mainnet\",\r\n        \"chainId\": 223,\r\n        \"networkId\": 223,\r\n        \"icon\": \"bsquare\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.bsquared.network\",\r\n                \"icon\": \"bsquare\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-213\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://www.bsquared.network/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mind Network Mainnet\",\r\n        \"chain\": \"FHE\",\r\n        \"rpc\": [\r\n            \"https://rpc_mainnet.mindnetwork.xyz\",\r\n            \"wss://rpc_mainnet.mindnetwork.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FHE\",\r\n            \"symbol\": \"FHE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mindnetwork.xyz\",\r\n        \"shortName\": \"fhe\",\r\n        \"chainId\": 228,\r\n        \"networkId\": 228\r\n    },\r\n    {\r\n        \"name\": \"Blast Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"blastIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.blastblockchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.blastblockchain.com\",\r\n        \"shortName\": \"blast\",\r\n        \"chainId\": 238,\r\n        \"networkId\": 238,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blast Mainnet\",\r\n                \"url\": \"https://scan.blastblockchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Neura\",\r\n        \"title\": \"Neura Mainnet\",\r\n        \"chain\": \"NEURA\",\r\n        \"icon\": \"neura\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ankr\",\r\n            \"symbol\": \"ANKR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.neuraprotocol.io/\",\r\n        \"shortName\": \"neura\",\r\n        \"chainId\": 266,\r\n        \"networkId\": 266,\r\n        \"status\": \"incubating\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Neura Testnet\",\r\n        \"title\": \"Neura Testnet\",\r\n        \"chain\": \"NEURA\",\r\n        \"icon\": \"neura\",\r\n        \"rpc\": [\r\n            \"https://rpc.ankr.com/neura_testnet\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.neuraprotocol.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Ankr\",\r\n            \"symbol\": \"ANKR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.neuraprotocol.io/\",\r\n        \"shortName\": \"tneura\",\r\n        \"chainId\": 267,\r\n        \"networkId\": 267,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ankrscan-neura\",\r\n                \"url\": \"https://testnet.explorer.neuraprotocol.io\",\r\n                \"icon\": \"neura\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.neura-testnet.ankr.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\",\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"Neura Devnet\",\r\n        \"title\": \"Neura Devnet\",\r\n        \"chain\": \"NEURA\",\r\n        \"icon\": \"neura\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Devnet Ankr\",\r\n            \"symbol\": \"ANKR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.neuraprotocol.io/\",\r\n        \"shortName\": \"dneura\",\r\n        \"chainId\": 268,\r\n        \"networkId\": 268,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\",\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"xFair.AI Mainnet\",\r\n        \"chain\": \"FAI\",\r\n        \"rpc\": [\r\n            \"https://rpc_mainnet.xfair.ai\",\r\n            \"wss://rpc_mainnet.xfair.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FAI\",\r\n            \"symbol\": \"FAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://xfair.ai\",\r\n        \"shortName\": \"fai\",\r\n        \"chainId\": 278,\r\n        \"networkId\": 278\r\n    },\r\n    {\r\n        \"name\": \"Cronos zkEVM Testnet\",\r\n        \"chain\": \"CronosZkEVMTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.zkevm.cronos.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://zkevm.cronos.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cronos zkEVM Test Coin\",\r\n            \"symbol\": \"zkTCRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs-zkevm.cronos.org\",\r\n        \"shortName\": \"zkTCRO\",\r\n        \"chainId\": 282,\r\n        \"networkId\": 282,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cronos zkEVM Testnet Explorer\",\r\n                \"url\": \"https://explorer.zkevm.cronos.org/testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"zkCandy Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.rpc.zkcandy.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zkcandy.io/\",\r\n        \"shortName\": \"zkcandy-sepolia\",\r\n        \"chainId\": 302,\r\n        \"networkId\": 302,\r\n        \"icon\": \"zkcandy\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zkCandy Block Explorer\",\r\n                \"url\": \"https://sepolia.explorer.zkcandy.io\",\r\n                \"icon\": \"zkcandy\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia.bridge.zkcandy.io/\"\r\n                }\r\n            ]\r\n        },\r\n        \"redFlags\": [\r\n            \"reusedChainId\"\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Furtheon\",\r\n        \"chain\": \"Furtheon Network\",\r\n        \"rpc\": [\r\n            \"https://rpc.furtheon.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Furtheon\",\r\n            \"symbol\": \"FTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://furtheon.org/\",\r\n        \"shortName\": \"furtheon\",\r\n        \"chainId\": 308,\r\n        \"networkId\": 308,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"furthscan\",\r\n                \"url\": \"http://furthscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CamDL Testnet\",\r\n        \"chain\": \"CADL\",\r\n        \"rpc\": [\r\n            \"https://rpc1.testnet.camdl.gov.kh/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.camdl.gov.kh/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CADL\",\r\n            \"symbol\": \"CADL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://camdl.gov.kh/\",\r\n        \"shortName\": \"camdl-testnet\",\r\n        \"chainId\": 395,\r\n        \"networkId\": 395,\r\n        \"icon\": \"camdl\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CamDL Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.camdl.gov.kh\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Near Mainnet\",\r\n        \"chain\": \"NEAR\",\r\n        \"rpc\": [],\r\n        \"icon\": \"near\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NEAR\",\r\n            \"symbol\": \"NEAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://near.org/\",\r\n        \"shortName\": \"near\",\r\n        \"chainId\": 397,\r\n        \"networkId\": 397,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Near Blocks\",\r\n                \"url\": \"https://nearblocks.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Near Testnet\",\r\n        \"chain\": \"NEAR\",\r\n        \"rpc\": [],\r\n        \"icon\": \"near\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet NEAR\",\r\n            \"symbol\": \"NEAR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aurora.dev\",\r\n        \"shortName\": \"near-testnet\",\r\n        \"chainId\": 398,\r\n        \"networkId\": 398,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Near blocks\",\r\n                \"url\": \"https://testnet.nearblocks.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Syndr L3\",\r\n        \"chainId\": 404,\r\n        \"shortName\": \"syndr-l3\",\r\n        \"title\": \"Syndr L3 Rollup\",\r\n        \"chain\": \"SYNDR\",\r\n        \"networkId\": 404,\r\n        \"icon\": \"syndr\",\r\n        \"rpc\": [\r\n            \"https://rpc.syndr.com\",\r\n            \"wss://rpc.syndr.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://syndr.com\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Syndr L3 Explorer\",\r\n                \"url\": \"https://explorer.syndr.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.syndr.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Boyaa Mainnet\",\r\n        \"chain\": \"BYC\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.mainnet.boyaa.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Boyaa mainnet native coin\",\r\n            \"symbol\": \"BYC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boyaa.network\",\r\n        \"shortName\": \"BYC\",\r\n        \"chainId\": 434,\r\n        \"networkId\": 434,\r\n        \"icon\": \"boyaanetwork\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Boyaa explorer\",\r\n                \"url\": \"https://explorer.mainnet.boyaa.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpTrust Mainnet\",\r\n        \"chain\": \"OpTrust\",\r\n        \"rpc\": [\r\n            \"https://rpc.optrust.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BSC\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://optrust.io\",\r\n        \"shortName\": \"optrust\",\r\n        \"chainId\": 537,\r\n        \"networkId\": 537,\r\n        \"icon\": \"optrust\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OpTrust explorer\",\r\n                \"url\": \"https://scan.optrust.io\",\r\n                \"icon\": \"optrust\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Testnet\",\r\n        \"chain\": \"Flow\",\r\n        \"rpc\": [\r\n            \"https://testnet.evm.nodes.onflow.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.onflow.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FLOW\",\r\n            \"symbol\": \"FLOW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://developers.flow.com/evm/about\",\r\n        \"shortName\": \"flow-testnet\",\r\n        \"chainId\": 545,\r\n        \"networkId\": 545,\r\n        \"icon\": \"flowevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Flow Diver\",\r\n                \"url\": \"https://testnet.flowdiver.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filenova Mainnet\",\r\n        \"chain\": \"Filenova\",\r\n        \"rpc\": [\r\n            \"https://rpc.filenova.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Filecoin\",\r\n            \"symbol\": \"FIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filenova.org\",\r\n        \"shortName\": \"filenova\",\r\n        \"chainId\": 579,\r\n        \"networkId\": 579,\r\n        \"icon\": \"filenova\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"filenova explorer\",\r\n                \"url\": \"https://scan.filenova.org\",\r\n                \"icon\": \"filenova\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Previewnet\",\r\n        \"chain\": \"Flow\",\r\n        \"rpc\": [\r\n            \"https://previewnet.evm.nodes.onflow.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://previewnet-faucet.onflow.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FLOW\",\r\n            \"symbol\": \"FLOW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://developers.flow.com/evm/about\",\r\n        \"shortName\": \"flow-previewnet\",\r\n        \"chainId\": 646,\r\n        \"networkId\": 646,\r\n        \"icon\": \"flowevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Flow Diver\",\r\n                \"url\": \"https://previewnet.flowdiver.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UltronSmartchain\",\r\n        \"chain\": \"UltronSmartchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.ultronsmartchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ulc\",\r\n            \"symbol\": \"ULC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ultronsmartchain.io\",\r\n        \"shortName\": \"ultronsmartchain\",\r\n        \"chainId\": 662,\r\n        \"networkId\": 662,\r\n        \"icon\": \"ultronsmartchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ultronsmartchain explorer\",\r\n                \"url\": \"https://scan.ultronsmartchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Redstone\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.redstonechain.com\",\r\n            \"wss://rpc.redstonechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://redstone.xyz\",\r\n        \"shortName\": \"redstone\",\r\n        \"chainId\": 690,\r\n        \"networkId\": 690,\r\n        \"icon\": \"redstone\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.redstone.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://redstone.xyz/deposit\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mainnet\",\r\n        \"chain\": \"Flow\",\r\n        \"rpc\": [\r\n            \"https://mainnet.evm.nodes.onflow.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FLOW\",\r\n            \"symbol\": \"FLOW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://developers.flow.com/evm/about\",\r\n        \"shortName\": \"flow-mainnet\",\r\n        \"chainId\": 747,\r\n        \"networkId\": 747,\r\n        \"icon\": \"flowevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Flow Diver\",\r\n                \"url\": \"https://flowdiver.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Runic Chain Testnet\",\r\n        \"chain\": \"Runic\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.runic.build\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.runic.build\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"rBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://runic.build\",\r\n        \"shortName\": \"runic-testnet\",\r\n        \"chainId\": 822,\r\n        \"networkId\": 822,\r\n        \"status\": \"active\",\r\n        \"icon\": \"runic-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RunicScan\",\r\n                \"url\": \"https://scan.runic.build\",\r\n                \"icon\": \"runic-testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MAXI Chain Testnet\",\r\n        \"chain\": \"MAXI\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.maxi.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.maxi.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAXICOIN\",\r\n            \"symbol\": \"MAXI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://maxi.network\",\r\n        \"shortName\": \"maxi-testnet\",\r\n        \"chainId\": 898,\r\n        \"networkId\": 898,\r\n        \"icon\": \"maxi\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Maxi Chain Testnet Explorer\",\r\n                \"url\": \"https://testnet.maxi.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TAPROOT Mainnet\",\r\n        \"title\": \"TAPROOT Mainnet\",\r\n        \"chain\": \"TAPROOT CHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.taprootchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TBTC\",\r\n            \"symbol\": \"TBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taprootchain.io\",\r\n        \"shortName\": \"TAPROOT-Mainnet\",\r\n        \"chainId\": 911,\r\n        \"networkId\": 911,\r\n        \"icon\": \"taproot\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TAPROOT Scan\",\r\n                \"url\": \"https://scan.taprootchain.io\",\r\n                \"icon\": \"taproot\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EthXY\",\r\n        \"chain\": \"EthXY\",\r\n        \"rpc\": [\r\n            \"https://rpc.ethxy.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Settled EthXY Token\",\r\n            \"symbol\": \"SEXY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"sexy\",\r\n        \"infoURL\": \"https://ethxy.com\",\r\n        \"shortName\": \"sexy\",\r\n        \"chainId\": 969,\r\n        \"networkId\": 969,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EthXY Network Explorer\",\r\n                \"url\": \"https://explorer.ethxy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EthXY Testnet\",\r\n        \"chain\": \"EthXY\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.ethxy.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Settled EthXY Token\",\r\n            \"symbol\": \"SEXY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"sexyTestnet\",\r\n        \"infoURL\": \"https://ethxy.com\",\r\n        \"shortName\": \"sexyTestnet\",\r\n        \"chainId\": 979,\r\n        \"networkId\": 979,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EthXY Testnet Network Explorer\",\r\n                \"url\": \"https://explorer.testnet.ethxy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Jumbochain Mainnet\",\r\n        \"chain\": \"Jumbo\",\r\n        \"rpc\": [\r\n            \"https://rpcpriv.jumbochain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JNFTC\",\r\n            \"symbol\": \"JNFTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://jumbochain.org\",\r\n        \"shortName\": \"Jumboscan\",\r\n        \"chainId\": 1009,\r\n        \"networkId\": 1009,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Jumboscan\",\r\n                \"url\": \"https://jumboscan.jumbochain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rebus Mainnet\",\r\n        \"title\": \"Rebuschain Mainnet\",\r\n        \"chain\": \"REBUS\",\r\n        \"rpc\": [\r\n            \"https://apievm.rebuschain.com/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rebus\",\r\n            \"symbol\": \"REBUS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.rebuschain.com\",\r\n        \"shortName\": \"rebus\",\r\n        \"chainId\": 1011,\r\n        \"networkId\": 1011,\r\n        \"icon\": \"rebus\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rebus EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm.rebuschain.com\",\r\n                \"icon\": \"rebus\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Rebus Cosmos Explorer (ping.pub)\",\r\n                \"url\": \"https://cosmos.rebuschain.com\",\r\n                \"icon\": \"rebus\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IOTA EVM Testnet\",\r\n        \"title\": \"IOTA EVM Testnet\",\r\n        \"chain\": \"IOTA EVM\",\r\n        \"icon\": \"iotaevm\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.evm.testnet.iotaledger.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://evm-toolkit.evm.testnet.iotaledger.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IOTA\",\r\n            \"symbol\": \"IOTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.iota.org\",\r\n        \"shortName\": \"iotaevm-testnet\",\r\n        \"chainId\": 1075,\r\n        \"networkId\": 1075,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.evm.testnet.iotaledger.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"B2 Hub Testnet\",\r\n        \"chain\": \"BSQ\",\r\n        \"rpc\": [\r\n            \"https://testnet-hub-rpc.bsquared.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BSquared Token\",\r\n            \"symbol\": \"B2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bsquared.network\",\r\n        \"shortName\": \"B2Hub-testnet\",\r\n        \"chainId\": 1113,\r\n        \"networkId\": 1113,\r\n        \"icon\": \"bsquare\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"B2 Hub Habitat Testnet Explorer\",\r\n                \"url\": \"https://testnet-hub-explorer.bsquared.network\",\r\n                \"icon\": \"bsquare\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"B2 Testnet\",\r\n        \"title\": \"B2 Testnet\",\r\n        \"chain\": \"Habitat\",\r\n        \"rpc\": [\r\n            \"https://b2-testnet.alt.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bsquared.network\",\r\n        \"shortName\": \"B2-testnet\",\r\n        \"chainId\": 1123,\r\n        \"networkId\": 1123,\r\n        \"icon\": \"bsquare\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-explorer.bsquared.network\",\r\n                \"icon\": \"bsquare\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1113\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lisk\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.api.lisk.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lisk.com\",\r\n        \"shortName\": \"lisk\",\r\n        \"chainId\": 1135,\r\n        \"networkId\": 1135,\r\n        \"slip44\": 134,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.lisk.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Flag Testnet\",\r\n        \"chain\": \"Flag\",\r\n        \"icon\": \"flag\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.flagscan.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.flagscan.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flag Testnet\",\r\n            \"symbol\": \"FLAG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.flagscan.xyz\",\r\n        \"shortName\": \"tFLAG\",\r\n        \"chainId\": 1147,\r\n        \"networkId\": 1147,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Flag Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.flagscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ClubMos Mainnet\",\r\n        \"chain\": \"MOS\",\r\n        \"rpc\": [\r\n            \"https://mainnet.mosscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ClubMos\",\r\n            \"symbol\": \"MOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.mosscan.com\",\r\n        \"shortName\": \"MOS\",\r\n        \"chainId\": 1188,\r\n        \"networkId\": 1188,\r\n        \"icon\": \"clubmos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mosscan\",\r\n                \"url\": \"https://www.mosscan.com\",\r\n                \"icon\": \"clubmos\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SaitaBlockChain(SBC)\",\r\n        \"chain\": \"SaitaBlockChain(SBC)\",\r\n        \"rpc\": [\r\n            \"https://rpc-nodes.saitascan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SaitaBlockChain(SBC)\",\r\n            \"symbol\": \"STC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://saitachain.com\",\r\n        \"shortName\": \"SBC\",\r\n        \"chainId\": 1209,\r\n        \"networkId\": 1209,\r\n        \"icon\": \"SaitaBlockChain(SBC)\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Saitascan explorer\",\r\n                \"url\": \"https://saitascan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"SaitaBlockChain(SBC)\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sei Network\",\r\n        \"chain\": \"Sei\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.sei-apis.com\",\r\n            \"wss://evm-ws.sei-apis.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sei\",\r\n            \"symbol\": \"SEI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sei.io\",\r\n        \"shortName\": \"sei\",\r\n        \"chainId\": 1329,\r\n        \"networkId\": 1329,\r\n        \"icon\": \"seiv2\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Seitrace\",\r\n                \"url\": \"https://seitrace.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ramestta Mainnet\",\r\n        \"chain\": \"Ramestta\",\r\n        \"icon\": \"ramestta\",\r\n        \"rpc\": [\r\n            \"https://blockchain.ramestta.com\",\r\n            \"https://blockchain2.ramestta.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rama\",\r\n            \"symbol\": \"RAMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ramestta.com\",\r\n        \"shortName\": \"RAMA\",\r\n        \"chainId\": 1370,\r\n        \"networkId\": 1370,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ramascan\",\r\n                \"url\": \"https://ramascan.com\",\r\n                \"icon\": \"ramestta\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pingaksha testnet\",\r\n        \"chain\": \"Pingaksha\",\r\n        \"icon\": \"ramestta\",\r\n        \"rpc\": [\r\n            \"https://testnet.ramestta.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rama\",\r\n            \"symbol\": \"tRAMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ramestta.com\",\r\n        \"shortName\": \"tRAMA\",\r\n        \"chainId\": 1377,\r\n        \"networkId\": 1377,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pingaksha\",\r\n                \"url\": \"https://pingaksha.ramascan.com\",\r\n                \"icon\": \"ramestta\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Silicon zkEVM Sepolia Testnet\",\r\n        \"title\": \"Silicon zkEVM Sepolia Testnet\",\r\n        \"chain\": \"Silicon\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"silicon-sepolia-testnet\",\r\n        \"chainId\": 1414,\r\n        \"networkId\": 1414,\r\n        \"icon\": \"silicon\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": []\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"iDos Games Chain Testnet\",\r\n        \"chain\": \"IGC\",\r\n        \"icon\": \"igc-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.idos.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"iDos Games Coin\",\r\n            \"symbol\": \"IGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://idosgames.com/\",\r\n        \"shortName\": \"IGC\",\r\n        \"chainId\": 1499,\r\n        \"networkId\": 1499,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"IGC-Scan\",\r\n                \"url\": \"https://igcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ethereum Inscription Mainnet\",\r\n        \"chain\": \"ETINS\",\r\n        \"rpc\": [\r\n            \"https://rpc.etins.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum Inscription\",\r\n            \"symbol\": \"ETINS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.etins.org\",\r\n        \"shortName\": \"etins\",\r\n        \"chainId\": 1617,\r\n        \"networkId\": 1617,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ethereum Inscription Explorer\",\r\n                \"url\": \"https://explorer.etins.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Doric Network\",\r\n        \"chain\": \"DRC\",\r\n        \"icon\": \"doric\",\r\n        \"rpc\": [\r\n            \"https://mainnet.doric.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Doric Native Token\",\r\n            \"symbol\": \"DRC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://doric.network\",\r\n        \"shortName\": \"DRC\",\r\n        \"chainId\": 1717,\r\n        \"networkId\": 1717,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Doric Explorer\",\r\n                \"url\": \"https://explorer.doric.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Reya Network\",\r\n        \"chain\": \"Reya\",\r\n        \"rpc\": [\r\n            \"https://rpc.reya.network\",\r\n            \"wss://ws.reya.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://reya.network\",\r\n        \"shortName\": \"reya\",\r\n        \"chainId\": 1729,\r\n        \"networkId\": 1729,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Reya Network Explorer\",\r\n                \"url\": \"https://explorer.reya.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metal L2 Testnet\",\r\n        \"chain\": \"Metal L2 Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.metall2.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metall2.com\",\r\n        \"shortName\": \"metall2-testnet\",\r\n        \"chainId\": 1740,\r\n        \"networkId\": 1740,\r\n        \"icon\": \"metal\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.explorer.metall2.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metal L2\",\r\n        \"chain\": \"Metal L2\",\r\n        \"rpc\": [\r\n            \"https://rpc.metall2.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metall2.com\",\r\n        \"shortName\": \"metall2\",\r\n        \"chainId\": 1750,\r\n        \"networkId\": 1750,\r\n        \"icon\": \"metal\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.metall2.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKBase Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rpc.zkbase.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zkbase.org/\",\r\n        \"shortName\": \"zkbase-sepolia\",\r\n        \"chainId\": 1789,\r\n        \"networkId\": 1789,\r\n        \"slip44\": 1,\r\n        \"icon\": \"zkbase\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZKbase Block Explorer\",\r\n                \"url\": \"https://sepolia-explorer.zkbase.app\",\r\n                \"icon\": \"zkbase\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portral.zkbase.app/\"\r\n                }\r\n            ]\r\n        },\r\n        \"redFlags\": [\r\n            \"reusedChainId\"\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UPB CRESCDI Testnet\",\r\n        \"chain\": \"UPBEth\",\r\n        \"rpc\": [\r\n            \"https://testnet.crescdi.pub.ro\"\r\n        ],\r\n        \"infoURL\": \"https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UPBEth\",\r\n            \"symbol\": \"UPBEth\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"UPBEth\",\r\n        \"chainId\": 1918,\r\n        \"networkId\": 1918,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"AIW3 Testnet\",\r\n        \"chain\": \"AIW3\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.aiw3.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aiw3.io/\",\r\n        \"shortName\": \"AIW3-Testnet\",\r\n        \"chainId\": 1956,\r\n        \"networkId\": 1956,\r\n        \"icon\": \"aiw3\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"aiw3 testnet scan\",\r\n                \"url\": \"https://scan-testnet.aiw3.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hubble Exchange\",\r\n        \"chain\": \"Hubblenet\",\r\n        \"icon\": \"hubblenet\",\r\n        \"rpc\": [\r\n            \"https://rpc.hubble.exchange\",\r\n            \"wss://ws-rpc.hubble.exchange\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD Coin\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.hubble.exchange\",\r\n        \"shortName\": \"hubblenet\",\r\n        \"chainId\": 1992,\r\n        \"networkId\": 1992,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"routescan\",\r\n                \"url\": \"https://explorer.hubble.exchange\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sanko\",\r\n        \"chain\": \"Sanko\",\r\n        \"rpc\": [\r\n            \"https://mainnet.sanko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DMT\",\r\n            \"symbol\": \"DMT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sanko.xyz/\",\r\n        \"shortName\": \"Sanko\",\r\n        \"chainId\": 1996,\r\n        \"networkId\": 1996,\r\n        \"icon\": \"sanko\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sanko Explorer\",\r\n                \"url\": \"https://explorer.sanko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Panarchy\",\r\n        \"chain\": \"Panarchy\",\r\n        \"rpc\": [\r\n            \"https://polytopia.org:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GAS\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polytopia.org/\",\r\n        \"shortName\": \"panarchy\",\r\n        \"chainId\": 2013,\r\n        \"networkId\": 1\r\n    },\r\n    {\r\n        \"name\": \"NOW Chain\",\r\n        \"chain\": \"NOW\",\r\n        \"icon\": \"nowchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.nowscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NOW Coin\",\r\n            \"symbol\": \"NOW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nowchain.co\",\r\n        \"shortName\": \"now\",\r\n        \"chainId\": 2014,\r\n        \"networkId\": 2014,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nowscan\",\r\n                \"url\": \"https://nowscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Adiri\",\r\n        \"title\": \"Telcoin Network Testnet\",\r\n        \"chain\": \"TEL\",\r\n        \"icon\": \"telcoin\",\r\n        \"rpc\": [\r\n            \"https://rpc.telcoin.network\",\r\n            \"https://adiri.tel\",\r\n            \"https://node1.telcoin.network\",\r\n            \"https://node2.telcoin.network\",\r\n            \"https://node3.telcoin.network\",\r\n            \"https://node4.telcoin.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://telcoin.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Telcoin\",\r\n            \"symbol\": \"TEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://telcoin.network\",\r\n        \"shortName\": \"tel\",\r\n        \"chainId\": 2017,\r\n        \"networkId\": 2017,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"telscan\",\r\n                \"url\": \"https://telscan.io\",\r\n                \"icon\": \"telcoin\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Edgeless Network\",\r\n        \"chain\": \"Edgeless\",\r\n        \"rpc\": [\r\n            \"https://rpc.edgeless.network/http\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Edgeless Wrapped Eth\",\r\n            \"symbol\": \"EwEth\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://edgeless.network\",\r\n        \"shortName\": \"edgeless\",\r\n        \"chainId\": 2026,\r\n        \"networkId\": 2026,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Edgeless Explorer\",\r\n                \"url\": \"https://explorer.edgeless.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aleph Zero Testnet\",\r\n        \"chain\": \"Aleph Zero Testnet\",\r\n        \"icon\": \"aleph\",\r\n        \"rpc\": [\r\n            \"https://rpc.alephzero-testnet.gelato.digital\",\r\n            \"wss://rpc.alephzero-testnet.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TZERO\",\r\n            \"symbol\": \"TZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.alephzero.org\",\r\n        \"shortName\": \"aleph\",\r\n        \"chainId\": 2039,\r\n        \"networkId\": 2039,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Aleph Zero Testnet\",\r\n                \"url\": \"https://test.azero.dev/#/explorer\",\r\n                \"icon\": \"aleph\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vanar Mainnet\",\r\n        \"title\": \"Vanarchain\",\r\n        \"chain\": \"VANAR\",\r\n        \"rpc\": [\r\n            \"https://rpc.vanarchain.com\",\r\n            \"wss://ws.vanarchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VANRY\",\r\n            \"symbol\": \"VANRY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://vanarchain.com\",\r\n        \"shortName\": \"Vanar\",\r\n        \"chainId\": 2040,\r\n        \"networkId\": 2040,\r\n        \"icon\": \"vanar\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vanar Explorer\",\r\n                \"url\": \"https://explorer.vanarchain.com\",\r\n                \"icon\": \"vanar\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AIW3 Mainnet\",\r\n        \"chain\": \"AIW3\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aiw3.io/\",\r\n        \"shortName\": \"AIW3\",\r\n        \"chainId\": 2045,\r\n        \"networkId\": 2045,\r\n        \"icon\": \"aiw3\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"UCHAIN Mainnet\",\r\n        \"chain\": \"UCHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.uchain.link/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UCASH\",\r\n            \"symbol\": \"UCASH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://u.cash/\",\r\n        \"shortName\": \"uchain\",\r\n        \"chainId\": 2112,\r\n        \"networkId\": 2112,\r\n        \"icon\": \"ucash\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"uchain.info\",\r\n                \"url\": \"https://uchain.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Catena Mainnet\",\r\n        \"chain\": \"CMCX\",\r\n        \"rpc\": [\r\n            \"https://rpc1.catenarpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Catena\",\r\n            \"symbol\": \"CMCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://catena.network\",\r\n        \"shortName\": \"cmcx\",\r\n        \"chainId\": 2121,\r\n        \"networkId\": 2121,\r\n        \"icon\": \"catena\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"catenascan\",\r\n                \"url\": \"https://catenascan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BigShortBets Testnet\",\r\n        \"chain\": \"BIGSB Testnet\",\r\n        \"rpc\": [\r\n            \"https://test-market.bigsb.io\",\r\n            \"wss://test-market.bigsb.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dolarz\",\r\n            \"symbol\": \"Dolarz\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bigshortbets.com/\",\r\n        \"shortName\": \"bigsb_testnet\",\r\n        \"chainId\": 2136,\r\n        \"networkId\": 2136,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polkadot.js\",\r\n                \"url\": \"https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oneness Network\",\r\n        \"chain\": \"Oneness\",\r\n        \"rpc\": [\r\n            \"https://rpc.onenesslabs.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"oneness\",\r\n        \"chainId\": 2140,\r\n        \"networkId\": 2140,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"oneness-mainnet\",\r\n                \"url\": \"https://scan.onenesslabs.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oneness TestNet\",\r\n        \"chain\": \"Oneness-Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.onenesslabs.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"oneness-testnet\",\r\n        \"chainId\": 2141,\r\n        \"networkId\": 2141,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"oneness-testnet\",\r\n                \"url\": \"https://scan.testnet.onenesslabs.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"RSS3 VSL Sepolia Testnet\",\r\n        \"chain\": \"RSS3\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.rss3.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RSS3\",\r\n            \"symbol\": \"RSS3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rss3.io\",\r\n        \"shortName\": \"rss3-testnet\",\r\n        \"chainId\": 2331,\r\n        \"networkId\": 2331,\r\n        \"icon\": \"rss3-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RSS3 VSL Sepolia Testnet Scan\",\r\n                \"url\": \"https://scan.testnet.rss3.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://explorer.testnet.rss3.io/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Atleta Olympia\",\r\n        \"chain\": \"Atleta\",\r\n        \"rpc\": [\r\n            \"wss://testnet-rpc.atleta.network:9944\",\r\n            \"https://testnet-rpc.atleta.network:9944\",\r\n            \"https://testnet-rpc.atleta.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app-olympia.atleta.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Atla\",\r\n            \"symbol\": \"ATLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://atleta.network\",\r\n        \"shortName\": \"atla\",\r\n        \"chainId\": 2340,\r\n        \"networkId\": 2340,\r\n        \"slip44\": 1,\r\n        \"icon\": \"atleta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Atleta Olympia Explorer\",\r\n                \"icon\": \"atleta\",\r\n                \"url\": \"https://blockscout.atleta.network\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Atleta Olympia Polka Explorer\",\r\n                \"icon\": \"atleta\",\r\n                \"url\": \"https://polkadot-explorer.atleta.network/#/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Omnia Chain\",\r\n        \"chain\": \"OMNIA\",\r\n        \"icon\": \"omnia\",\r\n        \"rpc\": [\r\n            \"https://rpc.omniaverse.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.omniaverse.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Omnia\",\r\n            \"symbol\": \"OMNIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.omniaverse.io\",\r\n        \"shortName\": \"omnia\",\r\n        \"chainId\": 2342,\r\n        \"networkId\": 2342,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OmniaVerse Explorer\",\r\n                \"url\": \"https://scan.omniaverse.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Silicon zkEVM\",\r\n        \"title\": \"Silicon zkEVM Mainnet\",\r\n        \"chain\": \"Silicon\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"silicon-zk\",\r\n        \"chainId\": 2355,\r\n        \"networkId\": 2355,\r\n        \"icon\": \"silicon\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Nexis Network Testnet\",\r\n        \"chain\": \"Nexis Network\",\r\n        \"icon\": \"nexis\",\r\n        \"rpc\": [\r\n            \"https://evm-testnet.nexis.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://evm-faucet.nexis.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nexis\",\r\n            \"symbol\": \"NZT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nexis.network/\",\r\n        \"shortName\": \"nzt\",\r\n        \"chainId\": 2370,\r\n        \"networkId\": 2370,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nexis Testnet Explorer\",\r\n                \"url\": \"https://evm-testnet.nexscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"King Of Legends Devnet\",\r\n        \"title\": \"King Of Legends Devnet\",\r\n        \"chain\": \"KOL\",\r\n        \"icon\": \"kol\",\r\n        \"rpc\": [\r\n            \"https://rpc-devnet.kinggamer.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"King Of Legends\",\r\n            \"symbol\": \"KOL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kingoflegends.net/\",\r\n        \"shortName\": \"kol\",\r\n        \"chainId\": 2425,\r\n        \"networkId\": 2425,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"King Of Legends Devnet Explorer\",\r\n                \"url\": \"https://devnet.kingscan.org\",\r\n                \"icon\": \"kol\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"inEVM Mainnet\",\r\n        \"chain\": \"inEVM\",\r\n        \"icon\": \"inevm\",\r\n        \"rpc\": [\r\n            \"https://mainnet.rpc.inevm.com/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Injective\",\r\n            \"symbol\": \"INJ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://inevm.com\",\r\n        \"shortName\": \"inevm\",\r\n        \"chainId\": 2525,\r\n        \"networkId\": 2525,\r\n        \"explorers\": [],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"APEX\",\r\n        \"status\": \"incubating\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://apexlayer.xyz/\",\r\n        \"shortName\": \"apexmainnet\",\r\n        \"chainId\": 2662,\r\n        \"networkId\": 2662,\r\n        \"icon\": \"apexmainnet\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"XR Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://xr-sepolia-testnet.rpc.caldera.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tXR\",\r\n            \"symbol\": \"tXR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xr-one.gitbook.io\",\r\n        \"shortName\": \"txr\",\r\n        \"chainId\": 2730,\r\n        \"networkId\": 2730,\r\n        \"icon\": \"xr\",\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XR Sepolia Explorer\",\r\n                \"url\": \"https://xr-sepolia-testnet.explorer.caldera.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://xr-sepolia-testnet.bridge.caldera.xyz\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Nanon\",\r\n        \"title\": \"Nanon Rollup\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.nanon.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nanon.network\",\r\n        \"shortName\": \"Nanon\",\r\n        \"chainId\": 2748,\r\n        \"networkId\": 2748,\r\n        \"slip44\": 1,\r\n        \"icon\": \"nanon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nanon Rollup Explorer\",\r\n                \"url\": \"https://explorer.nanon.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.nanon.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"GM Network Mainnet\",\r\n        \"chain\": \"GM Network Mainnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gmnetwork.ai\",\r\n        \"shortName\": \"gmnetwork-mainnet\",\r\n        \"chainId\": 2777,\r\n        \"networkId\": 2777,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Morph Holesky\",\r\n        \"title\": \"Morph Holesky Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc-quicknode-holesky.morphl2.io\",\r\n            \"wss://rpc-quicknode-holesky.morphl2.io\",\r\n            \"https://rpc-holesky.morphl2.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://morphl2.io\",\r\n        \"shortName\": \"hmorph\",\r\n        \"chainId\": 2810,\r\n        \"networkId\": 2810,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Morph Holesky Testnet Explorer\",\r\n                \"url\": \"https://explorer-holesky.morphl2.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-holesky.morphl2.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Elux Chain\",\r\n        \"chain\": \"ELUX\",\r\n        \"icon\": \"eluxchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.eluxscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Elux Chain\",\r\n            \"symbol\": \"ELUX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eluxscan.com\",\r\n        \"shortName\": \"ELUX\",\r\n        \"chainId\": 2907,\r\n        \"networkId\": 2907,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://eluxscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HYCHAIN\",\r\n        \"chainId\": 2911,\r\n        \"shortName\": \"hychain\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 2911,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TOPIA\",\r\n            \"symbol\": \"TOPIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.hychain.com/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.hychain.com\",\r\n        \"icon\": \"hychain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.hychain.com\",\r\n                \"icon\": \"hychain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.hychain.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Rebus Testnet\",\r\n        \"title\": \"Rebuschain Testnet\",\r\n        \"chain\": \"REBUS\",\r\n        \"rpc\": [\r\n            \"https://testnet.rebus.money/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rebus\",\r\n            \"symbol\": \"REBUS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.rebuschain.com\",\r\n        \"shortName\": \"rebus-testnet\",\r\n        \"chainId\": 3033,\r\n        \"networkId\": 3033,\r\n        \"icon\": \"rebus\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rebus EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm.testnet.rebus.money\",\r\n                \"icon\": \"rebus\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Rebus Cosmos Explorer (ping.pub)\",\r\n                \"url\": \"https://testnet.rebus.money/rebustestnet\",\r\n                \"icon\": \"rebus\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Movement EVM\",\r\n        \"chain\": \"MOVE\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Move\",\r\n            \"symbol\": \"MOVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://movementlabs.xyz\",\r\n        \"shortName\": \"move\",\r\n        \"chainId\": 3073,\r\n        \"networkId\": 3073,\r\n        \"icon\": \"move\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mevm explorer\",\r\n                \"url\": \"https://explorer.movementlabs.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"SatoshiVM Alpha Mainnet\",\r\n        \"chain\": \"SatoshiVM\",\r\n        \"rpc\": [\r\n            \"https://alpha-rpc-node-http.svmscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.satoshivm.io/\",\r\n        \"shortName\": \"SAVM\",\r\n        \"chainId\": 3109,\r\n        \"networkId\": 3109,\r\n        \"icon\": \"satoshivm\"\r\n    },\r\n    {\r\n        \"name\": \"SatoshiVM Testnet\",\r\n        \"chain\": \"SatoshiVM\",\r\n        \"rpc\": [\r\n            \"https://test-rpc-node-http.svmscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.satoshivm.io/\",\r\n        \"shortName\": \"tSAVM\",\r\n        \"chainId\": 3110,\r\n        \"networkId\": 3110,\r\n        \"icon\": \"satoshivm\"\r\n    },\r\n    {\r\n        \"name\": \"EthStorage Mainnet\",\r\n        \"chain\": \"EthStorage\",\r\n        \"rpc\": [\r\n            \"http://mainnet.ethstorage.io:9540\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ethstorage.io/\",\r\n        \"shortName\": \"es-m\",\r\n        \"chainId\": 3335,\r\n        \"networkId\": 3335,\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"EVOLVE Mainnet\",\r\n        \"chain\": \"EVO\",\r\n        \"icon\": \"evolveIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.evolveblockchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Evolve\",\r\n            \"symbol\": \"EVO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evolveblockchain.io\",\r\n        \"shortName\": \"EVOm\",\r\n        \"chainId\": 3424,\r\n        \"networkId\": 3424,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evolve Mainnet Explorer\",\r\n                \"url\": \"https://evoexplorer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tycooncoin\",\r\n        \"chain\": \"TYCON\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.tycoscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tycooncoin\",\r\n            \"symbol\": \"TYCO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"TYCON\",\r\n        \"chainId\": 3630,\r\n        \"networkId\": 3630\r\n    },\r\n    {\r\n        \"name\": \"Astar zkEVM\",\r\n        \"shortName\": \"astrzk\",\r\n        \"title\": \"Astar zkEVM Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"astar\",\r\n        \"rpc\": [\r\n            \"https://rpc.startale.com/astar-zkevm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astar.network\",\r\n        \"chainId\": 3776,\r\n        \"networkId\": 3776,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout Astar zkEVM explorer\",\r\n                \"url\": \"https://astar-zkevm.explorer.startale.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.astar.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Carbonium Testnet Network\",\r\n        \"chain\": \"CBR\",\r\n        \"rpc\": [\r\n            \"https://rpc-dev.carbonium.network/\",\r\n            \"https://server-testnet.carbonium.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Carbonium\",\r\n            \"symbol\": \"tCBR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://carbonium.network\",\r\n        \"shortName\": \"tcbr\",\r\n        \"chainId\": 4040,\r\n        \"networkId\": 4040,\r\n        \"slip44\": 1,\r\n        \"icon\": \"cbr\",\r\n        \"faucets\": [\r\n            \"https://getfaucet.carbonium.network\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Carbonium Network tesnet Explorer\",\r\n                \"icon\": \"cbr\",\r\n                \"url\": \"https://testnet.carboniumscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GAN Testnet\",\r\n        \"chain\": \"GAN\",\r\n        \"icon\": \"gpu\",\r\n        \"rpc\": [\r\n            \"https://rpc.gpu.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GP Token\",\r\n            \"symbol\": \"GP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.gpu.net/\",\r\n        \"shortName\": \"GANTestnet\",\r\n        \"chainId\": 4048,\r\n        \"networkId\": 4048,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ganscan\",\r\n                \"url\": \"https://ganscan.gpu.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tobe Chain\",\r\n        \"chain\": \"TBC\",\r\n        \"icon\": \"tobe\",\r\n        \"rpc\": [\r\n            \"https://rpc.tobescan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tobe Coin\",\r\n            \"symbol\": \"TBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tobechain.net\",\r\n        \"shortName\": \"tbc\",\r\n        \"chainId\": 4080,\r\n        \"networkId\": 4080,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tobescan\",\r\n                \"url\": \"https://tobescan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CrossFi Testnet\",\r\n        \"title\": \"CrossFi Testnet\",\r\n        \"chain\": \"XFI\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.ms\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XFI\",\r\n            \"symbol\": \"XFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://crossfi.org/\",\r\n        \"shortName\": \"crossfi-testnet\",\r\n        \"chainId\": 4157,\r\n        \"networkId\": 4157,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CrossFi Testnet Scan\",\r\n                \"url\": \"https://scan.testnet.ms\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hydra Chain\",\r\n        \"chain\": \"HYDRA\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hydra\",\r\n            \"symbol\": \"HYDRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://hydrachain.org\",\r\n        \"shortName\": \"hydra\",\r\n        \"chainId\": 4488,\r\n        \"networkId\": 4488,\r\n        \"icon\": \"hydra\",\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"VERY Mainnet\",\r\n        \"title\": \"VERY Mainnet\",\r\n        \"chain\": \"VERY Mainnet\",\r\n        \"icon\": \"very\",\r\n        \"rpc\": [\r\n            \"https://rpc.verylabs.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VERY\",\r\n            \"symbol\": \"VERY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.verylabs.io/\",\r\n        \"shortName\": \"very\",\r\n        \"chainId\": 4613,\r\n        \"networkId\": 4613,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VERY explorer\",\r\n                \"url\": \"https://www.veryscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ONIGIRI Test Subnet\",\r\n        \"chain\": \"ONIGIRI\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/onigiri/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONIGIRI\",\r\n            \"symbol\": \"ONGR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ongr.org/\",\r\n        \"shortName\": \"onigiritest\",\r\n        \"chainId\": 5039,\r\n        \"networkId\": 5039,\r\n        \"icon\": \"onigiri\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ONIGIRI Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/onigiri\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ONIGIRI Subnet\",\r\n        \"chain\": \"ONIGIRI\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/onigiri/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONIGIRI\",\r\n            \"symbol\": \"ONGR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ongr.org/\",\r\n        \"shortName\": \"onigiri\",\r\n        \"chainId\": 5040,\r\n        \"networkId\": 5040,\r\n        \"icon\": \"onigiri\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ONIGIRI Explorer\",\r\n                \"url\": \"https://subnets.avax.network/onigiri\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nollie Skatechain Testnet\",\r\n        \"chain\": \"Skatechain\",\r\n        \"rpc\": [\r\n            \"https://nollie-rpc.skatechain.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"nollie-testnet\",\r\n        \"chainId\": 5051,\r\n        \"networkId\": 5051,\r\n        \"icon\": \"nollie\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nollie Skate Chain Testnet Explorer\",\r\n                \"url\": \"https://nolliescan.skatechain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"SIC Testnet\",\r\n        \"chain\": \"SIC Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.fwb.help/\",\r\n        \"shortName\": \"sic-testnet\",\r\n        \"chainId\": 5102,\r\n        \"networkId\": 5102,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Coordinape Testnet\",\r\n        \"chain\": \"Coordinape Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://coordinape.com/\",\r\n        \"shortName\": \"coordinape-testnet\",\r\n        \"chainId\": 5103,\r\n        \"networkId\": 5103\r\n    },\r\n    {\r\n        \"name\": \"Charmverse Testnet\",\r\n        \"chain\": \"Charmverse Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://charmverse.io/\",\r\n        \"shortName\": \"charmverse-testnet\",\r\n        \"chainId\": 5104,\r\n        \"networkId\": 5104\r\n    },\r\n    {\r\n        \"name\": \"Superloyalty Testnet\",\r\n        \"chain\": \"Superloyalty Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.superloyal.com/\",\r\n        \"shortName\": \"superloyalty-testnet\",\r\n        \"chainId\": 5105,\r\n        \"networkId\": 5105\r\n    },\r\n    {\r\n        \"name\": \"Azra Testnet\",\r\n        \"chain\": \"Azra Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://azragames.com\",\r\n        \"shortName\": \"azra-testnet\",\r\n        \"chainId\": 5106,\r\n        \"networkId\": 5106,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpTrust Testnet\",\r\n        \"chain\": \"OpTrust\",\r\n        \"rpc\": [\r\n            \"https://rpctest.optrust.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TestBSC\",\r\n            \"symbol\": \"tBNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://optrust.io\",\r\n        \"shortName\": \"toptrust\",\r\n        \"chainId\": 5317,\r\n        \"networkId\": 5317,\r\n        \"icon\": \"optrust\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OpTrust Testnet explorer\",\r\n                \"url\": \"https://scantest.optrust.io\",\r\n                \"icon\": \"optrust\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Settlus Testnet\",\r\n        \"chain\": \"Settlus\",\r\n        \"rpc\": [\r\n            \"https://settlus-test-eth.settlus.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.settlus.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Setl\",\r\n            \"symbol\": \"SETL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://settlus.org\",\r\n        \"shortName\": \"settlus-testnet\",\r\n        \"chainId\": 5372,\r\n        \"networkId\": 5372,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Settlus Scan\",\r\n                \"url\": \"https://testnet.settlus.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"edeXa Mainnet\",\r\n        \"chain\": \"edeXa Network\",\r\n        \"rpc\": [\r\n            \"https://mainnet.edexa.network/rpc\",\r\n            \"https://mainnet.edexa.com/rpc\",\r\n            \"https://io-dataseed1.mainnet.edexa.io-market.com/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EDEXA\",\r\n            \"symbol\": \"EDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://edexa.network/\",\r\n        \"shortName\": \"edeXa\",\r\n        \"chainId\": 5424,\r\n        \"networkId\": 5424,\r\n        \"slip44\": 1,\r\n        \"icon\": \"edexa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"edexa-mainnet\",\r\n                \"url\": \"https://explorer.edexa.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Egochain\",\r\n        \"chainId\": 5439,\r\n        \"shortName\": \"egax\",\r\n        \"chain\": \"EGAX\",\r\n        \"networkId\": 5439,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EGAX\",\r\n            \"symbol\": \"EGAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.egochain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://docs.egochain.org/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"egoscan\",\r\n                \"url\": \"https://egoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arcturus Testneet\",\r\n        \"chain\": \"Arcturus\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.arcturuschain.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.arcturuschain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tARC\",\r\n            \"symbol\": \"tARC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://arcturuschain.io\",\r\n        \"shortName\": \"arcturus-testnet\",\r\n        \"chainId\": 5615,\r\n        \"networkId\": 5615,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer-arcturus-testnet\",\r\n                \"url\": \"https://testnet.arcscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QIE Blockchain\",\r\n        \"chain\": \"QIE\",\r\n        \"icon\": \"qie\",\r\n        \"rpc\": [\r\n            \"https://rpc-main1.qiblockchain.online/\",\r\n            \"https://rpc-main2.qiblockchain.online/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QIE Blockchain\",\r\n            \"symbol\": \"QIE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://qiblockchain.online/\",\r\n        \"shortName\": \"QIE\",\r\n        \"chainId\": 5656,\r\n        \"networkId\": 5656,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"QIE Explorer\",\r\n                \"url\": \"https://mainnet.qiblockchain.online\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Filenova Testnet\",\r\n        \"chain\": \"Filenova\",\r\n        \"rpc\": [\r\n            \"https://rpctest.filenova.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Filecoin\",\r\n            \"symbol\": \"tFIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://filenova.org\",\r\n        \"shortName\": \"tfilenova\",\r\n        \"chainId\": 5675,\r\n        \"networkId\": 5675,\r\n        \"icon\": \"filenova\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"filenova testnet explorer\",\r\n                \"url\": \"https://scantest.filenova.org\",\r\n                \"icon\": \"filenova\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tangle\",\r\n        \"chain\": \"Tangle\",\r\n        \"rpc\": [\r\n            \"https://rpc.tangle.tools\",\r\n            \"wss://rpc.tangle.tools\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tangle\",\r\n            \"symbol\": \"TNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.tangle.tools\",\r\n        \"shortName\": \"tangle\",\r\n        \"chainId\": 5845,\r\n        \"networkId\": 5845,\r\n        \"icon\": \"tangle\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tangle EVM Explorer\",\r\n                \"url\": \"https://explorer.tangle.tools\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"tangle\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BounceBit Mainnet\",\r\n        \"chain\": \"BounceBit\",\r\n        \"rpc\": [\r\n            \"https://fullnode-mainnet.bouncebitapi.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BounceBit\",\r\n            \"symbol\": \"BB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bouncebit.io\",\r\n        \"shortName\": \"bouncebit-mainnet\",\r\n        \"chainId\": 6001,\r\n        \"networkId\": 6001,\r\n        \"icon\": \"bouncebit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BBScan Mainnet Explorer\",\r\n                \"url\": \"https://bbscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aura Euphoria Testnet\",\r\n        \"chain\": \"Aura\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc.euphoria.aura.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://aura.faucetme.pro\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-EAura\",\r\n            \"symbol\": \"eAura\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aura.network\",\r\n        \"shortName\": \"eaura\",\r\n        \"chainId\": 6321,\r\n        \"networkId\": 6321,\r\n        \"slip44\": 1,\r\n        \"icon\": \"aura\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Aurascan Explorer\",\r\n                \"url\": \"https://euphoria.aurascan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"aura\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aura Mainnet\",\r\n        \"chain\": \"Aura\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc.aura.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aura\",\r\n            \"symbol\": \"AURA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aura.network\",\r\n        \"shortName\": \"aura\",\r\n        \"chainId\": 6322,\r\n        \"networkId\": 6322,\r\n        \"slip44\": 1,\r\n        \"icon\": \"aura\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Aurascan Explorer\",\r\n                \"url\": \"https://aurascan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"aura\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pools Mainnet\",\r\n        \"chain\": \"Pools\",\r\n        \"rpc\": [\r\n            \"https://rpc.poolsmobility.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"POOLS Native Token\",\r\n            \"symbol\": \"POOLS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.poolschain.org\",\r\n        \"shortName\": \"POOLS\",\r\n        \"icon\": \"POOLS\",\r\n        \"chainId\": 6868,\r\n        \"networkId\": 6868,\r\n        \"slip44\": 6868,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"poolsscan\",\r\n                \"url\": \"https://scan.poolsmobility.com\",\r\n                \"icon\": \"POOLS\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Planq Atlas Testnet\",\r\n        \"chain\": \"Planq\",\r\n        \"icon\": \"planq\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc-atlas.planq.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Planq\",\r\n            \"symbol\": \"tPLQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://planq.network\",\r\n        \"shortName\": \"planq-atlas-testnet\",\r\n        \"chainId\": 7077,\r\n        \"networkId\": 7077,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"XPLA Verse\",\r\n        \"chain\": \"XPLA Verse\",\r\n        \"icon\": \"xpla_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc-xpla-verse.xpla.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.xpla.io\",\r\n        \"shortName\": \"XPLAVERSE\",\r\n        \"chainId\": 7300,\r\n        \"networkId\": 7300,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XPLA Verse Explorer\",\r\n                \"url\": \"https://explorer-xpla-verse.xpla.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Cyber Mainnet\",\r\n        \"chain\": \"Cyber\",\r\n        \"rpc\": [\r\n            \"https://cyber.alt.technology/\",\r\n            \"wss://cyber-ws.alt.technology/\",\r\n            \"https://rpc.cyber.co/\",\r\n            \"wss://rpc.cyber.co/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"cyber\",\r\n        \"infoURL\": \"https://cyber.co/\",\r\n        \"shortName\": \"cyeth\",\r\n        \"chainId\": 7560,\r\n        \"networkId\": 7560,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cyber Mainnet Explorer\",\r\n                \"url\": \"https://cyberscan.co\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://cyber.co/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"GDCC TESTNET\",\r\n        \"chain\": \"GDCC\",\r\n        \"icon\": \"gdcc\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc1.gdccscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GDCC\",\r\n            \"symbol\": \"GDCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gdcchain.com\",\r\n        \"shortName\": \"GDCC\",\r\n        \"chainId\": 7775,\r\n        \"networkId\": 7775,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GDCC\",\r\n                \"url\": \"https://testnet.gdccscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Orenium Mainnet Protocol\",\r\n        \"chain\": \"ORE\",\r\n        \"rpc\": [\r\n            \"https://validator-mainnet.orenium.org\",\r\n            \"https://rpc-oracle-mainnet.orenium.org\",\r\n            \"https://portalmainnet.orenium.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ORENIUM\",\r\n            \"symbol\": \"ORE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://orenium.org\",\r\n        \"shortName\": \"ore\",\r\n        \"chainId\": 7778,\r\n        \"networkId\": 7778,\r\n        \"slip44\": 1,\r\n        \"icon\": \"ore\",\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ORE Mainnet Explorer\",\r\n                \"icon\": \"ore\",\r\n                \"url\": \"https://oreniumscan.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpenEX LONG Testnet\",\r\n        \"title\": \"OpenEX LONG Testnet\",\r\n        \"chain\": \"OEX\",\r\n        \"icon\": \"oex\",\r\n        \"rpc\": [\r\n            \"https://long.rpc.openex.network/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://long.hub.openex.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDT Testnet\",\r\n            \"symbol\": \"USDT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://openex.network\",\r\n        \"shortName\": \"oex\",\r\n        \"chainId\": 7798,\r\n        \"networkId\": 7798,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OpenEX Long Testnet Explorer\",\r\n                \"url\": \"https://scan.long.openex.network\",\r\n                \"icon\": \"oex\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dot Blox\",\r\n        \"chain\": \"DTBX\",\r\n        \"icon\": \"dotblox\",\r\n        \"rpc\": [\r\n            \"https://rpc.dotblox.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dot Blox\",\r\n            \"symbol\": \"DTBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.dotblox.io\",\r\n        \"shortName\": \"DTBX\",\r\n        \"chainId\": 7923,\r\n        \"networkId\": 7923,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.dotblox.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MO Mainnet\",\r\n        \"chainId\": 7924,\r\n        \"shortName\": \"MO\",\r\n        \"chain\": \"MO\",\r\n        \"icon\": \"mo\",\r\n        \"networkId\": 7924,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MO\",\r\n            \"symbol\": \"MO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.mochain.app/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mochain.app/\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MO Explorer\",\r\n                \"url\": \"https://moscan.app\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mochain.app\"\r\n    },\r\n    {\r\n        \"name\": \"BOAT Mainnet\",\r\n        \"title\": \"BOAT Mainnet\",\r\n        \"chain\": \"BOAT\",\r\n        \"icon\": \"boat\",\r\n        \"rpc\": [\r\n            \"https://rpc0.come.boat/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Best Of All Time Token\",\r\n            \"symbol\": \"BOAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://come.boats\",\r\n        \"shortName\": \"boat\",\r\n        \"chainId\": 8047,\r\n        \"networkId\": 8047,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BOAT Mainnet Explorer\",\r\n                \"url\": \"https://scan.come.boats\",\r\n                \"icon\": \"boat\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Karak Sepolia\",\r\n        \"title\": \"Karak Testnet Sepolia\",\r\n        \"chain\": \"Karak\",\r\n        \"icon\": \"karak\",\r\n        \"rpc\": [\r\n            \"https://rpc.sepolia.karak.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://karak.network\",\r\n        \"shortName\": \"karak-sepolia\",\r\n        \"chainId\": 8054,\r\n        \"networkId\": 8054,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Karak Sepolia Explorer\",\r\n                \"url\": \"https://explorer.sepolia.karak.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Space Subnet\",\r\n        \"chain\": \"SPACE\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/space/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FUEL\",\r\n            \"symbol\": \"FUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://otherworld.network\",\r\n        \"shortName\": \"space\",\r\n        \"chainId\": 8227,\r\n        \"networkId\": 8227,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SPACE Explorer\",\r\n                \"url\": \"https://subnets.avax.network/space\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lorenzo\",\r\n        \"chain\": \"Lorenzo\",\r\n        \"rpc\": [\r\n            \"https://rpc.lorenzo-protocol.xyz\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lorenzo stBTC\",\r\n            \"symbol\": \"stBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.lorenzo-protocol.xyz/\",\r\n        \"shortName\": \"lrz\",\r\n        \"chainId\": 8329,\r\n        \"networkId\": 8329,\r\n        \"icon\": \"lorenzo\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lorenzo Explorer\",\r\n                \"url\": \"https://scan.lorenzo-protocol.xyz\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"lorenzo\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IOTA EVM\",\r\n        \"title\": \"IOTA EVM\",\r\n        \"chain\": \"IOTA EVM\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.evm.iotaledger.net\",\r\n            \"https://ws.json-rpc.evm.iotaledger.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IOTA\",\r\n            \"symbol\": \"IOTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.iota.org\",\r\n        \"shortName\": \"iotaevm\",\r\n        \"chainId\": 8822,\r\n        \"networkId\": 8822,\r\n        \"icon\": \"iotaevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer\",\r\n                \"url\": \"https://explorer.evm.iota.org\",\r\n                \"icon\": \"iotaevm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hydra Chain Testnet\",\r\n        \"chain\": \"HYDRA\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.hydrachain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app.testnet.hydrachain.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tHydra\",\r\n            \"symbol\": \"tHYDRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://hydrachain.org\",\r\n        \"shortName\": \"thydra\",\r\n        \"chainId\": 8844,\r\n        \"networkId\": 8844,\r\n        \"icon\": \"hydra\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hydra Chain Testnet explorer\",\r\n                \"url\": \"https://hydragon.hydrachain.org\",\r\n                \"icon\": \"hydra\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SuperLumio\",\r\n        \"chain\": \"SuperLumio\",\r\n        \"icon\": \"superlumio\",\r\n        \"rpc\": [\r\n            \"https://mainnet.lumio.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lumio.io/\",\r\n        \"shortName\": \"superlumio\",\r\n        \"chainId\": 8866,\r\n        \"networkId\": 8866,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lumio explorer\",\r\n                \"url\": \"https://explorer.lumio.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Algen\",\r\n        \"chain\": \"ALG\",\r\n        \"rpc\": [\r\n            \"https://rpc.algen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALG\",\r\n            \"symbol\": \"ALG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.algen.network\",\r\n        \"shortName\": \"alg\",\r\n        \"chainId\": 8911,\r\n        \"networkId\": 8911,\r\n        \"icon\": \"alg\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"algscan\",\r\n                \"url\": \"https://scan.algen.network\",\r\n                \"icon\": \"alg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Algen Testnet\",\r\n        \"chain\": \"ALG\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.algen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALG\",\r\n            \"symbol\": \"ALG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.algen.network\",\r\n        \"shortName\": \"algTest\",\r\n        \"chainId\": 8912,\r\n        \"networkId\": 8912,\r\n        \"icon\": \"alg\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"algscan\",\r\n                \"url\": \"https://scan.test.algen.network\",\r\n                \"icon\": \"alg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Algen Layer2\",\r\n        \"chain\": \"ALG L2\",\r\n        \"rpc\": [\r\n            \"https://rpc.alg2.algen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALG\",\r\n            \"symbol\": \"ALG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.algen.network\",\r\n        \"shortName\": \"algl2\",\r\n        \"chainId\": 8921,\r\n        \"networkId\": 8921,\r\n        \"icon\": \"algl2\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"algl2scan\",\r\n                \"url\": \"https://scan.alg2.algen.network\",\r\n                \"icon\": \"algl2\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-8911\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Algen Layer2 Testnet\",\r\n        \"chain\": \"ALG L2\",\r\n        \"rpc\": [\r\n            \"https://rpc.alg2-test.algen.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALG\",\r\n            \"symbol\": \"ALG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.algen.network\",\r\n        \"shortName\": \"algl2Test\",\r\n        \"chainId\": 8922,\r\n        \"networkId\": 8922,\r\n        \"icon\": \"algl2\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"algl2scan\",\r\n                \"url\": \"https://scan.alg2-test.algen.network\",\r\n                \"icon\": \"algl2\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"chain\": \"eip155-8921\",\r\n            \"type\": \"shard\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Shido Testnet Block\",\r\n        \"chain\": \"Shido Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet-nodes.shidoscan.com\",\r\n            \"wss://wss-testnet-nodes.shidoscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.shidoscan.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shido Testnet Token\",\r\n            \"symbol\": \"SHIDO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nexablock.io\",\r\n        \"shortName\": \"ShidoTestnet\",\r\n        \"chainId\": 9007,\r\n        \"networkId\": 9007,\r\n        \"icon\": \"shidoChain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shidoblock Testnet Explorer\",\r\n                \"url\": \"https://testnet.shidoscan.com\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"shidoChain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shido Mainnet Block\",\r\n        \"chain\": \"Shido Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-nodes.shidoscan.com\",\r\n            \"wss://wss-nodes.shidoscan.com\",\r\n            \"https://rpc-delta-nodes.shidoscan.com\",\r\n            \"wss://wss-delta-nodes.shidoscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shido Mainnet Token\",\r\n            \"symbol\": \"SHIDO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shido.io\",\r\n        \"shortName\": \"Shido\",\r\n        \"chainId\": 9008,\r\n        \"networkId\": 9008,\r\n        \"icon\": \"shidoChain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shidoblock Mainnet Explorer\",\r\n                \"url\": \"https://shidoscan.com\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"shidoChain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tabi Testnet\",\r\n        \"chain\": \"TabiNetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.tabichain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.tabichain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tabi\",\r\n            \"symbol\": \"TABI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.tabichain.com\",\r\n        \"shortName\": \"tabitest\",\r\n        \"chainId\": 9789,\r\n        \"networkId\": 9789,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tabi Testnet Explorer\",\r\n                \"url\": \"https://testnet.tabiscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OptimusZ7 Mainnet\",\r\n        \"chain\": \"OptimusZ7\",\r\n        \"icon\": \"OZ7Icon\",\r\n        \"rpc\": [\r\n            \"https://rpc.optimusz7.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OptimusZ7\",\r\n            \"symbol\": \"OZ7\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://optimusz7.com\",\r\n        \"shortName\": \"OZ7m\",\r\n        \"chainId\": 9797,\r\n        \"networkId\": 9797,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OptimusZ7 Mainnet Explorer\",\r\n                \"url\": \"https://explorer.optimusz7.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Larissa Chain\",\r\n        \"title\": \"Larissa Chain\",\r\n        \"chain\": \"Larissa\",\r\n        \"rpc\": [\r\n            \"https://rpc.larissa.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Larissa\",\r\n            \"symbol\": \"LRS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://larissa.network\",\r\n        \"shortName\": \"lrs\",\r\n        \"chainId\": 9898,\r\n        \"networkId\": 1,\r\n        \"slip44\": 9898,\r\n        \"status\": \"active\",\r\n        \"icon\": \"larissa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Larissa Scan\",\r\n                \"url\": \"https://scan.larissa.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Espento Mainnet\",\r\n        \"chain\": \"SPENT\",\r\n        \"rpc\": [\r\n            \"https://rpc.escscan.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ESPENTO\",\r\n            \"symbol\": \"SPENT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://espento.network\",\r\n        \"shortName\": \"spent\",\r\n        \"chainId\": 9911,\r\n        \"networkId\": 9911,\r\n        \"icon\": \"espento\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"escscan\",\r\n                \"url\": \"https://escscan.com\",\r\n                \"icon\": \"espento\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ztc Mainnet\",\r\n        \"chain\": \"ZTC\",\r\n        \"rpc\": [\r\n            \"https://zitcoin.us\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ztcer\",\r\n            \"symbol\": \"ZTC\",\r\n            \"decimals\": 5\r\n        },\r\n        \"infoURL\": \"https://ztc.best\",\r\n        \"shortName\": \"ZTC\",\r\n        \"chainId\": 9998,\r\n        \"networkId\": 9998\r\n    },\r\n    {\r\n        \"name\": \"TAO EVM Mainnet\",\r\n        \"chain\": \"TAO EVM\",\r\n        \"icon\": \"taoevmIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.taoevm.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TAO\",\r\n            \"symbol\": \"TAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taoevm.io\",\r\n        \"shortName\": \"TAOm\",\r\n        \"chainId\": 10321,\r\n        \"networkId\": 10321,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TAO Mainnet Explorer\",\r\n                \"url\": \"https://taoscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TAO EVM Testnet\",\r\n        \"chain\": \"TAO EVM\",\r\n        \"icon\": \"taoevmIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.taoevm.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.taoevm.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TAO\",\r\n            \"symbol\": \"TAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taoevm.io\",\r\n        \"shortName\": \"TAOt\",\r\n        \"chainId\": 10324,\r\n        \"networkId\": 10324,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TAO Testnet Explorer\",\r\n                \"url\": \"https://testnet.taoscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lamina1\",\r\n        \"chain\": \"Lamina1\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/lamina1/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"L1\",\r\n            \"symbol\": \"L1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.lamina1.com/\",\r\n        \"shortName\": \"lamina1\",\r\n        \"chainId\": 10849,\r\n        \"networkId\": 10849,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lamina1 Explorer\",\r\n                \"url\": \"https://subnets.avax.network/lamina1\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lamina1 Identity\",\r\n        \"chain\": \"Lamina1 Identity\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/lamina1id/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"L1 ID\",\r\n            \"symbol\": \"L1ID\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.lamina1.com/\",\r\n        \"shortName\": \"lamina1id\",\r\n        \"chainId\": 10850,\r\n        \"networkId\": 10850,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lamina1 Identity Explorer\",\r\n                \"url\": \"https://subnets.avax.network/lamina1id\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shine Chain\",\r\n        \"chain\": \"SC20\",\r\n        \"rpc\": [\r\n            \"https://rpc.shinescan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shine\",\r\n            \"symbol\": \"SC20\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shinechain.tech\",\r\n        \"shortName\": \"SC20\",\r\n        \"chainId\": 11221,\r\n        \"networkId\": 11221,\r\n        \"icon\": \"shine\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shinescan\",\r\n                \"url\": \"https://shinescan.io\",\r\n                \"icon\": \"shine\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Jiritsu Testnet Subnet\",\r\n        \"chain\": \"JIRITSUTES\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/jiritsutes/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JIRI\",\r\n            \"symbol\": \"TZW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://jiritsu.network\",\r\n        \"shortName\": \"jiritsutes\",\r\n        \"chainId\": 11227,\r\n        \"networkId\": 11227,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JIRITSUTES Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/jiritsutes\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BEVM Mainnet\",\r\n        \"chain\": \"BEVM\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet-1.bevm.io/\",\r\n            \"https://rpc-mainnet-2.bevm.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bevm.io\",\r\n        \"shortName\": \"bevm\",\r\n        \"chainId\": 11501,\r\n        \"networkId\": 11501,\r\n        \"icon\": \"bevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bevm mainnet scan\",\r\n                \"url\": \"https://scan-mainnet.bevm.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"L3X Protocol\",\r\n        \"chainId\": 12324,\r\n        \"shortName\": \"l3x\",\r\n        \"chain\": \"L3X\",\r\n        \"icon\": \"l3x\",\r\n        \"networkId\": 12324,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.l3x.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"L3X Mainnet Explorer\",\r\n                \"url\": \"https://explorer.l3x.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://l3x.com\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"L3X Protocol Testnet\",\r\n        \"chainId\": 12325,\r\n        \"shortName\": \"l3x-testnet\",\r\n        \"chain\": \"L3X\",\r\n        \"icon\": \"l3x\",\r\n        \"networkId\": 12325,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.l3x.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"L3X Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.l3x.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://l3x.com\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"RSS3 VSL Mainnet\",\r\n        \"chain\": \"RSS3\",\r\n        \"rpc\": [\r\n            \"https://rpc.rss3.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RSS3\",\r\n            \"symbol\": \"RSS3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rss3.io\",\r\n        \"shortName\": \"rss3\",\r\n        \"chainId\": 12553,\r\n        \"networkId\": 12553,\r\n        \"icon\": \"rss3\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"RSS3 VSL Scan\",\r\n                \"url\": \"https://scan.rss3.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://explorer.rss3.io/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Playdapp Testnet\",\r\n        \"chain\": \"PDA\",\r\n        \"icon\": \"pda\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/playdappte/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Playdapp\",\r\n            \"symbol\": \"PDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://playdapp.io\",\r\n        \"shortName\": \"PDA-TESTNET\",\r\n        \"chainId\": 12781,\r\n        \"networkId\": 12781,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Playdapp Testnet Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/playdappte\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PlayFair Testnet Subnet\",\r\n        \"chain\": \"PLAYFAIR\",\r\n        \"icon\": \"playfair\",\r\n        \"rpc\": [\r\n            \"https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTLT Token\",\r\n            \"symbol\": \"BTLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://letsplayfair.ai\",\r\n        \"shortName\": \"playfair\",\r\n        \"chainId\": 12898,\r\n        \"networkId\": 12898,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Avalanche Subnet Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/letsplayfair\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Masa\",\r\n        \"chain\": \"MASA\",\r\n        \"icon\": \"masa\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/masanetwork/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Masa Token\",\r\n            \"symbol\": \"MASA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://masa.finance\",\r\n        \"shortName\": \"masa\",\r\n        \"chainId\": 13396,\r\n        \"networkId\": 13396,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Masa Explorer\",\r\n                \"url\": \"https://subnets.avax.network/masa\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gravity Alpha Testnet Sepolia\",\r\n        \"chain\": \"Gravity\",\r\n        \"rpc\": [\r\n            \"https://rpc-sepolia.gravity.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Gravity\",\r\n            \"symbol\": \"G.\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1108\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://gravity.xyz\",\r\n        \"shortName\": \"gravitysep\",\r\n        \"chainId\": 13505,\r\n        \"networkId\": 13505,\r\n        \"icon\": \"gravity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gravity Alpha Testnet Sepolia Explorer\",\r\n                \"url\": \"https://explorer-sepolia.gravity.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Kronobit Mainnet\",\r\n        \"title\": \"Kronobit Mainnet\",\r\n        \"chain\": \"KNB\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.qbitscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kronobit\",\r\n            \"symbol\": \"KNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kronobit.org\",\r\n        \"shortName\": \"KNB\",\r\n        \"chainId\": 13600,\r\n        \"networkId\": 13600,\r\n        \"icon\": \"kronobit\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"qbitscan\",\r\n                \"url\": \"https://explorer.qbitscan.com\",\r\n                \"icon\": \"kronobit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EVOLVE Testnet\",\r\n        \"chain\": \"EVO\",\r\n        \"icon\": \"evolveIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.evolveblockchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.evolveblockchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Evolve\",\r\n            \"symbol\": \"EVO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evolveblockchain.io\",\r\n        \"shortName\": \"evo\",\r\n        \"chainId\": 14324,\r\n        \"networkId\": 14324,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evolve Testnet Explorer\",\r\n                \"url\": \"https://testnet.evolveblockchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Poodl Testnet\",\r\n        \"chain\": \"Poodl\",\r\n        \"icon\": \"poodlIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.poodl.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.poodl.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Poodl\",\r\n            \"symbol\": \"POODL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://poodl.org\",\r\n        \"shortName\": \"poodlt\",\r\n        \"chainId\": 15257,\r\n        \"networkId\": 15257,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Poodl Testnet Explorer\",\r\n                \"url\": \"https://testnet.poodl.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Poodl Mainnet\",\r\n        \"chain\": \"Poodl\",\r\n        \"icon\": \"poodlIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.poodl.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Poodl\",\r\n            \"symbol\": \"POODL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://poodl.org\",\r\n        \"shortName\": \"poodle\",\r\n        \"chainId\": 15259,\r\n        \"networkId\": 15259,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Poodl Mainnet Explorer\",\r\n                \"url\": \"https://explorer.poodl.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeFiVerse Mainnet\",\r\n        \"chain\": \"DeFiVerse\",\r\n        \"icon\": \"defiverse\",\r\n        \"rpc\": [\r\n            \"https://rpc.defi-verse.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oasys\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defi-verse.org\",\r\n        \"shortName\": \"DFV\",\r\n        \"chainId\": 16116,\r\n        \"networkId\": 16116,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeFiVerse Explorer\",\r\n                \"url\": \"https://scan.defi-verse.org\",\r\n                \"icon\": \"defiverse\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Garnet Holesky\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.garnetchain.com\",\r\n            \"wss://rpc.garnetchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://redstone.xyz\",\r\n        \"shortName\": \"garnet\",\r\n        \"chainId\": 17069,\r\n        \"networkId\": 17069,\r\n        \"icon\": \"garnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.garnetchain.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-17000\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://garnetchain.com/deposit\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"DeFiVerse Testnet\",\r\n        \"chain\": \"DeFiVerse Testnet\",\r\n        \"icon\": \"defiverse\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.defi-verse.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oasys\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://defi-verse.org\",\r\n        \"shortName\": \"DFV-testnet\",\r\n        \"chainId\": 17117,\r\n        \"networkId\": 17117,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeFiVerse Testnet Explorer\",\r\n                \"url\": \"https://scan-testnet.defi-verse.org\",\r\n                \"icon\": \"defiverse\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"unreal\",\r\n        \"title\": \"unreal testnet for re.al\",\r\n        \"chain\": \"unreal\",\r\n        \"rpc\": [\r\n            \"https://rpc.unreal-orbit.gelato.digital\",\r\n            \"wss://ws.unreal-orbit.gelato.digital\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"unreal Ether\",\r\n            \"symbol\": \"reETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/unreal\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"unreal\",\r\n        \"chainId\": 18233,\r\n        \"networkId\": 18233,\r\n        \"slip44\": 60,\r\n        \"icon\": \"unreal\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://unreal.blockscout.com\",\r\n                \"icon\": \"unreal\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-17000\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/unreal\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Titan (TKX)\",\r\n        \"chain\": \"Titan (TKX)\",\r\n        \"rpc\": [\r\n            \"https://titan-json-rpc.titanlab.io\",\r\n            \"https://titan-json-rpc-tokyo.titanlab.io\",\r\n            \"https://titan-json-rpc-seoul.titanlab.io\",\r\n            \"https://titan-json-rpc-hongkong.titanlab.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Titan tkx\",\r\n            \"symbol\": \"TKX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://titanlab.io\",\r\n        \"shortName\": \"titan_tkx\",\r\n        \"chainId\": 18888,\r\n        \"networkId\": 18888,\r\n        \"slip44\": 1,\r\n        \"icon\": \"titan_tkx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Titan Explorer\",\r\n                \"url\": \"https://tkxscan.io/Titan\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"titan_tkx\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LBRY Mainnet\",\r\n        \"chain\": \"LBRY\",\r\n        \"icon\": \"lbry\",\r\n        \"rpc\": [\r\n            \"https://lbry.nl/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LBRY Credits\",\r\n            \"symbol\": \"LBC\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://lbry.com\",\r\n        \"shortName\": \"LBRY\",\r\n        \"chainId\": 19600,\r\n        \"networkId\": 19600,\r\n        \"slip44\": 140,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LBRY Block Explorer\",\r\n                \"url\": \"https://explorer.lbry.com\",\r\n                \"icon\": \"lbry\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Niza Chain Mainnet\",\r\n        \"chain\": \"NIZA\",\r\n        \"icon\": \"niza\",\r\n        \"rpc\": [\r\n            \"https://nizascan.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Niza Global\",\r\n            \"symbol\": \"NIZA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://niza.io\",\r\n        \"shortName\": \"niza\",\r\n        \"chainId\": 20041,\r\n        \"networkId\": 20041,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NizaScan\",\r\n                \"url\": \"https://nizascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Niza Chain Testnet\",\r\n        \"chain\": \"NIZA\",\r\n        \"icon\": \"niza\",\r\n        \"rpc\": [\r\n            \"https://testnet.nizascan.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Niza Global\",\r\n            \"symbol\": \"NIZA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://niza.io\",\r\n        \"shortName\": \"niza_testnet\",\r\n        \"chainId\": 20073,\r\n        \"networkId\": 20073,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NizaScan\",\r\n                \"url\": \"https://testnet.nizascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DCpay Mainnet\",\r\n        \"chain\": \"DCpay\",\r\n        \"icon\": \"dcpayIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.dcpay.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DCP\",\r\n            \"symbol\": \"DCP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dcpay.io\",\r\n        \"shortName\": \"DCPm\",\r\n        \"chainId\": 21223,\r\n        \"networkId\": 21223,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DCpay Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.dcpay.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DCpay Testnet\",\r\n        \"chain\": \"DCpay\",\r\n        \"icon\": \"dcpayIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.dcpay.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dcpay.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DCP\",\r\n            \"symbol\": \"DCP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dcpay.io\",\r\n        \"shortName\": \"DCPt\",\r\n        \"chainId\": 21224,\r\n        \"networkId\": 21224,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DCpay Testnet Explorer\",\r\n                \"url\": \"https://testnet.dcpay.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DreyerX Mainnet\",\r\n        \"chain\": \"DreyerX\",\r\n        \"rpc\": [\r\n            \"https://rpc.dreyerx.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DreyerX\",\r\n            \"symbol\": \"DRX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dreyerx.com\",\r\n        \"shortName\": \"dreyerx\",\r\n        \"chainId\": 23451,\r\n        \"networkId\": 23451,\r\n        \"icon\": \"dreyerx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"drxscan\",\r\n                \"url\": \"https://scan.dreyerx.com\",\r\n                \"icon\": \"dreyerx\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DreyerX Testnet\",\r\n        \"chain\": \"DreyerX\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.dreyerx.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DreyerX\",\r\n            \"symbol\": \"DRX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dreyerx.com\",\r\n        \"shortName\": \"dreyerx-testnet\",\r\n        \"chainId\": 23452,\r\n        \"networkId\": 23452,\r\n        \"icon\": \"dreyerx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"drxscan\",\r\n                \"url\": \"https://testnet-scan.dreyerx.com\",\r\n                \"icon\": \"dreyerx\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KLAOS Nova\",\r\n        \"title\": \"KLAOS Nova Test Chain\",\r\n        \"chain\": \"KLAOS Nova\",\r\n        \"icon\": \"k-laos\",\r\n        \"rpc\": [\r\n            \"https://rpc.klaosnova.laosfoundation.io\",\r\n            \"wss://rpc.klaosnova.laosfoundation.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KLAOS\",\r\n            \"symbol\": \"KLAOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.laosfoundation.io/\",\r\n        \"shortName\": \"klaosnova\",\r\n        \"chainId\": 27181,\r\n        \"networkId\": 27181,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.klaosnova.laosfoundation.io\",\r\n                \"icon\": \"k-laos\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nanon Sepolia\",\r\n        \"title\": \"Nanon Sepolia Rollup Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rpc.nanon.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nanon.network\",\r\n        \"shortName\": \"Nanon-Testnet\",\r\n        \"chainId\": 27483,\r\n        \"networkId\": 27483,\r\n        \"slip44\": 1,\r\n        \"icon\": \"nanon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nanon Sepolia Rollup Testnet Explorer\",\r\n                \"url\": \"https://sepolia-explorer.nanon.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia-bridge.nanon.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"zeroone Mainnet Subnet\",\r\n        \"chain\": \"ZEROONEMAI\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/zeroonemai/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZERO\",\r\n            \"symbol\": \"ZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zeroone.art/\",\r\n        \"shortName\": \"zeroonemai\",\r\n        \"chainId\": 27827,\r\n        \"networkId\": 27827,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZEROONEMAI Explorer\",\r\n                \"url\": \"https://subnets.avax.network/zeroonemai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vizing Testnet\",\r\n        \"title\": \"Vizing Testnet\",\r\n        \"chain\": \"Vizing Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-sepolia.vizing.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vizing.com\",\r\n        \"shortName\": \"Vizing-Testnet\",\r\n        \"chainId\": 28516,\r\n        \"networkId\": 28516,\r\n        \"icon\": \"vizing\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer-sepolia.vizing.com\",\r\n                \"icon\": \"vizing\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vizing Mainnet\",\r\n        \"title\": \"Vizing Mainnet\",\r\n        \"chain\": \"Vizing Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.vizing.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vizing.com\",\r\n        \"shortName\": \"Vizing\",\r\n        \"chainId\": 28518,\r\n        \"networkId\": 28518,\r\n        \"icon\": \"vizing\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.vizing.com\",\r\n                \"icon\": \"vizing\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.vizing.com\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Boba Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.boba.network\",\r\n            \"https://boba-sepolia.gateway.tenderly.co\",\r\n            \"https://gateway.tenderly.co/public/boba-sepolia\",\r\n            \"wss://boba-sepolia.gateway.tenderly.co/\",\r\n            \"wss://gateway.tenderly.co/public/boba-sepolia\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.l2faucet.com/boba\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://boba.network\",\r\n        \"shortName\": \"BobaSepolia\",\r\n        \"chainId\": 28882,\r\n        \"networkId\": 28882,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bobascan\",\r\n                \"url\": \"https://testnet.bobascan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://gateway.boba.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"HYCHAIN Testnet\",\r\n        \"chainId\": 29112,\r\n        \"shortName\": \"hychain-testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 29112,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TOPIA\",\r\n            \"symbol\": \"TOPIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.hychain.com/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.hychain.com\",\r\n        \"icon\": \"hychain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.explorer.hychain.com\",\r\n                \"icon\": \"hychain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-58008\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"KaiChain Testnet\",\r\n        \"chain\": \"KaiChain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.kaichain.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.kaichain.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KaiChain Testnet Native Token\",\r\n            \"symbol\": \"KEC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kaichain.net\",\r\n        \"shortName\": \"tkec\",\r\n        \"chainId\": 29536,\r\n        \"networkId\": 29536,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KaiChain Explorer\",\r\n                \"url\": \"https://testnet-explorer.kaichain.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MiYou Mainnet\",\r\n        \"chain\": \"MiYou Chain\",\r\n        \"icon\": \"miyou\",\r\n        \"faucets\": [],\r\n        \"rpc\": [\r\n            \"https://blockchain.miyou.io\",\r\n            \"https://blockchain.miyoulab.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Miyou\",\r\n            \"symbol\": \"MY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.miyou.io\",\r\n        \"shortName\": \"MiYou\",\r\n        \"chainId\": 30088,\r\n        \"networkId\": 30088,\r\n        \"slip44\": 60,\r\n        \"ens\": {\r\n            \"registry\": \"0xFEfa9B3061435977424DD947E756566cFB60473E\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MiYou block explorer\",\r\n                \"url\": \"https://myscan.miyou.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Movement EVM Legacy\",\r\n        \"chain\": \"MOVE\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Move\",\r\n            \"symbol\": \"MOVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://movementlabs.xyz\",\r\n        \"shortName\": \"moveleg\",\r\n        \"chainId\": 30730,\r\n        \"networkId\": 30730,\r\n        \"icon\": \"move\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mevm explorer\",\r\n                \"url\": \"https://explorer.movementlabs.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Movement EVM Devnet\",\r\n        \"chain\": \"MOVE\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Move\",\r\n            \"symbol\": \"MOVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://movementlabs.xyz\",\r\n        \"shortName\": \"movedev\",\r\n        \"chainId\": 30731,\r\n        \"networkId\": 30731,\r\n        \"icon\": \"move\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mevm explorer\",\r\n                \"url\": \"https://explorer.movementlabs.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Movement EVM Testnet\",\r\n        \"chain\": \"MOVE\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Move\",\r\n            \"symbol\": \"MOVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://movementlabs.xyz\",\r\n        \"shortName\": \"movetest\",\r\n        \"chainId\": 30732,\r\n        \"networkId\": 30732,\r\n        \"icon\": \"move\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mevm explorer\",\r\n                \"url\": \"https://explorer.movementlabs.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Xchain Mainnet\",\r\n        \"chain\": \"Xchain\",\r\n        \"icon\": \"intd\",\r\n        \"rpc\": [\r\n            \"https://rpc.xchainscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Intdestcoin\",\r\n            \"symbol\": \"INTD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xchainscan.com\",\r\n        \"shortName\": \"INTD\",\r\n        \"chainId\": 31753,\r\n        \"networkId\": 31753,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xchain Mainnet Explorer\",\r\n                \"url\": \"https://xchainscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xchain Testnet\",\r\n        \"chain\": \"Xchain\",\r\n        \"icon\": \"intd\",\r\n        \"rpc\": [\r\n            \"https://rpc.xchaintest.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://xchainfaucet.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Intdestcoin Testnet\",\r\n            \"symbol\": \"INTD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xchaintest.net\",\r\n        \"shortName\": \"tINTD\",\r\n        \"chainId\": 31754,\r\n        \"networkId\": 31754,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xchain Testnet Explorer\",\r\n                \"url\": \"https://xchaintest.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Entangle Mainnet\",\r\n        \"chain\": \"NGL\",\r\n        \"icon\": \"ngl\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.entangle.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Entangle\",\r\n            \"symbol\": \"NGL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.entangle.fi\",\r\n        \"shortName\": \"ngl\",\r\n        \"chainId\": 33033,\r\n        \"networkId\": 33033,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Entangle Mainnet Explorer\",\r\n                \"url\": \"https://explorer.entangle.fi\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Entangle Testnet\",\r\n        \"chain\": \"NGL\",\r\n        \"icon\": \"ngl\",\r\n        \"rpc\": [\r\n            \"https://evm-testnet.entangle.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Entangle\",\r\n            \"symbol\": \"NGL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.entangle.fi\",\r\n        \"shortName\": \"tngl\",\r\n        \"chainId\": 33133,\r\n        \"networkId\": 33133,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Funki\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"funki\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://funkichain.com\",\r\n        \"shortName\": \"funki\",\r\n        \"chainId\": 33979,\r\n        \"networkId\": 33979,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Funki Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.funkichain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PRM Mainnet\",\r\n        \"chain\": \"prm\",\r\n        \"icon\": \"prmIcon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.prmscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Primal Network\",\r\n            \"symbol\": \"PRM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://primalnetwork.org\",\r\n        \"shortName\": \"prm\",\r\n        \"chainId\": 39656,\r\n        \"networkId\": 39656,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Primal Network\",\r\n                \"url\": \"https://prmscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AgentLayer Testnet\",\r\n        \"chain\": \"AgentLayer\",\r\n        \"icon\": \"agentLayerIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.agentlayer.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Agent\",\r\n            \"symbol\": \"AGENT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://agentlayer.xyz/home\",\r\n        \"shortName\": \"agent\",\r\n        \"chainId\": 42072,\r\n        \"networkId\": 42072,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AgentLayer Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.agentlayer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Etherlink Mainnet\",\r\n        \"chain\": \"Etherlink\",\r\n        \"icon\": \"etherlink\",\r\n        \"chainId\": 42793,\r\n        \"networkId\": 42793,\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://etherlink.com\",\r\n        \"shortName\": \"etlk\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tez\",\r\n            \"symbol\": \"XTZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.mainnet.etherlink.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Etherlink Explorer\",\r\n                \"url\": \"https://explorer.etherlink.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hemi Network\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hemi.xyz\",\r\n        \"shortName\": \"hemi\",\r\n        \"chainId\": 43111,\r\n        \"networkId\": 43111,\r\n        \"icon\": \"hemi\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Quantum Network\",\r\n        \"chain\": \"Quantum\",\r\n        \"rpc\": [\r\n            \"https://rpcqtm.avescoin.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Quantum\",\r\n            \"symbol\": \"QTM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://avescoin.io/\",\r\n        \"shortName\": \"QTM\",\r\n        \"chainId\": 44445,\r\n        \"networkId\": 44445,\r\n        \"icon\": \"quantum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Quantum Explorer\",\r\n                \"url\": \"https://qtm.avescoin.io\",\r\n                \"icon\": \"quantum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Swamps L2\",\r\n        \"chain\": \"SWP\",\r\n        \"icon\": \"swamps\",\r\n        \"rpc\": [\r\n            \"https://swamps.tc.l2aas.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SWP\",\r\n            \"symbol\": \"SWP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.swamps.fi\",\r\n        \"shortName\": \"SWP\",\r\n        \"chainId\": 45454,\r\n        \"networkId\": 45454,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://swamps-explorer.tc.l2aas.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DODOchain testnet\",\r\n        \"title\": \"DODOchain testnet\",\r\n        \"chain\": \"DODOchain\",\r\n        \"icon\": \"dodochain_testnet\",\r\n        \"rpc\": [\r\n            \"https://dodochain-testnet.alt.technology\",\r\n            \"wss://dodochain-testnet.alt.technology/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DODO\",\r\n            \"symbol\": \"DODO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dodochain.com\",\r\n        \"shortName\": \"dodochain\",\r\n        \"chainId\": 53457,\r\n        \"networkId\": 53457,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DODOchain Testnet (Sepolia) Explorer\",\r\n                \"url\": \"https://testnet-scan.dodochain.com\",\r\n                \"icon\": \"dodochain_testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Photon Testnet\",\r\n        \"chain\": \"Photon\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.photonchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://photonchain.io/airdrop\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Photon\",\r\n            \"symbol\": \"PTON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://photonchain.io\",\r\n        \"shortName\": \"pton\",\r\n        \"chainId\": 54555,\r\n        \"networkId\": 54555,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"photon_testnet_explorer\",\r\n                \"url\": \"https://testnet.photonchain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lambda Chain Mainnet\",\r\n        \"chain\": \"Lambda Chain\",\r\n        \"rpc\": [\r\n            \"https://nrpc.lambda.im/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lambda.im\",\r\n        \"shortName\": \"lambda\",\r\n        \"chainId\": 56026,\r\n        \"networkId\": 56026,\r\n        \"slip44\": 1,\r\n        \"icon\": \"lambda-chain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lambda Chain Mainnet Explorer\",\r\n                \"url\": \"https://scan.lambda.im\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Testnet Zeroone Subnet\",\r\n        \"chain\": \"TESTNETZER\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/testnetzer/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZERO\",\r\n            \"symbol\": \"ZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zeroone.art/\",\r\n        \"shortName\": \"testnetzer\",\r\n        \"chainId\": 56400,\r\n        \"networkId\": 56400,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TESTNETZER Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/testnetzer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Linea Sepolia\",\r\n        \"title\": \"Linea Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.sepolia.linea.build\",\r\n            \"wss://rpc.sepolia.linea.build\",\r\n            \"https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}\",\r\n            \"wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Linea Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://linea.build\",\r\n        \"shortName\": \"linea-sepolia\",\r\n        \"chainId\": 59141,\r\n        \"networkId\": 59141,\r\n        \"slip44\": 1,\r\n        \"icon\": \"linea\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-5\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.linea.build/\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Etherscan\",\r\n                \"url\": \"https://sepolia.lineascan.build\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"linea\"\r\n            },\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.sepolia.linea.build\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"linea\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"BOB\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.gobob.xyz\",\r\n            \"wss://rpc.gobob.xyz\",\r\n            \"https://bob-mainnet.public.blastapi.io\",\r\n            \"wss://bob-mainnet.public.blastapi.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gobob.xyz\",\r\n        \"shortName\": \"bob\",\r\n        \"chainId\": 60808,\r\n        \"networkId\": 60808,\r\n        \"icon\": \"bob\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bobscout\",\r\n                \"url\": \"https://explorer.gobob.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://app.gobob.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"KaiChain\",\r\n        \"chain\": \"KaiChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.kaichain.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KaiChain Native Token\",\r\n            \"symbol\": \"KEC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kaichain.net\",\r\n        \"shortName\": \"kec\",\r\n        \"chainId\": 61406,\r\n        \"networkId\": 61406,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KaiChain Explorer\",\r\n                \"url\": \"https://explorer.kaichain.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OPTOPIA Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.optopia.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://optopia.ai\",\r\n        \"shortName\": \"OPTOPIA-Testnet\",\r\n        \"chainId\": 62049,\r\n        \"networkId\": 62049,\r\n        \"icon\": \"optopia\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"optopia-testnet-scan\",\r\n                \"url\": \"https://scan-testnet.optopia.ai\",\r\n                \"icon\": \"optopia\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-testnet.optopia.ai\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Optopia Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.optopia.ai\",\r\n            \"https://rpc-mainnet-2.optopia.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://optopia.ai\",\r\n        \"shortName\": \"Optopia\",\r\n        \"chainId\": 62050,\r\n        \"networkId\": 62050,\r\n        \"icon\": \"optopia\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"optopia-scan\",\r\n                \"url\": \"https://scan.optopia.ai\",\r\n                \"icon\": \"optopia\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.optopia.ai\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Citrea Devnet\",\r\n        \"chain\": \"Citrea\",\r\n        \"rpc\": [\r\n            \"https://rpc.devnet.citrea.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://citrea.xyz/bridge\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Citrea BTC\",\r\n            \"symbol\": \"cBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://citrea.xyz\",\r\n        \"shortName\": \"citrea-devnet\",\r\n        \"chainId\": 62298,\r\n        \"networkId\": 62298,\r\n        \"icon\": \"citrea\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Citrea Devnet Explorer\",\r\n                \"url\": \"https://explorer.devnet.citrea.xyz\",\r\n                \"icon\": \"citrea\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PLYR TAU Testnet\",\r\n        \"chain\": \"PLYR\",\r\n        \"icon\": \"plyr\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/plyr/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.avax.network/?subnet=plyr\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PLYR\",\r\n            \"symbol\": \"PLYR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plyr.network\",\r\n        \"shortName\": \"plyr-tau-testnet\",\r\n        \"chainId\": 62831,\r\n        \"networkId\": 62831,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Avalanche Subnet Testnet Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/plyr\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Proof of Play - Apex\",\r\n        \"chainId\": 70700,\r\n        \"shortName\": \"pop-apex\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 70700,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.apex.proofofplay.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Proof of Play Apex Explorer\",\r\n                \"url\": \"https://explorer.apex.proofofplay.com\",\r\n                \"icon\": \"pop-apex\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://proofofplay.com\",\r\n        \"icon\": \"pop-apex\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                },\r\n                {\r\n                    \"url\": \"https://relay.link/bridge/apex/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"CAGA crypto Ankara testnet\",\r\n        \"chain\": \"Ankara\",\r\n        \"rpc\": [\r\n            \"https://www.ankara-cagacrypto.com\",\r\n            \"wss://wss.ankara-cagacrypto.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Caga\",\r\n            \"symbol\": \"CAGA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cagacrypto.com/\",\r\n        \"shortName\": \"caga\",\r\n        \"chainId\": 72778,\r\n        \"networkId\": 72778,\r\n        \"icon\": \"ankaracaga\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ankara\",\r\n                \"url\": \"https://explorer.ankara-cagacrypto.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ICB Testnet\",\r\n        \"chain\": \"ICBT\",\r\n        \"icon\": \"icbnetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc1-testnet.icbnetwork.info/\",\r\n            \"https://rpc2-testnet.icbnetwork.info/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ICB Testnet Token\",\r\n            \"symbol\": \"ICBT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://icb.network\",\r\n        \"shortName\": \"ICBT\",\r\n        \"chainId\": 73114,\r\n        \"networkId\": 73114,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ICB Tesnet Explorer\",\r\n                \"url\": \"https://testnet.icbscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ICB Network\",\r\n        \"chain\": \"ICB\",\r\n        \"icon\": \"icbnetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc1-mainnet.icbnetwork.info/\",\r\n            \"https://rpc2-mainnet.icbnetwork.info/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ICB Native Token\",\r\n            \"symbol\": \"ICBX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://icb.network\",\r\n        \"shortName\": \"ICBX\",\r\n        \"chainId\": 73115,\r\n        \"networkId\": 73115,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ICB Explorer\",\r\n                \"url\": \"https://icbscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GEEK Verse Mainnet\",\r\n        \"chain\": \"GEEK\",\r\n        \"rpc\": [\r\n            \"https://rpc.geekout-pte.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Geek\",\r\n            \"symbol\": \"GEEK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.geekout-pte.com\",\r\n        \"shortName\": \"GEEK\",\r\n        \"chainId\": 75512,\r\n        \"networkId\": 75512,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Geek Explorer\",\r\n                \"url\": \"https://explorer.geekout-pte.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GEEK Verse Testnet\",\r\n        \"chain\": \"GEEK Test\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.geekout-pte.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Geek\",\r\n            \"symbol\": \"GEEK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.geekout-pte.com\",\r\n        \"shortName\": \"GEEK_Test\",\r\n        \"chainId\": 75513,\r\n        \"networkId\": 75513,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Geek Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.geekout-pte.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BORAchain mainnet\",\r\n        \"chain\": \"BORA\",\r\n        \"icon\": \"bora\",\r\n        \"rpc\": [\r\n            \"https://public-node.api.boraportal.com/bora/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BGAS\",\r\n            \"symbol\": \"BGAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.boraportal.com\",\r\n        \"shortName\": \"BORAchain\",\r\n        \"chainId\": 77001,\r\n        \"networkId\": 77001,\r\n        \"slip44\": 8217,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BORAchainscope\",\r\n                \"url\": \"https://scope.boraportal.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Amoy\",\r\n        \"title\": \"Polygon Amoy Testnet\",\r\n        \"chain\": \"Polygon\",\r\n        \"icon\": \"polygon\",\r\n        \"rpc\": [\r\n            \"https://rpc-amoy.polygon.technology\",\r\n            \"https://polygon-amoy-bor-rpc.publicnode.com\",\r\n            \"wss://polygon-amoy-bor-rpc.publicnode.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.polygon.technology/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MATIC\",\r\n            \"symbol\": \"MATIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polygon.technology/\",\r\n        \"shortName\": \"polygonamoy\",\r\n        \"chainId\": 80002,\r\n        \"networkId\": 80002,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"polygonamoy\",\r\n                \"url\": \"https://www.oklink.com/amoy\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZEDXION\",\r\n        \"chain\": \"ZEDXION\",\r\n        \"icon\": \"zedx\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.zedscan.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zedxion\",\r\n            \"symbol\": \"ZEDX\",\r\n            \"decimals\": 9\r\n        },\r\n        \"infoURL\": \"https://docs.zedscan.net\",\r\n        \"shortName\": \"ZEDX\",\r\n        \"chainId\": 83872,\r\n        \"networkId\": 83872,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zedscan\",\r\n                \"url\": \"http://zedscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Inoai Network\",\r\n        \"chain\": \"INOAI\",\r\n        \"faucets\": [],\r\n        \"rpc\": [\r\n            \"https://inoai-network.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Inoai\",\r\n            \"symbol\": \"INO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://inoai.info\",\r\n        \"shortName\": \"INOAI\",\r\n        \"chainId\": 88559,\r\n        \"networkId\": 88559,\r\n        \"icon\": \"inoai\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"inoai live\",\r\n                \"url\": \"https://inoai.live\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Unit Zero Testnet\",\r\n        \"chain\": \"Unit Zero\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.unit0.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UNIT0\",\r\n            \"symbol\": \"UNIT0\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://units.network\",\r\n        \"shortName\": \"unit0-testnet\",\r\n        \"chainId\": 88817,\r\n        \"networkId\": 88817,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer-testnet\",\r\n                \"url\": \"https://explorer-testnet.unit0.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Unit Zero Stagenet\",\r\n        \"chain\": \"Unit Zero\",\r\n        \"rpc\": [\r\n            \"https://rpc-stagenet.unit0.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UNIT0\",\r\n            \"symbol\": \"UNIT0\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://units.network\",\r\n        \"shortName\": \"unit0-stagenet\",\r\n        \"chainId\": 88819,\r\n        \"networkId\": 88819,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"explorer-stagenet\",\r\n                \"url\": \"https://explorer-stagenet.unit0.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chiliz Spicy Testnet\",\r\n        \"chain\": \"CHZ\",\r\n        \"rpc\": [\r\n            \"https://spicy-rpc.chiliz.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://spicy-faucet.chiliz.com\",\r\n            \"https://tatum.io/faucets/chiliz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Chiliz\",\r\n            \"symbol\": \"CHZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"chilizspicy\",\r\n        \"infoURL\": \"https://www.chiliz.com/en/chain\",\r\n        \"shortName\": \"chzspicy\",\r\n        \"chainId\": 88882,\r\n        \"networkId\": 88882,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"spicy-explorer\",\r\n                \"url\": \"https://testnet.chiliscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"F(x)Core Testnet Network\",\r\n        \"chain\": \"Fxcore\",\r\n        \"rpc\": [\r\n            \"https://testnet-fx-json-web3.functionx.io:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Function X\",\r\n            \"symbol\": \"FX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://functionx.io/\",\r\n        \"shortName\": \"dhobyghaut\",\r\n        \"chainId\": 90001,\r\n        \"networkId\": 90001,\r\n        \"icon\": \"fxcore\"\r\n    },\r\n    {\r\n        \"name\": \"Camp Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"camp\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://rpc-camp-network-4xje7wy105.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.campnetwork.xyz/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://campaign-1.gitbook.io/camp-technical-docså\",\r\n        \"shortName\": \"camp\",\r\n        \"chainId\": 90354,\r\n        \"networkId\": 90354,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://camp-testnet-bridge.vercel.app/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Green Chain Testnet\",\r\n        \"chain\": \"Green Chain\",\r\n        \"icon\": \"greenchain\",\r\n        \"rpc\": [\r\n            \"https://node.greenchain.app/rpc/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GREEN\",\r\n            \"symbol\": \"GREEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.greenchain.app\",\r\n        \"shortName\": \"greenchain\",\r\n        \"chainId\": 97531,\r\n        \"networkId\": 97531,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Green Chain Explorer\",\r\n                \"url\": \"https://explorer.greenchain.app\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OptimusZ7 Testnet\",\r\n        \"chain\": \"OptimusZ7\",\r\n        \"icon\": \"OZ7Icon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.optimusz7.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.optimusz7.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OptimusZ7\",\r\n            \"symbol\": \"OZ7\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://optimusz7.com\",\r\n        \"shortName\": \"OZ7t\",\r\n        \"chainId\": 97970,\r\n        \"networkId\": 97970,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OptimusZ7 Testnet Explorer\",\r\n                \"url\": \"https://testnet.optimusz7.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ebi Chain\",\r\n        \"title\": \"Ebi Chain\",\r\n        \"chain\": \"Ebi\",\r\n        \"rpc\": [\r\n            \"https://rpc.ebi.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ebi.xyz\",\r\n        \"shortName\": \"ebi\",\r\n        \"chainId\": 98881,\r\n        \"networkId\": 98881,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain L2 Mainnet\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-l2-ethapi.quarkchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io\",\r\n        \"shortName\": \"qkc-l2\",\r\n        \"chainId\": 100011,\r\n        \"networkId\": 100011,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-100000\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Creditcoin Testnet\",\r\n        \"chain\": \"CTC\",\r\n        \"icon\": \"creditcoin\",\r\n        \"rpc\": [\r\n            \"https://rpc.cc3-testnet.creditcoin.network\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet CTC\",\r\n            \"symbol\": \"tCTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://creditcoin.org\",\r\n        \"shortName\": \"ctctest\",\r\n        \"chainId\": 102031,\r\n        \"networkId\": 102031,\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://creditcoin-testnet.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KaspaClassic Mainnet\",\r\n        \"chain\": \"KaspaClassic\",\r\n        \"icon\": \"kaspaclassic\",\r\n        \"rpc\": [\r\n            \"https://api.kaspaclassic.world/\",\r\n            \"http://80.178.101.118:8000/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KaspaClassic\",\r\n            \"symbol\": \"CAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kaspaclassic.com/\",\r\n        \"shortName\": \"cas\",\r\n        \"chainId\": 104566,\r\n        \"networkId\": 104566,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KaspaClassic Explorer\",\r\n                \"url\": \"https://explorer.kaspaclassic.world\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Stratis Mainnet\",\r\n        \"chain\": \"Stratis\",\r\n        \"rpc\": [\r\n            \"https://rpc.stratisevm.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Stratis\",\r\n            \"symbol\": \"STRAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.stratisplatform.com\",\r\n        \"shortName\": \"stratis\",\r\n        \"chainId\": 105105,\r\n        \"networkId\": 105105,\r\n        \"icon\": \"stratis\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Stratis Explorer\",\r\n                \"url\": \"https://explorer.stratisevm.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"QuarkChain L2 Testnet\",\r\n        \"chain\": \"QuarkChain\",\r\n        \"rpc\": [\r\n            \"https://testnet-l2-ethapi.quarkchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QKC\",\r\n            \"symbol\": \"QKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.quarkchain.io\",\r\n        \"shortName\": \"qkc-l2-t\",\r\n        \"chainId\": 110011,\r\n        \"networkId\": 110011,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-110000\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"re.al\",\r\n        \"title\": \"re.al Real-World Assets network\",\r\n        \"chain\": \"re.al\",\r\n        \"rpc\": [\r\n            \"https://real.drpc.org\",\r\n            \"wss://real.drpc.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"re.al Ether\",\r\n            \"symbol\": \"reETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://re.al\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"re-al\",\r\n        \"chainId\": 111188,\r\n        \"networkId\": 111188,\r\n        \"slip44\": 60,\r\n        \"icon\": \"real\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.re.al\",\r\n                \"icon\": \"real\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://re.al/bridge\"\r\n                },\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/real\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Odyssey Chain (Testnet)\",\r\n        \"chain\": \"DIONE\",\r\n        \"rpc\": [\r\n            \"https://testnode.dioneprotocol.com/ext/bc/D/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dioneprotocol.com/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.dioneprotocol.com/\",\r\n        \"shortName\": \"DIONE\",\r\n        \"chainId\": 131313,\r\n        \"networkId\": 131313,\r\n        \"icon\": \"odyssey\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DIONE\",\r\n            \"symbol\": \"DIONE\",\r\n            \"decimals\": 18\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MagApe Testnet\",\r\n        \"title\": \"MagApeChain\",\r\n        \"chain\": \"MagApe\",\r\n        \"rpc\": [\r\n            \"https://testnet-api.magape.io/chain/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MagApe\",\r\n            \"symbol\": \"MAG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://magape.io\",\r\n        \"shortName\": \"mag\",\r\n        \"chainId\": 141319,\r\n        \"networkId\": 141319,\r\n        \"icon\": \"magape\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"etherscan\",\r\n                \"url\": \"http://testnet-api.magape.io:81\",\r\n                \"icon\": \"magape\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PlayFi Mainnet\",\r\n        \"chain\": \"PLAY\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Play\",\r\n            \"symbol\": \"PLAY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.playfi.ai/\",\r\n        \"shortName\": \"playfi\",\r\n        \"chainId\": 161212,\r\n        \"networkId\": 161212,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Eclat Mainnet\",\r\n        \"chain\": \"Eclat\",\r\n        \"icon\": \"eclat\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.eclatscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eclat\",\r\n            \"symbol\": \"ECLAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://eclatscan.com\",\r\n        \"shortName\": \"ECLAT\",\r\n        \"chainId\": 165279,\r\n        \"networkId\": 165279,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Eclat Mainnet Explorer\",\r\n                \"url\": \"https://eclatscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"active\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.taiko.xyz\",\r\n            \"wss://ws.mainnet.taiko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"tko-mainnet\",\r\n        \"chainId\": 167000,\r\n        \"networkId\": 167000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"etherscan\",\r\n                \"url\": \"https://taikoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taiko Hekla L2\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"active\",\r\n        \"icon\": \"taiko\",\r\n        \"rpc\": [\r\n            \"https://rpc.hekla.taiko.xyz\",\r\n            \"wss://ws.hekla.taiko.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://taiko.xyz\",\r\n        \"shortName\": \"tko-hekla\",\r\n        \"chainId\": 167009,\r\n        \"networkId\": 167009,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscoutapi.hekla.taiko.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"routescan\",\r\n                \"url\": \"https://hekla.taikoscan.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mind Network Testnet\",\r\n        \"chain\": \"FHET\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.mindnetwork.xyz\",\r\n            \"wss://rpc-testnet.mindnetwork.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FHE\",\r\n            \"symbol\": \"FHE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mindnetwork.xyz\",\r\n        \"shortName\": \"fhet\",\r\n        \"chainId\": 192940,\r\n        \"networkId\": 192940\r\n    },\r\n    {\r\n        \"name\": \"xFair.AI Testnet\",\r\n        \"chain\": \"FAIT\",\r\n        \"rpc\": [\r\n            \"https://rpc_testnet.xfair.ai\",\r\n            \"wss://rpc_testnet.xfair.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FAI\",\r\n            \"symbol\": \"FAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://xfair.ai\",\r\n        \"shortName\": \"fait\",\r\n        \"chainId\": 200000,\r\n        \"networkId\": 200000\r\n    },\r\n    {\r\n        \"name\": \"Bitlayer Mainnet\",\r\n        \"chain\": \"Bitlayer\",\r\n        \"rpc\": [\r\n            \"https://rpc.bitlayer.org\",\r\n            \"https://rpc.bitlayer-rpc.com\",\r\n            \"https://rpc.ankr.com/bitlayer\",\r\n            \"https://rpc-bitlayer.rockx.com\",\r\n            \"wss://ws.bitlayer.org\",\r\n            \"wss://ws.bitlayer-rpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.bitlayer.org/\",\r\n        \"shortName\": \"btr\",\r\n        \"chainId\": 200901,\r\n        \"networkId\": 200901,\r\n        \"slip44\": 1,\r\n        \"icon\": \"bitlayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bitlayer mainnet scan\",\r\n                \"url\": \"https://www.btrscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"YMTECH-BESU Testnet\",\r\n        \"chain\": \"YMTECH-BESU\",\r\n        \"rpc\": [\r\n            \"http://39.119.118.216:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ymtech.co.kr\",\r\n        \"shortName\": \"YMTECH-BESU\",\r\n        \"chainId\": 202401,\r\n        \"networkId\": 202401,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"YMTECH-BESU Chainlens\",\r\n                \"url\": \"http://39.119.118.198\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Auroria Testnet\",\r\n        \"title\": \"Stratis Testnet Auroria\",\r\n        \"chain\": \"Auroria\",\r\n        \"rpc\": [\r\n            \"https://auroria.rpc.stratisevm.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://auroria.faucet.stratisevm.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Auroria Stratis\",\r\n            \"symbol\": \"tSTRAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.stratisplatform.com\",\r\n        \"shortName\": \"auroria\",\r\n        \"chainId\": 205205,\r\n        \"networkId\": 205205,\r\n        \"icon\": \"auroria\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Auroria Testnet Explorer\",\r\n                \"url\": \"https://auroria.explorer.stratisevm.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GitAGI Atlas Testnet\",\r\n        \"chain\": \"GitAGI\",\r\n        \"rpc\": [\r\n            \"https://rpc.gitagi.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GitAGI\",\r\n            \"symbol\": \"tGAGI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gitagi.org/\",\r\n        \"shortName\": \"atlas\",\r\n        \"chainId\": 210049,\r\n        \"networkId\": 210049\r\n    },\r\n    {\r\n        \"name\": \"HydraDX\",\r\n        \"chain\": \"HDX\",\r\n        \"rpc\": [\r\n            \"https://rpc.hydradx.cloud\",\r\n            \"wss://rpc.hydradx.cloud\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Wrapped ETH\",\r\n            \"symbol\": \"WETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hydradx.io\",\r\n        \"shortName\": \"hdx\",\r\n        \"chainId\": 222222,\r\n        \"networkId\": 222222,\r\n        \"icon\": \"hydradx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.evm.hydration.cloud\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeepL Mainnet\",\r\n        \"chain\": \"DEEPL\",\r\n        \"rpc\": [\r\n            \"https://rpc.deeplnetwork.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeepL\",\r\n            \"symbol\": \"DEEPL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://deeplnetwork.org\",\r\n        \"shortName\": \"deepl\",\r\n        \"chainId\": 222555,\r\n        \"networkId\": 222555,\r\n        \"icon\": \"deepl\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeepL Mainnet Explorer\",\r\n                \"url\": \"https://scan.deeplnetwork.org\",\r\n                \"icon\": \"deepl\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeepL Testnet\",\r\n        \"chain\": \"DEEPL\",\r\n        \"rpc\": [\r\n            \"https://testnet.deeplnetwork.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.deeplnetwork.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeepL\",\r\n            \"symbol\": \"DEEPL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://deeplnetwork.org\",\r\n        \"shortName\": \"tdeepl\",\r\n        \"chainId\": 222666,\r\n        \"networkId\": 222666,\r\n        \"icon\": \"deepl\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeepL Testnet Explorer\",\r\n                \"url\": \"https://testnet-scan.deeplnetwork.org\",\r\n                \"icon\": \"deepl\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Orange Chain Testnet\",\r\n        \"title\": \"Orange Chain Testnet\",\r\n        \"chain\": \"Orange Chain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.orangechain.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://orangechain.xyz\",\r\n        \"shortName\": \"Orange-Chain-Testnet\",\r\n        \"chainId\": 240515,\r\n        \"networkId\": 240515,\r\n        \"icon\": \"orange\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://testnet-scan.orangechain.xyz\",\r\n                \"icon\": \"orange\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Eclat Testnet\",\r\n        \"chain\": \"Eclat\",\r\n        \"icon\": \"eclat\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.eclatscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.eclatscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eclat Testnet\",\r\n            \"symbol\": \"ECLAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.eclatscan.com\",\r\n        \"shortName\": \"tECLAT\",\r\n        \"chainId\": 262371,\r\n        \"networkId\": 262371,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Eclat Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.eclatscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zillion Sepolia Testnet\",\r\n        \"status\": \"active\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.zillnet.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zillnet.io\",\r\n        \"shortName\": \"zillsep\",\r\n        \"chainId\": 282828,\r\n        \"networkId\": 282828,\r\n        \"slip44\": 1,\r\n        \"icon\": \"zillion\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zillscout\",\r\n                \"url\": \"https://sepolia.zillnet.io\",\r\n                \"icon\": \"zillion\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"One World Chain Mainnet\",\r\n        \"chain\": \"One World Chain\",\r\n        \"icon\": \"oneWorldChainIcon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.oneworldchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OWCT\",\r\n            \"symbol\": \"OWCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oneworldchain.org\",\r\n        \"shortName\": \"OWCTm\",\r\n        \"chainId\": 309075,\r\n        \"networkId\": 309075,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"One World Chain Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.oneworldchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SaharaAI Testnet\",\r\n        \"chain\": \"Sahara\",\r\n        \"rpc\": [\r\n            \"https://testnet.saharalabs.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SAHARA\",\r\n            \"symbol\": \"SAH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://saharalabs.ai\",\r\n        \"shortName\": \"saharatest\",\r\n        \"chainId\": 313313,\r\n        \"networkId\": 313313,\r\n        \"icon\": \"sahara\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Testnet Scan\",\r\n                \"url\": \"https://explorer.saharaa.info\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Parex Mainnet\",\r\n        \"title\": \"Parex Mainnet\",\r\n        \"chain\": \"Parex\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.parex.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PAREX\",\r\n            \"symbol\": \"PRX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://parex.network\",\r\n        \"shortName\": \"parex\",\r\n        \"chainId\": 322202,\r\n        \"networkId\": 322202,\r\n        \"icon\": \"parexmain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Parex Mainnet Explorer\",\r\n                \"url\": \"https://scan.parex.network\",\r\n                \"icon\": \"parexmain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UPchain Testnet\",\r\n        \"chain\": \"UPchain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.uniport.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.uniport.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UBTC\",\r\n            \"symbol\": \"UBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://uniport.network\",\r\n        \"shortName\": \"UPchain-testnet\",\r\n        \"chainId\": 336655,\r\n        \"networkId\": 336655,\r\n        \"icon\": \"up\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UPchain Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.uniport.network\",\r\n                \"icon\": \"up\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UPchain Mainnet\",\r\n        \"chain\": \"UPchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.uniport.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UBTC\",\r\n            \"symbol\": \"UBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://uniport.network\",\r\n        \"shortName\": \"UPchain-mainnet\",\r\n        \"chainId\": 336666,\r\n        \"networkId\": 336666,\r\n        \"icon\": \"up\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UPchain Mainnet Explorer\",\r\n                \"url\": \"https://explorer.uniport.network\",\r\n                \"icon\": \"up\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitfinity Network Mainnet\",\r\n        \"chain\": \"BFT\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://mainnet.bitfinity.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitfinity Token\",\r\n            \"symbol\": \"BFT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bitfinity.network\",\r\n        \"shortName\": \"bitfinity-mainnet\",\r\n        \"chainId\": 355110,\r\n        \"networkId\": 355110,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitfinity Mainnet Block Explorer\",\r\n                \"url\": \"https://explorer.mainnet.bitfinity.network\",\r\n                \"icon\": \"bitfinity\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LAVITA Mainnet\",\r\n        \"chain\": \"LAVITA\",\r\n        \"icon\": \"lavita\",\r\n        \"rpc\": [\r\n            \"https://tsub360890-eth-rpc.thetatoken.org/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"vTFUEL\",\r\n            \"symbol\": \"vTFUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.lavita.ai\",\r\n        \"shortName\": \"lavita-mainnet\",\r\n        \"chainId\": 360890,\r\n        \"networkId\": 360890,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LAVITA Mainnet Explorer\",\r\n                \"url\": \"https://tsub360890-explorer.thetatoken.org\",\r\n                \"icon\": \"lavita\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AIE Testnet\",\r\n        \"chain\": \"AIE\",\r\n        \"rpc\": [\r\n            \"https://rpc1-testnet.aiechain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AIE\",\r\n            \"symbol\": \"tAIE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.aiescan.io\",\r\n        \"shortName\": \"aiet\",\r\n        \"chainId\": 413413,\r\n        \"networkId\": 413413,\r\n        \"icon\": \"aie\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"aiescan-testnet\",\r\n                \"icon\": \"aie\",\r\n                \"url\": \"https://testnet.aiescan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Playdapp Network\",\r\n        \"chain\": \"PDA\",\r\n        \"icon\": \"pda\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/playdappne/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Playdapp\",\r\n            \"symbol\": \"PDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://playdapp.io\",\r\n        \"shortName\": \"PDA\",\r\n        \"chainId\": 504441,\r\n        \"networkId\": 504441,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Playdapp Explorer\",\r\n                \"url\": \"https://subnets.avax.network/playdappne\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DoCoin Community Chain\",\r\n        \"title\": \"DoCoin Community Chain\",\r\n        \"chain\": \"DoCoin\",\r\n        \"rpc\": [\r\n            \"https://rpc.docoin.shop\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DO\",\r\n            \"symbol\": \"DCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docoin.network\",\r\n        \"shortName\": \"DoCoin\",\r\n        \"chainId\": 526916,\r\n        \"networkId\": 526916,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DoCoin Community Chain Explorer\",\r\n                \"url\": \"https://explorer.docoin.shop\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"One World Chain Testnet\",\r\n        \"chain\": \"One World Chain\",\r\n        \"icon\": \"oneWorldChainIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.oneworldchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.oneworldchain.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OWCT\",\r\n            \"symbol\": \"OWCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oneworldchain.org\",\r\n        \"shortName\": \"OWCTt\",\r\n        \"chainId\": 552981,\r\n        \"networkId\": 552981,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"One World Chain Testnet Explorer\",\r\n                \"url\": \"https://testnet.oneworldchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Eclipse Testnet\",\r\n        \"chain\": \"ECLIPSE\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/eclipsecha/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Eclipse\",\r\n            \"symbol\": \"ECLPS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://eclipsenet.io\",\r\n        \"shortName\": \"eclipset\",\r\n        \"chainId\": 555666,\r\n        \"networkId\": 555666,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ECLIPSE Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/eclipsecha\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xai Mainnet\",\r\n        \"chainId\": 660279,\r\n        \"shortName\": \"xai\",\r\n        \"chain\": \"XAI\",\r\n        \"networkId\": 660279,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xai\",\r\n            \"symbol\": \"XAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://xai-chain.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.xai-chain.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://xai.games\"\r\n    },\r\n    {\r\n        \"name\": \"Won Network\",\r\n        \"chainId\": 686868,\r\n        \"shortName\": \"WonChain\",\r\n        \"chain\": \"WON\",\r\n        \"icon\": \"won\",\r\n        \"networkId\": 686868,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Won\",\r\n            \"symbol\": \"WON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.wonnetwork.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.wondollars.org\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Won Explorer\",\r\n                \"url\": \"https://scan.wonnetwork.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://wonnetwork.org\"\r\n    },\r\n    {\r\n        \"name\": \"Galadriel Devnet\",\r\n        \"chain\": \"Galadriel\",\r\n        \"rpc\": [\r\n            \"https://devnet.galadriel.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://docs.galadriel.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Galadriel Devnet token\",\r\n            \"symbol\": \"GAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://galadriel.com\",\r\n        \"shortName\": \"galadriel-devnet\",\r\n        \"chainId\": 696969,\r\n        \"networkId\": 696969,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Galadriel Explorer\",\r\n                \"url\": \"https://explorer.galadriel.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tiltyard Mainnet Subnet\",\r\n        \"chain\": \"TILTYARD\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/tiltyard/mainnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TILT\",\r\n            \"symbol\": \"TILT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://play.tiltyard.gg/\",\r\n        \"shortName\": \"tiltyardmainnet\",\r\n        \"chainId\": 710420,\r\n        \"networkId\": 710420,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TILTYARD Explorer\",\r\n                \"url\": \"https://subnets.avax.network/tiltyard\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hemi Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.hemi.network/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hemi.xyz\",\r\n        \"shortName\": \"hemi-sep\",\r\n        \"chainId\": 743111,\r\n        \"networkId\": 743111,\r\n        \"icon\": \"hemi\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.explorer.hemi.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Lamina1 Testnet\",\r\n        \"chain\": \"Lamina1 Testnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/lamina1tes/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lamina1 Test\",\r\n            \"symbol\": \"L1T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fuji.lamina1.com/\",\r\n        \"shortName\": \"lamina1test\",\r\n        \"chainId\": 764984,\r\n        \"networkId\": 764984,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lamina1 Test Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/lamina1tes\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lamina1 Identity Testnet\",\r\n        \"chain\": \"Lamina1 Identity Testnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/lamina1id/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"L1ID Test\",\r\n            \"symbol\": \"L1IDT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fuji.lamina1.com/\",\r\n        \"shortName\": \"lamina1idtest\",\r\n        \"chainId\": 767368,\r\n        \"networkId\": 767368,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lamina1 Identity Testnet Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/lamina1id\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BIZ Smart Chain Testnet\",\r\n        \"chain\": \"BIZT Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.bizex.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tBIZT\",\r\n            \"symbol\": \"tBIZT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.biztoken.io/\",\r\n        \"shortName\": \"bizt-testnet\",\r\n        \"chainId\": 808080,\r\n        \"networkId\": 808080,\r\n        \"slip44\": 1,\r\n        \"icon\": \"biz\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BIZ Smart Chain Testnet Explorer\",\r\n                \"url\": \"https://testnet.btscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"zkLink Nova Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.rpc.zklink.io\",\r\n            \"wss://sepolia.rpc.zklink.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zklink.io\",\r\n        \"shortName\": \"zklink-nova-sepolia\",\r\n        \"chainId\": 810181,\r\n        \"networkId\": 810181,\r\n        \"slip44\": 1,\r\n        \"icon\": \"zklink-nova\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zkLink Nova Block Explorer\",\r\n                \"url\": \"https://sepolia.explorer.zklink.io\",\r\n                \"icon\": \"zklink-nova\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-59141\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia.portal.zklink.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"zkLink Nova Goerli Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://goerli.rpc.zklink.io\",\r\n            \"wss://goerli.rpc.zklink.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zklink.io\",\r\n        \"shortName\": \"zklink-nova-goerli\",\r\n        \"chainId\": 810182,\r\n        \"networkId\": 810182,\r\n        \"slip44\": 1,\r\n        \"icon\": \"zklink-nova\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zkLink Nova Block Explorer\",\r\n                \"url\": \"https://goerli.explorer.zklink.io\",\r\n                \"icon\": \"zklink-nova\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-59140\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://goerli.portal.zklink.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"TSC Testnet\",\r\n        \"chain\": \"Trust Smart Chain Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.tscscan.io/testrpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TAS\",\r\n            \"symbol\": \"tTAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.trias.one\",\r\n        \"shortName\": \"tTSC\",\r\n        \"icon\": \"netx\",\r\n        \"chainId\": 820522,\r\n        \"networkId\": 820025,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tscscan\",\r\n                \"url\": \"https://testnet.tscscan.io\",\r\n                \"icon\": \"netxscan\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PRM Testnet\",\r\n        \"chain\": \"prm\",\r\n        \"icon\": \"prmIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.prmscan.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.prmscan.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Primal Network\",\r\n            \"symbol\": \"PRM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://primalnetwork.org\",\r\n        \"shortName\": \"prmtest\",\r\n        \"chainId\": 839320,\r\n        \"networkId\": 839320,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Primal Network Testnet\",\r\n                \"url\": \"https://testnet-explorer.prmscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"REXX Mainnet\",\r\n        \"title\": \"REXX Mainnet\",\r\n        \"chain\": \"REXX\",\r\n        \"rpc\": [\r\n            \"https://rpc.rexxnetwork.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"REXX\",\r\n            \"symbol\": \"REXX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rexxnetwork.com\",\r\n        \"shortName\": \"REXX\",\r\n        \"chainId\": 888882,\r\n        \"networkId\": 888882,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"REXX Mainnet Explorer\",\r\n                \"url\": \"https://rexxnetwork.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Forma\",\r\n        \"chain\": \"Forma\",\r\n        \"rpc\": [\r\n            \"https://rpc.forma.art\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TIA\",\r\n            \"symbol\": \"TIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://forma.art\",\r\n        \"shortName\": \"forma\",\r\n        \"chainId\": 984122,\r\n        \"networkId\": 984122,\r\n        \"icon\": \"forma\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.forma.art\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Forma Sketchpad\",\r\n        \"chain\": \"Forma\",\r\n        \"rpc\": [\r\n            \"https://rpc.sketchpad-1.forma.art\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TIA\",\r\n            \"symbol\": \"TIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://forma.art\",\r\n        \"shortName\": \"sketchpad\",\r\n        \"chainId\": 984123,\r\n        \"networkId\": 984123,\r\n        \"icon\": \"forma\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.sketchpad-1.forma.art\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Netmind Chain Testnet\",\r\n        \"title\": \"NetMind Chain Testnet\",\r\n        \"chain\": \"NetMind\",\r\n        \"rpc\": [\r\n            \"https://testblock.protago-dev.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NMT\",\r\n            \"symbol\": \"NMT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://netmind.ai\",\r\n        \"shortName\": \"nmtTest\",\r\n        \"chainId\": 1100789,\r\n        \"networkId\": 1100789,\r\n        \"icon\": \"netmind\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NetMind Testnet Explorer\",\r\n                \"url\": \"https://testbrower.protago-dev.com\",\r\n                \"icon\": \"netmind\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Automata Testnet\",\r\n        \"chain\": \"Automata Testnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ata.network\",\r\n        \"shortName\": \"automatatest\",\r\n        \"chainId\": 1398243,\r\n        \"networkId\": 1398243,\r\n        \"icon\": \"automata\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"PlayFi Albireo Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://albireo-rpc.playfi.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.playfi.ai/\",\r\n        \"shortName\": \"alberio\",\r\n        \"chainId\": 1612127,\r\n        \"networkId\": 1612127,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PlayFi Block Explorer\",\r\n                \"url\": \"https://albireo-explorer.playfi.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.playfi.ai/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"SaharaAI Network\",\r\n        \"chain\": \"Sahara\",\r\n        \"rpc\": [\r\n            \"https://mainnet.saharalabs.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SAHARA\",\r\n            \"symbol\": \"SAH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://saharalabs.ai\",\r\n        \"shortName\": \"sahara\",\r\n        \"chainId\": 3132023,\r\n        \"networkId\": 3132023,\r\n        \"icon\": \"sahara\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Funki Sepolia Sandbox\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"funki\",\r\n        \"rpc\": [\r\n            \"https://funki-testnet.alt.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://funkichain.com\",\r\n        \"shortName\": \"funkisepolia\",\r\n        \"chainId\": 3397901,\r\n        \"networkId\": 3397901,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Funki Sepolia Sandbox Explorer\",\r\n                \"url\": \"https://sepolia-sandbox.funkichain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Manta Pacific Sepolia Testnet\",\r\n        \"chain\": \"Manta Pacific\",\r\n        \"rpc\": [\r\n            \"https://pacific-rpc.sepolia-testnet.manta.network/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://manta-testnet.caldera.dev/\",\r\n        \"shortName\": \"mantaSepoliaTestnet\",\r\n        \"chainId\": 3441006,\r\n        \"networkId\": 3441006,\r\n        \"slip44\": 1,\r\n        \"icon\": \"manta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"manta-testnet Explorer\",\r\n                \"url\": \"https://pacific-explorer.sepolia-testnet.manta.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NumBlock Chain\",\r\n        \"chain\": \"NumBlock\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.numblock.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NUMB Token\",\r\n            \"symbol\": \"NUMB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://numblock.org\",\r\n        \"shortName\": \"NUMB\",\r\n        \"chainId\": 5112023,\r\n        \"networkId\": 5112023,\r\n        \"icon\": \"NumBlock\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NumBlock Explorer\",\r\n                \"url\": \"https://mainnet.numblock.org\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"NumBlock\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Moonchain Geneva Testnet\",\r\n        \"chain\": \"MXC zkEVM\",\r\n        \"icon\": \"mxc\",\r\n        \"rpc\": [\r\n            \"https://geneva-rpc.moonchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Moonchain Geneva Testnet\",\r\n            \"symbol\": \"MXC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://doc.mxc.com/docs/intro\",\r\n        \"shortName\": \"MXC\",\r\n        \"chainId\": 5167004,\r\n        \"networkId\": 5167004,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Moonchain Geneva Testnet\",\r\n                \"url\": \"https://geneva-explorer.moonchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Reactive Kopli\",\r\n        \"title\": \"Reactive Network Testnet Kopli\",\r\n        \"chain\": \"REACT\",\r\n        \"rpc\": [\r\n            \"https://kopli-rpc.reactive.network\",\r\n            \"http://kopli-rpc.rkt.ink\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://dev.reactive.network/docs/kopli-testnet#faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kopli React\",\r\n            \"symbol\": \"REACT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://reactive.network\",\r\n        \"shortName\": \"kreact\",\r\n        \"icon\": \"reactive\",\r\n        \"chainId\": 5318008,\r\n        \"networkId\": 5318008,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"reactscan\",\r\n                \"url\": \"https://kopli.reactscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Astar zKyoto\",\r\n        \"shortName\": \"azkyt\",\r\n        \"title\": \"Astar zkEVM Testnet zKyoto\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"astarzk\",\r\n        \"rpc\": [\r\n            \"https://rpc.startale.com/zkyoto\",\r\n            \"https://rpc.zkyoto.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://astar.network\",\r\n        \"chainId\": 6038361,\r\n        \"networkId\": 6038361,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout zKyoto explorer\",\r\n                \"url\": \"https://astar-zkyoto.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.astar.network\"\r\n                },\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/astar-zkyoto\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Safe(AnWang) Mainnet\",\r\n        \"chain\": \"Safe(AnWang)\",\r\n        \"icon\": \"safe-anwang\",\r\n        \"rpc\": [\r\n            \"https://rpc.anwang.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SAFE(AnWang)\",\r\n            \"symbol\": \"SAFE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.anwang.com\",\r\n        \"shortName\": \"SafeMainnet\",\r\n        \"chainId\": 6666665,\r\n        \"networkId\": 6666665,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Safe(AnWang) Explorer\",\r\n                \"url\": \"http://safe4.anwang.com\",\r\n                \"icon\": \"safe-anwang\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Safe(AnWang) Testnet\",\r\n        \"chain\": \"Safe(AnWang)\",\r\n        \"icon\": \"safe-anwang\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.anwang.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SAFE(AnWang)\",\r\n            \"symbol\": \"SAFE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.anwang.com\",\r\n        \"shortName\": \"SafeTestnet\",\r\n        \"chainId\": 6666666,\r\n        \"networkId\": 6666666,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Safe(AnWang) Testnet Explorer\",\r\n                \"url\": \"http://safe4-testnet.anwang.com\",\r\n                \"icon\": \"safe-anwang\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Waterfall 8 Test Network\",\r\n        \"chain\": \"Waterfall Testnet8\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet8.waterfall.network/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet8.waterfall.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WATER\",\r\n            \"symbol\": \"WATER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://waterfall.network\",\r\n        \"shortName\": \"waterfall\",\r\n        \"chainId\": 8601152,\r\n        \"networkId\": 8601152,\r\n        \"icon\": \"waterfall\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"ALIENX Hal Testnet\",\r\n        \"chain\": \"ALIENX Hal\",\r\n        \"rpc\": [\r\n            \"https://hal-rpc.alienxchain.io/http\",\r\n            \"https://hal.rpc.caldera.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alienxchain.io/home\",\r\n        \"shortName\": \"ALIENXHal\",\r\n        \"chainId\": 10241025,\r\n        \"networkId\": 10241025,\r\n        \"icon\": \"hal\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hal Explorer\",\r\n                \"url\": \"https://hal-explorer.alienxchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"COTI Devnet\",\r\n        \"title\": \"COTI Devnet\",\r\n        \"chain\": \"COTI\",\r\n        \"icon\": \"coti\",\r\n        \"rpc\": [\r\n            \"https://devnet.coti.io/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.coti.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"COTI2\",\r\n            \"symbol\": \"COTI2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://coti.io/\",\r\n        \"shortName\": \"coti-devnet\",\r\n        \"chainId\": 13068200,\r\n        \"networkId\": 13068200,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"coti devnet explorer\",\r\n                \"url\": \"https://explorer-devnet.coti.io\",\r\n                \"icon\": \"ethernal\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lambda Chain Testnet\",\r\n        \"chain\": \"Lambda Chain\",\r\n        \"rpc\": [\r\n            \"https://testnrpc.lambda.im/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lambda.im\",\r\n        \"shortName\": \"tlambda\",\r\n        \"chainId\": 17000920,\r\n        \"networkId\": 17000920,\r\n        \"slip44\": 1,\r\n        \"icon\": \"lambda-chain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lambda Chain Testnet Explorer\",\r\n                \"url\": \"https://testscan.lambda.im\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Stability Testnet\",\r\n        \"chain\": \"stabilityTestnet\",\r\n        \"icon\": \"stabilitytestnet\",\r\n        \"rpc\": [\r\n            \"https://free.testnet.stabilityprotocol.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FREE\",\r\n            \"symbol\": \"FREE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://stabilityprotocol.com\",\r\n        \"shortName\": \"stabilitytestnet\",\r\n        \"chainId\": 20180427,\r\n        \"networkId\": 20180427,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://stability-testnet.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeBank Sepolia Testnet\",\r\n        \"chain\": \"DeBank\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rpc.testnet.debank.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"debank\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeBank USD\",\r\n            \"symbol\": \"USD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://debank.com\",\r\n        \"shortName\": \"dbkse\",\r\n        \"chainId\": 20240324,\r\n        \"networkId\": 20240324,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeBank Chain Explorer\",\r\n                \"url\": \"https://sepolia-explorer.testnet.debank.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Swan Proxima Testnet\",\r\n        \"chain\": \"SWAN\",\r\n        \"rpc\": [\r\n            \"https://rpc-proxima.swanchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SWANETH\",\r\n            \"symbol\": \"sETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://swanchain.io/\",\r\n        \"shortName\": \"Proxima\",\r\n        \"chainId\": 20241133,\r\n        \"networkId\": 20241133,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Swan Proxima Chain explorer\",\r\n                \"url\": \"https://proxima-explorer.swanchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kingdom Chain\",\r\n        \"chain\": \"KingdomChain\",\r\n        \"rpc\": [\r\n            \"https://kingdomchain.observer/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kozi\",\r\n            \"symbol\": \"KOZI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.beastkingdom.io/\",\r\n        \"shortName\": \"kchain\",\r\n        \"chainId\": 39916801,\r\n        \"networkId\": 39916801,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TravelSong\",\r\n                \"url\": \"https://www.beastkingdom.io/travelsong\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Bakerloo (Sumida) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://rpc1.bakerloo.autonity.org/\",\r\n            \"wss://rpc1.bakerloo.autonity.org/ws/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.autonity.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bakerloo Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"bakerloo-02\",\r\n        \"chainId\": 65010002,\r\n        \"networkId\": 65010002,\r\n        \"slip44\": 1,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://bakerloo.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Piccadilly (Sumida) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://rpc1.piccadilly.autonity.org/\",\r\n            \"wss://rpc1.piccadilly.autonity.org/ws/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Piccadilly Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"piccadilly-02\",\r\n        \"chainId\": 65100002,\r\n        \"networkId\": 65100002,\r\n        \"slip44\": 1,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://piccadilly.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"0xHash Testnet\",\r\n        \"chain\": \"HETH\",\r\n        \"icon\": \"ethereum\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.0xhash.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"0xHash\",\r\n            \"symbol\": \"HETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://0xhash.io\",\r\n        \"shortName\": \"HETH\",\r\n        \"chainId\": 77787778,\r\n        \"networkId\": 77787778,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://test.0xhashscan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://app.optimism.io/bridge/deposit\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Polygon Blackberry\",\r\n        \"title\": \"Polygon Blackberry Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.polygon-blackberry.gelato.digital\",\r\n            \"wss://ws.polygon-blackberry.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/polygon-blackberry\",\r\n        \"shortName\": \"polygon-blackberry\",\r\n        \"chainId\": 94204209,\r\n        \"networkId\": 94204209,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://polygon-blackberry.gelatoscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/polygon-blackberry\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Oraichain Mainnet\",\r\n        \"title\": \"Oraichain Mainnet\",\r\n        \"chain\": \"Oraichain\",\r\n        \"rpc\": [\r\n            \"https://evm.orai.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Oraichain Token\",\r\n            \"symbol\": \"ORAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://orai.io\",\r\n        \"shortName\": \"Oraichain\",\r\n        \"chainId\": 108160679,\r\n        \"networkId\": 108160679\r\n    },\r\n    {\r\n        \"name\": \"Cyber Testnet\",\r\n        \"chain\": \"Cyber\",\r\n        \"rpc\": [\r\n            \"https://cyber-testnet.alt.technology/\",\r\n            \"wss://cyber-testnet.alt.technology/ws\",\r\n            \"https://rpc.testnet.cyber.co/\",\r\n            \"wss://rpc.testnet.cyber.co/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"cyber\",\r\n        \"infoURL\": \"https://cyber.co/\",\r\n        \"shortName\": \"cysep\",\r\n        \"chainId\": 111557560,\r\n        \"networkId\": 111557560,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cyber Testnet Explorer\",\r\n                \"url\": \"https://testnet.cyberscan.co\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://cyber-testnet.testnets.rollbridge.app/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"OP Celestia Raspberry\",\r\n        \"title\": \"OP Celestia Raspberry Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.opcelestia-raspberry.gelato.digital\",\r\n            \"wss://ws.opcelestia-raspberry.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/opcelestia-raspberry\",\r\n        \"shortName\": \"opcelestia-raspberry\",\r\n        \"chainId\": 123420111,\r\n        \"networkId\": 123420111,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://opcelestia-raspberry.gelatoscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/opcelestia-raspberry\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Degen Chain\",\r\n        \"title\": \"Degen Chain\",\r\n        \"chain\": \"Degen\",\r\n        \"rpc\": [\r\n            \"https://rpc.degen.tips\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DEGEN\",\r\n            \"symbol\": \"DEGEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://degen.tips\",\r\n        \"shortName\": \"degen-chain\",\r\n        \"chainId\": 666666666,\r\n        \"networkId\": 666666666,\r\n        \"status\": \"incubating\",\r\n        \"icon\": \"degen\"\r\n    },\r\n    {\r\n        \"name\": \"PTCESCAN Testnet\",\r\n        \"title\": \"PTCESCAN Testnet\",\r\n        \"chain\": \"PTCE\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.ptcscan.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.ptcscan.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PTCE\",\r\n            \"symbol\": \"PTCE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ptcscan.io\",\r\n        \"shortName\": \"PTCE\",\r\n        \"chainId\": 889910245,\r\n        \"networkId\": 889910245,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PTCESCAN Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.ptcscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PTCESCAN Mainnet\",\r\n        \"title\": \"PTCESCAN Mainnet\",\r\n        \"chain\": \"PTCE\",\r\n        \"rpc\": [\r\n            \"https://rpc.ptcscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PTCE\",\r\n            \"symbol\": \"PTCE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ptcscan.io\",\r\n        \"shortName\": \"POLYTECH\",\r\n        \"chainId\": 889910246,\r\n        \"networkId\": 889910246,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PTCESCAN Explorer\",\r\n                \"url\": \"https://ptcscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"RARI Chain Mainnet\",\r\n        \"chain\": \"RARI\",\r\n        \"rpc\": [\r\n            \"https://rari.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rarichain.org/\",\r\n        \"shortName\": \"rari-mainnet\",\r\n        \"chainId\": 1380012617,\r\n        \"networkId\": 1380012617,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rarichain-explorer\",\r\n                \"url\": \"https://mainnet.explorer.rarichain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kakarot Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"kakarot\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rpc.kakarot.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kakarot.org\",\r\n        \"shortName\": \"kkrt-sepolia\",\r\n        \"chainId\": 1802203764,\r\n        \"networkId\": 1802203764,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kakarot Scan\",\r\n                \"url\": \"https://sepolia.kakarotscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Kakarot Explorer\",\r\n                \"url\": \"https://sepolia-explorer.kakarot.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"RARI Chain Testnet\",\r\n        \"chain\": \"RARI\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.rarichain.org/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rarichain.org/\",\r\n        \"shortName\": \"rari-testnet\",\r\n        \"chainId\": 1918988905,\r\n        \"networkId\": 1918988905,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"rarichain-testnet-explorer\",\r\n                \"url\": \"https://explorer.rarichain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xai Testnet v2\",\r\n        \"chainId\": 37714555429,\r\n        \"shortName\": \"xaitestnet\",\r\n        \"chain\": \"XAI Testnet\",\r\n        \"networkId\": 37714555429,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"sXai\",\r\n            \"symbol\": \"sXAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet-v2.xai-chain.net/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://testnet-explorer-v2.xai-chain.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://xai.games\"\r\n    },\r\n    {\r\n        \"name\": \"Arbitrum Blueberry\",\r\n        \"title\": \"Arbitrum Blueberry Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.arb-blueberry.gelato.digital\",\r\n            \"wss://ws.arb-blueberry.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GelatoCGT\",\r\n            \"symbol\": \"CGT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/arb-blueberry\",\r\n        \"shortName\": \"arb-blueberry\",\r\n        \"chainId\": 88153591557,\r\n        \"networkId\": 88153591557,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://arb-blueberry.gelatoscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/arb-blueberry\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"DCHAIN Testnet\",\r\n        \"title\": \"DCHAIN Testnet\",\r\n        \"chain\": \"dchaint\",\r\n        \"icon\": \"dchaint\",\r\n        \"rpc\": [\r\n            \"https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dchain.foundation/\",\r\n        \"shortName\": \"dchaint\",\r\n        \"chainId\": 2713017997578000,\r\n        \"networkId\": 2713017997578000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dchaint scan\",\r\n                \"url\": \"https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DCHAIN\",\r\n        \"title\": \"DCHAIN Mainnet\",\r\n        \"chain\": \"dchainmainnet\",\r\n        \"icon\": \"dchainmainnet\",\r\n        \"rpc\": [\r\n            \"https://dchain-2716446429837000-1.jsonrpc.sagarpc.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dchain.foundation/\",\r\n        \"shortName\": \"dchainmainnet\",\r\n        \"chainId\": 2716446429837000,\r\n        \"networkId\": 2716446429837000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dchain scan\",\r\n                \"url\": \"https://dchain-2716446429837000-1.sagaexplorer.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"tixoncoin Mainnet\",\r\n        \"chainId\": 5888,\r\n        \"shortName\": \"tixon\",\r\n        \"chain\": \"TIXON\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 5888,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tixoncoin\",\r\n            \"symbol\": \"TIXON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"http://rpc.tixoncoin.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"http://www.tixoncoin.net\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1721045647797.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1721045511750.png\",\r\n            \"color_chain_bg\": \"0x0000FF\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1721045671096.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1721045683750.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Matchain\",\r\n        \"title\": \"Matchain Mainnet\",\r\n        \"chain\": \"matchain\",\r\n        \"icon\": \"matchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.matchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.matchain.io/\",\r\n        \"shortName\": \"matchain\",\r\n        \"chainId\": 698,\r\n        \"networkId\": 698,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Matchain scan\",\r\n                \"url\": \"https://matchscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1725341898223.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1725341881501.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xFFA723\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1725341914873.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1725341927989.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Phecda Mainnet\",\r\n        \"chainId\": 8188,\r\n        \"shortName\": \"PCD\",\r\n        \"chain\": \"PCD\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 8188,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Phecda\",\r\n            \"symbol\": \"PCD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.pcddao.com\",\r\n            \"wss://rpc.pcddao.com/wss\",\r\n            \"https://validator-01.pcddao.com\",\r\n            \"https://validator-02.pcddao.com\",\r\n            \"https://validator-03.pcddao.com\",\r\n            \"https://validator-04.pcddao.com\",\r\n            \"https://validator-05.pcddao.com\",\r\n            \"https://validator-06.pcddao.com\",\r\n            \"https://validator-07.pcddao.com\",\r\n            \"https://validator-08.pcddao.com\",\r\n            \"https://validator-09.pcddao.com\",\r\n            \"https://validator-10.pcddao.com\",\r\n            \"https://validator-11.pcddao.com\",\r\n            \"https://validator-12.pcddao.com\",\r\n            \"https://validator-13.pcddao.com\",\r\n            \"https://validator-14.pcddao.com\",\r\n            \"https://validator-15.pcddao.com\",\r\n            \"https://validator-16.pcddao.com\",\r\n            \"https://validator-17.pcddao.com\",\r\n            \"https://validator-18.pcddao.com\",\r\n            \"https://validator-19.pcddao.com\",\r\n            \"https://validator-20.pcddao.com\",\r\n            \"https://validator-21.pcddao.com\",\r\n            \"https://validator-22.pcddao.com\",\r\n            \"https://validator-23.pcddao.com\",\r\n            \"https://validator-24.pcddao.com\",\r\n            \"https://validator-25.pcddao.com\",\r\n            \"https://validator-26.pcddao.com\",\r\n            \"https://validator-27.pcddao.com\",\r\n            \"https://validator-28.pcddao.com\",\r\n            \"https://validator-29.pcddao.com\",\r\n            \"https://validator-30.pcddao.com\",\r\n            \"https://validator-31.pcddao.com\",\r\n            \"https://validator-32.pcddao.com\",\r\n            \"https://validator-33.pcddao.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.pcddao.com\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1726129442644.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1726129467588.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1726129484449.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1726129520717.png\"\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Phecda Chain Explorer\",\r\n                \"icon\": \"PCD\",\r\n                \"url\": \"https://pcdscan.pcddao.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MAK Chain\",\r\n        \"chainId\": 69916,\r\n        \"shortName\": \"mak\",\r\n        \"chain\": \"MAK\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 69916,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAK\",\r\n            \"symbol\": \"MAK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.mak.top\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://makchain.com\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MakScan\",\r\n                \"url\": \"https://scan.mak.top\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"https://hk.tpstatic.net/token/tokenpocket-1727683950446.png\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1727683950446.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1727683925035.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1727683937912.png\",\r\n            \"color_chain_bg\": \"0x000000\",\r\n            \"color_chain_text\": \"0xF8F8FF\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1727683966410.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Unichain Sepolia\",\r\n        \"chainId\": 1301,\r\n        \"shortName\": \"unichainsepolia\",\r\n        \"chain\": \"Unichain Sepolia\",\r\n        \"network\": \"Sepolia\",\r\n        \"networkId\": 1301,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1654746200716.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://sepolia.unichain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.unichain.org/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unichain Sepolia Testnet Explorer\",\r\n                \"url\": \"https://sepolia.uniscan.xyz/\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"https://hk.tpstatic.net/token/tokenpocket-1728614844418.png\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1728614844418.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1728614859885.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1728614869904.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1728614883541.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"World Chain\",\r\n        \"chainId\": 480,\r\n        \"shortName\": \"worldchain\",\r\n        \"chain\": \"World Chain\",\r\n        \"network\": \"Mainnet\",\r\n        \"networkId\": 480,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1654746200716.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://worldchain-mainnet.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://worldcoin.org/world-chain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"World Chain explorer\",\r\n                \"url\": \"https://worldchain-mainnet.explorer.alchemy.com/\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"https://hk.tpstatic.net/token/tokenpocket-1729148431568.png\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1729148431568.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1729148819446.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1729148859843.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1729148881406.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ApeChain\",\r\n        \"chainId\": 33139,\r\n        \"shortName\": \"ApeChain\",\r\n        \"chain\": \"ApeChain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 33139,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"APE\",\r\n            \"symbol\": \"APE\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1729491264197.jpeg\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://apechain.calderachain.xyz/http\"\r\n        ],\r\n        \"infoURL\": \"https://apechain.com/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"apechain explorer\",\r\n                \"url\": \"https://apechain.calderaexplorer.xyz/\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"https://hk.tpstatic.net/token/tokenpocket-1729482969925.png\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1729482969925.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1729482978504.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1729482986993.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1729482994467.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"exsat\",\r\n        \"chainId\": 7200,\r\n        \"shortName\": \"exsat\",\r\n        \"chain\": \"exsat\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 7200,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1617347227526.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://evm.exsat.network/\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"exsat explorer\",\r\n                \"url\": \"https://scan.exsat.network/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gravity\",\r\n        \"chainId\": 1625,\r\n        \"shortName\": \"gravity\",\r\n        \"chain\": \"gravity\",\r\n        \"network\": \" Alpha Mainnet\",\r\n        \"networkId\": 1625,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"G\",\r\n            \"symbol\": \"G\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/token/tokenpocket-1730362119755.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.gravity.xyz\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gravity Alpha Mainnet Blockchain Explorer\",\r\n                \"url\": \"https://gscan.xyz/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1730362119755.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1730359767207.png\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1730359793402.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1730359801970.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lumia Prism\",\r\n        \"chainId\": 994873017,\r\n        \"shortName\": \"Lumia\",\r\n        \"chain\": \"Lumia\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 994873017,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LUMIA\",\r\n            \"symbol\": \"LUMIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.lumia.org\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lumia explorer\",\r\n                \"url\": \"https://explorer.lumia.org/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SlerfChain Mainnet\",\r\n        \"chainId\": 918,\r\n        \"shortName\": \"SlerfChain\",\r\n        \"chain\": \"SlerfChain\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 918,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WSlerf\",\r\n            \"symbol\": \"WSlerf\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.slerfchain.xyz\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"slerfchain explorer\",\r\n                \"url\": \"https://scan.slerfchain.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DuckChain\",\r\n        \"chainId\": 5545,\r\n        \"shortName\": \"DuckChain\",\r\n        \"chain\": \"DuckChain\",\r\n        \"network\": \"Mainnet\",\r\n        \"networkId\": 5545,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TON\",\r\n            \"symbol\": \"TON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.duckchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://testnet-rpc-hk.duckchain.io\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/token/tokenpocket-1731591999274.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/token/tokenpocket-1735308219699.png\",\r\n            \"color_chain_bg\": \"0x0D0C00\",\r\n            \"color_chain_text\": \"0xFFDA00\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/token/tokenpocket-1735308262153.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/token/tokenpocket-1735308297105.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Akashic Chain\",\r\n        \"chainId\": 9070,\r\n        \"shortName\": \"akc\",\r\n        \"chain\": \"Akashic\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 9070,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"akc\",\r\n            \"symbol\": \"AKC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.akashicrecords.io\",\r\n            \"https://hub-mainnet.akashicrecords.io\",\r\n            \"https://rpc1-mainnet.akashicrecords.io\",\r\n            \"https://rpc2-mainnet.akashicrecords.io\",\r\n            \"https://rpc3-mainnet.akashicrecords.io\",\r\n            \"https://rpc4-mainnet.akashicrecords.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://akashicrecords.io\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://akashicrecords.io/token-pocket/icon/select.png\",\r\n            \"ic_chain_unselect\": \"https://akashicrecords.io/token-pocket/icon/deselect.png\",\r\n            \"color_chain_bg\": \"0xF83008\",\r\n            \"color_chain_text\": \"0xFFFFFF\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Monad Testnet\",\r\n        \"chainId\": 10143,\r\n        \"shortName\": \"MonadTest\",\r\n        \"chain\": \"Monad\",\r\n        \"network\": \"Testnet\",\r\n        \"networkId\": 10143,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MON\",\r\n            \"symbol\": \"MON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.monad.xyz/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://testnet.monad.xyz/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740027432492.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740027445030.png\",\r\n            \"color_chain_bg\": \"0x836EF9\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740027450097.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1740027453546.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Monad Mainnet\",\r\n        \"chain\": \"MON\",\r\n        \"icon\": \"monad\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MON Token\",\r\n            \"symbol\": \"MON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://monad.xyz\",\r\n        \"shortName\": \"mon\",\r\n        \"chainId\": 143,\r\n        \"networkId\": 143,\r\n        \"slip44\": 1,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Sonic Mainnet\",\r\n        \"chain\": \"sonic\",\r\n        \"rpc\": [\r\n            \"https://rpc.soniclabs.com\",\r\n            \"https://sonic-rpc.publicnode.com\",\r\n            \"wss://sonic-rpc.publicnode.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sonic\",\r\n            \"symbol\": \"S\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://soniclabs.com\",\r\n        \"shortName\": \"sonic\",\r\n        \"chainId\": 146,\r\n        \"networkId\": 146,\r\n        \"icon\": \"sonic\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"sonic\",\r\n                \"url\": \"https://explorer.soniclabs.com\",\r\n                \"icon\": \"sonic\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CO2e Ledger\",\r\n        \"chain\": \"CO2E\",\r\n        \"rpc\": [\r\n            \"https://rpc.co2ledger.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CO2e Token\",\r\n            \"symbol\": \"CO2E\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://co2ledger.xyz\",\r\n        \"shortName\": \"CO2e\",\r\n        \"chainId\": 171,\r\n        \"networkId\": 171,\r\n        \"icon\": \"co2e\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CO2e Explorer\",\r\n                \"url\": \"https://exp.co2ledger.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OTC\",\r\n        \"chain\": \"OTC\",\r\n        \"faucets\": [],\r\n        \"icon\": \"otc\",\r\n        \"rpc\": [\r\n            \"https://rpc.otc.run\",\r\n            \"wss://rpc.otc.run\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OTC\",\r\n            \"symbol\": \"OTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://otc.network\",\r\n        \"shortName\": \"OTC\",\r\n        \"chainId\": 175,\r\n        \"networkId\": 175,\r\n        \"slip44\": 511\r\n    },\r\n    {\r\n        \"name\": \"HashKey Chain\",\r\n        \"title\": \"HashKey Chain\",\r\n        \"chain\": \"HashKey Chain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.hsk.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HashKey EcoPoints\",\r\n            \"symbol\": \"HSK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hsk.xyz\",\r\n        \"shortName\": \"hsk\",\r\n        \"chainId\": 177,\r\n        \"networkId\": 177,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://hashkey.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.hsk.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ABEY Testnet\",\r\n        \"chain\": \"ABEY\",\r\n        \"rpc\": [\r\n            \"https://testrpc.abeychain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.abeychain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ABEY\",\r\n            \"symbol\": \"tABEY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://abey.com\",\r\n        \"shortName\": \"abeyt\",\r\n        \"chainId\": 178,\r\n        \"networkId\": 178,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"abeyscan-testnet\",\r\n                \"url\": \"https://testnet.abeyscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ABEY Mainnet\",\r\n        \"chain\": \"ABEY\",\r\n        \"rpc\": [\r\n            \"https://rpc.abeychain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ABEY\",\r\n            \"symbol\": \"ABEY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://abey.com\",\r\n        \"shortName\": \"abey\",\r\n        \"chainId\": 179,\r\n        \"networkId\": 179,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"abeyscan\",\r\n                \"url\": \"https://abeyscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IOST Mainnet\",\r\n        \"chain\": \"iost\",\r\n        \"rpc\": [\r\n            \"https://iost-mainnet.alt.technology\",\r\n            \"wss://iost-mainnet.alt.technology/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB Chain Native Token\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://iost.io\",\r\n        \"shortName\": \"iost\",\r\n        \"chainId\": 182,\r\n        \"networkId\": 182,\r\n        \"icon\": \"bnbchain\",\r\n        \"slip44\": 714,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"IOSTscan\",\r\n                \"url\": \"https://iost-mainnet-explorer.alt.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-56\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://10910bc5-8382-4ef5-bdc7-4c54c8f57e75.bridges.rollbridge.app/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Ethernity\",\r\n        \"chain\": \"Ethernity\",\r\n        \"rpc\": [\r\n            \"https://mainnet.ethernitychain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"ethernity\",\r\n        \"infoURL\": \"https://www.ethernity.io\",\r\n        \"shortName\": \"ethernity-mainnet\",\r\n        \"chainId\": 183,\r\n        \"networkId\": 183,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ethernity Explorer\",\r\n                \"url\": \"https://ernscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dojima Testnet\",\r\n        \"chain\": \"Dojima\",\r\n        \"rpc\": [\r\n            \"https://rpc-test-d11k.dojima.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dojima\",\r\n            \"symbol\": \"DOJ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"dojima\",\r\n        \"infoURL\": \"https://www.dojima.network/\",\r\n        \"shortName\": \"dojtestnet\",\r\n        \"chainId\": 184,\r\n        \"networkId\": 184,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dojima Testnet Explorer\",\r\n                \"url\": \"https://explorer-test.dojima.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Dojima\",\r\n        \"chain\": \"Dojima\",\r\n        \"rpc\": [\r\n            \"https://rpc-d11k.dojima.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dojima\",\r\n            \"symbol\": \"DOJ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"dojima\",\r\n        \"infoURL\": \"https://www.dojima.network/\",\r\n        \"shortName\": \"dojima\",\r\n        \"chainId\": 187,\r\n        \"networkId\": 187,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Dojima Explorer\",\r\n                \"url\": \"https://explorer.dojima.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CMDAO BBQ Chain\",\r\n        \"chain\": \"Underchain 1\",\r\n        \"rpc\": [\r\n            \"https://bbqchain-rpc.commudao.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CommuDAO\",\r\n            \"symbol\": \"CMD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://commudao.xyz\",\r\n        \"shortName\": \"cmdao-bbq-chain\",\r\n        \"chainId\": 190,\r\n        \"networkId\": 190,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bbqchain-explorer\",\r\n                \"url\": \"https://bbqchain-exp.commudao.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WowChain Mainnet\",\r\n        \"title\": \"WowChain Mainnet\",\r\n        \"chain\": \"WowChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.wowchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogecoin\",\r\n            \"symbol\": \"DOGE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wowchain.io\",\r\n        \"shortName\": \"wow\",\r\n        \"chainId\": 203,\r\n        \"networkId\": 203,\r\n        \"icon\": \"wowchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.wowchain.io\",\r\n                \"icon\": \"wowchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EKAASH\",\r\n        \"chain\": \"EKAASH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.ekaash.biz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Global Mobile Money Gateway\",\r\n            \"symbol\": \"$EKH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ekaash.biz\",\r\n        \"shortName\": \"ekaash\",\r\n        \"chainId\": 205,\r\n        \"networkId\": 205,\r\n        \"slip44\": 1,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Happychain Testnet\",\r\n        \"chainId\": 216,\r\n        \"networkId\": 216,\r\n        \"chain\": \"Happychain Testnet\",\r\n        \"rpc\": [\r\n            \"https://happy-testnet-sepolia.rpc.caldera.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Happy\",\r\n            \"symbol\": \"HAPPY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"happytestnet\",\r\n        \"infoURL\": \"https://happy-testnet-sepolia.hub.caldera.xyz\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://happy-testnet-sepolia.explorer.caldera.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlockEx Mainnet\",\r\n        \"chain\": \"BlockEx\",\r\n        \"rpc\": [\r\n            \"https://rpc.blockex.biz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BlockEx\",\r\n            \"symbol\": \"XBE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blockex.biz\",\r\n        \"shortName\": \"BlockEx\",\r\n        \"chainId\": 221,\r\n        \"networkId\": 221,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockEx Scan\",\r\n                \"url\": \"http://explorer.blockex.biz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Prom\",\r\n        \"chain\": \"Prom\",\r\n        \"icon\": \"prom\",\r\n        \"rpc\": [\r\n            \"https://prom-rpc.eu-north-2.gateway.fm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Prom\",\r\n            \"symbol\": \"PROM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://prom.io\",\r\n        \"shortName\": \"PROM\",\r\n        \"chainId\": 227,\r\n        \"networkId\": 227,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://prom-blockscout.eu-north-2.gateway.fm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://prom-bridge.eu-north-2.gateway.fm/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lens\",\r\n        \"title\": \"Lens mainnet\",\r\n        \"chain\": \"Lens\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"chainId\": 232,\r\n        \"networkId\": 232,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GHO\",\r\n            \"symbol\": \"GHO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"lens\",\r\n        \"infoURL\": \"https://lens.xyz\",\r\n        \"shortName\": \"lens\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        },\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Ethernity Testnet\",\r\n        \"chain\": \"Ethernity\",\r\n        \"rpc\": [\r\n            \"https://testnet.ethernitychain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ethernity.io\",\r\n        \"shortName\": \"ethernity-testnet\",\r\n        \"chainId\": 233,\r\n        \"networkId\": 233,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ethernity Testnet Explorer\",\r\n                \"url\": \"https://testnet.ernscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TAC Mainnet\",\r\n        \"title\": \"TAC Mainnet\",\r\n        \"chain\": \"TAC\",\r\n        \"icon\": \"tac\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TAC\",\r\n            \"symbol\": \"TAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tac.build/\",\r\n        \"shortName\": \"tac\",\r\n        \"chainId\": 239,\r\n        \"networkId\": 239,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Cronos zkEVM Testnet\",\r\n        \"chain\": \"CronosZkEVMTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.zkevm.cronos.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://zkevm.cronos.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cronos zkEVM Test Coin\",\r\n            \"symbol\": \"zkTCRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs-zkevm.cronos.org\",\r\n        \"shortName\": \"zkTCRO\",\r\n        \"chainId\": 240,\r\n        \"networkId\": 240,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cronos zkEVM Testnet Explorer\",\r\n                \"url\": \"https://explorer.zkevm.cronos.org/testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Glide L1 Protocol XP\",\r\n        \"chain\": \"GLXP\",\r\n        \"icon\": \"glide\",\r\n        \"rpc\": [\r\n            \"https://rpc-api.glideprotocol.xyz/l1-rpc/\",\r\n            \"wss://rpc-api.glideprotocol.xyz/l1-rpc/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Glide XP\",\r\n            \"symbol\": \"GLXP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://glideprotocol.xyz\",\r\n        \"shortName\": \"glide\",\r\n        \"chainId\": 251,\r\n        \"networkId\": 251,\r\n        \"slip44\": 60,\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Glide L2 Protocol XP\",\r\n        \"chain\": \"GLXP\",\r\n        \"icon\": \"glide\",\r\n        \"rpc\": [\r\n            \"https://rpc-api.glideprotocol.xyz/l2-rpc/\",\r\n            \"wss://rpc-api.glideprotocol.xyz/l2-rpc/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Glide XP\",\r\n            \"symbol\": \"GLXP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://glideprotocol.xyz\",\r\n        \"shortName\": \"glidexp\",\r\n        \"chainId\": 253,\r\n        \"networkId\": 253,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"glidescan\",\r\n                \"url\": \"https://blockchain-explorer.glideprotocol.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-251\"\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Swan Chain Mainnet\",\r\n        \"chain\": \"SWAN\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.swanchain.org\",\r\n            \"https://mainnet-rpc-01.swanchain.org\",\r\n            \"https://mainnet-rpc-02.swanchain.org\",\r\n            \"https://mainnet-rpc-03.swanchain.org\",\r\n            \"https://mainnet-rpc-04.swanchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"swan\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://swanchain.io/\",\r\n        \"shortName\": \"Swan\",\r\n        \"chainId\": 254,\r\n        \"networkId\": 254,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Swanchain Explorer\",\r\n                \"url\": \"https://swanscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Guru Network\",\r\n        \"chain\": \"GURU\",\r\n        \"icon\": \"GuruNetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc-main.gurunetwork.ai\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Guru\",\r\n            \"symbol\": \"GURU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gurunetwork.ai\",\r\n        \"shortName\": \"guru\",\r\n        \"chainId\": 260,\r\n        \"networkId\": 260,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"guruscan\",\r\n                \"url\": \"https://scan.gurunetwork.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Guru Network Testnet\",\r\n        \"chain\": \"tGURU\",\r\n        \"icon\": \"GuruNetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.gurunetwork.ai\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://v2.dex.guru/season-pass/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testGURU\",\r\n            \"symbol\": \"tGURU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gurunetwork.ai\",\r\n        \"shortName\": \"tguru\",\r\n        \"chainId\": 261,\r\n        \"networkId\": 261,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"guruscan\",\r\n                \"url\": \"https://sepolia.gurunetwork.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XR One\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://xr1.calderachain.xyz/http\",\r\n            \"wss://xr1.calderachain.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XR1\",\r\n            \"symbol\": \"XR1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xr-one.gitbook.io\",\r\n        \"shortName\": \"xr1\",\r\n        \"chainId\": 273,\r\n        \"networkId\": 273,\r\n        \"icon\": \"xr\",\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XR One Explorer\",\r\n                \"url\": \"https://xr1.calderaexplorer.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://xr1.bridge.caldera.xyz\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"DaVinci\",\r\n        \"chain\": \"DCOIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.davinci.bz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DaVinci\",\r\n            \"symbol\": \"DCOIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://davinci.bz\",\r\n        \"shortName\": \"davinci\",\r\n        \"chainId\": 293,\r\n        \"networkId\": 293,\r\n        \"icon\": \"davinci\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"davinciscan\",\r\n                \"icon\": \"blockscout\",\r\n                \"url\": \"https://mainnet-explorer.davinci.bz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"WorldEcoMoney\",\r\n        \"chain\": \"WEM\",\r\n        \"rpc\": [\r\n            \"https://rpc.wemblockchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WEM Coin\",\r\n            \"symbol\": \"WEM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            },\r\n            {\r\n                \"name\": \"Smart Contracts\"\r\n            },\r\n            {\r\n                \"name\": \"Custom Gas Model\"\r\n            },\r\n            {\r\n                \"name\": \"Low-Latency Transactions\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://worldecomoney.com\",\r\n        \"shortName\": \"wem\",\r\n        \"chainId\": 315,\r\n        \"networkId\": 315,\r\n        \"icon\": \"wem\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"wemscan\",\r\n                \"url\": \"https://wemscan.com\",\r\n                \"icon\": \"wemscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKcandy Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkcandy.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zkcandy.io/\",\r\n        \"shortName\": \"zkcandy\",\r\n        \"chainId\": 320,\r\n        \"networkId\": 320,\r\n        \"icon\": \"zkcandymainnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZKcandy Block Explorer\",\r\n                \"url\": \"https://explorer.zkcandy.io\",\r\n                \"icon\": \"zkcandymainnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.zkcandy.io/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"GRVT Exchange\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.grvt.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://grvt.io/\",\r\n        \"shortName\": \"grvt\",\r\n        \"chainId\": 325,\r\n        \"networkId\": 325,\r\n        \"icon\": \"grvt\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"GRVT Exchange Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://zkrpc.testnet.grvt.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://grvt.io/\",\r\n        \"shortName\": \"grvt-sepolia\",\r\n        \"chainId\": 326,\r\n        \"networkId\": 326,\r\n        \"icon\": \"grvt\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Omax Testnet\",\r\n        \"chain\": \"Omax Chain\",\r\n        \"rpc\": [\r\n            \"https://testapi.omaxray.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.omaxray.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OMAX TESTCOIN\",\r\n            \"symbol\": \"OMAXT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.omaxcoin.com/\",\r\n        \"shortName\": \"omaxt\",\r\n        \"chainId\": 332,\r\n        \"networkId\": 332,\r\n        \"icon\": \"omaxchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Omax Chain Explorer\",\r\n                \"url\": \"https://testnet.omaxscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pencils Protocol\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pencils Protocol Token\",\r\n            \"symbol\": \"DAPP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pencilsprotocol.io/\",\r\n        \"shortName\": \"dapp\",\r\n        \"chainId\": 339,\r\n        \"networkId\": 339,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Shape\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.shape.network\",\r\n            \"https://shape-mainnet.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shape.network\",\r\n        \"shortName\": \"shape\",\r\n        \"chainId\": 360,\r\n        \"networkId\": 360,\r\n        \"icon\": \"shape\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shapescan\",\r\n                \"url\": \"https://shapescan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Cronos zkEVM Mainnet\",\r\n        \"chain\": \"CronosZkEVMMainnet\",\r\n        \"rpc\": [\r\n            \"https://mainnet.zkevm.cronos.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cronos zkEVM CRO\",\r\n            \"symbol\": \"zkCRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cronos.org/zkevm\",\r\n        \"shortName\": \"zkCRO\",\r\n        \"chainId\": 388,\r\n        \"networkId\": 388,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cronos zkEVM (Mainnet) Chain Explorer\",\r\n                \"url\": \"https://explorer.zkevm.cronos.org\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Stenix Mainnet\",\r\n        \"chain\": \"STEN\",\r\n        \"rpc\": [\r\n            \"https://stenix.network/pub\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Stenix\",\r\n            \"symbol\": \"STEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://stenix.org\",\r\n        \"shortName\": \"sten\",\r\n        \"chainId\": 425,\r\n        \"networkId\": 425,\r\n        \"icon\": \"stenix\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"stenscan\",\r\n                \"url\": \"https://stenscan.com\",\r\n                \"icon\": \"stenscan\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"The Widows Mite\",\r\n        \"chain\": \"MITE\",\r\n        \"rpc\": [\r\n            \"https://rpc.twmcrypto.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.twmcrypto.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"The Widows Mite\",\r\n            \"symbol\": \"MITE\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://twmcrypto.com/\",\r\n        \"shortName\": \"mite\",\r\n        \"chainId\": 426,\r\n        \"networkId\": 426,\r\n        \"icon\": \"mite\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"The Widows Mite Explorer\",\r\n                \"url\": \"https://scan.twmcrypto.com\",\r\n                \"icon\": \"mite\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AppChain\",\r\n        \"chain\": \"AppChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.appchain.xyz/http\",\r\n            \"wss://rpc.appchain.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://appchain.xyz\",\r\n        \"shortName\": \"appchain\",\r\n        \"chainId\": 466,\r\n        \"networkId\": 466,\r\n        \"icon\": \"appchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AppChain Explorer\",\r\n                \"url\": \"https://explorer.appchain.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.appchain.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Form Network\",\r\n        \"title\": \"Form Network\",\r\n        \"chain\": \"form\",\r\n        \"icon\": \"form\",\r\n        \"rpc\": [\r\n            \"https://rpc.form.network/http\",\r\n            \"wss://rpc.form.network/ws\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://info.form.network\",\r\n        \"shortName\": \"formnetwork\",\r\n        \"chainId\": 478,\r\n        \"networkId\": 478,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Form Explorer\",\r\n                \"url\": \"https://explorer.form.network\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"form\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.form.network\"\r\n                },\r\n                {\r\n                    \"url\": \"https://op-bridge.form.network\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Standard Mainnet\",\r\n        \"chain\": \"STND\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Standard\",\r\n            \"symbol\": \"STND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://standardweb3.com\",\r\n        \"shortName\": \"stnd\",\r\n        \"chainId\": 486,\r\n        \"networkId\": 486,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Landstars\",\r\n        \"chain\": \"Landstars\",\r\n        \"icon\": \"landstars\",\r\n        \"rpc\": [\r\n            \"https://13882-60301.pph-server.de\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Landstars\",\r\n            \"symbol\": \"LDS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/khalikov001/landstars-info\",\r\n        \"shortName\": \"lds\",\r\n        \"chainId\": 495,\r\n        \"networkId\": 495,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"River\",\r\n        \"chain\": \"river\",\r\n        \"rpc\": [\r\n            \"https://mainnet.rpc.river.build\",\r\n            \"https://towns-mainnet.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.river.build\",\r\n        \"shortName\": \"river\",\r\n        \"chainId\": 550,\r\n        \"networkId\": 550,\r\n        \"icon\": \"river\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"River Explorer\",\r\n                \"url\": \"https://explorer.river.build\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"River Caldera Explorer\",\r\n                \"url\": \"https://towns-mainnet.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Prometheuz Testnet\",\r\n        \"chain\": \"Prometheuz\",\r\n        \"rpc\": [\r\n            \"https://explorer.testnet.prometheuz.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.prometheuz.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pyre\",\r\n            \"symbol\": \"PYRE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"prometheuz-testnet\",\r\n        \"chainId\": 565,\r\n        \"networkId\": 565,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Prometheuz Explorer\",\r\n                \"url\": \"https://explorer.testnet.prometheuz.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Darwin Devnet\",\r\n        \"chain\": \"Darwin\",\r\n        \"rpc\": [\r\n            \"https://devnet-rpc.darwinchain.ai\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://devnet-rpc.darwinchain.ai/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Darwin Devnet token\",\r\n            \"symbol\": \"DNA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://darwinchain.ai\",\r\n        \"shortName\": \"darwin-devnet\",\r\n        \"chainId\": 610,\r\n        \"networkId\": 610,\r\n        \"icon\": \"darwin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Darwin Explorer\",\r\n                \"url\": \"https://explorer.darwinchain.ai\",\r\n                \"icon\": \"darwin\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Skynet\",\r\n        \"chain\": \"Skynet\",\r\n        \"rpc\": [\r\n            \"http://rpc.skynet.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SkyUSD\",\r\n            \"symbol\": \"sUSD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://explorer.skynet.io\",\r\n        \"shortName\": \"Skynet\",\r\n        \"chainId\": 619,\r\n        \"networkId\": 619,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"http://explorer.skynet.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"http://bridge.skynet.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Binary Mainnet\",\r\n        \"chain\": \"The Binary Holdings\",\r\n        \"rpc\": [\r\n            \"https://rpc.zero.thebinaryholdings.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Binary Token\",\r\n            \"symbol\": \"BNRY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"thebinaryholdings-mainnet\",\r\n        \"chainId\": 624,\r\n        \"networkId\": 624,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://explorer.thebinaryholdings.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Binary Sepolia\",\r\n        \"chain\": \"The Binary Holdings\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.thebinaryholdings.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test BNRY\",\r\n            \"symbol\": \"BNRY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"thebinaryholdings-sepolia\",\r\n        \"chainId\": 625,\r\n        \"networkId\": 625,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://explorer.sepolia.thebinaryholdings.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NFB Chain\",\r\n        \"chain\": \"NFB Chain\",\r\n        \"rpc\": [\r\n            \"https://node.nfbchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NFBCoin\",\r\n            \"symbol\": \"NFBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nfbchain.com/\",\r\n        \"shortName\": \"nfbchain\",\r\n        \"chainId\": 632,\r\n        \"networkId\": 632,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NFB Chain Explorer\",\r\n                \"url\": \"https://scan.nfbchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Janction\",\r\n        \"chain\": \"Janction\",\r\n        \"rpc\": [\r\n            \"https://rpc.janction.io\",\r\n            \"wss://rpc.janction.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Janction\",\r\n            \"symbol\": \"JCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://janction.io\",\r\n        \"shortName\": \"janction\",\r\n        \"chainId\": 678,\r\n        \"networkId\": 678,\r\n        \"icon\": \"janction\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Janction Testnet\",\r\n        \"chain\": \"Janction Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc_testnet.janction.io\",\r\n            \"wss://rpc_testnet.janction.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Janction\",\r\n            \"symbol\": \"JCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://janction.io\",\r\n        \"shortName\": \"janction_testnet\",\r\n        \"chainId\": 679,\r\n        \"networkId\": 679,\r\n        \"icon\": \"janction\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"NERO Testnet\",\r\n        \"chain\": \"NERO Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.nerochain.io\",\r\n            \"wss://ws-testnet.nerochain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.nerochain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NERO\",\r\n            \"symbol\": \"NERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.nerochain.io/\",\r\n        \"shortName\": \"NEROT\",\r\n        \"chainId\": 689,\r\n        \"networkId\": 689,\r\n        \"slip44\": 1,\r\n        \"icon\": \"nero\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nero testnet scan\",\r\n                \"url\": \"https://testnet.neroscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Matchain Testnet\",\r\n        \"chain\": \"Matchain\",\r\n        \"icon\": \"matchain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.matchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BNB\",\r\n            \"symbol\": \"BNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.matchain.io\",\r\n        \"shortName\": \"tMatchain\",\r\n        \"chainId\": 699,\r\n        \"networkId\": 699,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Matchscan Testnet\",\r\n                \"url\": \"https://testnet.matchscan.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"matchain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Darwinia Koi Testnet\",\r\n        \"chain\": \"Darwinia Koi\",\r\n        \"rpc\": [\r\n            \"https://koi-rpc.darwinia.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Koi Network Native Token\",\r\n            \"symbol\": \"KRING\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://darwinia.network/\",\r\n        \"shortName\": \"darwinia-koi\",\r\n        \"chainId\": 701,\r\n        \"networkId\": 701,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://koi-scan.darwinia.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tucana\",\r\n        \"chain\": \"Tucana\",\r\n        \"title\": \"Tucana Testnet\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.tucana.zone\",\r\n            \"wss://evm-ws.tucana.zone\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tucana\",\r\n            \"symbol\": \"TUC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tucana.zone\",\r\n        \"shortName\": \"tuc\",\r\n        \"chainId\": 711,\r\n        \"networkId\": 711,\r\n        \"slip44\": 1,\r\n        \"icon\": \"tucana\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tucana Explorer\",\r\n                \"url\": \"https://explorer.tucana.zone\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Birdee-2\",\r\n        \"chain\": \"Tucana\",\r\n        \"title\": \"Tucana Testnet\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.birdee-2.tucana.zone\",\r\n            \"wss://evm-ws.birdee-2.tucana.zone\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tucana\",\r\n            \"symbol\": \"TUC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tucana.zone\",\r\n        \"shortName\": \"birdee-2\",\r\n        \"chainId\": 712,\r\n        \"networkId\": 712,\r\n        \"slip44\": 1,\r\n        \"icon\": \"tucana\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Birdee-2 Explorer\",\r\n                \"url\": \"https://explorer.birdee-2.tucana.zone\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UXLINK ONE Mainnet\",\r\n        \"chain\": \"UXLINK ONE\",\r\n        \"rpc\": [\r\n            \"https://rpc.uxlinkone.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UXLINK\",\r\n            \"symbol\": \"UXLINK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.uxlinkone.com\",\r\n        \"shortName\": \"uxlink1\",\r\n        \"chainId\": 718,\r\n        \"networkId\": 718,\r\n        \"icon\": \"uxlinkone\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UXLINK ONE Mainnet Explorer\",\r\n                \"url\": \"https://sepolia.uxlinkone.com\",\r\n                \"icon\": \"uxlinkone\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tranched Mainnet\",\r\n        \"chain\": \"tranched-mainnet\",\r\n        \"rpc\": [\r\n            \"https://tranched-mainnet.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://tranched-mainnet.hub.caldera.xyz\",\r\n        \"shortName\": \"tranched-mainnet\",\r\n        \"chainId\": 743,\r\n        \"networkId\": 743,\r\n        \"icon\": \"tranched-mainnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tranched Mainnet Caldera Explorer\",\r\n                \"url\": \"https://tranched-mainnet.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rivalz\",\r\n        \"chain\": \"rivalz\",\r\n        \"rpc\": [\r\n            \"https://rivalz.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://rivalz.hub.caldera.xyz\",\r\n        \"shortName\": \"rivalz\",\r\n        \"chainId\": 753,\r\n        \"networkId\": 753,\r\n        \"icon\": \"rivalz\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rivalz Caldera Explorer\",\r\n                \"url\": \"https://rivalz.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AUTHEO Testnet\",\r\n        \"chain\": \"AUTHEO Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc1.autheo.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.autheo.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"THEO\",\r\n            \"symbol\": \"THEO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autheo.com\",\r\n        \"shortName\": \"autheo-Test-Chain\",\r\n        \"chainId\": 785,\r\n        \"networkId\": 785,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://testnet-explorer.autheo.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Evoz Mainnet\",\r\n        \"chain\": \"Evoz\",\r\n        \"rpc\": [\r\n            \"https://rpc.evozscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Evoz Mainnet\",\r\n            \"symbol\": \"EVOZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rpc.evozscan.com\",\r\n        \"shortName\": \"Evoz\",\r\n        \"chainId\": 805,\r\n        \"networkId\": 805,\r\n        \"icon\": \"evoz\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"evozscan\",\r\n                \"url\": \"https://evozscan.com\",\r\n                \"icon\": \"evoz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Daily Network Mainnet\",\r\n        \"chain\": \"Daily Network\",\r\n        \"icon\": \"daily\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.dailycrypto.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Daily\",\r\n            \"symbol\": \"DLY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dailycrypto.net\",\r\n        \"shortName\": \"dly\",\r\n        \"chainId\": 824,\r\n        \"networkId\": 824,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Daily Mainnet Explorer\",\r\n                \"url\": \"https://explorer.mainnet.dailycrypto.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Daily Network Testnet\",\r\n        \"chain\": \"Daily Network\",\r\n        \"icon\": \"daily\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.dailycrypto.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Daily\",\r\n            \"symbol\": \"DLY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dailycrypto.net\",\r\n        \"shortName\": \"tdly\",\r\n        \"chainId\": 825,\r\n        \"networkId\": 825,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Daily Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.dailycrypto.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"HongKong Mainnet\",\r\n        \"chain\": \"HONGKONG\",\r\n        \"rpc\": [\r\n            \"https://eth.jegotrip.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HongKong\",\r\n            \"symbol\": \"HK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cmi.chinamobile.com/\",\r\n        \"shortName\": \"HongKong\",\r\n        \"chainId\": 852,\r\n        \"networkId\": 852,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HongKong Mainnet Explorer\",\r\n                \"url\": \"http://47.238.205.52\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Electra Network\",\r\n        \"chain\": \"Electra\",\r\n        \"rpc\": [\r\n            \"https://rpc.electranetwork.tech\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Electra\",\r\n            \"symbol\": \"ELC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.electranetwork.tech\",\r\n        \"shortName\": \"elc\",\r\n        \"chainId\": 861,\r\n        \"networkId\": 861,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Electra Explorer\",\r\n                \"url\": \"https://scan.electranetwork.tech\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Electra Test Network\",\r\n        \"chain\": \"Electra\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.electranetwork.tech\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Electra\",\r\n            \"symbol\": \"TELC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan.testnet.electranetwork.tech\",\r\n        \"shortName\": \"telc\",\r\n        \"chainId\": 871,\r\n        \"networkId\": 871,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Electra Testnet Explorer\",\r\n                \"url\": \"https://scan.testnet.electranetwork.tech\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MAXI Chain Mainnet\",\r\n        \"chain\": \"MAXI\",\r\n        \"rpc\": [\r\n            \"https://rpc.maxi.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAXI GAS\",\r\n            \"symbol\": \"MGAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://maxi.network\",\r\n        \"shortName\": \"maxi-mainnet\",\r\n        \"chainId\": 899,\r\n        \"networkId\": 899,\r\n        \"icon\": \"maxi\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Maxi Chain Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.maxi.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haust Mainnet\",\r\n        \"title\": \"Haust Mainnet\",\r\n        \"chain\": \"Haust\",\r\n        \"rpc\": [\r\n            \"https://haust-network-rpc.eu-north-2.gateway.fm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HAUST\",\r\n            \"symbol\": \"HAUST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://haust.network/\",\r\n        \"shortName\": \"haust\",\r\n        \"chainId\": 938,\r\n        \"networkId\": 938,\r\n        \"icon\": \"haust\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://haust-network-blockscout.eu-north-2.gateway.fm\",\r\n                \"icon\": \"haust\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://haust-network-bridge.eu-north-2.gateway.fm\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Subtensor EVM Testnet\",\r\n        \"chain\": \"Bittensor\",\r\n        \"rpc\": [\r\n            \"https://test.chain.opentensor.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testTAO\",\r\n            \"symbol\": \"TAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bittensor.com/\",\r\n        \"shortName\": \"bittensor-evm-testnet\",\r\n        \"chainId\": 945,\r\n        \"networkId\": 945,\r\n        \"slip44\": 1005,\r\n        \"icon\": \"bittensor\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Subtensor EVM Explorer\",\r\n                \"url\": \"https://evm-testscan.dev.opentensor.ai\",\r\n                \"icon\": \"bittensor\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Subtensor EVM\",\r\n        \"chain\": \"Bittensor\",\r\n        \"rpc\": [\r\n            \"https://lite.chain.opentensor.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TAO\",\r\n            \"symbol\": \"TAO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bittensor.com/\",\r\n        \"shortName\": \"bittensor-evm-mainnet\",\r\n        \"chainId\": 964,\r\n        \"networkId\": 964,\r\n        \"slip44\": 1005,\r\n        \"icon\": \"bittensor\"\r\n    },\r\n    {\r\n        \"name\": \"Palm Smart Chain\",\r\n        \"title\": \"Palm Smart Chain\",\r\n        \"chain\": \"Palm\",\r\n        \"rpc\": [\r\n            \"https://rpc.palmsmartchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PALM\",\r\n            \"symbol\": \"PALM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://palmsmartchain.io\",\r\n        \"shortName\": \"PalmChain\",\r\n        \"chainId\": 973,\r\n        \"networkId\": 973,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Palm Smart Chain Explorer\",\r\n                \"url\": \"https://explorer.palmsmartchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BinaryChain Mainnet\",\r\n        \"chain\": \"BinaryChain\",\r\n        \"icon\": \"binary\",\r\n        \"rpc\": [\r\n            \"https://rpc.binarychain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BINARY\",\r\n            \"symbol\": \"BNRY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://binarychain.org\",\r\n        \"shortName\": \"binary\",\r\n        \"chainId\": 987,\r\n        \"networkId\": 987,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BinaryChain Explorer\",\r\n                \"url\": \"https://explorer.binarychain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"5ireChain Mainnet\",\r\n        \"chain\": \"5ireChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.5ire.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"5ire Token\",\r\n            \"symbol\": \"5ire\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://5ire.org\",\r\n        \"shortName\": \"5ire\",\r\n        \"chainId\": 995,\r\n        \"networkId\": 995,\r\n        \"icon\": \"5ireChain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"5ireChain Explorer\",\r\n                \"url\": \"https://5irescan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"5ireChain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bifrost Polkadot Mainnet\",\r\n        \"chain\": \"Bifrost\",\r\n        \"rpc\": [\r\n            \"https://hk.p.bifrost-rpc.liebi.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Wrapped ETH\",\r\n            \"symbol\": \"WETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bifrost.io/\",\r\n        \"shortName\": \"bnc\",\r\n        \"chainId\": 996,\r\n        \"networkId\": 996,\r\n        \"icon\": \"bifrost-polkadot\"\r\n    },\r\n    {\r\n        \"name\": \"LemonChainTestnet\",\r\n        \"chain\": \"tLEMX\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.lemonchain.io\",\r\n            \"https://rpc.testnet.allthingslemon.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"testnet LEMX\",\r\n            \"symbol\": \"tLEMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dapp.allthingslemon.io/home\",\r\n        \"shortName\": \"tlemx\",\r\n        \"chainId\": 1005,\r\n        \"networkId\": 1005,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"LemonChain\",\r\n        \"chain\": \"LEMX\",\r\n        \"rpc\": [\r\n            \"https://rpc.lemonchain.io\",\r\n            \"https://rpc.allthingslemon.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LEMX\",\r\n            \"symbol\": \"LEMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dapp.allthingslemon.io/home\",\r\n        \"shortName\": \"lemx\",\r\n        \"chainId\": 1006,\r\n        \"networkId\": 1006,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"BitTorrent Chain Donau\",\r\n        \"chain\": \"BTTC\",\r\n        \"icon\": \"bttc\",\r\n        \"rpc\": [\r\n            \"https://pre-rpc.bt.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testfaucet.bt.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BitTorrent\",\r\n            \"symbol\": \"BTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bt.io\",\r\n        \"shortName\": \"tBTT\",\r\n        \"chainId\": 1029,\r\n        \"networkId\": 1029,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BitTorrent Chain Donau Explorer\",\r\n                \"url\": \"https://testnet.bttcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Core Blockchain Testnet2\",\r\n        \"chain\": \"Core\",\r\n        \"icon\": \"core\",\r\n        \"rpc\": [\r\n            \"https://rpc.test2.btcs.network/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://scan.test2.btcs.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Core Blockchain Testnet2 Native Token\",\r\n            \"symbol\": \"tCORE2\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.coredao.org\",\r\n        \"shortName\": \"tcore2\",\r\n        \"chainId\": 1114,\r\n        \"networkId\": 1114,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Core Scan Testnet2\",\r\n                \"url\": \"https://scan.test2.btcs.network\",\r\n                \"icon\": \"core\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Taker Chain Mainnet\",\r\n        \"chain\": \"Taker\",\r\n        \"icon\": \"taker\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.taker.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Taker\",\r\n            \"symbol\": \"TAKER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.taker.xyz\",\r\n        \"shortName\": \"taker\",\r\n        \"chainId\": 1125,\r\n        \"networkId\": 1125,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TakerScan\",\r\n                \"url\": \"https://explorer.taker.xyz\",\r\n                \"icon\": \"taker\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Litheum Test Network\",\r\n        \"chain\": \"Litheum\",\r\n        \"rpc\": [\r\n            \"https://testnet.litheum.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lith\",\r\n            \"symbol\": \"LTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://litheum.com\",\r\n        \"shortName\": \"lith\",\r\n        \"chainId\": 1174,\r\n        \"networkId\": 1174,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Litheum Test Network Explorer\",\r\n                \"url\": \"https://explorer.litheum.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cuckoo Chain\",\r\n        \"title\": \"Cuckoo Chain\",\r\n        \"chain\": \"CuckooAI\",\r\n        \"icon\": \"cuckoo-ai\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.cuckoo.network\",\r\n            \"wss://mainnet-rpc.cuckoo.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CuckooAI\",\r\n            \"symbol\": \"CAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cuckoo.network\",\r\n        \"shortName\": \"cai\",\r\n        \"chainId\": 1200,\r\n        \"networkId\": 1200,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cuckoo Chain Explorer\",\r\n                \"url\": \"https://scan.cuckoo.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cuckoo Sepolia\",\r\n        \"title\": \"Cuckoo AI Testnet Sepolia\",\r\n        \"chain\": \"CuckooAI\",\r\n        \"icon\": \"cuckoo-ai\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.cuckoo.network\",\r\n            \"wss://testnet-rpc.cuckoo.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://cuckoo.network/portal/faucet/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CuckooAI\",\r\n            \"symbol\": \"CAI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cuckoo.network\",\r\n        \"shortName\": \"caisepolia\",\r\n        \"chainId\": 1210,\r\n        \"networkId\": 1210,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cuckoo Sepolia Explorer\",\r\n                \"url\": \"https://testnet-scan.cuckoo.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ADF Chain Testnet\",\r\n        \"chain\": \"ADF Chain Testnet\",\r\n        \"icon\": \"addfilltest\",\r\n        \"rpc\": [\r\n            \"https://testnet.adftechnology.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ADDFILL Testnet\",\r\n            \"symbol\": \"tADF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.adfstarworld.com/\",\r\n        \"shortName\": \"tADF\",\r\n        \"chainId\": 1212,\r\n        \"networkId\": 1212,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ADF Testnet explorer\",\r\n                \"url\": \"https://testnet-explorer.adftechnology.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"ADF Chain\",\r\n        \"chain\": \"ADF Chain\",\r\n        \"icon\": \"addfillmain\",\r\n        \"rpc\": [\r\n            \"https://mainnet.adftechnology.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ADDFILL\",\r\n            \"symbol\": \"ADF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.adfstarworld.com/\",\r\n        \"shortName\": \"ADF\",\r\n        \"chainId\": 1215,\r\n        \"networkId\": 1215,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ADF explorer\",\r\n                \"url\": \"https://explorer.adftechnology.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Cycle Network Testnet Jellyfish\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://jellyfish-rpc-testnet.cyclenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cyclenetwork.io/\",\r\n        \"shortName\": \"cyclej\",\r\n        \"chainId\": 1223,\r\n        \"networkId\": 1223,\r\n        \"icon\": \"cycle\"\r\n    },\r\n    {\r\n        \"name\": \"Hybrid Testnet\",\r\n        \"chain\": \"HYB\",\r\n        \"icon\": \"hybridIcon\",\r\n        \"rpc\": [\r\n            \"https://hybrid-testnet.rpc.caldera.xyz/http\",\r\n            \"wss://hybrid-testnet.rpc.caldera.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hybrid\",\r\n            \"symbol\": \"HYB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://buildonhybrid.com\",\r\n        \"shortName\": \"hyb\",\r\n        \"chainId\": 1225,\r\n        \"networkId\": 1225,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hybrid Testnet\",\r\n                \"url\": \"https://explorer.buildonhybrid.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Bitcoin Protocol Testnet\",\r\n        \"chain\": \"BTCP Testnet\",\r\n        \"icon\": \"btcprotocol\",\r\n        \"rpc\": [\r\n            \"https://testnet-chain.btcprotocol.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC Protocol\",\r\n            \"symbol\": \"BTCP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://btcprotocol.io/\",\r\n        \"shortName\": \"BTCP\",\r\n        \"chainId\": 1227,\r\n        \"networkId\": 1227,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BTCP explorer\",\r\n                \"url\": \"https://explorer.btcprotocol.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Cycle Network Testnet Cuttlefish\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://cuttlefish-rpc-testnet.cyclenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cyclenetwork.io/\",\r\n        \"shortName\": \"cyclec\",\r\n        \"chainId\": 1228,\r\n        \"networkId\": 1228,\r\n        \"icon\": \"cycle\"\r\n    },\r\n    {\r\n        \"name\": \"ITX Mainnet\",\r\n        \"chain\": \"ITX\",\r\n        \"rpc\": [\r\n            \"https://rpc.itxchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ITX\",\r\n            \"symbol\": \"ITX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.itxchain.com\",\r\n        \"shortName\": \"itx\",\r\n        \"chainId\": 1235,\r\n        \"networkId\": 1235,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ITX Mainnet Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.itxchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metacces Testnet\",\r\n        \"chain\": \"Metacces Testnet\",\r\n        \"icon\": \"metacces\",\r\n        \"rpc\": [\r\n            \"https://tapi.accesscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metacces\",\r\n            \"symbol\": \"ACCES\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metacces.com\",\r\n        \"shortName\": \"ACCESt\",\r\n        \"chainId\": 1260,\r\n        \"networkId\": 1260,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"accesscan\",\r\n                \"url\": \"https://testnet.accesscan.io\",\r\n                \"icon\": \"metacces\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Argochain Testnet\",\r\n        \"chain\": \"Argochain\",\r\n        \"icon\": \"argochain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.devolvedai.com\",\r\n            \"https://test-rpc.devolvedai.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.argoscan.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Argocoin\",\r\n            \"symbol\": \"AGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://devolvedai.com\",\r\n        \"shortName\": \"tAGC\",\r\n        \"chainId\": 1298,\r\n        \"networkId\": 1298,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Argochain Test Scanner\",\r\n                \"url\": \"https://test-scanner.devolvedai.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Argochain\",\r\n        \"chain\": \"Argochain\",\r\n        \"icon\": \"argochain\",\r\n        \"rpc\": [\r\n            \"https://rpc.devolvedai.com\",\r\n            \"https://rpc-mainnet.devolvedai.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Argocoin\",\r\n            \"symbol\": \"AGC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://devolvedai.com\",\r\n        \"shortName\": \"AGC\",\r\n        \"chainId\": 1299,\r\n        \"networkId\": 1299,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Argochain Scanner\",\r\n                \"url\": \"https://scanner.argoscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Glue Mainnet\",\r\n        \"chain\": \"GLUE\",\r\n        \"rpc\": [\r\n            \"https://rpc.glue.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Glue\",\r\n            \"symbol\": \"GLUE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://glue.net/\",\r\n        \"shortName\": \"glue\",\r\n        \"chainId\": 1300,\r\n        \"networkId\": 1300,\r\n        \"icon\": \"glue\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Glue Explorer\",\r\n                \"url\": \"https://explorer.glue.net\",\r\n                \"icon\": \"glue\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"COINZAX\",\r\n        \"chain\": \"ZAX\",\r\n        \"icon\": \"coinzaxIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.coinzax.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"COINZAX\",\r\n            \"symbol\": \"ZAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://coinzax.com\",\r\n        \"shortName\": \"zax\",\r\n        \"chainId\": 1310,\r\n        \"networkId\": 1310,\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"COINZAX Explorer\",\r\n                \"url\": \"https://explorer.coinzax.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"JaiHo Chain\",\r\n        \"chain\": \"JaiHoChain\",\r\n        \"icon\": \"jaihoIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.jaihochain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JaiHo\",\r\n            \"symbol\": \"JaiHo\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://jaihochain.com\",\r\n        \"shortName\": \"JHC\",\r\n        \"chainId\": 1313,\r\n        \"networkId\": 1313,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JaiHo Chain Explorer\",\r\n                \"url\": \"https://jaihochain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Story Aeneid Testnet\",\r\n        \"chain\": \"Story Aeneid Testnet\",\r\n        \"rpc\": [\r\n            \"https://aeneid.storyrpc.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IP Token\",\r\n            \"symbol\": \"IP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://story.foundation/\",\r\n        \"icon\": \"story\",\r\n        \"shortName\": \"story-aeneid\",\r\n        \"chainId\": 1315,\r\n        \"networkId\": 1315,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://aeneid.storyscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sei Testnet\",\r\n        \"chain\": \"Sei\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc-testnet.sei-apis.com\",\r\n            \"wss://evm-ws-testnet.sei-apis.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://atlantic-2.app.sei.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sei\",\r\n            \"symbol\": \"SEI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sei.io\",\r\n        \"shortName\": \"sei-testnet\",\r\n        \"chainId\": 1328,\r\n        \"networkId\": 1328,\r\n        \"icon\": \"sei\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Seitrace\",\r\n                \"url\": \"https://seitrace.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKBase Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.zkbase.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zkbase.org/\",\r\n        \"shortName\": \"zkbase\",\r\n        \"chainId\": 1456,\r\n        \"networkId\": 1456,\r\n        \"slip44\": 1,\r\n        \"icon\": \"zkbase\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZKbase Block Explorer\",\r\n                \"url\": \"https://explorer.zkbase.app\",\r\n                \"icon\": \"zkbase\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.zkbase.app/\"\r\n                }\r\n            ]\r\n        },\r\n        \"redFlags\": [\r\n            \"reusedChainId\"\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Story Testnet\",\r\n        \"chain\": \"Story Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.storyrpc.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.story.foundation\"\r\n        ],\r\n        \"chainId\": 1513,\r\n        \"networkId\": 1513,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IP\",\r\n            \"symbol\": \"IP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.story.foundation\",\r\n        \"shortName\": \"Story\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Story Iliad Network explorer\",\r\n                \"url\": \"https://testnet.storyscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Story\",\r\n        \"chain\": \"STORY\",\r\n        \"rpc\": [\r\n            \"https://mainnet.storyrpc.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IP Token\",\r\n            \"symbol\": \"IP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://story.foundation/\",\r\n        \"icon\": \"story\",\r\n        \"shortName\": \"sty\",\r\n        \"chainId\": 1514,\r\n        \"networkId\": 1514,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://mainnet.storyscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Story Odyssey Testnet\",\r\n        \"chain\": \"Story Odyssey Testnet\",\r\n        \"rpc\": [\r\n            \"https://odyssey.storyrpc.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"chainId\": 1516,\r\n        \"networkId\": 1516,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IP\",\r\n            \"symbol\": \"IP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.story.foundation\",\r\n        \"shortName\": \"story-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Story Odyssey Network explorer\",\r\n                \"url\": \"https://odyssey-testnet-explorer.storyscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Datacore Smart Chain\",\r\n        \"chain\": \"Datacore Smart Chain\",\r\n        \"icon\": \"dscscan\",\r\n        \"rpc\": [\r\n            \"https://rpc01.dscscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Datacore Smart Chain\",\r\n            \"symbol\": \"DSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rpc01.dscscan.io\",\r\n        \"shortName\": \"DSCs\",\r\n        \"chainId\": 1555,\r\n        \"networkId\": 1555,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Datacore Smart Chain\",\r\n                \"url\": \"https://dscscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"StarCHAIN Testnet\",\r\n        \"chain\": \"StarCHAIN\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc1.starworksglobal.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"STARX\",\r\n            \"symbol\": \"STARX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.starworksglobal.com\",\r\n        \"shortName\": \"starchain-testnet\",\r\n        \"chainId\": 1570,\r\n        \"networkId\": 1570,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"StarCHAIN Explorer\",\r\n                \"url\": \"https://testnet.starchainscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"StarCHAIN\",\r\n        \"chain\": \"StarCHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.starworksglobal.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"STARX\",\r\n            \"symbol\": \"STARX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.starworksglobal.com\",\r\n        \"shortName\": \"starchain\",\r\n        \"chainId\": 1578,\r\n        \"networkId\": 1578,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"StarCHAIN Explorer\",\r\n                \"url\": \"https://starchainscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Betherance\",\r\n        \"chain\": \"Beth\",\r\n        \"rpc\": [\r\n            \"https://rpc.bethscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Betherance\",\r\n            \"symbol\": \"BETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rpc.bethscan.io\",\r\n        \"shortName\": \"Beth\",\r\n        \"chainId\": 1605,\r\n        \"networkId\": 1605,\r\n        \"icon\": \"betherance\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bethscan\",\r\n                \"url\": \"https://bethscan.io\",\r\n                \"icon\": \"betherance\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pivotal Mainnet\",\r\n        \"chainId\": 1648,\r\n        \"networkId\": 1648,\r\n        \"chain\": \"Pivotal\",\r\n        \"rpc\": [\r\n            \"https://mainnet.pivotalprotocol.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"shortName\": \"pivotal-mainnet\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pivotal ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://thepivotal.xyz/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pivotal Scan\",\r\n                \"url\": \"https://pivotalscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NERO Mainnet\",\r\n        \"chain\": \"NERO Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.nerochain.io\",\r\n            \"wss://ws.nerochain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NERO\",\r\n            \"symbol\": \"NERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.nerochain.io/\",\r\n        \"shortName\": \"NERO\",\r\n        \"chainId\": 1689,\r\n        \"networkId\": 1689,\r\n        \"slip44\": 1,\r\n        \"icon\": \"nero\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"nero mainnet scan\",\r\n                \"url\": \"https://www.neroscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lif3 Chain Testnet\",\r\n        \"chain\": \"lif3chain\",\r\n        \"rpc\": [\r\n            \"https://testnet-evm.lif3.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LIF3\",\r\n            \"symbol\": \"LIF3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.lif3.com/\",\r\n        \"shortName\": \"lif3-testnet\",\r\n        \"icon\": \"lif3\",\r\n        \"chainId\": 1811,\r\n        \"networkId\": 1811,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"lif3scout\",\r\n                \"url\": \"https://testnet.lif3scout.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PlayBlock\",\r\n        \"chain\": \"playblock\",\r\n        \"rpc\": [\r\n            \"https://rpc.playblock.io\",\r\n            \"wss://ws.playblock.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PlayBlock\",\r\n            \"symbol\": \"PBG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.playnance.com\",\r\n        \"shortName\": \"playblock\",\r\n        \"chainId\": 1829,\r\n        \"slip44\": 60,\r\n        \"networkId\": 1829,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PlayBlock\",\r\n                \"url\": \"https://explorer.playblock.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/playblock\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Verify testnet\",\r\n        \"title\": \"Verify Testnet\",\r\n        \"chain\": \"verify-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.verify-testnet.gelato.digital\",\r\n            \"wss://ws.verify-testnet.gelato.digital\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Matic\",\r\n            \"symbol\": \"MATIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/verify-testnet\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"verify-testnet\",\r\n        \"chainId\": 1833,\r\n        \"networkId\": 1833,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://verify-testnet.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-80002\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/verify-testnet\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"HighOctane Subnet\",\r\n        \"chain\": \"HighOctane Subnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/highoctane/mainnet/rpc\",\r\n            \"wss://subnets.avax.network/highoctane/mainnet/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HighOctane\",\r\n            \"symbol\": \"HO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://subnets.avax.network/highoctane/details\",\r\n        \"shortName\": \"HighOctane\",\r\n        \"chainId\": 1853,\r\n        \"networkId\": 1853,\r\n        \"icon\": \"highOctane\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"HighOctane Subnet Explorer\",\r\n                \"url\": \"https://subnets.avax.network/highoctane\",\r\n                \"icon\": \"highOctane\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ReDeFi Layer 2\",\r\n        \"chain\": \"ReDeFi\",\r\n        \"icon\": \"redefi\",\r\n        \"rpc\": [\r\n            \"https://layer2.redefi.world\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RED\",\r\n            \"symbol\": \"RED\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://redefi.world\",\r\n        \"shortName\": \"red\",\r\n        \"chainId\": 1899,\r\n        \"networkId\": 1899,\r\n        \"slip44\": 1899,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ReDeFi Scan\",\r\n                \"url\": \"https://scanlayer2.redefi.world\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Swellchain\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://swell-mainnet.alt.technology\",\r\n            \"https://rpc.ankr.com/swell\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://app.swellnetwork.io/layer2/swell-l2\",\r\n        \"shortName\": \"swellchain\",\r\n        \"chainId\": 1923,\r\n        \"networkId\": 1923,\r\n        \"icon\": \"swell\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Swellchain Explorer\",\r\n                \"url\": \"https://explorer.swellnetwork.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Swellchain Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://swell-testnet.alt.technology\",\r\n            \"https://rpc.ankr.com/swell-testnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://app.swellnetwork.io/layer2/swell-l2\",\r\n        \"shortName\": \"swellchain-sep\",\r\n        \"chainId\": 1924,\r\n        \"networkId\": 1924,\r\n        \"icon\": \"swell\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Swellchain Testnet Explorer\",\r\n                \"url\": \"https://swell-testnet-explorer.alt.technology\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arvix Testnet\",\r\n        \"chain\": \"Arvix\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet-market.arvix.network\",\r\n            \"https://rpc-dev-testnet.arvix.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://claim-faucet.arvix.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Arvix Testnet Native Token\",\r\n            \"symbol\": \"tARV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://arvix.network\",\r\n        \"shortName\": \"arvix\",\r\n        \"chainId\": 1927,\r\n        \"networkId\": 1927,\r\n        \"icon\": \"arvix\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Arvix Explorer Testnet\",\r\n                \"url\": \"https://testnet.arvixscan.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"arvix\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Soneium Testnet Minato\",\r\n        \"shortName\": \"soneium-minato\",\r\n        \"title\": \"Soneium Testnet Minato\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"minato\",\r\n        \"rpc\": [\r\n            \"https://rpc.minato.soneium.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://soneium.org\",\r\n        \"chainId\": 1946,\r\n        \"networkId\": 1946,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout Minato explorer\",\r\n                \"url\": \"https://soneium-minato.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.soneium.org/testnet\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Bionix Testnet\",\r\n        \"chain\": \"Bionix\",\r\n        \"rpc\": [\r\n            \"https://testnet-chain.bionixnetwork.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bionix\",\r\n            \"symbol\": \"tBIO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"bionix\",\r\n        \"infoURL\": \"https://bionixnetwork.com\",\r\n        \"shortName\": \"tbio\",\r\n        \"chainId\": 1949,\r\n        \"networkId\": 1949,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bionix Testnet Explorer\",\r\n                \"url\": \"https://testnet.bionixnetwork.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lydia Coin\",\r\n        \"chain\": \"LYDIA\",\r\n        \"rpc\": [\r\n            \"https://rpc.lydiacoins.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lydia Coin\",\r\n            \"symbol\": \"BSW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/lydia-coin\",\r\n        \"shortName\": \"lydia\",\r\n        \"chainId\": 1989,\r\n        \"networkId\": 1989\r\n    },\r\n    {\r\n        \"name\": \"B3 Sepolia Testnet\",\r\n        \"chain\": \"B3 Sepolia Testnet\",\r\n        \"icon\": \"b3\",\r\n        \"rpc\": [\r\n            \"https://sepolia.b3.fun\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://b3.fun\",\r\n        \"shortName\": \"b3-sepolia\",\r\n        \"chainId\": 1993,\r\n        \"networkId\": 1993,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://sepolia.explorer.b3.fun\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kyoto\",\r\n        \"chain\": \"KYOTO\",\r\n        \"rpc\": [\r\n            \"https://rpc.kyotochain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kyoto\",\r\n            \"symbol\": \"KYOTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://kyotoprotocol.io\",\r\n        \"shortName\": \"kyoto\",\r\n        \"chainId\": 1997,\r\n        \"networkId\": 1997,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kyotoscan\",\r\n                \"url\": \"https://kyotoscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaLink Network\",\r\n        \"chain\": \"MetaLink\",\r\n        \"rpc\": [\r\n            \"http://77.237.237.69:9933\"\r\n        ],\r\n        \"icon\": \"metaLink\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"mtl\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MetaLink\",\r\n            \"symbol\": \"MTL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://totwo3.com:3000\",\r\n        \"chainId\": 2004,\r\n        \"networkId\": 2004,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaScan\",\r\n                \"url\": \"http://twoto3.com:3000\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metacces Mainnet\",\r\n        \"chain\": \"Metacces Mainnet\",\r\n        \"icon\": \"metacces\",\r\n        \"rpc\": [\r\n            \"https://oli.accesscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Metacces\",\r\n            \"symbol\": \"ACCES\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metacces.com\",\r\n        \"shortName\": \"ACCES\",\r\n        \"chainId\": 2071,\r\n        \"networkId\": 2071,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"accesscan\",\r\n                \"url\": \"https://accesscan.io\",\r\n                \"icon\": \"metacces\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Animechain Testnet\",\r\n        \"chain\": \"Animechain\",\r\n        \"rpc\": [\r\n            \"https://rpc.kanda.animechain.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Coin\",\r\n            \"symbol\": \"COIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://animechain.ai\",\r\n        \"shortName\": \"animechaint\",\r\n        \"chainId\": 2162,\r\n        \"networkId\": 2162,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.kanda.animechain.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Game7\",\r\n        \"title\": \"Game7\",\r\n        \"chain\": \"Game7\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.game7.io\",\r\n            \"wss://mainnet-rpc.game7.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"G7\",\r\n            \"symbol\": \"G7\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://game7.io/\",\r\n        \"shortName\": \"g7\",\r\n        \"chainId\": 2187,\r\n        \"networkId\": 2187,\r\n        \"icon\": \"game7\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://mainnet.game7.io\",\r\n                \"icon\": \"game7\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SnaxChain\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.snaxchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://synthetix.io\",\r\n        \"shortName\": \"snax\",\r\n        \"chainId\": 2192,\r\n        \"networkId\": 2192,\r\n        \"icon\": \"snax\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.snaxchain.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CratD2C\",\r\n        \"chain\": \"CRATD2C\",\r\n        \"rpc\": [\r\n            \"https://node1.cratd2csmartchain.io\",\r\n            \"https://node2.cratd2csmartchain.io\",\r\n            \"https://node3.cratd2csmartchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CRATD2C\",\r\n            \"symbol\": \"CRAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cratd2csmartchain.io\",\r\n        \"shortName\": \"cratd2c\",\r\n        \"chainId\": 2310,\r\n        \"networkId\": 2310,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.cratd2csmartchain.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chronicle Vesuvius - Lit Protocol Testnet\",\r\n        \"chain\": \"LPV\",\r\n        \"icon\": \"lit\",\r\n        \"rpc\": [\r\n            \"https://vesuvius-rpc.litprotocol.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://developer.litprotocol.com/support/intro\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test LPX\",\r\n            \"symbol\": \"tstLPX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://litprotocol.com\",\r\n        \"shortName\": \"lpv\",\r\n        \"chainId\": 2311,\r\n        \"networkId\": 2311,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lit Chronicle Vesuvius Explorer\",\r\n                \"url\": \"https://vesuvius-explorer.litprotocol.com\",\r\n                \"icon\": \"lit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GOAT Network\",\r\n        \"title\": \"GOAT Network\",\r\n        \"chain\": \"GOAT\",\r\n        \"rpc\": [\r\n            \"https://rpc.goat.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.goat.network\",\r\n        \"shortName\": \"goat\",\r\n        \"chainId\": 2345,\r\n        \"networkId\": 2345,\r\n        \"icon\": \"goat\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.goat.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KiteAI Testnet\",\r\n        \"chain\": \"KiteAI\",\r\n        \"icon\": \"kite\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.gokite.ai\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.gokite.ai/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kite\",\r\n            \"symbol\": \"KITE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gokite.ai/\",\r\n        \"shortName\": \"KiteAI\",\r\n        \"chainId\": 2368,\r\n        \"networkId\": 1,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kitescan\",\r\n                \"url\": \"https://testnet.kitescan.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TAC Turin\",\r\n        \"title\": \"TAC Testnet Turin\",\r\n        \"chain\": \"TAC\",\r\n        \"icon\": \"tactestnet\",\r\n        \"rpc\": [\r\n            \"https://turin.rpc.tac.build\",\r\n            \"https://rpc.ankr.com/tac_turin\",\r\n            \"https://turin-ws.rpc.tac.build\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://turin.faucet.tac.build/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TAC\",\r\n            \"symbol\": \"TAC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tac.build/\",\r\n        \"shortName\": \"tacchain_2390-1\",\r\n        \"chainId\": 2390,\r\n        \"networkId\": 2390,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TAC Turin Blockscout\",\r\n                \"url\": \"https://turin.explorer.tac.build\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rufus\",\r\n        \"chain\": \"rufus\",\r\n        \"rpc\": [\r\n            \"https://rufus.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogelon\",\r\n            \"symbol\": \"ELON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://rufus.hub.caldera.xyz\",\r\n        \"shortName\": \"rufus\",\r\n        \"chainId\": 2420,\r\n        \"networkId\": 2420,\r\n        \"icon\": \"rufus\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rufus Caldera Explorer\",\r\n                \"url\": \"https://rufus.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"inEVM Testnet\",\r\n        \"chain\": \"inEVM testnet\",\r\n        \"icon\": \"inevm\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.inevm.com/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Injective\",\r\n            \"symbol\": \"INJ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://inevm.com\",\r\n        \"shortName\": \"inevm-testnet\",\r\n        \"chainId\": 2424,\r\n        \"networkId\": 2424,\r\n        \"explorers\": [],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Standard Testnet\",\r\n        \"chain\": \"STND Testnet\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Standard\",\r\n            \"symbol\": \"STND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://standardweb3.com\",\r\n        \"shortName\": \"stndtestnet\",\r\n        \"chainId\": 2426,\r\n        \"networkId\": 2426,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"6Degree of Outreach\",\r\n        \"chain\": \"6DO\",\r\n        \"rpc\": [\r\n            \"https://rpc.6do.world\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"6Degree Coin\",\r\n            \"symbol\": \"6DO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://6do.world\",\r\n        \"shortName\": \"6do\",\r\n        \"chainId\": 2477,\r\n        \"networkId\": 2477,\r\n        \"icon\": \"6do\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"6Degree Chain Explorer\",\r\n                \"url\": \"https://explorer.6do.world\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NOW Chain Mainnet\",\r\n        \"chain\": \"NOW\",\r\n        \"icon\": \"nowchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.nowscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NOW Coin\",\r\n            \"symbol\": \"NOW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nowchain.co\",\r\n        \"shortName\": \"now\",\r\n        \"chainId\": 2488,\r\n        \"networkId\": 2488,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NOW Scan\",\r\n                \"url\": \"https://nowscan.io\",\r\n                \"icon\": \"nowchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"K2 Testnet\",\r\n        \"chain\": \"K2\",\r\n        \"icon\": \"karak\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://karak.network\",\r\n        \"shortName\": \"K2-testnet\",\r\n        \"chainId\": 2512,\r\n        \"networkId\": 2512,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Bahamut horizon\",\r\n        \"title\": \"Bahamut horizon\",\r\n        \"chain\": \"Bahamut\",\r\n        \"icon\": \"bahamut\",\r\n        \"rpc\": [\r\n            \"https://horizon-fastex-testnet.zeeve.net\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FTN\",\r\n            \"symbol\": \"FTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"horizon\",\r\n        \"infoURL\": \"https://bahamut.io\",\r\n        \"chainId\": 2552,\r\n        \"networkId\": 2552,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://horizon.ftnscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pho Blockchain Mainnet\",\r\n        \"chain\": \"PHO\",\r\n        \"icon\": \"pho\",\r\n        \"rpc\": [\r\n            \"https://mainnet.phochain.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pho\",\r\n            \"symbol\": \"PHO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"phochain.org\",\r\n        \"shortName\": \"pho\",\r\n        \"chainId\": 2605,\r\n        \"networkId\": 2605,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pho Scan\",\r\n                \"url\": \"https://phoscan.org\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"pho\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AILayer Testnet\",\r\n        \"chain\": \"AILayer\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.ailayer.xyz\",\r\n            \"wss://testnet-rpc.ailayer.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ailayer.xyz/\",\r\n        \"shortName\": \"ailayer-testnet\",\r\n        \"chainId\": 2648,\r\n        \"networkId\": 2648,\r\n        \"icon\": \"ailayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-explorer.ailayer.xyz\",\r\n                \"icon\": \"ailayer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AILayer Mainnet\",\r\n        \"chain\": \"AILayer\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.ailayer.xyz\",\r\n            \"wss://mainnet-rpc.ailayer.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ailayer.xyz/\",\r\n        \"shortName\": \"ailayer-mainnet\",\r\n        \"chainId\": 2649,\r\n        \"networkId\": 2649,\r\n        \"icon\": \"ailayer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://mainnet-explorer.ailayer.xyz\",\r\n                \"icon\": \"ailayer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Abstract\",\r\n        \"chain\": \"Abstract\",\r\n        \"rpc\": [\r\n            \"https://api.mainnet.abs.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://abs.xyz\",\r\n        \"shortName\": \"abstract\",\r\n        \"chainId\": 2741,\r\n        \"networkId\": 2741,\r\n        \"icon\": \"abstract\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Etherscan\",\r\n                \"url\": \"https://abscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Abstract Explorer\",\r\n                \"url\": \"https://explorer.mainnet.abs.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.mainnet.abs.xyz/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"HyperAGI Mainnet\",\r\n        \"chain\": \"HyperAGI\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hyperdust\",\r\n            \"symbol\": \"HYPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://hyperagi.network\",\r\n        \"shortName\": \"hypt\",\r\n        \"chainId\": 2868,\r\n        \"networkId\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"hyptscan\",\r\n                \"url\": \"https://block.hyperagi.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chips Network\",\r\n        \"chain\": \"CHIPS\",\r\n        \"rpc\": [\r\n            \"https://node.chips.ooo/wasp/api/v1/chains/iota1pp3d3mnap3ufmgqnjsnw344sqmf5svjh26y2khnmc89sv6788y3r207a8fn/evm\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IOTA\",\r\n            \"symbol\": \"IOTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.chips.ooo\",\r\n        \"shortName\": \"chips\",\r\n        \"chainId\": 2882,\r\n        \"networkId\": 2882\r\n    },\r\n    {\r\n        \"name\": \"Aarma Mainnet\",\r\n        \"chain\": \"Aarma\",\r\n        \"rpc\": [\r\n            \"https://aarmarpc.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aarma\",\r\n            \"symbol\": \"ARMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://aarmachain.com\",\r\n        \"shortName\": \"ARMA\",\r\n        \"chainId\": 2889,\r\n        \"networkId\": 2889,\r\n        \"icon\": \"arma\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"aarmascan\",\r\n                \"url\": \"https://aarmascan.com\",\r\n                \"icon\": \"arma\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BC Hyper Chain Mainnet\",\r\n        \"chain\": \"BC Hyper Chain\",\r\n        \"rpc\": [\r\n            \"https://mainapi.bchscan.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VERSATIZE COIN\",\r\n            \"symbol\": \"VTCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.versatizecoin.com/\",\r\n        \"shortName\": \"BCHYPER\",\r\n        \"chainId\": 3030,\r\n        \"networkId\": 3030,\r\n        \"icon\": \"bchyper\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bcexplorer mainnet\",\r\n                \"url\": \"https://mainnet.bchscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XL Network Testnet\",\r\n        \"chain\": \"XL Network Testnet\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/xlnetworkt/testnet/rpc\",\r\n            \"wss://subnets.avax.network/xlnetworkt/testnet/ws\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XLNetwork\",\r\n            \"symbol\": \"XLN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nysl.io/\",\r\n        \"shortName\": \"nysl\",\r\n        \"icon\": \"nysl\",\r\n        \"chainId\": 3084,\r\n        \"networkId\": 3084,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XL Network Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/xlnetworkt\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EthStorage L2 Mainnet\",\r\n        \"chain\": \"EthStorage\",\r\n        \"rpc\": [\r\n            \"http://mainnet.l2.ethstorage.io:9540\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ethstorage.io/\",\r\n        \"shortName\": \"esl2-m\",\r\n        \"chainId\": 3332,\r\n        \"networkId\": 3332,\r\n        \"slip44\": 1,\r\n        \"status\": \"incubating\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"EthStorage L2 Testnet\",\r\n        \"chain\": \"EthStorage\",\r\n        \"rpc\": [\r\n            \"http://testnet.l2.ethstorage.io:9540\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ethstorage.io/\",\r\n        \"shortName\": \"esl2-t\",\r\n        \"chainId\": 3336,\r\n        \"networkId\": 3336,\r\n        \"slip44\": 1,\r\n        \"status\": \"incubating\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"EthStorage Devnet\",\r\n        \"chain\": \"EthStorage\",\r\n        \"rpc\": [\r\n            \"http://devnet.ethstorage.io:9540\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ethstorage.io/\",\r\n        \"shortName\": \"es-d\",\r\n        \"chainId\": 3337,\r\n        \"networkId\": 3337,\r\n        \"slip44\": 1,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"peaq\",\r\n        \"chain\": \"peaq\",\r\n        \"icon\": \"peaq\",\r\n        \"rpc\": [\r\n            \"https://peaq.api.onfinality.io/public\",\r\n            \"https://peaq-rpc.dwellir.com\",\r\n            \"https://peaq-rpc.publicnode.com\",\r\n            \"https://evm.peaq.network\",\r\n            \"https://responsive-powerful-mansion.peaq-mainnet.quiknode.pro/29963d0a2deee01a20b091926b08d68db12bc68b\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"peaq\",\r\n            \"symbol\": \"PEAQ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.peaq.network\",\r\n        \"shortName\": \"PEAQ\",\r\n        \"chainId\": 3338,\r\n        \"networkId\": 3338,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Subscan\",\r\n                \"url\": \"https://peaq.subscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EthStorage Mainnet\",\r\n        \"chain\": \"EthStorage\",\r\n        \"rpc\": [\r\n            \"http://mainnet.ethstorage.io:9540\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ethstorage.io/\",\r\n        \"shortName\": \"es-m\",\r\n        \"chainId\": 3339,\r\n        \"networkId\": 3339,\r\n        \"slip44\": 1,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Meroneum\",\r\n        \"chain\": \"MERON\",\r\n        \"icon\": \"meron\",\r\n        \"rpc\": [\r\n            \"https://mainnet-node1.meronscan.ai/\",\r\n            \"https://mainnet-node2.meronscan.ai/\",\r\n            \"https://mainnet-node3.meronscan.ai/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MERON\",\r\n            \"symbol\": \"MERON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.meroneum.ai\",\r\n        \"shortName\": \"meron-testnet\",\r\n        \"chainId\": 3366,\r\n        \"networkId\": 3366,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"meronscan\",\r\n                \"url\": \"https://meronscan.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Meroneum Testnet\",\r\n        \"chain\": \"MERON\",\r\n        \"icon\": \"meron\",\r\n        \"rpc\": [\r\n            \"https://testnet-node1.meronscan.ai/\",\r\n            \"https://testnet-node2.meronscan.ai/\",\r\n            \"https://testnet-node3.meronscan.ai/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MERON\",\r\n            \"symbol\": \"MERON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.meroneum.ai/\",\r\n        \"shortName\": \"meron\",\r\n        \"chainId\": 3369,\r\n        \"networkId\": 3369,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"meronscan\",\r\n                \"url\": \"https://testnet.meronscan.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LayerEdge testnet\",\r\n        \"chain\": \"LayerEdge\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.layeredge.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.layeredge.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.layeredge.io\",\r\n        \"shortName\": \"LayerEdge-testnet\",\r\n        \"chainId\": 3456,\r\n        \"networkId\": 3456,\r\n        \"icon\": \"layerEdge\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LayerEdge Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.layeredge.io\",\r\n                \"icon\": \"layerEdge\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GTCSCAN\",\r\n        \"chain\": \"GTC\",\r\n        \"icon\": \"gtc\",\r\n        \"rpc\": [\r\n            \"https://gtc-dataseed.gtcscan.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GTC\",\r\n            \"symbol\": \"GTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gtcscan.io/\",\r\n        \"shortName\": \"gtc\",\r\n        \"chainId\": 3490,\r\n        \"networkId\": 3490,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GTCScan Explorer\",\r\n                \"url\": \"https://gtcscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"gtc\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"JFINPOS\",\r\n        \"chain\": \"JFINPOS\",\r\n        \"icon\": \"jfinpos\",\r\n        \"rpc\": [\r\n            \"https://rpc.jfinpos.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JFINPOS\",\r\n            \"symbol\": \"JPOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://jfinpos.com\",\r\n        \"shortName\": \"jzero\",\r\n        \"chainId\": 3502,\r\n        \"networkId\": 3502,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"JFINPOS Explorer\",\r\n                \"url\": \"https://exp.jfinpos.com\",\r\n                \"icon\": \"jfinpos\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"iChain Testnet\",\r\n        \"chain\": \"iChain Testnet\",\r\n        \"icon\": \"iChain\",\r\n        \"rpc\": [\r\n            \"https://istanbul.ichainscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ISLAMICOIN\",\r\n            \"symbol\": \"ISLAMI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://islamicoin.finance\",\r\n        \"shortName\": \"ISLAMIT\",\r\n        \"chainId\": 3645,\r\n        \"networkId\": 3645,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"iChainscan\",\r\n                \"url\": \"https://test.ichainscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xone Mainnet\",\r\n        \"chain\": \"XOC\",\r\n        \"icon\": \"Xonechain\",\r\n        \"rpc\": [\r\n            \"https://rpc.xone.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.xone.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xone Coin\",\r\n            \"symbol\": \"XOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xone.org\",\r\n        \"shortName\": \"XOC\",\r\n        \"chainId\": 3721,\r\n        \"networkId\": 3721,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xonescan\",\r\n                \"url\": \"https://xscscan.com\",\r\n                \"icon\": \"Xonescan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PayNetwork Mainnet\",\r\n        \"chain\": \"paynetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc.paynetwork.io\",\r\n            \"https://paynetwork-main.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PayNetwork\",\r\n            \"symbol\": \"Pay\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://paynetwork-main.hub.caldera.xyz\",\r\n        \"shortName\": \"paynetwork\",\r\n        \"chainId\": 3969,\r\n        \"networkId\": 3969,\r\n        \"icon\": \"paynetwork\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PayNetwork Mainnet Caldera Explorer\",\r\n                \"url\": \"https://paynetwork-main.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bahamut ocean\",\r\n        \"title\": \"Bahamut ocean\",\r\n        \"chain\": \"Bahamut\",\r\n        \"icon\": \"bahamut\",\r\n        \"rpc\": [\r\n            \"https://rpc1.ocean.bahamutchain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FTN\",\r\n            \"symbol\": \"FTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"ocean\",\r\n        \"infoURL\": \"https://bahamut.io\",\r\n        \"chainId\": 4058,\r\n        \"networkId\": 4058,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://ocean.ftnscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zeroth Mainnet\",\r\n        \"chain\": \"ZRH\",\r\n        \"icon\": \"zeroth\",\r\n        \"rpc\": [\r\n            \"https://my.zeroth.run\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZRH\",\r\n            \"symbol\": \"ZRH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zeroth.foundation\",\r\n        \"shortName\": \"ZRH\",\r\n        \"chainId\": 4088,\r\n        \"networkId\": 4088,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zeroth Explorer\",\r\n                \"url\": \"https://scan.zeroth.run\",\r\n                \"icon\": \"zeroth\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CrossFi Mainnet\",\r\n        \"icon\": \"crossfi\",\r\n        \"chain\": \"crossfi\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.ms/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CrossFi Token\",\r\n            \"symbol\": \"XFI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://crossfi.org\",\r\n        \"shortName\": \"crossfi\",\r\n        \"chainId\": 4158,\r\n        \"networkId\": 4158,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CrossFi Mainnet Scan\",\r\n                \"url\": \"https://xfiscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SX Rollup\",\r\n        \"chain\": \"SX\",\r\n        \"icon\": \"SX\",\r\n        \"rpc\": [\r\n            \"https://rpc.sx-rollup.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SX Network\",\r\n            \"symbol\": \"SX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sx.technology\",\r\n        \"shortName\": \"SXR\",\r\n        \"chainId\": 4162,\r\n        \"networkId\": 4162,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SX L2 Explorer\",\r\n                \"url\": \"https://explorerl2.sx.technology\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"SX\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Merlin Erigon Testnet\",\r\n        \"title\": \"Merlin Erigon Testnet\",\r\n        \"chain\": \"Merlin\",\r\n        \"rpc\": [\r\n            \"https://testnet-erigon-rpc.merlinchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://merlinchain.io\",\r\n        \"shortName\": \"Merlin-Testnet\",\r\n        \"chainId\": 4203,\r\n        \"networkId\": 4203,\r\n        \"icon\": \"merlin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"L2scan\",\r\n                \"url\": \"https://testnet-erigon-scan.merlinchain.io\",\r\n                \"icon\": \"merlin\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Laika Testnet\",\r\n        \"chain\": \"LAIKA\",\r\n        \"rpc\": [\r\n            \"https://testnetrpc1.laikachain.dog\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://laikachain.dog/faucets\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogecoin\",\r\n            \"symbol\": \"DOGE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://laikachain.dog\",\r\n        \"shortName\": \"laika-testnet\",\r\n        \"chainId\": 4269,\r\n        \"networkId\": 4269,\r\n        \"icon\": \"laika\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Laika Testnet Explorer\",\r\n                \"url\": \"https://testnet.laikachain.dog\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Echos Chain\",\r\n        \"chain\": \"Echos\",\r\n        \"rpc\": [\r\n            \"https://rpc-echos-mainnet-0.t.conduit.xyz\"\r\n        ],\r\n        \"features\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD Coin\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.echos.fun/\",\r\n        \"shortName\": \"echos\",\r\n        \"chainId\": 4321,\r\n        \"networkId\": 4321,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Echos Explorer\",\r\n                \"url\": \"https://explorer.echos.fun\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MemeCore\",\r\n        \"title\": \"MemeCore\",\r\n        \"chain\": \"MemeCore\",\r\n        \"icon\": \"memecore\",\r\n        \"rpc\": [\r\n            \"https://rpc.memecore.net\",\r\n            \"wss://ws.memecore.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"M\",\r\n            \"symbol\": \"M\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://memecore.com\",\r\n        \"shortName\": \"m\",\r\n        \"chainId\": 4352,\r\n        \"networkId\": 4352,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OKX-MemeCore\",\r\n                \"url\": \"https://www.okx.com/web3/explorer/memecore\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"MemeCoreScan\",\r\n                \"url\": \"https://memecorescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"MemeCore explorer\",\r\n                \"url\": \"https://blockscout.memecore.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Testnet Pika\",\r\n        \"chain\": \"tPKA\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc1.pikascan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"testnetpsc\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Pika\",\r\n            \"symbol\": \"tPKA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://pikaminter.com\",\r\n        \"shortName\": \"PikaMinter\",\r\n        \"chainId\": 4422,\r\n        \"networkId\": 4422,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Emoney Network Mainnet\",\r\n        \"chain\": \"Emoney\",\r\n        \"rpc\": [\r\n            \"https://rpc-publicnode.emoney.io/\",\r\n            \"https://public-node1-rpc.emoney.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Emoney Coin\",\r\n            \"symbol\": \"EMYC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://emoney.io/\",\r\n        \"shortName\": \"emoney\",\r\n        \"chainId\": 4545,\r\n        \"networkId\": 4545,\r\n        \"icon\": \"emoney\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EMoney Explorer\",\r\n                \"url\": \"https://explore.emoney.network\",\r\n                \"icon\": \"emoney\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MST Chain\",\r\n        \"title\": \"MST Chain\",\r\n        \"chain\": \"MST\",\r\n        \"rpc\": [\r\n            \"https://mariorpc.mstblockchain.com\",\r\n            \"https://craftrpc.mstblockchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MST\",\r\n            \"symbol\": \"MST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mstblockchain.com\",\r\n        \"shortName\": \"mst\",\r\n        \"chainId\": 4646,\r\n        \"networkId\": 4646,\r\n        \"slip44\": 4646,\r\n        \"icon\": \"mst\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MST Mainnet Scan\",\r\n                \"url\": \"https://mstscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AppChain Testnet\",\r\n        \"chain\": \"AppChain Testnet\",\r\n        \"rpc\": [\r\n            \"https://appchaintestnet.rpc.caldera.xyz/http\",\r\n            \"wss://appchaintestnet.rpc.caldera.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://appchain.xyz\",\r\n        \"shortName\": \"appchaintestnet\",\r\n        \"chainId\": 4661,\r\n        \"networkId\": 4661,\r\n        \"icon\": \"appchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AppChain Testnet Explorer\",\r\n                \"url\": \"https://appchaintestnet.explorer.caldera.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://appchaintestnet.bridge.caldera.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Evnode Testnet\",\r\n        \"chain\": \"Evnode\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.evnode.org/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.evnode.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Evnode Testnet Native Token\",\r\n            \"symbol\": \"tEVO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://evnode.org\",\r\n        \"shortName\": \"evnode\",\r\n        \"chainId\": 4786,\r\n        \"networkId\": 4786,\r\n        \"icon\": \"evnode\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Evnode Explorer Testnet\",\r\n                \"url\": \"https://testnet.evscan.net\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"evnode\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"World Chain Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://worldchain-sepolia.g.alchemy.com/public\",\r\n            \"https://4801.rpc.thirdweb.com\",\r\n            \"https://worldchain-sepolia.gateway.tenderly.co\",\r\n            \"wss://worldchain-sepolia.gateway.tenderly.co\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.alchemy.com/faucets/world-chain-sepolia\",\r\n            \"https://console.optimism.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://world.org/world-chain\",\r\n        \"shortName\": \"wcsep\",\r\n        \"chainId\": 4801,\r\n        \"networkId\": 4801,\r\n        \"slip44\": 1,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://worldchain-sepolia.bridge.alchemy.com\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"etherscan\",\r\n                \"url\": \"https://sepolia.worldscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://worldchain-sepolia.explorer.alchemy.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OEV Network\",\r\n        \"chain\": \"oev-network\",\r\n        \"rpc\": [\r\n            \"https://oev.rpc.api3.org\",\r\n            \"https://oev-network.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://api3.org/oev/\",\r\n        \"shortName\": \"oev-network\",\r\n        \"chainId\": 4913,\r\n        \"networkId\": 4913,\r\n        \"icon\": \"oev-network\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OEV Network Explorer\",\r\n                \"url\": \"https://oev.explorer.api3.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"OEV Network Caldera Explorer\",\r\n                \"url\": \"https://oev-network.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Skate Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.skatechain.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.skatechain.org/\",\r\n        \"shortName\": \"skate\",\r\n        \"chainId\": 5050,\r\n        \"networkId\": 5050,\r\n        \"icon\": \"skate\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Skate Explorer\",\r\n                \"url\": \"https://scan.skatechain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Pioneer Zero Chain\",\r\n        \"chain\": \"PZO\",\r\n        \"icon\": \"pzo\",\r\n        \"rpc\": [\r\n            \"https://rpc.zeroscan.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zeroscan.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pioneer Zero\",\r\n            \"symbol\": \"PZO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pionechain.com\",\r\n        \"shortName\": \"pzo\",\r\n        \"chainId\": 5080,\r\n        \"networkId\": 5080,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pioneer Zero Chain Explorer\",\r\n                \"url\": \"https://zeroscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Pioneer Zero Chain Explorer\",\r\n                \"url\": \"https://zero.pionescan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pione Chain Mainnet\",\r\n        \"chain\": \"PIO\",\r\n        \"icon\": \"pio\",\r\n        \"rpc\": [\r\n            \"https://rpc.pionescan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pione\",\r\n            \"symbol\": \"PIO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pionechain.com\",\r\n        \"shortName\": \"pio\",\r\n        \"chainId\": 5090,\r\n        \"networkId\": 5090,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pione Chain Explorer\",\r\n                \"url\": \"https://pionescan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ham\",\r\n        \"chain\": \"Ham\",\r\n        \"rpc\": [\r\n            \"https://rpc.ham.fun\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ham.fun\",\r\n        \"shortName\": \"ham\",\r\n        \"chainId\": 5112,\r\n        \"networkId\": 5112,\r\n        \"icon\": \"ham\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.ham.fun\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Citrea Testnet\",\r\n        \"chain\": \"Citrea\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.citrea.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://citrea.xyz/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Citrea BTC\",\r\n            \"symbol\": \"cBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://citrea.xyz\",\r\n        \"shortName\": \"citrea-testnet\",\r\n        \"chainId\": 5115,\r\n        \"networkId\": 5115,\r\n        \"icon\": \"citrea\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Citrea Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.citrea.xyz\",\r\n                \"icon\": \"citrea\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Moca Chain Testnet\",\r\n        \"chain\": \"Moca Chain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.mechain.tech\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mechain.tech\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MOCA\",\r\n            \"symbol\": \"MOCA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mechain.tech\",\r\n        \"shortName\": \"MOCA\",\r\n        \"chainId\": 5151,\r\n        \"networkId\": 5151,\r\n        \"icon\": \"moca\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Moca Chain Scan\",\r\n                \"url\": \"https://testnet-scan.mechain.tech\",\r\n                \"icon\": \"moca\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ITX Testnet\",\r\n        \"chain\": \"ITX\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.itxchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ITX\",\r\n            \"symbol\": \"ITX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.testnet.itxchain.com\",\r\n        \"shortName\": \"itx-testnet\",\r\n        \"chainId\": 5321,\r\n        \"networkId\": 5321,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ITX Testnet Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.testnet.itxchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Superseed\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://mainnet.superseed.xyz\",\r\n            \"wss://mainnet.superseed.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.superseed.xyz\",\r\n        \"shortName\": \"sseed\",\r\n        \"chainId\": 5330,\r\n        \"networkId\": 5330,\r\n        \"slip44\": 1,\r\n        \"icon\": \"superseed\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"seedscout\",\r\n                \"url\": \"https://explorer.superseed.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Netsbo\",\r\n        \"chain\": \"NETSBO\",\r\n        \"rpc\": [\r\n            \"https://rpc1.netsbo.io\",\r\n            \"https://rpc2.netsbo.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Netsbo\",\r\n            \"symbol\": \"NETS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://netsbo.io\",\r\n        \"shortName\": \"nets\",\r\n        \"chainId\": 5333,\r\n        \"networkId\": 5333,\r\n        \"icon\": \"netsbo\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"netsbo\",\r\n                \"url\": \"https://explorer.netsbo.io\",\r\n                \"icon\": \"netsbo\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Settlus\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://settlus.org\",\r\n        \"shortName\": \"setl\",\r\n        \"chainId\": 5371,\r\n        \"networkId\": 5371,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Settlus Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://settlus-septestnet.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://settlus.org\",\r\n        \"shortName\": \"setl-sepolia\",\r\n        \"chainId\": 5373,\r\n        \"networkId\": 5373,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://settlus-sep-testnet.bridge.alchemy.com/\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Settlus Sepolia Testnet Explorer\",\r\n                \"url\": \"https://settlus-sepolia-testnet.explorer.alchemy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Saga\",\r\n        \"chain\": \"SAGA\",\r\n        \"rpc\": [\r\n            \"http://sagaevm-5464-1.jsonrpc.sagarpc.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"gas\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.saga.xyz\",\r\n        \"shortName\": \"saga\",\r\n        \"chainId\": 5464,\r\n        \"networkId\": 5464,\r\n        \"icon\": \"saga\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://sagaevm-5464-1.sagaexplorer.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PointPay Mainnet\",\r\n        \"chain\": \"pointpay\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.pointpay.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PointPay\",\r\n            \"symbol\": \"PXP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pointpay.io\",\r\n        \"shortName\": \"PP\",\r\n        \"chainId\": 5511,\r\n        \"networkId\": 5511,\r\n        \"icon\": \"pointpay\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PointPay Mainnet Explorer\",\r\n                \"url\": \"https://explorer.pointpay.io\",\r\n                \"icon\": \"pointpay\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chang Chain Foundation Mainnet\",\r\n        \"chain\": \"ChangChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.cthscan.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Chang Coin Thailand\",\r\n            \"symbol\": \"CTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://changcoin.foundation/\",\r\n        \"shortName\": \"ChangChain\",\r\n        \"chainId\": 5858,\r\n        \"networkId\": 5858,\r\n        \"icon\": \"changchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CTH Scan\",\r\n                \"url\": \"https://cthscan.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"blockscout\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BC Hyper Chain Testnet\",\r\n        \"chain\": \"BC Hyper Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.bchscan.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TEST VERSATIZE COIN\",\r\n            \"symbol\": \"TVTCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.versatizecoin.com/\",\r\n        \"shortName\": \"BCH\",\r\n        \"chainId\": 6060,\r\n        \"networkId\": 6060,\r\n        \"icon\": \"bchyper\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bcexplorer testnet\",\r\n                \"url\": \"https://testnet.bchscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rails\",\r\n        \"title\": \"Rails Network Mainnet\",\r\n        \"chain\": \"RAILS\",\r\n        \"icon\": \"rails\",\r\n        \"rpc\": [\r\n            \"https://mainnet.steamexchange.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            },\r\n            {\r\n                \"name\": \"EIP6551\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SteamX\",\r\n            \"symbol\": \"STEAMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://steamexchange.io\",\r\n        \"shortName\": \"rails\",\r\n        \"chainId\": 6278,\r\n        \"networkId\": 6278,\r\n        \"slip44\": 6278,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explore.steamexchange.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LAOS\",\r\n        \"title\": \"LAOS Mainnet\",\r\n        \"chain\": \"LAOS\",\r\n        \"icon\": \"laosnetwork\",\r\n        \"rpc\": [\r\n            \"https://rpc.laos.laosfoundation.io\",\r\n            \"wss://rpc.laos.laosfoundation.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAOS\",\r\n            \"symbol\": \"LAOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://laosnetwork.io\",\r\n        \"shortName\": \"laosnetwork\",\r\n        \"chainId\": 6283,\r\n        \"networkId\": 6283,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.laos.laosfoundation.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NFB Chain Testnet\",\r\n        \"chain\": \"NFB Chain Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-node.nfbchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NFBCoinTest\",\r\n            \"symbol\": \"NFBCT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nfbchain.com/\",\r\n        \"shortName\": \"nfbchaintest\",\r\n        \"chainId\": 6320,\r\n        \"networkId\": 6320,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NFB Chain Testnet Explorer\",\r\n                \"url\": \"https://testnet-scan.nfbchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Connext Sepolia\",\r\n        \"chain\": \"Connext Sepolia\",\r\n        \"rpc\": [\r\n            \"https://rpc.connext-sepolia.gelato.digital/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"connext-sepolia\",\r\n        \"chainId\": 6398,\r\n        \"networkId\": 6398,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Connext Sepolia\",\r\n                \"url\": \"https://connext-sepolia.blockscout.com\",\r\n                \"icon\": \"connext\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Flamma Testnet\",\r\n        \"chain\": \"Flamma\",\r\n        \"rpc\": [\r\n            \"https://testnetrpc.flamma.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flamma\",\r\n            \"symbol\": \"FLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://flamma.network\",\r\n        \"shortName\": \"FlammaTestnet\",\r\n        \"chainId\": 6550,\r\n        \"networkId\": 6550,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"flascan\",\r\n                \"url\": \"https://testnet.flascan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Storchain\",\r\n        \"chain\": \"STR\",\r\n        \"rpc\": [\r\n            \"https://rpc.storchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Storchain\",\r\n            \"symbol\": \"STR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://storchain.io\",\r\n        \"shortName\": \"str\",\r\n        \"chainId\": 6667,\r\n        \"networkId\": 6667,\r\n        \"icon\": \"str\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"storscan\",\r\n                \"url\": \"https://scan.storchain.io\",\r\n                \"icon\": \"str\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Edge Matrix Chain\",\r\n        \"chain\": \"EMC\",\r\n        \"icon\": \"emc\",\r\n        \"rpc\": [\r\n            \"https://rpc1-mainnet.emc.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Edge Matrix Chain Token\",\r\n            \"symbol\": \"EMC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"EMC\",\r\n        \"chainId\": 6678,\r\n        \"networkId\": 6678,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://emcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OX Chain\",\r\n        \"title\": \"OX Chain\",\r\n        \"chain\": \"OX\",\r\n        \"rpc\": [\r\n            \"https://rpc.oxscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OX\",\r\n            \"symbol\": \"OX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ox.fun/chain\",\r\n        \"shortName\": \"ox-chain\",\r\n        \"chainId\": 6699,\r\n        \"networkId\": 6699,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"RACE Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://racemainnet.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://race.foundation/\",\r\n        \"shortName\": \"raceeth\",\r\n        \"chainId\": 6805,\r\n        \"networkId\": 6805,\r\n        \"slip44\": 1,\r\n        \"icon\": \"race\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://racescan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.race.foundation/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"RACE Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://racetestnet.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.racetestnet.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://race.foundation/\",\r\n        \"shortName\": \"racesep\",\r\n        \"chainId\": 6806,\r\n        \"networkId\": 6806,\r\n        \"slip44\": 1,\r\n        \"icon\": \"race\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.racescan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.race.foundation/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mtt Mainnet\",\r\n        \"chain\": \"MTT\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.mtt.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mtt mainnet native coin\",\r\n            \"symbol\": \"MTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mtt.network\",\r\n        \"shortName\": \"mtt-mainnet\",\r\n        \"chainId\": 6880,\r\n        \"networkId\": 6880,\r\n        \"icon\": \"mttnetwork\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mtt explorer\",\r\n                \"url\": \"https://explorer.mtt.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nibiru cataclysm-1\",\r\n        \"chain\": \"Nibiru\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.nibiru.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NIBI\",\r\n            \"symbol\": \"NIBI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nibiru.fi\",\r\n        \"shortName\": \"cataclysm-1\",\r\n        \"chainId\": 6900,\r\n        \"networkId\": 6900,\r\n        \"icon\": \"nibiru\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"XYL TestNet\",\r\n        \"chain\": \"XYL\",\r\n        \"rpc\": [\r\n            \"https://xyl-testnet.glitch.me/rpc/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://debxylen.github.io/XYL_TestNet/faucet.html\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XYL\",\r\n            \"symbol\": \"XYL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            },\r\n            {\r\n                \"name\": \"XYL-DynaPoW\"\r\n            },\r\n            {\r\n                \"name\": \"Smart Contracts\"\r\n            },\r\n            {\r\n                \"name\": \"Custom Gas Model\"\r\n            },\r\n            {\r\n                \"name\": \"XYL-VM\"\r\n            },\r\n            {\r\n                \"name\": \"Dynamic Difficulty Adjustment\"\r\n            },\r\n            {\r\n                \"name\": \"Low-Latency Transactions\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://debxylen.github.io/XYL_TestNet\",\r\n        \"shortName\": \"xyl\",\r\n        \"chainId\": 6934,\r\n        \"networkId\": 6934,\r\n        \"icon\": \"xyl-test\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XYL Explorer\",\r\n                \"url\": \"https://debxylen.github.io/BlockExplorer\",\r\n                \"icon\": \"xyl-test\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Laika Mainnet\",\r\n        \"chain\": \"LAIKA\",\r\n        \"rpc\": [\r\n            \"https://mainnetrpc.laikachain.dog\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://laikachain.dog/faucets\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dogecoin\",\r\n            \"symbol\": \"DOGE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://laikachain.dog\",\r\n        \"shortName\": \"laika\",\r\n        \"chainId\": 6942,\r\n        \"networkId\": 6942,\r\n        \"icon\": \"laika\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Laika Mainnet Explorer\",\r\n                \"url\": \"https://explorer.laikachain.dog\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bharat Blockchain Network\",\r\n        \"chain\": \"BBNT\",\r\n        \"rpc\": [\r\n            \"https://bbnrpc.testnet.bharatblockchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.bon.bharatblockchain.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BBNT\",\r\n            \"symbol\": \"BBN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://bharatblockchain.io/\",\r\n        \"shortName\": \"bbnt\",\r\n        \"chainId\": 7099,\r\n        \"networkId\": 7099,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"0XL3\",\r\n        \"chain\": \"0XL3\",\r\n        \"icon\": \"0xl3\",\r\n        \"rpc\": [\r\n            \"https://rpc.0xl3.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XL3\",\r\n            \"symbol\": \"XL3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://0xl3.com\",\r\n        \"shortName\": \"0xl3\",\r\n        \"chainId\": 7117,\r\n        \"networkId\": 7117,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"0XL3 Explorer\",\r\n                \"url\": \"https://exp.0xl3.com\",\r\n                \"icon\": \"0xl3\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UXLINK One Testnet\",\r\n        \"chain\": \"UXLINK One\",\r\n        \"rpc\": [\r\n            \"https://rpc-sepolia.uxlinkone.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UXLINK\",\r\n            \"symbol\": \"UXLINK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.uxlinkone.io\",\r\n        \"shortName\": \"uxlink1-sep\",\r\n        \"chainId\": 7181,\r\n        \"networkId\": 7181,\r\n        \"icon\": \"uxlinkone\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UXLINK One Sepolia Explorer\",\r\n                \"url\": \"https://sepolia.uxlinkone.com\",\r\n                \"icon\": \"uxlinkone\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexera Mainnet\",\r\n        \"chain\": \"Nexera\",\r\n        \"icon\": \"nexera\",\r\n        \"chainId\": 7208,\r\n        \"networkId\": 7208,\r\n        \"infoURL\": \"https://nexera.network\",\r\n        \"shortName\": \"nxra-mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.nexera.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NXRA\",\r\n            \"symbol\": \"NXRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Nibiru testnet-1\",\r\n        \"chain\": \"Nibiru\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.testnet-1.nibiru.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NIBI\",\r\n            \"symbol\": \"NIBI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nibiru.fi\",\r\n        \"shortName\": \"nibiru-testnet-1\",\r\n        \"chainId\": 7210,\r\n        \"networkId\": 7210,\r\n        \"icon\": \"nibiru\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Nibiru devnet-3\",\r\n        \"chain\": \"Nibiru\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.devnet-3.nibiru.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NIBI\",\r\n            \"symbol\": \"NIBI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nibiru.fi\",\r\n        \"shortName\": \"nibiru-devnet-3\",\r\n        \"chainId\": 7222,\r\n        \"networkId\": 7222,\r\n        \"icon\": \"nibiru\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"InitVerse Mainnet\",\r\n        \"chain\": \"InitVerse\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.inichain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"InitVerse\",\r\n            \"symbol\": \"INI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.inichain.com\",\r\n        \"shortName\": \"INI\",\r\n        \"chainId\": 7233,\r\n        \"networkId\": 7233,\r\n        \"icon\": \"initverse\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"initverse\",\r\n                \"url\": \"https://www.iniscan.com\",\r\n                \"icon\": \"initverse\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"InitVerse genesis testnet\",\r\n        \"chain\": \"InitVerse\",\r\n        \"rpc\": [\r\n            \"http://rpc-testnet.inichain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"InitVerse\",\r\n            \"symbol\": \"INI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://genesis-testnet.inichain.com\",\r\n        \"shortName\": \"INICHAIN\",\r\n        \"chainId\": 7234,\r\n        \"networkId\": 7234,\r\n        \"icon\": \"initverse\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"initverse\",\r\n                \"url\": \"https://genesis-testnet.iniscan.com\",\r\n                \"icon\": \"initverse\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZEUS Testnet\",\r\n        \"chain\": \"tZEUS\",\r\n        \"icon\": \"zeusicon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.zeuschainscan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"The ZEUS Token\",\r\n            \"symbol\": \"ZEUSX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.zeuschainscan.io\",\r\n        \"shortName\": \"ZEUS-Testnet\",\r\n        \"chainId\": 7244,\r\n        \"networkId\": 7244,\r\n        \"faucets\": [\r\n            \"https://faucet.zeuschainscan.io\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZEUS Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.zeuschainscan.io\",\r\n                \"icon\": \"zeusicon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Phron Testnet\",\r\n        \"chain\": \"PHR\",\r\n        \"icon\": \"phron\",\r\n        \"rpc\": [\r\n            \"https://testnet.phron.ai\",\r\n            \"wss://testnet.phron.ai\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.phron.ai\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Phron\",\r\n            \"symbol\": \"TPHR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://phron.ai\",\r\n        \"shortName\": \"phr\",\r\n        \"chainId\": 7744,\r\n        \"networkId\": 7744,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"phronscan\",\r\n                \"url\": \"https://testnet.phronscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PandaSea Testnet\",\r\n        \"chain\": \"PandaSea Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.pandasea.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.pandasea.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PandaSea Coin\",\r\n            \"symbol\": \"PANDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://test.pandaseascan.com\",\r\n        \"shortName\": \"Pandasea-Testnet\",\r\n        \"chainId\": 7770,\r\n        \"networkId\": 7770,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://test.pandaseascan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GDCC MAINNET\",\r\n        \"chain\": \"GDCC\",\r\n        \"icon\": \"gdcc\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc-1.gdccscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GDCC\",\r\n            \"symbol\": \"GDCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gdcchain.com\",\r\n        \"shortName\": \"GdccMainnet\",\r\n        \"chainId\": 7774,\r\n        \"networkId\": 7774,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GDCC\",\r\n                \"url\": \"https://gdccscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PandaSea Mainnet\",\r\n        \"chain\": \"PandaSea\",\r\n        \"rpc\": [\r\n            \"https://rpc1.pandasea.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PandaSea Coin\",\r\n            \"symbol\": \"PANDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"pandaSea-mainnet\",\r\n        \"chainId\": 7776,\r\n        \"networkId\": 7776,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://pandaseascan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MaalChain V2\",\r\n        \"chain\": \"MAAL\",\r\n        \"icon\": \"maal\",\r\n        \"rpc\": [\r\n            \"https://node1-mainnet-new.maalscan.io/\",\r\n            \"https://node2-mainnet-new.maalscan.io/\",\r\n            \"https://node3-mainnet-new.maalscan.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAAL\",\r\n            \"symbol\": \"MAAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.maalchain.com/\",\r\n        \"shortName\": \"maal-v2\",\r\n        \"chainId\": 7862,\r\n        \"networkId\": 7862,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maalscan\",\r\n                \"url\": \"https://maalscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MaalChain Testnet V2\",\r\n        \"chain\": \"MaalChain Testnet V2\",\r\n        \"icon\": \"maal-test\",\r\n        \"rpc\": [\r\n            \"https://node-testnet.maalscan.io/\",\r\n            \"https://node2-testnet.maalscan.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-new-testnet.maalscan.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAAL\",\r\n            \"symbol\": \"MAAL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.maalchain.com/\",\r\n        \"shortName\": \"maal-test-v2\",\r\n        \"chainId\": 7863,\r\n        \"networkId\": 7863,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"maalscan testnet\",\r\n                \"url\": \"https://new-testnet.maalscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Powerloom Mainnet\",\r\n        \"chain\": \"POWER\",\r\n        \"rpc\": [\r\n            \"https://rpc.powerloom.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Powerloom Token\",\r\n            \"symbol\": \"POWER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://powerloom.network\",\r\n        \"shortName\": \"power\",\r\n        \"chainId\": 7865,\r\n        \"networkId\": 7865,\r\n        \"icon\": \"power\",\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.powerloom.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vexon Testnet\",\r\n        \"chain\": \"Vexon\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet-asia1.vexonhub.org\",\r\n            \"https://rpc-testnet-europe1.vexonhub.org\",\r\n            \"https://rpc-testnet-01.vexonhub.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-drip.vexonhub.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vexon Testnet Native Token\",\r\n            \"symbol\": \"tVEX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vexonhub.org\",\r\n        \"shortName\": \"vexon\",\r\n        \"chainId\": 7879,\r\n        \"networkId\": 7879,\r\n        \"icon\": \"vexon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vexon Testnet Explorer\",\r\n                \"url\": \"https://testnet.vexonhub.org\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"vexon\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"arena-z\",\r\n        \"title\": \"arena-z\",\r\n        \"chain\": \"arena-z\",\r\n        \"rpc\": [\r\n            \"https://rpc.arena-z.gg\",\r\n            \"wss://ws.arena-z.gg\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/arena-z\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"arena-z\",\r\n        \"chainId\": 7897,\r\n        \"networkId\": 7897,\r\n        \"slip44\": 60,\r\n        \"icon\": \"arena-z-mainnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.arena-z.gg\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/arena-z\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Exorium Testnet\",\r\n        \"chain\": \"EXOR\",\r\n        \"rpc\": [\r\n            \"https://rpc-1-testnet.exorium.net\",\r\n            \"https://rpc-2-testnet.exorium.net\",\r\n            \"https://rpc-testnet.exoscan.net/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.exorium.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EXOR\",\r\n            \"symbol\": \"tEXOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://exorium.net\",\r\n        \"shortName\": \"texor\",\r\n        \"chainId\": 7957,\r\n        \"networkId\": 7957,\r\n        \"slip44\": 1,\r\n        \"icon\": \"exorium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EXORIUM Testnet Explorer\",\r\n                \"icon\": \"exorium\",\r\n                \"url\": \"https://testnet.exoscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Polynomial\",\r\n        \"chain\": \"Polynomial\",\r\n        \"rpc\": [\r\n            \"https://rpc.polynomial.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polynomial.fi\",\r\n        \"shortName\": \"polynomial\",\r\n        \"chainId\": 8008,\r\n        \"networkId\": 8008,\r\n        \"icon\": \"polynomial\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polynomial Explorer\",\r\n                \"url\": \"https://polynomialscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"polynomial\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"iSunCoin Mainnet\",\r\n        \"chain\": \"iSunCoin\",\r\n        \"icon\": \"isuncoin\",\r\n        \"rpc\": [\r\n            \"https://mainnet.isuncoin.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ISC\",\r\n            \"symbol\": \"ISC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://isuncoin.com\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"shortName\": \"isc\",\r\n        \"chainId\": 8017,\r\n        \"networkId\": 8017,\r\n        \"slip44\": 8017,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"iSunCoin Explorer\",\r\n                \"icon\": \"isuncoin\",\r\n                \"url\": \"https://baifa.io/app/chains/8017\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bharat Blockchain Network Mainnet\",\r\n        \"chain\": \"BBN\",\r\n        \"rpc\": [\r\n            \"https://bbnrpc.mainnet.bharatblockchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BBN\",\r\n            \"symbol\": \"BBN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://bharatblockchain.io/\",\r\n        \"shortName\": \"bbn\",\r\n        \"chainId\": 8099,\r\n        \"networkId\": 8099,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Zenchain\",\r\n        \"chain\": \"ZCX\",\r\n        \"icon\": \"zenchain\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZCX\",\r\n            \"symbol\": \"ZCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zenchain.io\",\r\n        \"shortName\": \"zen\",\r\n        \"chainId\": 8108,\r\n        \"networkId\": 8108,\r\n        \"slip44\": 60,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"B3\",\r\n        \"chain\": \"B3\",\r\n        \"icon\": \"b3\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.b3.fun\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://b3.fun\",\r\n        \"shortName\": \"b3\",\r\n        \"chainId\": 8333,\r\n        \"networkId\": 8333,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.b3.fun\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XProtocol\",\r\n        \"chain\": \"XPROTOCOL\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kick\",\r\n            \"symbol\": \"KICK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"xprotocol\",\r\n        \"chainId\": 8386,\r\n        \"networkId\": 8386,\r\n        \"status\": \"incubating\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-8453\"\r\n        },\r\n        \"infoURL\": \"https://xprotocol.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Zenchain Testnet\",\r\n        \"chain\": \"ZCX\",\r\n        \"icon\": \"zenchain\",\r\n        \"rpc\": [\r\n            \"https://zenchain-testnet.api.onfinality.io/public\",\r\n            \"wss://zenchain-testnet.api.onfinality.io/public-ws\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://facuet.zenchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZCX\",\r\n            \"symbol\": \"ZCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zenchain.io\",\r\n        \"shortName\": \"zentest\",\r\n        \"chainId\": 8408,\r\n        \"networkId\": 8408,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zentrace\",\r\n                \"url\": \"https://zentrace.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"THAT Mainnet\",\r\n        \"chain\": \"THAT\",\r\n        \"rpc\": [\r\n            \"https://api.thatchain.io\",\r\n            \"https://api.thatchain.io/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"THAT\",\r\n            \"symbol\": \"THAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://that.website\",\r\n        \"shortName\": \"THAT\",\r\n        \"chainId\": 8428,\r\n        \"networkId\": 8428,\r\n        \"icon\": \"that\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"THAT Explorer\",\r\n                \"url\": \"https://that.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chakra Testnet\",\r\n        \"chain\": \"Chakra Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpcv1-dn-1.chakrachain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Chakra\",\r\n            \"symbol\": \"CKR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"ChakraTN\",\r\n        \"chainId\": 8545,\r\n        \"networkId\": 8545,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"New Reality Blockchain\",\r\n        \"chain\": \"NEWRL\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NewReal\",\r\n            \"symbol\": \"NEWRL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://newreality.bond/\",\r\n        \"shortName\": \"newrl\",\r\n        \"chainId\": 8569,\r\n        \"networkId\": 8569,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Bullions Smart Chain\",\r\n        \"chain\": \"Bullions\",\r\n        \"rpc\": [\r\n            \"https://rpc.bullionsx.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bullions\",\r\n            \"symbol\": \"BLN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.bullionsx.io\",\r\n        \"shortName\": \"bln\",\r\n        \"chainId\": 8732,\r\n        \"networkId\": 8732,\r\n        \"slip44\": 8732,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bullionscan\",\r\n                \"url\": \"https://bullionscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haven1\",\r\n        \"chain\": \"haven1\",\r\n        \"rpc\": [\r\n            \"https://rpc.haven1.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Haven1\",\r\n            \"symbol\": \"H1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.haven1.org\",\r\n        \"shortName\": \"haven1\",\r\n        \"chainId\": 8811,\r\n        \"networkId\": 8811,\r\n        \"icon\": \"haven1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Haven1 Explorer\",\r\n                \"url\": \"https://explorer.haven1.org\",\r\n                \"icon\": \"haven1\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lif3 Chain\",\r\n        \"chain\": \"lif3chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.lif3.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LIF3\",\r\n            \"symbol\": \"LIF3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.lif3.com/\",\r\n        \"shortName\": \"lif3-mainnet\",\r\n        \"icon\": \"lif3\",\r\n        \"chainId\": 8869,\r\n        \"networkId\": 8869,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"lif3scout\",\r\n                \"url\": \"https://lif3scout.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Avenium Testnet\",\r\n        \"chain\": \"AVE\",\r\n        \"rpc\": [\r\n            \"https://eu-testnet.avenium.io/\",\r\n            \"https://connect-testnet.avenium.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.avenium.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ave Native Token\",\r\n            \"symbol\": \"tAVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://avenium.io\",\r\n        \"shortName\": \"tave\",\r\n        \"chainId\": 8886,\r\n        \"networkId\": 8886,\r\n        \"icon\": \"avenium\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Avenium Explorer Testnet\",\r\n                \"icon\": \"avenium\",\r\n                \"url\": \"https://testnet.avescan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Qubetics Testnet\",\r\n        \"chain\": \"Qubetics Testnet\",\r\n        \"rpc\": [\r\n            \"https://alphatestnet-evm-rpc.qubetics.work/\",\r\n            \"wss://wss-testnet-nodes.shidoscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://alphatestnet-explorer.qubetics.work/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qubetics Testnet Token\",\r\n            \"symbol\": \"TICS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.qubetics.com/\",\r\n        \"shortName\": \"Qubetics\",\r\n        \"chainId\": 9003,\r\n        \"networkId\": 9003,\r\n        \"icon\": \"qubetics\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Qubetics Testnet Explorer\",\r\n                \"url\": \"https://testnet.shidoscan.com\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"qubetics\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Apex Fusion - Nexus Mainnet\",\r\n        \"chain\": \"Nexus Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.nexus.mainnet.apexfusion.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Apex Fusion Token\",\r\n            \"symbol\": \"AP3X\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://apexfusion.org/\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"shortName\": \"AP3X\",\r\n        \"chainId\": 9069,\r\n        \"networkId\": 9069,\r\n        \"icon\": \"apexfusion\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Inco Gentry Testnet\",\r\n        \"chain\": \"INCO\",\r\n        \"rpc\": [\r\n            \"https://testnet.inco.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.inco.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"INCO\",\r\n            \"symbol\": \"INCO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.inco.org\",\r\n        \"shortName\": \"inco-gentry\",\r\n        \"chainId\": 9090,\r\n        \"networkId\": 9090,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Inco Gentry Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.inco.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KPA Smart Chain Testnet\",\r\n        \"chain\": \"KSC\",\r\n        \"rpc\": [\r\n            \"https://tkpa-rpc1.kpachain.com/\",\r\n            \"https://tkpa-rpc2.kpachain.com/\",\r\n            \"https://tkpa-rpc3.kpachain.com/\",\r\n            \"https://tkpa-rpc4.kpachain.com/\",\r\n            \"https://testnet-rpc1.kpascan.com/\",\r\n            \"https://testnet-rpc2.kpascan.com/\",\r\n            \"https://testnet-rpc3.kpascan.com/\",\r\n            \"https://testnet-rpc4.kpascan.com/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://mint.kpachain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KPA Smart Chain Testnet\",\r\n            \"symbol\": \"tKPA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://kpachain.com\",\r\n        \"shortName\": \"KPA\",\r\n        \"chainId\": 9091,\r\n        \"networkId\": 9091,\r\n        \"icon\": \"koppa\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Destra Dubai Testnet\",\r\n        \"chain\": \"Destra\",\r\n        \"status\": \"active\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sync\",\r\n            \"symbol\": \"SYNC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"Destra\",\r\n        \"chainId\": 9108,\r\n        \"networkId\": 9108,\r\n        \"slip44\": 1,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-4\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Galactica-Reticulum\",\r\n        \"chain\": \"Galactica Testnet\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc-http-reticulum.galactica.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Galactica Reticulum\",\r\n            \"symbol\": \"GNET\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://galactica.com\",\r\n        \"shortName\": \"GNET\",\r\n        \"chainId\": 9302,\r\n        \"networkId\": 9302,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Galactica-Reticulum Explorer\",\r\n                \"url\": \"https://explorer-reticulum.galactica.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Z Chain\",\r\n        \"title\": \"Z Chain\",\r\n        \"chain\": \"Z\",\r\n        \"rpc\": [\r\n            \"https://z-chain-rpc.eu-north-2.gateway.fm/?apiKey=${API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Z\",\r\n            \"symbol\": \"Z\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zero.tech\",\r\n        \"shortName\": \"z\",\r\n        \"chainId\": 9369,\r\n        \"networkId\": 9369,\r\n        \"icon\": \"z\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://z-chain-blockscout.eu-north-2.gateway.fm\",\r\n                \"icon\": \"z\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://z-chain-bridge.eu-north-2.gateway.fm\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Oasys Testnet\",\r\n        \"chain\": \"Oasys\",\r\n        \"icon\": \"oasys\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.oasys.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oasys.games\",\r\n        \"shortName\": \"OAS_TEST\",\r\n        \"chainId\": 9372,\r\n        \"networkId\": 9372,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.testnet.oasys.games\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WeaveVM Testnet\",\r\n        \"chain\": \"WVM\",\r\n        \"rpc\": [\r\n            \"https://testnet.wvm.dev\",\r\n            \"https://testnet-rpc.wvm.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet WeaveVM Token\",\r\n            \"symbol\": \"tWVM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wvm.dev\",\r\n        \"shortName\": \"twvm\",\r\n        \"chainId\": 9496,\r\n        \"networkId\": 9496,\r\n        \"icon\": \"weavevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WeaveVM Explorer\",\r\n                \"url\": \"https://explorer.wvm.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rebus Mainnet\",\r\n        \"title\": \"Rebuschain Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://apievml2.rebuschain.com/l2rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.rebuschain.com\",\r\n        \"shortName\": \"rebus\",\r\n        \"chainId\": 9696,\r\n        \"networkId\": 9696,\r\n        \"icon\": \"rebus\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rebus EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://evm.rebuschain.com\",\r\n                \"icon\": \"rebus\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tabi Testnetv2\",\r\n        \"chain\": \"TabiNetworkv2\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnetv2.tabichain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://carnival.tabichain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tabi\",\r\n            \"symbol\": \"TABI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.tabichain.com\",\r\n        \"shortName\": \"tabitestv2\",\r\n        \"chainId\": 9788,\r\n        \"networkId\": 9788,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tabi Testnet V2 Explorer\",\r\n                \"url\": \"https://testnetv2.tabiscan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BinaryChain Testnet\",\r\n        \"chain\": \"BinaryChain\",\r\n        \"icon\": \"binary\",\r\n        \"rpc\": [\r\n            \"https://rpctestnet.binarychain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet.binarychain.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BINARY\",\r\n            \"symbol\": \"BNRY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://binarychain.org\",\r\n        \"shortName\": \"binarytestnet\",\r\n        \"chainId\": 9876,\r\n        \"networkId\": 9876,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BinaryChain Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.binarychain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"pointledger\",\r\n        \"chain\": \"pointledger\",\r\n        \"icon\": \"pointledger\",\r\n        \"rpc\": [\r\n            \"https://rpc.pointledger.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PLG\",\r\n            \"symbol\": \"PLG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pointledger.net\",\r\n        \"shortName\": \"pointledger\",\r\n        \"chainId\": 9889,\r\n        \"networkId\": 9889,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"pointledger Explorer\",\r\n                \"url\": \"https://exp.pointledger.net\",\r\n                \"icon\": \"pointledger\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"arena-z-testnet\",\r\n        \"title\": \"Arena-Z-Testnet\",\r\n        \"chain\": \"arena-z-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.arena-z.t.raas.gelato.cloud\",\r\n            \"wss://ws.arena-z.t.raas.gelato.cloud\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"arena-z\",\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/arena-z-testnet\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"arena-z-testnet\",\r\n        \"chainId\": 9897,\r\n        \"networkId\": 9897,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://arena-z.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.gelato.network/bridge/arena-z-testnet\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Zytron Linea Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"zytron\",\r\n        \"rpc\": [\r\n            \"https://rpc.zypher.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zytron.zypher.network/\",\r\n        \"shortName\": \"zytron-linea\",\r\n        \"chainId\": 9901,\r\n        \"networkId\": 9901,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.zypher.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UXER TESTNET NETWORK\",\r\n        \"chain\": \"UXER\",\r\n        \"rpc\": [\r\n            \"https://dev-testnet.uxer.network\",\r\n            \"https://data-cloud-testnet.uxer.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.uxer.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UXER\",\r\n            \"symbol\": \"tUXER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://uxer.network\",\r\n        \"shortName\": \"uxer\",\r\n        \"chainId\": 9966,\r\n        \"networkId\": 9966,\r\n        \"slip44\": 1,\r\n        \"icon\": \"uxer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UXER TESTNET EXPLORER\",\r\n                \"icon\": \"uxer\",\r\n                \"url\": \"https://testnet.uxer.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Volley Mainnet\",\r\n        \"chain\": \"Volley\",\r\n        \"icon\": \"volley\",\r\n        \"rpc\": [\r\n            \"https://main-rpc.volleychain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"V2X\",\r\n            \"symbol\": \"V2X\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.volleychain.com\",\r\n        \"shortName\": \"volley-mainnet\",\r\n        \"chainId\": 9981,\r\n        \"networkId\": 9981,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Volley Mainnet Explorer\",\r\n                \"url\": \"https://volleyscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MFEV CHAIN MAINNET\",\r\n        \"chain\": \"MFEV CHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.mfevscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MFEV\",\r\n            \"symbol\": \"MFEV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mfevscan.com\",\r\n        \"shortName\": \"mfevscan\",\r\n        \"chainId\": 9982,\r\n        \"networkId\": 9982,\r\n        \"slip44\": 108,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MFEV CHAIN\",\r\n                \"url\": \"https://mfevscan.com\",\r\n                \"icon\": \"mfev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Warden Testnet\",\r\n        \"chain\": \"WARD\",\r\n        \"rpc\": [\r\n            \"https://evm.chiado.wardenprotocol.org\",\r\n            \"wss://evm-ws.chiado.wardenprotocol.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.chiado.wardenprotocol.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WARD\",\r\n            \"symbol\": \"WARD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wardenprotocol.org\",\r\n        \"icon\": \"warden\",\r\n        \"shortName\": \"ward\",\r\n        \"chainId\": 10010,\r\n        \"networkId\": 10010\r\n    },\r\n    {\r\n        \"name\": \"AEON Chain\",\r\n        \"chain\": \"AEON Chain\",\r\n        \"icon\": \"aeon\",\r\n        \"rpc\": [\r\n            \"https://node.aeon.xyz/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AEON Token\",\r\n            \"symbol\": \"AEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"aeon\",\r\n        \"chainId\": 10025,\r\n        \"networkId\": 10025,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AEON Explorer\",\r\n                \"url\": \"https://scan.aeon.xyz\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chain Opera Testnet\",\r\n        \"chain\": \"Chain Opera Testnet\",\r\n        \"rpc\": [\r\n            \"http://40.78.123.6:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"coai\",\r\n            \"symbol\": \"CO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://chainopera.ai/\",\r\n        \"shortName\": \"chainopera-testnet\",\r\n        \"chainId\": 10066,\r\n        \"networkId\": 10066\r\n    },\r\n    {\r\n        \"name\": \"Volcano Chain Mainnet\",\r\n        \"chain\": \"Volcano\",\r\n        \"icon\": \"volcano\",\r\n        \"rpc\": [\r\n            \"https://mainnet.vchain.pro\",\r\n            \"wss://wss.mainnet.vchain.pro\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Volcano Coin\",\r\n            \"symbol\": \"VC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vex.pro\",\r\n        \"shortName\": \"volcanochain\",\r\n        \"chainId\": 10085,\r\n        \"networkId\": 10085,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://vchainscan.com\",\r\n                \"icon\": \"volcano\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaNova Verse\",\r\n        \"chain\": \"MNV\",\r\n        \"rpc\": [\r\n            \"https://web3.metanovaverse.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MNV\",\r\n            \"symbol\": \"MNV\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://metanovaverse.com/\",\r\n        \"shortName\": \"mnv\",\r\n        \"chainId\": 10096,\r\n        \"networkId\": 10096,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.metanovaverse.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Cosmos Explorer (Ping)\",\r\n                \"url\": \"https://ping.metanovaverse.com/metanovaverse\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GLScan\",\r\n        \"chain\": \"GLC\",\r\n        \"icon\": \"glc\",\r\n        \"rpc\": [\r\n            \"https://glc-dataseed.glscan.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GLC\",\r\n            \"symbol\": \"GLC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://glscan.io/\",\r\n        \"shortName\": \"glc\",\r\n        \"chainId\": 10222,\r\n        \"networkId\": 10222,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GLScan Explorer\",\r\n                \"url\": \"https://glscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"glc\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GameSwift Chain Testnet\",\r\n        \"title\": \"GameSwift Chain Testnet\",\r\n        \"chain\": \"gameswift-chain-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.gameswift.io\",\r\n            \"wss://ws-testnet.gameswift.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TGameSwift\",\r\n            \"symbol\": \"tGS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/gameswift-chain-testnet\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"gameswift-chain-testnet\",\r\n        \"chainId\": 10888,\r\n        \"networkId\": 10888,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.gameswift.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge-gelato.gameswift.io/bridge/gameswift-chain-testnet\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"KB Chain\",\r\n        \"chain\": \"KB\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.kbcfoundation.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KBC\",\r\n            \"symbol\": \"KBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kbcfoundation.com\",\r\n        \"shortName\": \"KBC\",\r\n        \"chainId\": 11000,\r\n        \"networkId\": 11000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KBC Explorer\",\r\n                \"url\": \"https://scan.kbcfoundation.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shape Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.shape.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://shape.network\",\r\n        \"shortName\": \"shapesep\",\r\n        \"chainId\": 11011,\r\n        \"networkId\": 11011,\r\n        \"icon\": \"shapeTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer-sepolia.shape.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"Bool Network Beta Mainnet\",\r\n        \"chain\": \"BOOL\",\r\n        \"rpc\": [\r\n            \"https://beta-rpc-node-http.bool.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BOL\",\r\n            \"symbol\": \"BOL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bool.network/\",\r\n        \"shortName\": \"BOL\",\r\n        \"chainId\": 11100,\r\n        \"networkId\": 11100,\r\n        \"icon\": \"boolnetwork\"\r\n    },\r\n    {\r\n        \"name\": \"Abstract Sepolia Testnet\",\r\n        \"chain\": \"Abstract Sepolia Testnet\",\r\n        \"rpc\": [\r\n            \"https://api.testnet.abs.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.triangleplatform.com/abstract/testnet\"\r\n        ],\r\n        \"chainId\": 11124,\r\n        \"networkId\": 11124,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://abs.xyz/\",\r\n        \"shortName\": \"abstract-sepolia\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.testnet.abs.xyz/bridge\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Abstract Sepolia Testnet Explorer\",\r\n                \"url\": \"https://sepolia.abscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"eGold Chain\",\r\n        \"chain\": \"EGC\",\r\n        \"icon\": \"egoldchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.egoldchain.com\",\r\n            \"wss://rpc.egoldchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aurum\",\r\n            \"symbol\": \"XAU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.egoldchain.com\",\r\n        \"shortName\": \"egoldchain\",\r\n        \"chainId\": 11451,\r\n        \"networkId\": 11451,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eGold Chain Block Explorer\",\r\n                \"url\": \"https://egoldscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"egoldchain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BEVM Signet\",\r\n        \"chain\": \"BEVM\",\r\n        \"rpc\": [\r\n            \"https://signet.bevm.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://bevm.io\",\r\n        \"shortName\": \"bevm-signet\",\r\n        \"chainId\": 11504,\r\n        \"networkId\": 11504,\r\n        \"icon\": \"bevm\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bevm signet scan\",\r\n                \"url\": \"https://scan-signet.bevm.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SatsChain\",\r\n        \"chain\": \"SatsChain\",\r\n        \"rpc\": [\r\n            \"https://rpc-satschain-1.bevm.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SATS\",\r\n            \"symbol\": \"SATS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://github.com/BTCSatsNetwork\",\r\n        \"shortName\": \"satschain\",\r\n        \"chainId\": 11521,\r\n        \"networkId\": 11521,\r\n        \"icon\": \"satschain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"satschain scan\",\r\n                \"url\": \"https://scan-satschain.bevm.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Artela Mainnet\",\r\n        \"chain\": \"Artela\",\r\n        \"rpc\": [\r\n            \"https://node-euro.artela.network/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ART\",\r\n            \"symbol\": \"ART\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://artela.network/\",\r\n        \"shortName\": \"artela-mainnet\",\r\n        \"chainId\": 11820,\r\n        \"networkId\": 11820,\r\n        \"icon\": \"artela\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ArtelaScan\",\r\n                \"url\": \"https://artscan.artela.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Artela Testnet\",\r\n        \"chain\": \"Artela\",\r\n        \"rpc\": [\r\n            \"https://betanet-rpc1.artela.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ART\",\r\n            \"symbol\": \"ART\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://artela.network/\",\r\n        \"shortName\": \"Artela\",\r\n        \"chainId\": 11822,\r\n        \"networkId\": 11822,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ArtelaScan\",\r\n                \"url\": \"https://betanet-scan.artela.network\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"OKXExplorer\",\r\n                \"url\": \"https://www.okx.com/web3/explorer/artela-testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fuse Testnet\",\r\n        \"chain\": \"Fuse\",\r\n        \"rpc\": [\r\n            \"https://rpc.flash.fuse.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.flash.fuse.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"fuseZK\",\r\n        \"chainId\": 12001,\r\n        \"networkId\": 12001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.flash.fuse.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Huddle01 dRTC Chain\",\r\n        \"chain\": \"huddle01\",\r\n        \"rpc\": [\r\n            \"https://huddle01.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://huddle01.com/\",\r\n        \"shortName\": \"huddle01\",\r\n        \"chainId\": 12323,\r\n        \"networkId\": 12323,\r\n        \"icon\": \"huddle01\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Huddle01 Caldera Explorer\",\r\n                \"url\": \"https://huddle01.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GDPR Mainnet\",\r\n        \"chain\": \"GDPR\",\r\n        \"rpc\": [\r\n            \"https://rpc.gdprchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GDPR\",\r\n            \"symbol\": \"GDPR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.gdprchain.com\",\r\n        \"shortName\": \"gdpr\",\r\n        \"chainId\": 12358,\r\n        \"networkId\": 12358,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GDPR Mainnet Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.gdprchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cannon Testnet\",\r\n        \"title\": \"Cannon Private Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"http://127.0.0.1:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cannon Testnet Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://usecannon.com\",\r\n        \"shortName\": \"cannon\",\r\n        \"chainId\": 13370,\r\n        \"networkId\": 13370\r\n    },\r\n    {\r\n        \"name\": \"Game7 Testnet\",\r\n        \"title\": \"Game7 Testnet\",\r\n        \"chain\": \"Game7\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.game7.io\",\r\n            \"wss://testnet-rpc.game7.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TG7T\",\r\n            \"symbol\": \"TG7T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://game7.io\",\r\n        \"shortName\": \"g7t\",\r\n        \"chainId\": 13746,\r\n        \"networkId\": 13746,\r\n        \"icon\": \"game7testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://testnet.game7.io\",\r\n                \"icon\": \"game7testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zeroth Testnet\",\r\n        \"chain\": \"Zeroth\",\r\n        \"icon\": \"zeroth\",\r\n        \"rpc\": [\r\n            \"https://test-my.zeroth.run\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zeroth\",\r\n            \"symbol\": \"ZRHt\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zeroth.foundation\",\r\n        \"shortName\": \"ZRHt\",\r\n        \"chainId\": 14088,\r\n        \"networkId\": 14088,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zeroth Explorer\",\r\n                \"url\": \"https://test-scan.zeroth.run\",\r\n                \"icon\": \"zeroth\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bitharvest Chain Mainnet\",\r\n        \"chain\": \"Bitharvest Chain Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.bthscan.io/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitharvest Mainnet Native Token\",\r\n            \"symbol\": \"BTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"BitharvestMainnet\",\r\n        \"chainId\": 14149,\r\n        \"networkId\": 14149,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitharvest Mainnet Scan\",\r\n                \"url\": \"https://bthscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"icon\": \"bth\"\r\n    },\r\n    {\r\n        \"name\": \"Bitlazer\",\r\n        \"chain\": \"bitlazer\",\r\n        \"rpc\": [\r\n            \"https://bitlazer.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"lzrBTC\",\r\n            \"symbol\": \"lzrBTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://bitlazer.hub.caldera.xyz\",\r\n        \"shortName\": \"bitlazer\",\r\n        \"chainId\": 14235,\r\n        \"networkId\": 14235,\r\n        \"icon\": \"bitlazer\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitlazer Caldera Explorer\",\r\n                \"url\": \"https://bitlazer.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vana Moksha Testnet\",\r\n        \"chain\": \"Vana Moksha Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.moksha.vana.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VANA\",\r\n            \"symbol\": \"VANA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"vana-moksha\",\r\n        \"chainId\": 14800,\r\n        \"networkId\": 14800,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vana Moksha Testnet\",\r\n                \"url\": \"https://vanascan.io\",\r\n                \"icon\": \"vanamoksha\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vana Satori Testnet\",\r\n        \"chain\": \"Satori\",\r\n        \"rpc\": [\r\n            \"http://rpc.satori.vana.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.vana.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DAT\",\r\n            \"symbol\": \"DAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://satori.vana.org\",\r\n        \"shortName\": \"satori\",\r\n        \"chainId\": 14801,\r\n        \"networkId\": 14801,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"satoriscan\",\r\n                \"url\": \"https://satori.vanascan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KYMTC Mainnet\",\r\n        \"chain\": \"KYMTC\",\r\n        \"icon\": \"kymtc\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.kymaticscan.online\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KYMTC\",\r\n            \"symbol\": \"KYMTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kymaticscan.online\",\r\n        \"shortName\": \"KYMTC\",\r\n        \"chainId\": 15430,\r\n        \"networkId\": 15430,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KYMTC Mainnet Explorer\",\r\n                \"url\": \"https://kymaticscan.online\",\r\n                \"icon\": \"kymtc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cypherium Mainnet\",\r\n        \"chain\": \"CPH\",\r\n        \"rpc\": [\r\n            \"https://pubnodes.cypherium.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cypherium\",\r\n            \"symbol\": \"CPH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cypherium.io/\",\r\n        \"shortName\": \"cph\",\r\n        \"chainId\": 16166,\r\n        \"networkId\": 16166,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Testnet Block Explorer\",\r\n                \"url\": \"https://cypherium.tryethernal.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PLYR PHI\",\r\n        \"chain\": \"PLYR\",\r\n        \"icon\": \"plyr\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/plyr/mainnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PLYR\",\r\n            \"symbol\": \"PLYR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plyr.network\",\r\n        \"shortName\": \"plyr-phi\",\r\n        \"chainId\": 16180,\r\n        \"networkId\": 16180,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PLYR PHI Explorer\",\r\n                \"url\": \"https://explorer.plyr.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Eventum Testnet\",\r\n        \"title\": \"Eventum Testnet\",\r\n        \"chain\": \"eventum-testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.eh-dev.app\",\r\n            \"wss://testnet-ws.eh-dev.app\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/event-horizon-eventum-testnet\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"eventum-testnet\",\r\n        \"chainId\": 16182,\r\n        \"networkId\": 16182,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-blockscout.eh-dev.app\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.eh-dev.app/bridge/event-horizon-eventum-testnet\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Incentiv Devnet\",\r\n        \"chain\": \"Incentiv\",\r\n        \"rpc\": [\r\n            \"https://rpc.ankr.com/incentiv_devnet\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.incentiv-dev.ankr.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet INC\",\r\n            \"symbol\": \"INC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://incentiv.net\",\r\n        \"shortName\": \"tIncentiv\",\r\n        \"chainId\": 16350,\r\n        \"networkId\": 16350,\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"Pivotal Sepolia\",\r\n        \"chainId\": 16481,\r\n        \"networkId\": 16481,\r\n        \"chain\": \"Pivotal\",\r\n        \"rpc\": [\r\n            \"https://sepolia.pivotalprotocol.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"shortName\": \"pivotal-sepolia\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pivotal ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://thepivotal.xyz/\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pivotal Scan\",\r\n                \"url\": \"https://sepolia.pivotalscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"0G-Newton-Testnet\",\r\n        \"chain\": \"0G-Testnet\",\r\n        \"rpc\": [\r\n            \"https://evmrpc-testnet.0g.ai\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.0g.ai\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"A0GI\",\r\n            \"symbol\": \"A0GI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://0g.ai\",\r\n        \"shortName\": \"0gai-testnet\",\r\n        \"chainId\": 16600,\r\n        \"networkId\": 16600,\r\n        \"icon\": \"0gai\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"0G BlockChain Explorer\",\r\n                \"url\": \"https://chainscan-newton.0g.ai\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Onchain Points\",\r\n        \"chain\": \"POP\",\r\n        \"rpc\": [\r\n            \"https://rpc.onchainpoints.xyz\",\r\n            \"https://rpc-onchain-points-8n0qkkpr2j.t.conduit.xyz/{CONDUIT_API_KEY}\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OnchainPoints.xyz\",\r\n            \"symbol\": \"POP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://onchainpoints.xyz\",\r\n        \"shortName\": \"pop\",\r\n        \"chainId\": 17071,\r\n        \"networkId\": 17071,\r\n        \"icon\": \"pop\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.onchainpoints.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EXPchain Testnet\",\r\n        \"chain\": \"EXPCHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc1-testnet.expchain.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tZKJ\",\r\n            \"symbol\": \"tZKJ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://expchain.ai\",\r\n        \"shortName\": \"expchain\",\r\n        \"chainId\": 18880,\r\n        \"networkId\": 18880,\r\n        \"icon\": \"expchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EXPchain Testnet Explorer\",\r\n                \"url\": \"https://blockscout-testnet.expchain.ai\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ultra EVM Network Testnet\",\r\n        \"chain\": \"Ultra\",\r\n        \"icon\": \"ultra\",\r\n        \"rpc\": [\r\n            \"https://evm.test.ultra.eosusa.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ultra Token\",\r\n            \"symbol\": \"UOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ultra.io/\",\r\n        \"shortName\": \"ultra-testnet\",\r\n        \"chainId\": 18881,\r\n        \"networkId\": 18881,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ultra EVM Testnet Explorer\",\r\n                \"url\": \"https://evmexplorer.testnet.ultra.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlockX Atlantis Testnet\",\r\n        \"chain\": \"blockx\",\r\n        \"rpc\": [\r\n            \"https://atlantis-web3.blockxnet.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://ping.blockxnet.com/blockx-atlantis-testnet/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BCX\",\r\n            \"symbol\": \"BCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.blockxnet.com/\",\r\n        \"shortName\": \"tbcx\",\r\n        \"chainId\": 19077,\r\n        \"networkId\": 19077,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockX EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://testnet-explorer.blockxnet.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"BlockX Cosmos Explorer (Ping)\",\r\n                \"url\": \"https://ping.blockxnet.com/blockx-atlantis-testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LocaChain Mainnet\",\r\n        \"chain\": \"LocaChain\",\r\n        \"rpc\": [\r\n            \"https://tgrpntwm.locachain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LocaCoin\",\r\n            \"symbol\": \"LCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://locachain.io\",\r\n        \"shortName\": \"locachain\",\r\n        \"chainId\": 19180,\r\n        \"networkId\": 19180,\r\n        \"icon\": \"locacoin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Locachain Explorer\",\r\n                \"url\": \"https://explorer.locachain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlockX Mainnet\",\r\n        \"chain\": \"blockx\",\r\n        \"rpc\": [\r\n            \"https://web3.blockxnet.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://ping.blockxnet.com/blockx/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BCX\",\r\n            \"symbol\": \"BCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.blockxnet.com/\",\r\n        \"shortName\": \"bcx\",\r\n        \"chainId\": 19191,\r\n        \"networkId\": 19191,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockX EVM Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.blockxnet.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"BlockX Cosmos Explorer (Ping)\",\r\n                \"url\": \"https://ping.blockxnet.com/blockx\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SEC Testnet\",\r\n        \"chain\": \"SEC\",\r\n        \"icon\": \"secIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.secexplorer.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.secexplorer.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SEP\",\r\n            \"symbol\": \"SEP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://smartenergychain.org\",\r\n        \"shortName\": \"SEPt\",\r\n        \"chainId\": 19515,\r\n        \"networkId\": 19515,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SEC Testnet Explorer\",\r\n                \"url\": \"https://testnet.secexplorer.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SEC Mainnet\",\r\n        \"chain\": \"SEC\",\r\n        \"icon\": \"secIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.secexplorer.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SEP\",\r\n            \"symbol\": \"SEP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://smartenergychain.org\",\r\n        \"shortName\": \"SECm\",\r\n        \"chainId\": 19516,\r\n        \"networkId\": 19516,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SEC Mainnet Explorer\",\r\n                \"url\": \"https://secexplorer.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zytron Linea Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"zytron\",\r\n        \"rpc\": [\r\n            \"https://linea-testnet-zytron.zypher.game/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zytron.zypher.network/\",\r\n        \"shortName\": \"zytron-linea-testnet\",\r\n        \"chainId\": 19546,\r\n        \"networkId\": 19546,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://linea-testnet-zytron-blockscout.zypher.game\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Astra Sepolia\",\r\n        \"chain\": \"Astra Sepolia\",\r\n        \"icon\": \"astrasepolia\",\r\n        \"rpc\": [\r\n            \"https://rpc-astra-9on2f72wzn.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Astra\",\r\n            \"symbol\": \"ATX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer-astra-9on2f72wzn.t.conduit.xyz\",\r\n        \"shortName\": \"astra-sepolia\",\r\n        \"chainId\": 19777,\r\n        \"networkId\": 19777,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Astra Sepolia Explorer\",\r\n                \"url\": \"https://explorer-astra-9on2f72wzn.t.conduit.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ultra EVM Network\",\r\n        \"chain\": \"Ultra\",\r\n        \"icon\": \"ultra\",\r\n        \"rpc\": [\r\n            \"https://evm.ultra.eosusa.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ultra Token\",\r\n            \"symbol\": \"UOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ultra.io\",\r\n        \"shortName\": \"ultra\",\r\n        \"chainId\": 19991,\r\n        \"networkId\": 19991,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ultra EVM Explorer\",\r\n                \"url\": \"https://evmexplorer.ultra.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Monad Devnet\",\r\n        \"chain\": \"MON\",\r\n        \"icon\": \"monad\",\r\n        \"rpc\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Devnet MON Token\",\r\n            \"symbol\": \"MON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://monad.xyz\",\r\n        \"shortName\": \"mon-devnet\",\r\n        \"chainId\": 20143,\r\n        \"networkId\": 20143,\r\n        \"slip44\": 1,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"XUSD ONE StableChain Mainnet\",\r\n        \"chain\": \"XUSD ONE\",\r\n        \"icon\": \"xusd\",\r\n        \"rpc\": [\r\n            \"https://xusd.live\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XUSD ONE\",\r\n            \"symbol\": \"X1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xusd.co\",\r\n        \"shortName\": \"xusd\",\r\n        \"chainId\": 20441,\r\n        \"networkId\": 20441,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"xusdscan\",\r\n                \"url\": \"https://xusdscan.com\",\r\n                \"icon\": \"xusdscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fluent Developer Preview\",\r\n        \"chain\": \"Fluent\",\r\n        \"rpc\": [\r\n            \"https://rpc.dev.gblend.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.dev.gblend.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fluent.xyz\",\r\n        \"shortName\": \"fluent-dev-net\",\r\n        \"chainId\": 20993,\r\n        \"networkId\": 20993,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Fluent Blockscout Explorer\",\r\n                \"url\": \"https://blockscout.dev.gblend.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Action Mainnet\",\r\n        \"chain\": \"Action\",\r\n        \"icon\": \"action\",\r\n        \"rpc\": [\r\n            \"https://rpc.actionblockchain.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Action\",\r\n            \"symbol\": \"ACTN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.actioncoin.com\",\r\n        \"shortName\": \"ACTN\",\r\n        \"chainId\": 21000,\r\n        \"networkId\": 21000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Action Mainnet Explorer\",\r\n                \"url\": \"http://exp.actionblockchain.org\",\r\n                \"icon\": \"action\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Rivest Testnet\",\r\n        \"chain\": \"Inco\",\r\n        \"rpc\": [\r\n            \"https://validator.rivest.inco.org\",\r\n            \"https://gateway.rivest.inco.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.rivest.inco.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"test-Inco\",\r\n            \"symbol\": \"tINCO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://inco.org\",\r\n        \"shortName\": \"rivest-testnet\",\r\n        \"chainId\": 21097,\r\n        \"networkId\": 21097,\r\n        \"slip44\": 1,\r\n        \"icon\": \"inco\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Rivest Testnet Explorer\",\r\n                \"url\": \"https://explorer.rivest.inco.org\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"inco\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"1Money Network Mainnet\",\r\n        \"chain\": \"1Money Network\",\r\n        \"rpc\": [\r\n            \"https://mainnet.1money.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD1\",\r\n            \"symbol\": \"USD1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://1money.com\",\r\n        \"shortName\": \"1money\",\r\n        \"chainId\": 21210,\r\n        \"networkId\": 21210,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Lestnet\",\r\n        \"chain\": \"LETH\",\r\n        \"rpc\": [\r\n            \"https://service.lestnet.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lestnet Ether\",\r\n            \"symbol\": \"LETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lestnet.org\",\r\n        \"shortName\": \"leth\",\r\n        \"chainId\": 21363,\r\n        \"networkId\": 21363,\r\n        \"icon\": \"lestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lestnet Explorer\",\r\n                \"url\": \"https://explore.lestnet.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PremiumBlock\",\r\n        \"chain\": \"PBLK\",\r\n        \"rpc\": [\r\n            \"https://rpc.premiumblock.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Premium Block\",\r\n            \"symbol\": \"PBLK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://scan.premiumblock.org\",\r\n        \"shortName\": \"pblk\",\r\n        \"chainId\": 23023,\r\n        \"networkId\": 23023,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PremiumBlocks Explorer\",\r\n                \"url\": \"https://scan.premiumblock.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"KYMTC Testnet\",\r\n        \"chain\": \"KYMTC\",\r\n        \"icon\": \"kymtc\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.kymaticscan.online\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.kymaticscan.online\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KYMTC\",\r\n            \"symbol\": \"KYMTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.kymaticscan.online\",\r\n        \"shortName\": \"tKYMTC\",\r\n        \"chainId\": 24076,\r\n        \"networkId\": 24076,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KYMTC Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.kymaticscan.online\",\r\n                \"icon\": \"kymtc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Amauti\",\r\n        \"title\": \"Rails Network Testnet Amauti\",\r\n        \"chain\": \"RAILS\",\r\n        \"icon\": \"railsTestnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.steamexchange.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://depot.steamexchange.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SteamX\",\r\n            \"symbol\": \"STEAMX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://steamexchange.io\",\r\n        \"shortName\": \"railst\",\r\n        \"chainId\": 24116,\r\n        \"networkId\": 24116,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://build.steamexchange.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Everclear Mainnet\",\r\n        \"chain\": \"Everclear Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.everclear.raas.gelato.cloud\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"Everclear\",\r\n        \"chainId\": 25327,\r\n        \"networkId\": 25327,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Everclear\",\r\n                \"url\": \"https://scan.everclear.org\",\r\n                \"icon\": \"everclear\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ferrum Quantum Portal Network\",\r\n        \"chain\": \"QPN\",\r\n        \"icon\": \"ferrum\",\r\n        \"rpc\": [\r\n            \"https://qpn.svcs.ferrumnetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ferrum\",\r\n            \"symbol\": \"qpFRM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ferrum.network\",\r\n        \"shortName\": \"qpn\",\r\n        \"chainId\": 26100,\r\n        \"networkId\": 26100,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ferrumscout\",\r\n                \"url\": \"https://explorer.ferrumnetwork.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DucatusX Testnet\",\r\n        \"chain\": \"DUCX\",\r\n        \"rpc\": [\r\n            \"https://ducx-testnet-node1.rocknblock.io\",\r\n            \"https://ducx-testnet-node2.rocknblock.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DUCX\",\r\n            \"symbol\": \"DUCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ducatuscoins.com/ducatusx\",\r\n        \"shortName\": \"ducatusx-testnet\",\r\n        \"chainId\": 26482,\r\n        \"networkId\": 26482,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer-testnet.ducatusx.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DucatusX\",\r\n        \"chain\": \"DUCX\",\r\n        \"rpc\": [\r\n            \"https://ducx-mainnet-node1.rocknblock.io\",\r\n            \"https://ducx-mainnet-node2.rocknblock.io\",\r\n            \"https://ducx-mainnet-node3.rocknblock.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DUCX\",\r\n            \"symbol\": \"DUCX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.ducatuscoins.com/ducatusx\",\r\n        \"shortName\": \"ducatusx\",\r\n        \"chainId\": 26483,\r\n        \"networkId\": 26483,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.ducatusx.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Newton Finance Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://jp-rpc-testnet-newfi.newpay.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Newton\",\r\n            \"symbol\": \"NEW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://newtonproject.org\",\r\n        \"shortName\": \"tNewFi\",\r\n        \"chainId\": 26988,\r\n        \"networkId\": 26988,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NewFi explorer\",\r\n                \"url\": \"https://explorer-testnet-newfi.newpay.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexa MetaNet\",\r\n        \"chain\": \"NEXA\",\r\n        \"rpc\": [\r\n            \"https://nexa.sh/metanet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nexa\",\r\n            \"symbol\": \"NEXA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nexa.sh/meta\",\r\n        \"shortName\": \"nexameta\",\r\n        \"chainId\": 29223,\r\n        \"networkId\": 29223,\r\n        \"slip44\": 29223,\r\n        \"icon\": \"nexameta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NexaShell\",\r\n                \"url\": \"https://nexa.sh\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nexashell\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexa MetaTest\",\r\n        \"chain\": \"NEXA\",\r\n        \"rpc\": [\r\n            \"https://nexa.sh/metatest\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nexa\",\r\n            \"symbol\": \"NEXA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nexa.sh/meta\",\r\n        \"shortName\": \"nexatest\",\r\n        \"chainId\": 29225,\r\n        \"networkId\": 29225,\r\n        \"slip44\": 29225,\r\n        \"icon\": \"nexameta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"NexaShell\",\r\n                \"url\": \"https://nexa.sh\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nexashell\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"qChain Mainnet\",\r\n        \"chain\": \"qChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.qchain.kr\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"QCO\",\r\n            \"symbol\": \"QCO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.qchain.kr\",\r\n        \"shortName\": \"qchain\",\r\n        \"chainId\": 30000,\r\n        \"networkId\": 30000,\r\n        \"icon\": \"qchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"qChain explorer\",\r\n                \"url\": \"https://scan.qchain.kr\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mezo Matsnet Testnet\",\r\n        \"chain\": \"Mezo\",\r\n        \"icon\": \"mezo\",\r\n        \"rpc\": [\r\n            \"https://rpc.test.mezo.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://mezo.org/matsnet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mezo.org/\",\r\n        \"shortName\": \"mezo\",\r\n        \"chainId\": 31611,\r\n        \"networkId\": 31611,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.test.mezo.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Santiment Intelligence Network\",\r\n        \"chain\": \"Santiment Intelligence Network\",\r\n        \"rpc\": [\r\n            \"https://node.sanr.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SANR\",\r\n            \"symbol\": \"SANR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sanr.app\",\r\n        \"shortName\": \"SANR\",\r\n        \"chainId\": 32382,\r\n        \"networkId\": 32382,\r\n        \"icon\": \"sanrchain\",\r\n        \"parent\": {\r\n            \"chain\": \"eip155-1\",\r\n            \"type\": \"L2\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sanr.app\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Santiment Intelligence Explorer\",\r\n                \"url\": \"https://app-explorer-pos.sanr.app\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa 2 EVM proto-mainnet\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://api.zq2-protomainnet.zilliqa.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zq2-protomainnet.zilliqa.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zq2-proto-mainnet\",\r\n        \"chainId\": 32770,\r\n        \"networkId\": 32770,\r\n        \"icon\": \"zilliqa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa 2 EVM proto-mainnet explorer\",\r\n                \"url\": \"https://explorer.zq2-protomainnet.zilliqa.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zilliqa 2 EVM proto-testnet\",\r\n        \"chain\": \"ZIL\",\r\n        \"rpc\": [\r\n            \"https://api.zq2-prototestnet.zilliqa.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zq2-prototestnet.zilliqa.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zilliqa\",\r\n            \"symbol\": \"ZIL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zilliqa.com/\",\r\n        \"shortName\": \"zq2-proto-testnet\",\r\n        \"chainId\": 33103,\r\n        \"networkId\": 33103,\r\n        \"icon\": \"zilliqa\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zilliqa 2 EVM proto-testnet explorer\",\r\n                \"url\": \"https://explorer.zq2-prototestnet.zilliqa.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Curtis\",\r\n        \"chain\": \"Curtis\",\r\n        \"rpc\": [\r\n            \"https://rpc.curtis.apechain.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://curtis.hub.caldera.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ApeCoin\",\r\n            \"symbol\": \"APE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://curtis.hub.caldera.xyz\",\r\n        \"shortName\": \"curtis\",\r\n        \"chainId\": 33111,\r\n        \"networkId\": 33111,\r\n        \"icon\": \"curtis\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Curtis Explorer\",\r\n                \"url\": \"https://explorer.curtis.apechain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SlingShot\",\r\n        \"chain\": \"SLING\",\r\n        \"rpc\": [\r\n            \"https://rpc.slingshotdao.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sling\",\r\n            \"symbol\": \"SLING\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://slingshotdao.com\",\r\n        \"shortName\": \"slingshot\",\r\n        \"chainId\": 33401,\r\n        \"networkId\": 33401,\r\n        \"icon\": \"slingshot\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SlingShot Explorer\",\r\n                \"url\": \"https://explore.slingshotdao.com\",\r\n                \"icon\": \"slingshot\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pencils Protocol Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pencils Protocol Sepolia Testnet Token\",\r\n            \"symbol\": \"DAPPST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pencilsprotocol.io/\",\r\n        \"shortName\": \"dapp-sepolia\",\r\n        \"chainId\": 33999,\r\n        \"networkId\": 33999,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"ZEUS Mainnet\",\r\n        \"chain\": \"ZEUSX\",\r\n        \"icon\": \"zeusicon\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.zeuschainscan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"The ZEUS Token\",\r\n            \"symbol\": \"ZEUSX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zeuschainscan.io\",\r\n        \"shortName\": \"ZEUSX\",\r\n        \"chainId\": 34504,\r\n        \"networkId\": 34504,\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZEUS Mainnet Explorer\",\r\n                \"url\": \"https://zeuschainscan.io\",\r\n                \"icon\": \"zeusicon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lens Testnet\",\r\n        \"title\": \"Lens Network Sepolia Testnet\",\r\n        \"chain\": \"Lens\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.lens.dev\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.alchemy.com/faucets/lens-sepolia\"\r\n        ],\r\n        \"chainId\": 37111,\r\n        \"networkId\": 37111,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GRASS\",\r\n            \"symbol\": \"GRASS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"lens\",\r\n        \"infoURL\": \"https://www.lens.xyz\",\r\n        \"shortName\": \"lens-sepolia\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.testnet.lens.dev/bridge\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lens Testnet Block Explorer\",\r\n                \"url\": \"https://block-explorer.testnet.lens.dev\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DIV Chain\",\r\n        \"chain\": \"DIVC\",\r\n        \"rpc\": [\r\n            \"https://rpc.divchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DIVC\",\r\n            \"symbol\": \"DIVC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.divchain.org\",\r\n        \"shortName\": \"divc\",\r\n        \"chainId\": 40000,\r\n        \"networkId\": 40000,\r\n        \"icon\": \"divc\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DIV Chain explorer\",\r\n                \"url\": \"https://scan.divchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Aleph Zero EVM\",\r\n        \"chain\": \"Aleph Zero EVM\",\r\n        \"icon\": \"aleph-zero\",\r\n        \"rpc\": [\r\n            \"https://rpc.alephzero.raas.gelato.cloud\",\r\n            \"wss://ws.alephzero.raas.gelato.cloud\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aleph Zero\",\r\n            \"symbol\": \"AZERO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alephzero.org/\",\r\n        \"shortName\": \"aleph-zero\",\r\n        \"chainId\": 41455,\r\n        \"networkId\": 41455,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Aleph Zero EVM Mainnet Explorer\",\r\n                \"url\": \"https://evm-explorer.alephzero.org\",\r\n                \"icon\": \"aleph-zero\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EDU Chain\",\r\n        \"chain\": \"EDU Chain\",\r\n        \"icon\": \"occ-mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.edu-chain.raas.gelato.cloud\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://bridge.gelato.network/bridge/edu-chain\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EDU\",\r\n            \"symbol\": \"EDU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/edu-chain\",\r\n        \"shortName\": \"edu-chain\",\r\n        \"chainId\": 41923,\r\n        \"networkId\": 41923,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EDU Chain\",\r\n                \"url\": \"https://educhain.blockscout.com\",\r\n                \"icon\": \"occ-mainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PMON Chain\",\r\n        \"chain\": \"42001\",\r\n        \"rpc\": [\r\n            \"https://rpc.pmon.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PMON Token\",\r\n            \"symbol\": \"PMON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://protocolmonsterlabs.com/pmon-chain\",\r\n        \"shortName\": \"pmon\",\r\n        \"chainId\": 42001,\r\n        \"networkId\": 42001,\r\n        \"icon\": \"pmon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.pmon.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Donatuz\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.donatuz.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.donatuz.com\",\r\n        \"shortName\": \"donatuz\",\r\n        \"chainId\": 42026,\r\n        \"networkId\": 42026,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Donatuz Explorer\",\r\n                \"url\": \"https://explorer.donatuz.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"WMC Testnet\",\r\n        \"chain\": \"WMC\",\r\n        \"icon\": \"wmc\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet-base.worldmobile.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet-base.worldmobile.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WMTx\",\r\n            \"symbol\": \"WMTx\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://worldmobiletoken.com\",\r\n        \"shortName\": \"wmtx\",\r\n        \"chainId\": 42070,\r\n        \"networkId\": 42070,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"WMC Explorer\",\r\n                \"url\": \"https://explorer-testnet-base.worldmobile.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Heurist Testnet\",\r\n        \"chain\": \"HEU\",\r\n        \"status\": \"active\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Heurist\",\r\n            \"symbol\": \"HEU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"HEU\",\r\n        \"chainId\": 42096,\r\n        \"networkId\": 42096,\r\n        \"slip44\": 1,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-4\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Asset Chain Mainnet\",\r\n        \"chain\": \"Asset Chain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.assetchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.assetchain.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Real World Asset\",\r\n            \"symbol\": \"RWA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.assetchain.org\",\r\n        \"shortName\": \"assetchain\",\r\n        \"chainId\": 42420,\r\n        \"networkId\": 42420,\r\n        \"icon\": \"assetchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Asset Chain Explorer\",\r\n                \"url\": \"https://scan.assetchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Asset Chain Testnet\",\r\n        \"chain\": \"Asset Chain\",\r\n        \"rpc\": [\r\n            \"https://enugu-rpc.assetchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.assetchain.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Real World Asset\",\r\n            \"symbol\": \"RWA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.assetchain.org\",\r\n        \"shortName\": \"rwa\",\r\n        \"chainId\": 42421,\r\n        \"networkId\": 42421,\r\n        \"icon\": \"assetchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Asset Chain Testnet Explorer\",\r\n                \"url\": \"https://scan-testnet.assetchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Formicarium\",\r\n        \"title\": \"MemeCore Testnet Formicarium\",\r\n        \"chain\": \"MemeCore\",\r\n        \"icon\": \"memecore\",\r\n        \"rpc\": [\r\n            \"https://rpc.formicarium.memecore.net\",\r\n            \"wss://ws.formicarium.memecore.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.memecore.com/formicarium\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Formicarium M\",\r\n            \"symbol\": \"M\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://memecore.com\",\r\n        \"shortName\": \"form\",\r\n        \"chainId\": 43521,\r\n        \"networkId\": 43521,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OKX-Formicarium\",\r\n                \"url\": \"https://www.okx.com/web3/explorer/formicarium-testnet\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"MemeCoreScan-Formicarium\",\r\n                \"url\": \"https://formicarium.memecorescan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"MemeCore Testnet Formicarium Explorer\",\r\n                \"url\": \"https://formicarium.blockscout.memecore.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blessnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://blessnet.calderachain.xyz/http\",\r\n            \"wss://blessnet.calderachain.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bless\",\r\n            \"symbol\": \"BLESS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blessnet.io\",\r\n        \"shortName\": \"bless\",\r\n        \"chainId\": 45513,\r\n        \"networkId\": 45513,\r\n        \"icon\": \"bless\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blessnet.calderaexplorer.xyz\",\r\n                \"icon\": \"bless\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://blessnet.bridge.caldera.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Neo X Mainnet\",\r\n        \"chain\": \"Neo X\",\r\n        \"rpc\": [\r\n            \"https://mainnet-1.rpc.banelabs.org\",\r\n            \"https://mainnet-2.rpc.banelabs.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gas\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neo.org/\",\r\n        \"shortName\": \"neox-mainnet\",\r\n        \"chainId\": 47763,\r\n        \"networkId\": 47763,\r\n        \"icon\": \"neox\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Neo X - Explorer\",\r\n                \"url\": \"https://xexplorer.neo.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"ReDeFi Layer 1\",\r\n        \"chain\": \"ReDeFi\",\r\n        \"icon\": \"redefi\",\r\n        \"rpc\": [\r\n            \"https://layer1.redefi.world\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BAX\",\r\n            \"symbol\": \"BAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://redefi.world\",\r\n        \"shortName\": \"bax\",\r\n        \"chainId\": 47803,\r\n        \"networkId\": 47803,\r\n        \"slip44\": 47803,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ReDeFi Scan\",\r\n                \"url\": \"https://scanlayer1.redefi.world\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Space Subnet Testnet\",\r\n        \"chain\": \"SPACETESTNET\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/space/testnet/rpc\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FUEL\",\r\n            \"symbol\": \"FUEL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://otherworld.network\",\r\n        \"shortName\": \"spacetestnet\",\r\n        \"chainId\": 48795,\r\n        \"networkId\": 48795,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SPACE Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/space\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zircuit Testnet\",\r\n        \"chain\": \"Zircuit Testnet\",\r\n        \"icon\": \"zircuit\",\r\n        \"rpc\": [\r\n            \"https://zircuit1-testnet.p2pify.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zircuit.com/\",\r\n        \"shortName\": \"zircuit-testnet\",\r\n        \"chainId\": 48899,\r\n        \"networkId\": 48899,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zircuit\",\r\n                \"url\": \"https://explorer.testnet.zircuit.com\",\r\n                \"icon\": \"zircuit\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zircuit Mainnet\",\r\n        \"chain\": \"Zircuit Mainnet\",\r\n        \"icon\": \"zircuit\",\r\n        \"rpc\": [\r\n            \"https://zircuit1-mainnet.p2pify.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zircuit.com/\",\r\n        \"shortName\": \"zircuit-mainnet\",\r\n        \"chainId\": 48900,\r\n        \"networkId\": 48900,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zircuit\",\r\n                \"url\": \"https://explorer.zircuit.com\",\r\n                \"icon\": \"zircuit\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Citronus\",\r\n        \"chain\": \"Citronus\",\r\n        \"rpc\": [\r\n            \"https://rpc.citronus.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CITRO\",\r\n            \"symbol\": \"CITRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://citronus.com\",\r\n        \"shortName\": \"citro\",\r\n        \"chainId\": 50000,\r\n        \"networkId\": 50000,\r\n        \"icon\": \"citro\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"citro\",\r\n                \"url\": \"https://explorer.citronus.com\",\r\n                \"icon\": \"citro\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/citronus\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Sophon\",\r\n        \"chain\": \"Sophon\",\r\n        \"rpc\": [\r\n            \"https://rpc.sophon.xyz\",\r\n            \"wss://rpc.sophon.xyz/ws\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sophon\",\r\n            \"symbol\": \"SOPH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"sophon\",\r\n        \"chainId\": 50104,\r\n        \"networkId\": 50104,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sophon Block Explorer\",\r\n                \"url\": \"https://explorer.sophon.xyz\",\r\n                \"icon\": \"sophon-testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.sophon.xyz/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Somnia Devnet\",\r\n        \"chain\": \"Somnia\",\r\n        \"rpc\": [\r\n            \"https://dream-rpc.somnia.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Somnia Devnet\",\r\n            \"symbol\": \"STT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://somnia.network\",\r\n        \"shortName\": \"STT\",\r\n        \"chainId\": 50311,\r\n        \"networkId\": 50311,\r\n        \"icon\": \"somnia\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Somnia Devnet\",\r\n                \"url\": \"https://somnia-devnet.socialscan.io\",\r\n                \"icon\": \"somnia\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Reddio Devnet\",\r\n        \"title\": \"Reddio Sepolia L2 Rollup Devnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://reddio-dev.reddio.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Red\",\r\n            \"symbol\": \"RED\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.reddio.com\",\r\n        \"shortName\": \"reddio-devnet\",\r\n        \"chainId\": 50341,\r\n        \"networkId\": 50341,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"L2scan\",\r\n                \"url\": \"https://reddio-devnet.l2scan.co\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"STB Testnet\",\r\n        \"chain\": \"STB Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.quorum.sps.dev.kode.ru/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"STB\",\r\n            \"symbol\": \"STB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"stb-testnet\",\r\n        \"chainId\": 50505,\r\n        \"networkId\": 50505,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"stb-testnet\",\r\n                \"url\": \"https://explorer.quorum.sps.dev.kode.ru\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Erbie Mainnet\",\r\n        \"chain\": \"Erbie\",\r\n        \"rpc\": [\r\n            \"https://api.erbie.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ERB\",\r\n            \"symbol\": \"ERB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.erbie.io\",\r\n        \"shortName\": \"Erbie\",\r\n        \"chainId\": 50888,\r\n        \"networkId\": 50888,\r\n        \"icon\": \"erbie\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Erbie Explorer\",\r\n                \"url\": \"https://www.erbie.io/explorer\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"erbie\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cytonic Testnet\",\r\n        \"chain\": \"Cytonic\",\r\n        \"rpc\": [\r\n            \"http://rpc.sl.testnet.cytonic.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cytonic\",\r\n            \"symbol\": \"CCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cytonic.com\",\r\n        \"shortName\": \"CTS\",\r\n        \"chainId\": 52225,\r\n        \"networkId\": 52225,\r\n        \"icon\": \"cytonic_l1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.sl.testnet.cytonic.com\",\r\n                \"icon\": \"cytonic_l1\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Superseed Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.superseed.xyz\",\r\n            \"wss://sepolia.superseed.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sepoliafaucet.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.superseed.xyz\",\r\n        \"shortName\": \"seedsep\",\r\n        \"chainId\": 53302,\r\n        \"networkId\": 53302,\r\n        \"slip44\": 1,\r\n        \"icon\": \"seedTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"seedscout\",\r\n                \"url\": \"https://sepolia-explorer.superseed.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia-bridge.superseed.xyz/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"BirdLayer\",\r\n        \"title\": \"BirdLayer\",\r\n        \"chain\": \"BirdLayer\",\r\n        \"icon\": \"birdlayer\",\r\n        \"rpc\": [\r\n            \"https://rpc.birdlayer.xyz\",\r\n            \"https://rpc1.birdlayer.xyz\",\r\n            \"wss://rpc.birdlayer.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.dodochain.com\",\r\n        \"shortName\": \"birdlayer\",\r\n        \"chainId\": 53456,\r\n        \"networkId\": 53456,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BirdLayer Explorer\",\r\n                \"url\": \"https://scan.birdlayer.xyz\",\r\n                \"icon\": \"birdlayer\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Graphite Testnet\",\r\n        \"chain\": \"Graphite\",\r\n        \"rpc\": [\r\n            \"https://anon-entrypoint-test-1.atgraphite.com\",\r\n            \"wss://ws-anon-entrypoint-test-1.atgraphite.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.atgraphite.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Graphite\",\r\n            \"symbol\": \"@G\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://atgraphite.com/\",\r\n        \"shortName\": \"graphiteTest\",\r\n        \"chainId\": 54170,\r\n        \"networkId\": 54170,\r\n        \"icon\": \"graphite\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Graphite Testnet Explorer\",\r\n                \"url\": \"https://test.atgraphite.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OverProtocol Mainnet\",\r\n        \"chain\": \"OverProtocol\",\r\n        \"icon\": \"overIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.overprotocol.com\",\r\n            \"https://rpc2.overprotocol.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Over\",\r\n            \"symbol\": \"OVER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.over.network\",\r\n        \"shortName\": \"overprotocol\",\r\n        \"chainId\": 54176,\r\n        \"networkId\": 54176,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OverView\",\r\n                \"url\": \"https://scan.over.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Titan Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.titan-sepolia.tokamak.network\",\r\n            \"wss://rpc.titan-sepolia.tokamak.network/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tokamak.network\",\r\n        \"shortName\": \"titan-sepolia\",\r\n        \"chainId\": 55007,\r\n        \"networkId\": 55007,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.titan-sepolia.tokamak.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Superposition\",\r\n        \"chain\": \"Superposition\",\r\n        \"rpc\": [\r\n            \"https://rpc.superposition.so\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://superposition.so\",\r\n        \"shortName\": \"spn\",\r\n        \"chainId\": 55244,\r\n        \"networkId\": 55244,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Superposition Explorer\",\r\n                \"url\": \"https://explorer.superposition.so\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Photon Aurora Testnet\",\r\n        \"chain\": \"Photon\",\r\n        \"rpc\": [\r\n            \"https://rpc-test2.photonchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://photonchain.io/testnet2\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Photon\",\r\n            \"symbol\": \"PTON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://photonchain.io\",\r\n        \"shortName\": \"pton\",\r\n        \"chainId\": 55551,\r\n        \"networkId\": 55551,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"photon_testnet2_explorer\",\r\n                \"url\": \"https://testnet2.photonchain.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Flamma Mainnet\",\r\n        \"chain\": \"Flamma\",\r\n        \"rpc\": [\r\n            \"https://rpc.flamma.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Flamma\",\r\n            \"symbol\": \"FLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://flamma.network\",\r\n        \"shortName\": \"FlammaMainnet\",\r\n        \"chainId\": 55614,\r\n        \"networkId\": 55614,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"flascan\",\r\n                \"url\": \"https://flascan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sonic Blaze Testnet\",\r\n        \"chain\": \"blaze-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.blaze.soniclabs.com\",\r\n            \"https://sonic-blaze-rpc.publicnode.com\",\r\n            \"wss://sonic-blaze-rpc.publicnode.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://blaze.soniclabs.com/account\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sonic\",\r\n            \"symbol\": \"S\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blaze.soniclabs.com\",\r\n        \"shortName\": \"blaze\",\r\n        \"chainId\": 57054,\r\n        \"networkId\": 57054,\r\n        \"icon\": \"sonic\"\r\n    },\r\n    {\r\n        \"name\": \"COINSEC Network\",\r\n        \"title\": \"COINSEC Network\",\r\n        \"chain\": \"coinsecnetwork\",\r\n        \"icon\": \"coinsec\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.coinsec.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"COINSEC\",\r\n            \"symbol\": \"SEC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.coinsec.network/\",\r\n        \"shortName\": \"coinsecnetwork\",\r\n        \"chainId\": 57451,\r\n        \"networkId\": 57451,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"coinsecnetwork\",\r\n                \"url\": \"https://explorer.coinsec.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lumoz Quidditch Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://quidditch-rpc.lumoz.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lumoz Quidditch Testnet Token\",\r\n            \"symbol\": \"MOZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://lumoz.org\",\r\n        \"shortName\": \"Lumoz-Quidditch-Testnet\",\r\n        \"chainId\": 58680,\r\n        \"networkId\": 58680,\r\n        \"slip44\": 1,\r\n        \"icon\": \"opside-new\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LumozQuidditchTestnetInfo\",\r\n                \"url\": \"https://quidditch.lumoz.info\",\r\n                \"icon\": \"opside-new\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Metis Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sepolia.metisdevops.link\",\r\n            \"https://metis-sepolia-rpc.publicnode.com\",\r\n            \"wss://metis-sepolia-rpc.publicnode.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sepolia.faucet.metisdevops.link\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tMetis\",\r\n            \"symbol\": \"tMETIS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.metis.io\",\r\n        \"shortName\": \"metis-sepolia\",\r\n        \"chainId\": 59902,\r\n        \"networkId\": 59902,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://sepolia-explorer.metisdevops.link\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.metis.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Orange Chain Mainnet\",\r\n        \"title\": \"Orange Chain Mainnet\",\r\n        \"chain\": \"Orange Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.orangechain.xyz\",\r\n            \"https://hk-rpc.orangechain.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BTC\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://orangechain.xyz\",\r\n        \"shortName\": \"Orange-Chain-Mainnet\",\r\n        \"chainId\": 61022,\r\n        \"networkId\": 61022,\r\n        \"icon\": \"orange\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://scan.orangechain.xyz\",\r\n                \"icon\": \"orange\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Treasure\",\r\n        \"chain\": \"Treasure\",\r\n        \"shortName\": \"treasure\",\r\n        \"chainId\": 61166,\r\n        \"networkId\": 61166,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAGIC\",\r\n            \"symbol\": \"MAGIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"slip44\": 1,\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://app.treasure.lol\",\r\n        \"icon\": \"treasure\",\r\n        \"rpc\": [\r\n            \"https://rpc.treasure.lol\",\r\n            \"wss://rpc.treasure.lol/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app.treasure.lol/chain/faucet\",\r\n            \"https://thirdweb.com/treasure\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Treasure Block Explorer\",\r\n                \"url\": \"https://treasurescan.io\",\r\n                \"icon\": \"treasure\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://app.treasure.lol/chain/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"TikTrix Testnet\",\r\n        \"chain\": \"tTTX\",\r\n        \"icon\": \"tiktrix\",\r\n        \"rpc\": [\r\n            \"https://tiktrix-rpc.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tTTX\",\r\n            \"symbol\": \"tTTX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tiktrix.gg\",\r\n        \"shortName\": \"tiktrix-testnet\",\r\n        \"chainId\": 62092,\r\n        \"networkId\": 62092,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TikTrix Testnet Explorer\",\r\n                \"url\": \"https://tiktrix.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LAOS Sigma Testnet\",\r\n        \"title\": \"LAOS Sigma Testnet\",\r\n        \"chain\": \"LAOS Sigma Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.laossigma.laosfoundation.io\",\r\n            \"wss://rpc.laossigma.laosfoundation.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SIGMA\",\r\n            \"symbol\": \"SIGMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://laosnetwork.io\",\r\n        \"shortName\": \"laossigma\",\r\n        \"chainId\": 62850,\r\n        \"networkId\": 62850,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://sigma.explorer.laosnetwork.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"eSync Network Testnet\",\r\n        \"title\": \"eSync Network Testnet\",\r\n        \"chain\": \"ECS\",\r\n        \"rpc\": [\r\n            \"https://rpc.tst.esync.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.tst.ecredits.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"eCredits\",\r\n            \"symbol\": \"ECS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://esync.network\",\r\n        \"shortName\": \"esync-testnet\",\r\n        \"chainId\": 63002,\r\n        \"networkId\": 63002,\r\n        \"slip44\": 1,\r\n        \"icon\": \"esync\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eSync Network Testnet Explorer\",\r\n                \"url\": \"https://explorer.tst.esync.network\",\r\n                \"icon\": \"esync\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Geist Mainnet\",\r\n        \"chain\": \"Geist\",\r\n        \"rpc\": [\r\n            \"https://geist-mainnet.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aavegotchi GHST Token\",\r\n            \"symbol\": \"GHST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://playongeist.com\",\r\n        \"shortName\": \"geist\",\r\n        \"chainId\": 63157,\r\n        \"networkId\": 63157,\r\n        \"status\": \"active\",\r\n        \"icon\": \"geist\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Geist Explorer\",\r\n                \"url\": \"https://geist-mainnet.explorer.alchemy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CratD2C Testnet\",\r\n        \"chain\": \"CRATD2C\",\r\n        \"rpc\": [\r\n            \"https://cratd2c-testnet-node1.cratd2csmartchain.io/\",\r\n            \"https://cratd2c-testnet-node2.cratd2csmartchain.io/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CRATD2C\",\r\n            \"symbol\": \"CRAT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cratd2csmartchain.io\",\r\n        \"shortName\": \"cratd2c-testnet\",\r\n        \"chainId\": 65349,\r\n        \"networkId\": 65349,\r\n        \"icon\": \"cratd2c-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer-testnet.cratd2csmartchain.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vecno Mainnet\",\r\n        \"chain\": \"VE\",\r\n        \"rpc\": [\r\n            \"https://rpc.vecno.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vecno\",\r\n            \"symbol\": \"VE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://vecno.org\",\r\n        \"shortName\": \"ve\",\r\n        \"chainId\": 65357,\r\n        \"networkId\": 65357,\r\n        \"icon\": \"vecno\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"vecno\",\r\n                \"url\": \"https://explorer.vecno.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CyberChain Mainnet\",\r\n        \"chain\": \"XCC\",\r\n        \"icon\": \"cyberchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.cyberchain.xyz/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XCC\",\r\n            \"symbol\": \"XCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cyberchain.xyz\",\r\n        \"shortName\": \"xcc\",\r\n        \"chainId\": 65535,\r\n        \"networkId\": 65535,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CyberChain explorer\",\r\n                \"url\": \"https://scan.cyberchain.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Automata Mainnet\",\r\n        \"chain\": \"Automata Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.ata.network\",\r\n            \"https://automata-mainnet.alt.technology/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ATA\",\r\n            \"symbol\": \"ATA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ata.network\",\r\n        \"shortName\": \"automatamainnet\",\r\n        \"chainId\": 65536,\r\n        \"networkId\": 65536,\r\n        \"icon\": \"automata\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Automata Explorer\",\r\n                \"url\": \"https://explorer.ata.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Creator Chain Testnet\",\r\n        \"chain\": \"creatorchain\",\r\n        \"icon\": \"creatorchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.creatorchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CreatorETH\",\r\n            \"symbol\": \"CETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.creatorchain.io/\",\r\n        \"shortName\": \"ceth\",\r\n        \"chainId\": 66665,\r\n        \"networkId\": 66665,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"creatorchainscan\",\r\n                \"url\": \"https://explorer.creatorchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DM2 Verse Testnet\",\r\n        \"chain\": \"DM2 Verse\",\r\n        \"icon\": \"dm2verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.dm2verse.dmm.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://seamoon.dmm.com\",\r\n        \"shortName\": \"dm2t\",\r\n        \"chainId\": 68775,\r\n        \"networkId\": 68775,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DM2Verse Testnet Explorer\",\r\n                \"url\": \"https://explorer.testnet.dm2verse.dmm.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Proof of Play - Boss\",\r\n        \"chainId\": 70701,\r\n        \"shortName\": \"pop-boss\",\r\n        \"chain\": \"ETH\",\r\n        \"networkId\": 70701,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.boss.proofofplay.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Proof of Play Boss Explorer\",\r\n                \"url\": \"https://explorer.boss.proofofplay.com\",\r\n                \"icon\": \"pop-boss\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://proofofplay.com\",\r\n        \"icon\": \"pop-boss\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                },\r\n                {\r\n                    \"url\": \"https://relay.link/bridge/boss/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Wadzchain Testnet\",\r\n        \"title\": \"Wadzchain Testnet\",\r\n        \"chain\": \"Wadzchain-Testnet\",\r\n        \"icon\": \"wadz\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.wadzchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnet.wadzchain.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WadzChain Coin\",\r\n            \"symbol\": \"WCO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.wadzchain-network.io\",\r\n        \"shortName\": \"wadzchain-testnet\",\r\n        \"chainId\": 71117,\r\n        \"networkId\": 71117,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Wadzchain Testnet Explorer\",\r\n                \"url\": \"https://scan-testnet.wadzchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexera Testnet\",\r\n        \"chain\": \"Nexera\",\r\n        \"icon\": \"nexera\",\r\n        \"chainId\": 72080,\r\n        \"networkId\": 72080,\r\n        \"infoURL\": \"https://testnet.nexera.network\",\r\n        \"shortName\": \"nxra-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.nexera.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.nexera.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tNXRA\",\r\n            \"symbol\": \"tNXRA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"CAGA mainnet\",\r\n        \"chain\": \"CAGA\",\r\n        \"rpc\": [\r\n            \"https://cagamainnet.com\",\r\n            \"wss://cagamainnet.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CAGA\",\r\n            \"symbol\": \"CAGA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cagacrypto.com/\",\r\n        \"shortName\": \"caga-mainnet\",\r\n        \"chainId\": 72888,\r\n        \"networkId\": 72888,\r\n        \"icon\": \"caga\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"caga\",\r\n                \"url\": \"https://explorer.cagamainnet.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"AppLayer Testnet\",\r\n        \"chain\": \"AppLayer\",\r\n        \"rpc\": [\r\n            \"https://testnet-api.applayer.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.applayer.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AppLayer\",\r\n            \"symbol\": \"APPL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP55\"\r\n            },\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://applayer.com\",\r\n        \"shortName\": \"applayer-testnet\",\r\n        \"chainId\": 75338,\r\n        \"networkId\": 75338,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Applayer Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.applayer.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Carrchain Testnet\",\r\n        \"chain\": \"Carrchain Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnetcarrchain.artiffine.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-testnetcarrchain.artiffine.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Carrchain Coin\",\r\n            \"symbol\": \"CARR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer-testnetcarrchain.artiffine.com\",\r\n        \"shortName\": \"Carrchain-Testnet\",\r\n        \"chainId\": 77652,\r\n        \"networkId\": 77652,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://explorer-testnetcarrchain.artiffine.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cycle Network Mainnet Sailboat\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://sailboat-rpc-mainnet.cyclenetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cyclenetwork.io/\",\r\n        \"shortName\": \"cycles\",\r\n        \"chainId\": 77677,\r\n        \"networkId\": 77677,\r\n        \"icon\": \"cycle\"\r\n    },\r\n    {\r\n        \"name\": \"Polynomia Sepolia\",\r\n        \"chain\": \"polynomialSepolia\",\r\n        \"rpc\": [\r\n            \"https://rpc.sepolia.polynomial.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://polynomial.fi\",\r\n        \"shortName\": \"polynomialSepolia\",\r\n        \"chainId\": 80008,\r\n        \"networkId\": 80008,\r\n        \"icon\": \"polynomialSepolia\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polynomial Sepolia Explorer\",\r\n                \"url\": \"https://sepolia.polynomialscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"polynomialSepolia\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Berachain bArtio\",\r\n        \"chain\": \"Berachain bArtio\",\r\n        \"rpc\": [\r\n            \"https://bartio.rpc.berachain.com\",\r\n            \"https://bera-testnet.nodeinfra.com\",\r\n            \"https://bartio.rpc.b-harvest.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://bartio.faucet.berachain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BERA Token\",\r\n            \"symbol\": \"BERA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.berachain.com\",\r\n        \"shortName\": \"berachainbArtio\",\r\n        \"chainId\": 80084,\r\n        \"networkId\": 80084,\r\n        \"icon\": \"berachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beratrail\",\r\n                \"url\": \"https://bartio.beratrail.io\",\r\n                \"icon\": \"berachain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Berachain\",\r\n        \"chain\": \"Berachain\",\r\n        \"rpc\": [\r\n            \"https://rpc.berachain.com\",\r\n            \"https://berachain-rpc.publicnode.com\",\r\n            \"wss://berachain-rpc.publicnode.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BERA Token\",\r\n            \"symbol\": \"BERA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.berachain.com\",\r\n        \"shortName\": \"berachain\",\r\n        \"chainId\": 80094,\r\n        \"networkId\": 80094,\r\n        \"icon\": \"berachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Berascan\",\r\n                \"url\": \"https://berascan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Beratrail\",\r\n                \"url\": \"https://beratrail.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Geo Genesis\",\r\n        \"chain\": \"Geo Genesis\",\r\n        \"rpc\": [\r\n            \"https://rpc-geo-genesis-h0q2s21xx8.t.conduit.xyz/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://geobrowser.io\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"The Graph\",\r\n            \"symbol\": \"GRT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"geo\",\r\n        \"chainId\": 80451,\r\n        \"networkId\": 80451,\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-42161\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Forta Chain\",\r\n        \"chain\": \"Forta Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc-forta-chain-8gj1qndmfc.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FORT\",\r\n            \"symbol\": \"FORT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.forta.org/\",\r\n        \"shortName\": \"forta\",\r\n        \"chainId\": 80931,\r\n        \"networkId\": 80931,\r\n        \"icon\": \"forta-chain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Forta Chain Explorer\",\r\n                \"url\": \"https://explorer.forta.org\",\r\n                \"icon\": \"forta-chain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"VEMP Horizon\",\r\n        \"chain\": \"vemp-horizon\",\r\n        \"rpc\": [\r\n            \"https://vemp-horizon.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"VEMP\",\r\n            \"symbol\": \"VEMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.vemp.xyz/\",\r\n        \"shortName\": \"vemp-horizon\",\r\n        \"chainId\": 82614,\r\n        \"networkId\": 82614,\r\n        \"icon\": \"vemp-horizon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"VEMP Horizon Caldera Explorer\",\r\n                \"url\": \"https://vemp-horizon.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xprotocol Testnet\",\r\n        \"chainId\": 83144,\r\n        \"shortName\": \"xprotocoltestnet\",\r\n        \"chain\": \"Xprotocol Testnet\",\r\n        \"networkId\": 83144,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KICK Testnet Token\",\r\n            \"symbol\": \"KICK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.xprotocol.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://xprotocol.org/faucets\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.testnet.xprotocol.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-84532\"\r\n        },\r\n        \"infoURL\": \"https://xprotocol.org/\"\r\n    },\r\n    {\r\n        \"name\": \"Esa\",\r\n        \"chain\": \"Esa\",\r\n        \"rpc\": [\r\n            \"http://65.108.151.70:8545\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Esa\",\r\n            \"symbol\": \"Esa\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://esculap.us\",\r\n        \"shortName\": \"Esa\",\r\n        \"chainId\": 83278,\r\n        \"networkId\": 83278,\r\n        \"icon\": \"EsaCoins\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Xprotocol Sepolia\",\r\n        \"chainId\": 83868,\r\n        \"shortName\": \"xprotocolsepolia\",\r\n        \"chain\": \"Xprotocol Sepolia\",\r\n        \"networkId\": 83868,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"KICK Testnet Token\",\r\n            \"symbol\": \"KICK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-84532\"\r\n        },\r\n        \"infoURL\": \"https://xprotocol.org/\"\r\n    },\r\n    {\r\n        \"name\": \"O Chain\",\r\n        \"chain\": \"O\",\r\n        \"rpc\": [\r\n            \"https://rpc.o.xyz\",\r\n            \"https://84841.rpc.thirdweb.com\",\r\n            \"wss://rpc.o.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"O.XYZ\",\r\n            \"symbol\": \"O\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://o.xyz\",\r\n        \"shortName\": \"O\",\r\n        \"chainId\": 84841,\r\n        \"networkId\": 84841,\r\n        \"slip44\": 1,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.o.xyz\"\r\n                },\r\n                {\r\n                    \"url\": \"https://superbridge.o.xyz\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.o.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GDPR Testnet\",\r\n        \"chain\": \"GDPR\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.gdprchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GDPR\",\r\n            \"symbol\": \"GDPR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://explorer.testnet.gdprchain.com\",\r\n        \"shortName\": \"gdpr-testnet\",\r\n        \"chainId\": 85321,\r\n        \"networkId\": 85321,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"GDPR Testnet Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.testnet.gdprchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZKasino Mainnet\",\r\n        \"chain\": \"ZKasino\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkas.zeeve.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZKAS\",\r\n            \"symbol\": \"ZKAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"ZKasino\",\r\n        \"chainId\": 88800,\r\n        \"networkId\": 88800,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://explorer.zkas.zeeve.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Unit Zero Mainnet\",\r\n        \"chain\": \"Unit Zero\",\r\n        \"icon\": \"unitzero\",\r\n        \"rpc\": [\r\n            \"https://rpc.unit0.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"UNIT0\",\r\n            \"symbol\": \"UNIT0\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://units.network\",\r\n        \"shortName\": \"unit0-mainnet\",\r\n        \"chainId\": 88811,\r\n        \"networkId\": 88811,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Matr1x Testnet\",\r\n        \"title\": \"Matr1x Testnet\",\r\n        \"chain\": \"Matr1x\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.m1chain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAX\",\r\n            \"symbol\": \"MAX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://matr1x.io\",\r\n        \"shortName\": \"Matr1x-Testnet\",\r\n        \"chainId\": 88866,\r\n        \"networkId\": 88866,\r\n        \"icon\": \"matr1x\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"matr1x testnet\",\r\n                \"url\": \"https://testnet-scan.m1chain.io\",\r\n                \"icon\": \"matr1x\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Unite\",\r\n        \"chain\": \"UNITE\",\r\n        \"rpc\": [\r\n            \"https://unite-mainnet.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Unite\",\r\n            \"symbol\": \"UNITE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://unite.io\",\r\n        \"shortName\": \"unite\",\r\n        \"chainId\": 88899,\r\n        \"networkId\": 88899,\r\n        \"status\": \"active\",\r\n        \"icon\": \"unite\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unite Explorer\",\r\n                \"url\": \"https://unite-mainnet.explorer.alchemy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"UBIT SMARTCHAIN MAINNET\",\r\n        \"chain\": \"UBIT SMARTCHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.ubitscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USC\",\r\n            \"symbol\": \"USC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ubitscan.io\",\r\n        \"shortName\": \"UBITSCAN\",\r\n        \"chainId\": 90002,\r\n        \"networkId\": 90002,\r\n        \"slip44\": 108,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"UBITSCAN\",\r\n                \"url\": \"https://ubitscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Henez Chain Mainnet\",\r\n        \"chain\": \"henez\",\r\n        \"rpc\": [\r\n            \"https://henez.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.henez.fi/\",\r\n        \"shortName\": \"henez\",\r\n        \"chainId\": 91111,\r\n        \"networkId\": 91111,\r\n        \"icon\": \"henez\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Henez Chain Mainnet Caldera Explorer\",\r\n                \"url\": \"https://henez.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"StratoVM Testnet\",\r\n        \"chain\": \"StratoVM\",\r\n        \"rpc\": [\r\n            \"https://rpc.stratovm.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SVM\",\r\n            \"symbol\": \"SVM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.stratovm.io/\",\r\n        \"shortName\": \"stratovm\",\r\n        \"chainId\": 93747,\r\n        \"networkId\": 93747,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"StratoVM Block Explorer\",\r\n                \"url\": \"https://explorer.stratovm.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SRICHAIN\",\r\n        \"chain\": \"SRICHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.sriscan.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SRIX\",\r\n            \"symbol\": \"SRIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sriscan.com\",\r\n        \"shortName\": \"sriscan\",\r\n        \"chainId\": 95432,\r\n        \"networkId\": 95432,\r\n        \"slip44\": 108,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SRICHAIN\",\r\n                \"url\": \"https://sriscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lux Testnet\",\r\n        \"chain\": \"Lux\",\r\n        \"icon\": \"lux\",\r\n        \"rpc\": [\r\n            \"https://api.lux-test.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lux-test.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tLux\",\r\n            \"symbol\": \"tLUX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lux.network\",\r\n        \"shortName\": \"tlux\",\r\n        \"chainId\": 96368,\r\n        \"networkId\": 96368,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lux Network Explorer\",\r\n                \"url\": \"https://explore.lux.network\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Lux Network Explorer\",\r\n                \"url\": \"https://explore.lux-test.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lux Mainnet\",\r\n        \"chain\": \"Lux\",\r\n        \"icon\": \"lux\",\r\n        \"rpc\": [\r\n            \"https://api.lux.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lux-test.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lux\",\r\n            \"symbol\": \"LUX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lux.network\",\r\n        \"shortName\": \"lux\",\r\n        \"chainId\": 96369,\r\n        \"networkId\": 96369,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lux Network Explorer\",\r\n                \"url\": \"https://explore.lux.network\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Lux Network Explorer\",\r\n                \"url\": \"https://explore.lux-test.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lumoz Chain Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.lumoz.org\",\r\n            \"https://rpc-hk.lumoz.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lumoz Mainnet Token\",\r\n            \"symbol\": \"MOZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://lumoz.org\",\r\n        \"shortName\": \"Lumoz-Chain-Mainnet\",\r\n        \"chainId\": 96370,\r\n        \"networkId\": 96370,\r\n        \"slip44\": 1,\r\n        \"icon\": \"opside-new\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LumozMainnetInfo\",\r\n                \"url\": \"https://scan.lumoz.info\",\r\n                \"icon\": \"opside-new\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Wonder Testnet\",\r\n        \"chain\": \"WNDR\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.wonderchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://wonderchain.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://wonderchain.org\",\r\n        \"shortName\": \"wndr\",\r\n        \"chainId\": 96371,\r\n        \"networkId\": 96371,\r\n        \"icon\": \"wonder\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"wonderexplorer\",\r\n                \"url\": \"https://explorer.testnet.wonderchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Tetron Testnet Smart Chain\",\r\n        \"chain\": \"Tetron Testnet\",\r\n        \"rpc\": [\r\n            \"https://test-rpc.tscscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tetron Testnet\",\r\n            \"symbol\": \"TSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tetronchain.com/\",\r\n        \"shortName\": \"TetronTestnet\",\r\n        \"chainId\": 97053,\r\n        \"networkId\": 97053,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tetron Explorer\",\r\n                \"url\": \"https://testnet.tscscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tetron Smart Chain\",\r\n        \"chain\": \"Tetron Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.tscscan.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tetron Mainnet\",\r\n            \"symbol\": \"TSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tetronchain.com/\",\r\n        \"shortName\": \"Tetron\",\r\n        \"chainId\": 97055,\r\n        \"networkId\": 97055,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tetron Smart ChainExplorer\",\r\n                \"url\": \"https://tscscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SlingShot Testnet\",\r\n        \"chain\": \"SLING\",\r\n        \"rpc\": [\r\n            \"https://rpc-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sling Test\",\r\n            \"symbol\": \"SLINGT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://slingshotdao.com\",\r\n        \"shortName\": \"sling\",\r\n        \"chainId\": 97435,\r\n        \"networkId\": 97435,\r\n        \"icon\": \"slingshot\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SlingShot Test Explorer\",\r\n                \"url\": \"https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz\",\r\n                \"icon\": \"slingshot\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sidra Chain\",\r\n        \"chain\": \"SIDRA\",\r\n        \"icon\": \"sidrachain\",\r\n        \"rpc\": [\r\n            \"https://node.sidrachain.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sidra Digital Asset\",\r\n            \"symbol\": \"SDA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sidrachain.com\",\r\n        \"shortName\": \"sidra\",\r\n        \"chainId\": 97453,\r\n        \"networkId\": 97453,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sidra Chain Explorer\",\r\n                \"url\": \"https://ledger.sidrachain.com\",\r\n                \"icon\": \"sidrachain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"MetaBenz CHAIN\",\r\n        \"chain\": \"MetaBenz CHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.metabenzscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MBC\",\r\n            \"symbol\": \"MBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://metabenzscan.com\",\r\n        \"shortName\": \"metabenzscan\",\r\n        \"chainId\": 97766,\r\n        \"networkId\": 97766,\r\n        \"slip44\": 108,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MetaBenz CHAIN\",\r\n                \"url\": \"https://metabenzscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plume Devnet\",\r\n        \"title\": \"Plume Sepolia L2 Rollup Devnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://test-rpc.plumenetwork.xyz\",\r\n            \"wss://test-rpc.plumenetwork.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plume Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plumenetwork.xyz/\",\r\n        \"shortName\": \"plume-devnet\",\r\n        \"chainId\": 98864,\r\n        \"networkId\": 98864,\r\n        \"slip44\": 1,\r\n        \"icon\": \"plume\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://test-explorer.plumenetwork.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Plume Mainnet\",\r\n        \"title\": \"Plume Ethereum L2 Rollup Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.plumenetwork.xyz\",\r\n            \"wss://rpc.plumenetwork.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plume Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plumenetwork.xyz/\",\r\n        \"shortName\": \"plume\",\r\n        \"chainId\": 98865,\r\n        \"networkId\": 98865,\r\n        \"slip44\": 1,\r\n        \"icon\": \"plume\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.plumenetwork.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.plumenetwork.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Superposition Testnet\",\r\n        \"title\": \"Sperposition Testnet\",\r\n        \"chain\": \"SPN\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.superposition.so\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.superposition.so\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SPN\",\r\n            \"symbol\": \"SPN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://superposition.so\",\r\n        \"shortName\": \"superposition-testnet\",\r\n        \"chainId\": 98985,\r\n        \"networkId\": 98985,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Superposition Explorer\",\r\n                \"url\": \"https://testnet-explorer.superposition.so\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Edge Matrix Chain Testnet\",\r\n        \"chain\": \"EMC Testnet\",\r\n        \"icon\": \"emctest\",\r\n        \"rpc\": [\r\n            \"https://rpc1-testnet.emc.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Edge Matrix Chain Token\",\r\n            \"symbol\": \"EMC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"EMCTestnet\",\r\n        \"chainId\": 99876,\r\n        \"networkId\": 99876,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.emcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Edge Matrix Chain Sepolia\",\r\n        \"chain\": \"EMC Sepolia\",\r\n        \"icon\": \"emctest\",\r\n        \"rpc\": [\r\n            \"https://rpc1-sepolia.emc.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Edge Matrix Chain Token\",\r\n            \"symbol\": \"EMC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"EMCSepolia\",\r\n        \"chainId\": 99879,\r\n        \"networkId\": 99879,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://sepolia.emcscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Creditcoin\",\r\n        \"chain\": \"CTC\",\r\n        \"icon\": \"creditcoin\",\r\n        \"rpc\": [\r\n            \"https://mainnet3.creditcoin.network\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CTC\",\r\n            \"symbol\": \"CTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://creditcoin.org\",\r\n        \"shortName\": \"ctc\",\r\n        \"chainId\": 102030,\r\n        \"networkId\": 102030,\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://creditcoin.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Creditcoin Devnet\",\r\n        \"chain\": \"CTC\",\r\n        \"icon\": \"creditcoin\",\r\n        \"rpc\": [\r\n            \"https://rpc.cc3-devnet.creditcoin.network\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Devnet CTC\",\r\n            \"symbol\": \"devCTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://creditcoin.org\",\r\n        \"shortName\": \"ctcdev\",\r\n        \"chainId\": 102032,\r\n        \"networkId\": 102032,\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://creditcoin-devnet.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lumoz Chain Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.lumoz.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lumoz Testnet Token\",\r\n            \"symbol\": \"MOZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://lumoz.org\",\r\n        \"shortName\": \"Lumoz-Chain-Testnet\",\r\n        \"chainId\": 105363,\r\n        \"networkId\": 105363,\r\n        \"slip44\": 1,\r\n        \"icon\": \"opside-new\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"LumozTestInfo\",\r\n                \"url\": \"https://testnet-scan.lumoz.info\",\r\n                \"icon\": \"opside-new\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mars Credit\",\r\n        \"chain\": \"MARS\",\r\n        \"rpc\": [\r\n            \"https://node99-production-dd5f.up.railway.app:443\",\r\n            \"https://rpc.marscredit.xyz:443\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mars Credit\",\r\n            \"symbol\": \"MARS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://marscredit.xyz/\",\r\n        \"shortName\": \"mars\",\r\n        \"chainId\": 110110,\r\n        \"networkId\": 110110,\r\n        \"slip44\": 1,\r\n        \"icon\": \"marscredit\",\r\n        \"explorers\": [],\r\n        \"redFlags\": []\r\n    },\r\n    {\r\n        \"name\": \"eGold Chain Testnet\",\r\n        \"chain\": \"EGC\",\r\n        \"icon\": \"egoldchain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.egoldchain.com\",\r\n            \"wss://rpc-testnet.egoldchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Aurum\",\r\n            \"symbol\": \"XAU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.egoldchain.com\",\r\n        \"shortName\": \"egoldchaint\",\r\n        \"chainId\": 111451,\r\n        \"networkId\": 111451,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"eGold Chain Block Explorer\",\r\n                \"url\": \"http://testnet.egoldscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"egoldchain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fushuma\",\r\n        \"chain\": \"Fushuma\",\r\n        \"rpc\": [\r\n            \"https://rpc.fushuma.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FUSHUMA\",\r\n            \"symbol\": \"FUMA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"fushuma\",\r\n        \"chainId\": 121224,\r\n        \"networkId\": 121224,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FumaScan\",\r\n                \"url\": \"https://fumascan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gemchain\",\r\n        \"chain\": \"Gemchain\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.gemchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GEM\",\r\n            \"symbol\": \"GEM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gemchain.org\",\r\n        \"shortName\": \"gemchain\",\r\n        \"chainId\": 123321,\r\n        \"networkId\": 123321,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gemchain Scan\",\r\n                \"url\": \"https://scan.gemchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mitosis Testnet\",\r\n        \"chain\": \"Mitosis Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.mitosis.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.mitosis.org/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MITO\",\r\n            \"symbol\": \"MITO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mitosis.org\",\r\n        \"shortName\": \"mitosis-testnet\",\r\n        \"chainId\": 124832,\r\n        \"networkId\": 124832,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"mitosis testnet explorer\",\r\n                \"url\": \"https://testnet.mitosiscan.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Form Testnet\",\r\n        \"title\": \"Form Testnet\",\r\n        \"chain\": \"formtestnet\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rpc.form.network/http\",\r\n            \"wss://sepolia-rpc.form.network/ws\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://info.form.network/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sepolia-info.form.network\",\r\n        \"shortName\": \"formtestnet\",\r\n        \"chainId\": 132902,\r\n        \"networkId\": 132902,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Form Testnet explorer\",\r\n                \"url\": \"https://sepolia-explorer.form.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://sepolia-op-bridge.form.network\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Bitharvest Chain Testnet\",\r\n        \"chain\": \"Bitharvest Chain Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.bthscan.io/\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitharvest Testnet Native Token\",\r\n            \"symbol\": \"BTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"BitharvestTestnet\",\r\n        \"chainId\": 141491,\r\n        \"networkId\": 141491,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Bitharvest Testnet Scan\",\r\n                \"url\": \"https://testnet.bthscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"icon\": \"bth\"\r\n    },\r\n    {\r\n        \"name\": \"Odyssey Chain Mainnet\",\r\n        \"chain\": \"DIONE\",\r\n        \"rpc\": [\r\n            \"https://node.dioneprotocol.com/ext/bc/D/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.dioneprotocol.com\",\r\n        \"shortName\": \"Odyssey\",\r\n        \"chainId\": 153153,\r\n        \"networkId\": 153153,\r\n        \"icon\": \"odysseyChain\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DIONE\",\r\n            \"symbol\": \"DIONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Odyssey Scan\",\r\n                \"url\": \"https://odysseyscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CryptoX\",\r\n        \"chain\": \"XCOIN\",\r\n        \"rpc\": [\r\n            \"https://rpc-xcoin.cryptoxnetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XCOIN\",\r\n            \"symbol\": \"XCOIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://cryptoxnetwork.io\",\r\n        \"shortName\": \"cryptox\",\r\n        \"chainId\": 158245,\r\n        \"networkId\": 158245,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CryptoX explorer\",\r\n                \"url\": \"https://cryptoxscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XCOIN\",\r\n        \"chain\": \"XCOIN\",\r\n        \"rpc\": [\r\n            \"https://rpc-xcoin.cryptoxnetwork.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XCOIN\",\r\n            \"symbol\": \"XCOIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://cryptoxnetwork.io\",\r\n        \"shortName\": \"xcoin\",\r\n        \"chainId\": 158345,\r\n        \"networkId\": 158345,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CryptoX explorer\",\r\n                \"url\": \"https://cryptoxscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OpenLedger Testnet\",\r\n        \"chain\": \"OpenLedger Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpctn.openledger.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Openledger\",\r\n            \"symbol\": \"OPN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.openledger.xyz\",\r\n        \"shortName\": \"openledgertest\",\r\n        \"chainId\": 161201,\r\n        \"networkId\": 161201,\r\n        \"icon\": \"openledger\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OpenLedger Testnet Explorer\",\r\n                \"url\": \"https://scantn.openledger.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zchains\",\r\n        \"chain\": \"Zchains\",\r\n        \"rpc\": [\r\n            \"https://rpc.zchains.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZCD\",\r\n            \"symbol\": \"ZCD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zchains.com/\",\r\n        \"shortName\": \"zchains\",\r\n        \"chainId\": 168168,\r\n        \"networkId\": 168168,\r\n        \"icon\": \"zchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zchains\",\r\n                \"url\": \"https://scan.zchains.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fair Testnet\",\r\n        \"chain\": \"FAIR\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.xfair.ai\",\r\n            \"wss://rpc-testnet.xfair.ai\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FAIR\",\r\n            \"symbol\": \"FAIR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://xfair.ai\",\r\n        \"shortName\": \"fairt\",\r\n        \"chainId\": 171000,\r\n        \"networkId\": 171000\r\n    },\r\n    {\r\n        \"name\": \"Wadzchain Mainnet\",\r\n        \"title\": \"Wadzchain Mainnet\",\r\n        \"chain\": \"Wadzchain-Mainnet\",\r\n        \"icon\": \"wadz\",\r\n        \"rpc\": [\r\n            \"https://rpc.wadzchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WadzChain Token\",\r\n            \"symbol\": \"WCO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.wadzchain-network.io\",\r\n        \"shortName\": \"wadzchain-mainnet\",\r\n        \"chainId\": 171717,\r\n        \"networkId\": 171717,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Wadzchain Mainnet Explorer\",\r\n                \"url\": \"https://scan.wadzchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chronicle - Lit Protocol Testnet\",\r\n        \"chain\": \"LPC\",\r\n        \"icon\": \"lit\",\r\n        \"rpc\": [\r\n            \"https://chain-rpc.litprotocol.com/http\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.litprotocol.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test LIT\",\r\n            \"symbol\": \"tstLIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://developer.litprotocol.com/v3/network/rollup\",\r\n        \"shortName\": \"lpc\",\r\n        \"chainId\": 175177,\r\n        \"networkId\": 175177,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lit Chronicle Explorer\",\r\n                \"url\": \"https://chain.litprotocol.com\",\r\n                \"icon\": \"lit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chronicle Yellowstone - Lit Protocol Testnet\",\r\n        \"chain\": \"LPY\",\r\n        \"icon\": \"lit\",\r\n        \"rpc\": [\r\n            \"https://yellowstone-rpc.litprotocol.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://developer.litprotocol.com/support/intro\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test LPX\",\r\n            \"symbol\": \"tstLPX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://litprotocol.com\",\r\n        \"shortName\": \"lpy\",\r\n        \"chainId\": 175188,\r\n        \"networkId\": 175188,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lit Chronicle Yellowstone Explorer\",\r\n                \"url\": \"https://yellowstone-explorer.litprotocol.com\",\r\n                \"icon\": \"lit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Chronicle Loa - Lit Protocol Testnet\",\r\n        \"chain\": \"LPL\",\r\n        \"icon\": \"lit\",\r\n        \"rpc\": [\r\n            \"https://loa-rpc.litprotocol.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://developer.litprotocol.com/support/intro\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Lit\",\r\n            \"symbol\": \"tLit\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://litprotocol.com\",\r\n        \"shortName\": \"lpl\",\r\n        \"chainId\": 175190,\r\n        \"networkId\": 175190,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lit Chronicle Loa Explorer\",\r\n                \"url\": \"https://loa-explorer.litprotocol.com\",\r\n                \"icon\": \"lit\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"R0AR Chain\",\r\n        \"chain\": \"R0AR Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc-r0ar.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://r0arscan.io\",\r\n        \"shortName\": \"R0AR-Chain\",\r\n        \"chainId\": 193939,\r\n        \"networkId\": 193939,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://r0arscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lydia Coin Testnet\",\r\n        \"chain\": \"LYDIA-TESTNET\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.lydiacoins.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.lydiacoins.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lydia Token\",\r\n            \"symbol\": \"BSW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/lydia-coin-testnet\",\r\n        \"shortName\": \"lydia-testnet\",\r\n        \"chainId\": 198989,\r\n        \"networkId\": 198989\r\n    },\r\n    {\r\n        \"name\": \"MAZZE Testnet\",\r\n        \"chain\": \"MAZZE Testnet\",\r\n        \"icon\": \"mazze\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.mazze.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mazze.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MAZZE Testnet\",\r\n            \"symbol\": \"MAZZE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mazze.io/\",\r\n        \"shortName\": \"MAZZE\",\r\n        \"chainId\": 199991,\r\n        \"networkId\": 199991,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MAZZE Testnet Explorer\",\r\n                \"url\": \"https://mazzescan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zoo Mainnet\",\r\n        \"chain\": \"Zoo\",\r\n        \"icon\": \"zoo\",\r\n        \"rpc\": [\r\n            \"https://api.zoo.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zoo-test.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zoo\",\r\n            \"symbol\": \"ZOO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zoo.network\",\r\n        \"shortName\": \"zoo\",\r\n        \"chainId\": 200200,\r\n        \"networkId\": 200200,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zoo Network Explorer\",\r\n                \"url\": \"https://explore.zoo.network\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Zoo Network Explorer\",\r\n                \"url\": \"https://explore.zoo-test.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DuckChain Testnet\",\r\n        \"title\": \"DuckChain Testnet\",\r\n        \"chain\": \"DuckChain\",\r\n        \"icon\": \"duckchain\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.duckchain.io\",\r\n            \"https://testnet-rpc-hk.duckchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TON\",\r\n            \"symbol\": \"TON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://duckchain.io\",\r\n        \"shortName\": \"Duck-Chain-Testnet\",\r\n        \"chainId\": 202105,\r\n        \"networkId\": 202105,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DuckChain Scan\",\r\n                \"url\": \"https://www.okx.com/web3/explorer/duckchain-testnet\",\r\n                \"icon\": \"duckchain\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"DuckChain Scan\",\r\n                \"url\": \"https://www.oklink.com/duckchain-testnet\",\r\n                \"icon\": \"duckchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Bethel Sydney\",\r\n        \"chain\": \"Bethel\",\r\n        \"rpc\": [\r\n            \"https://rpc-sydney.bethel.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-sydney.bethel.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bethel\",\r\n            \"symbol\": \"BECX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"bethel-sydney\",\r\n        \"chainId\": 202202,\r\n        \"networkId\": 202202,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Betehl Sydney Explorer\",\r\n                \"url\": \"https://sydney.bethel.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Alterscope\",\r\n        \"chain\": \"Alterscope\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RISK\",\r\n            \"symbol\": \"RISK\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alterscope.org\",\r\n        \"shortName\": \"Alterscope\",\r\n        \"chainId\": 202209,\r\n        \"networkId\": 202209,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Blockfit\",\r\n        \"chain\": \"202424\",\r\n        \"rpc\": [\r\n            \"https://rpc.blockfitscan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BFIT\",\r\n            \"symbol\": \"BFIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://blockfit.io\",\r\n        \"shortName\": \"Blockfit\",\r\n        \"chainId\": 202424,\r\n        \"networkId\": 202424,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://blockfitscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sorian\",\r\n        \"chain\": \"SOR\",\r\n        \"rpc\": [\r\n            \"https://rpc.sorian.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"sorian\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sorian\",\r\n            \"symbol\": \"SOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://sorian.io\",\r\n        \"shortName\": \"sorian\",\r\n        \"chainId\": 210209,\r\n        \"networkId\": 210209,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Sorian Testnet\",\r\n        \"chain\": \"tSOR\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.sorian.io\",\r\n            \"https://testnet.rpc.sorian.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"sorianTestnet\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sorian Testnet\",\r\n            \"symbol\": \"tSOR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mint.sorian.io\",\r\n        \"shortName\": \"sorianTestnet\",\r\n        \"chainId\": 210210,\r\n        \"networkId\": 210210,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Litentry\",\r\n        \"chain\": \"Litentry\",\r\n        \"rpc\": [\r\n            \"https://rpc.litentry-parachain.litentry.io\",\r\n            \"wss://rpc.litentry-parachain.litentry.io\",\r\n            \"https://litentry-rpc.dwellir.com\",\r\n            \"wss://litentry-rpc.dwellir.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Litentry\",\r\n            \"symbol\": \"LIT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://litentry.com\",\r\n        \"shortName\": \"litentry\",\r\n        \"chainId\": 212013,\r\n        \"networkId\": 212013,\r\n        \"icon\": \"litentry\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"litentry statescan\",\r\n                \"url\": \"https://litentry.statescan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CONET Mainnet\",\r\n        \"chain\": \"CONET Mainnet\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.conet.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CONET ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://conet.network\",\r\n        \"shortName\": \"conet-mainnet\",\r\n        \"chainId\": 224400,\r\n        \"networkId\": 224400,\r\n        \"slip44\": 2147708048,\r\n        \"icon\": \"conet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CONET Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.conet.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Abyss Protocol\",\r\n        \"chain\": \"Abyss Protocol Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.abyssprotocol.ai/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.abyssprotocol.ai/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AbyssETH\",\r\n            \"symbol\": \"aETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://abyssprotocol.ai/\",\r\n        \"shortName\": \"abyss\",\r\n        \"chainId\": 229772,\r\n        \"networkId\": 229772,\r\n        \"icon\": \"abyss\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.abyssprotocol.ai\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Universe Testnet\",\r\n        \"chain\": \"Universe\",\r\n        \"rpc\": [\r\n            \"https://blockchain.dev-universe-bank.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Universe Token\",\r\n            \"symbol\": \"UNI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.universe-bank.com/universal-ledger-system\",\r\n        \"shortName\": \"unitestnet\",\r\n        \"chainId\": 235711,\r\n        \"networkId\": 235711,\r\n        \"icon\": \"universe\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Universe Testnet Explorer\",\r\n                \"url\": \"https://blockchain-explorer.dev-universe-bank.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Studio Testnet\",\r\n        \"chain\": \"STO\",\r\n        \"icon\": \"studio\",\r\n        \"rpc\": [\r\n            \"https://rpc.studio-blockchain.com\",\r\n            \"wss://ws.studio-blockchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Studio Token\",\r\n            \"symbol\": \"STO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://studio-blockchain.com\",\r\n        \"shortName\": \"sto\",\r\n        \"chainId\": 240240,\r\n        \"networkId\": 240240,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Studio Scan\",\r\n                \"url\": \"https://studio-scan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Anomaly Andromeda Testnet\",\r\n        \"title\": \"Anomaly Andromeda Testnet\",\r\n        \"chain\": \"anomaly-andromeda-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.anomaly-andromeda.anomalygames.io\",\r\n            \"wss://ws.anomaly-andromeda.anomalygames.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TestNom\",\r\n            \"symbol\": \"tNOM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/anomaly-andromeda-testnet\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"anomaly-andromeda-testnet\",\r\n        \"chainId\": 241120,\r\n        \"networkId\": 241120,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://andromeda.anomalyscan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/anomaly-andromeda-testnet\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Nxy Area 51\",\r\n        \"chain\": \"NXY\",\r\n        \"rpc\": [\r\n            \"https://nxy.social/testnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nxy\",\r\n            \"symbol\": \"NXY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nxy.social/l1\",\r\n        \"shortName\": \"nxytest\",\r\n        \"chainId\": 272247,\r\n        \"networkId\": 272247,\r\n        \"slip44\": 272247,\r\n        \"icon\": \"nxy\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nxy Explorer\",\r\n                \"url\": \"https://explorer.nxy.social\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nxy\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nxy Oasis\",\r\n        \"chain\": \"NXY\",\r\n        \"rpc\": [\r\n            \"https://nxy.social/mainnet\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Nxy\",\r\n            \"symbol\": \"NXY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nxy.social/l1\",\r\n        \"shortName\": \"nxy\",\r\n        \"chainId\": 272520,\r\n        \"networkId\": 272520,\r\n        \"slip44\": 272520,\r\n        \"icon\": \"nxy\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nxy Explorer\",\r\n                \"url\": \"https://explorer.nxy.social\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"nxy\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Athene Parthenon\",\r\n        \"chain\": \"athene-parthenon\",\r\n        \"rpc\": [\r\n            \"https://rpc.parthenon.athenescan.io\",\r\n            \"wss://ws.parthenon.athenescan.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/athene-parthenon\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"athene-parthenon\",\r\n        \"chainId\": 281123,\r\n        \"networkId\": 281123,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://parthenon.athenescan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Cipherem Testnet\",\r\n        \"chain\": \"Cipherem\",\r\n        \"rpc\": [\r\n            \"https://testnet.cipherem.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CIP\",\r\n            \"symbol\": \"CIP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cipherem.com\",\r\n        \"shortName\": \"CIP\",\r\n        \"chainId\": 292003,\r\n        \"networkId\": 292003,\r\n        \"slip44\": 1,\r\n        \"icon\": \"cipherem\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Cipherscan Testnet Explorer\",\r\n                \"icon\": \"cipherscan\",\r\n                \"url\": \"https://cipherscan.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Camp Network Testnet V2\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"camp\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://rpc-campnetwork.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.campnetwork.xyz/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.campnetwork.xyz/\",\r\n        \"shortName\": \"CampV2\",\r\n        \"chainId\": 325000,\r\n        \"networkId\": 325000,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://camp-network-testnet.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/camp-network-testnet\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"WABA Chain Testnet\",\r\n        \"chain\": \"WABA Mainnet\",\r\n        \"icon\": \"waba\",\r\n        \"rpc\": [\r\n            \"https://rpc.wabaworld.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WABA\",\r\n            \"symbol\": \"WABA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.wabanetwork.org\",\r\n        \"shortName\": \"waba\",\r\n        \"chainId\": 327126,\r\n        \"networkId\": 327126,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.wabaworld.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nal Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"nal\",\r\n        \"rpc\": [\r\n            \"https://rpc.nal.network\",\r\n            \"wss://wss.nal.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.nal.network\",\r\n        \"shortName\": \"nal\",\r\n        \"chainId\": 328527,\r\n        \"networkId\": 328527,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nal Network Explorer\",\r\n                \"url\": \"https://scan.nal.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CheeseChain\",\r\n        \"title\": \"CheeseChain\",\r\n        \"chain\": \"CHEESE\",\r\n        \"rpc\": [\r\n            \"https://rpc.cheesechain.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CHEESE\",\r\n            \"symbol\": \"CHEESE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cheesechain.xyz\",\r\n        \"shortName\": \"CheeseChain\",\r\n        \"chainId\": 383353,\r\n        \"networkId\": 383353,\r\n        \"icon\": \"cheesechain\"\r\n    },\r\n    {\r\n        \"name\": \"Infinaeon\",\r\n        \"chain\": \"Infinaeon\",\r\n        \"rpc\": [\r\n            \"https://rpc.infinaeon.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"hhttps://rpc.infinaeon.com\",\r\n        \"shortName\": \"Infinaeon\",\r\n        \"chainId\": 420000,\r\n        \"networkId\": 420000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://explorer.infinaeon.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vector Smart Chain\",\r\n        \"chain\": \"VSC\",\r\n        \"icon\": \"vectorsmartgas\",\r\n        \"rpc\": [\r\n            \"https://rpc.vscblockchain.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vector Smart Gas\",\r\n            \"symbol\": \"VSG\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://vsgofficial.com\",\r\n        \"shortName\": \"vsg\",\r\n        \"chainId\": 420042,\r\n        \"networkId\": 420042,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"vscexplorer\",\r\n                \"url\": \"https://explorer.vscblockchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Graphite Mainnet\",\r\n        \"chain\": \"Graphite\",\r\n        \"rpc\": [\r\n            \"https://anon-entrypoint-1.atgraphite.com\",\r\n            \"wss://ws-anon-entrypoint-1.atgraphite.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Graphite\",\r\n            \"symbol\": \"@G\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://atgraphite.com/\",\r\n        \"shortName\": \"graphite\",\r\n        \"chainId\": 440017,\r\n        \"networkId\": 440017,\r\n        \"slip44\": 440017,\r\n        \"icon\": \"graphite\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Graphite Mainnet Explorer\",\r\n                \"url\": \"https://main.atgraphite.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"World Chain Sepolia Testnet Deprecated\",\r\n        \"status\": \"deprecated\",\r\n        \"chain\": \"ETH\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://worldcoin.org/\",\r\n        \"shortName\": \"wcsep-dep\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"chainId\": 484752,\r\n        \"networkId\": 484752,\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"Gobbl Testnet\",\r\n        \"chain\": \"Gobbl Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.gobbl.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.gobbl.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gobbl Token\",\r\n            \"symbol\": \"GOBBL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.gobbl.io/\",\r\n        \"shortName\": \"gbl-testnet\",\r\n        \"chainId\": 486487,\r\n        \"networkId\": 486487,\r\n        \"icon\": \"gobbl\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gobbl Testnet Explorer\",\r\n                \"url\": \"https://explorer.gobbl.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonomys Taurus Testnet\",\r\n        \"chain\": \"autonomys-taurus-testnet\",\r\n        \"rpc\": [\r\n            \"https://auto-evm.taurus.autonomys.xyz/ws\"\r\n        ],\r\n        \"icon\": \"autonomys\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AI3\",\r\n            \"symbol\": \"AI3\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.autonomys.xyz\",\r\n        \"shortName\": \"ATN\",\r\n        \"chainId\": 490000,\r\n        \"networkId\": 490000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Autonomys Taurus Testnet Explorer\",\r\n                \"url\": \"https://blockscout.taurus.autonomys.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PUMPFI CHAIN TESTNET\",\r\n        \"chain\": \"PUMPFI CHAIN TESTNET\",\r\n        \"rpc\": [\r\n            \"https://rpc1testnet.pumpfi.me\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.pumpfi.me\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PMPT\",\r\n            \"symbol\": \"PMPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pumpfi.me\",\r\n        \"shortName\": \"pumpfi-testnet\",\r\n        \"chainId\": 490092,\r\n        \"networkId\": 490092,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pumpfi Testnet Scan\",\r\n                \"url\": \"https://testnetscan.pumpfi.me\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OverProtocol Testnet\",\r\n        \"chain\": \"OverProtocol\",\r\n        \"icon\": \"overIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.dolphin.overprotocol.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Over\",\r\n            \"symbol\": \"OVER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.over.network\",\r\n        \"shortName\": \"overprotocol-testnet\",\r\n        \"chainId\": 541764,\r\n        \"networkId\": 541764,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"OverView Testnet\",\r\n                \"url\": \"https://dolphin-scan.over.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ZERO Network\",\r\n        \"chain\": \"ZERONetwork\",\r\n        \"icon\": \"zero\",\r\n        \"rpc\": [\r\n            \"https://rpc.zerion.io/v1/zero\"\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.zero.network\"\r\n                }\r\n            ]\r\n        },\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.zero.network\",\r\n        \"shortName\": \"zero-network\",\r\n        \"chainId\": 543210,\r\n        \"networkId\": 543210,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZERO Network Explorer\",\r\n                \"url\": \"https://explorer.zero.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pentagon Testnet\",\r\n        \"chain\": \"Pentagon\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.pentagon.games\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://bridge-testnet.pentagon.games\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pentagon\",\r\n            \"symbol\": \"PEN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"pentagon-testnet\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://pentagon.games\",\r\n        \"shortName\": \"pentagon-testnet\",\r\n        \"chainId\": 555555,\r\n        \"networkId\": 555555,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pentagon Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.pentagon.games\",\r\n                \"icon\": \"pentagon\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DustBoy IoT\",\r\n        \"title\": \"DustBoy IoT\",\r\n        \"status\": \"active\",\r\n        \"chain\": \"DUSTBOY\",\r\n        \"rpc\": [\r\n            \"https://dustboy-rpc.jibl2.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"DST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.cmuccdc.org/\",\r\n        \"shortName\": \"DustBoy_IoT\",\r\n        \"chainId\": 555888,\r\n        \"networkId\": 555888,\r\n        \"slip44\": 1,\r\n        \"icon\": \"dustboy\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://dustboy.jibl2.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"dustboy\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"DJT Testnet\",\r\n        \"chain\": \"DJT\",\r\n        \"icon\": \"djt\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.trumpchain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TrumpChain\",\r\n            \"symbol\": \"DJT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet-explorer.trumpchain.io\",\r\n        \"shortName\": \"DJT\",\r\n        \"chainId\": 621847,\r\n        \"networkId\": 621847,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DJT Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.trumpchain.io\",\r\n                \"icon\": \"djt\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Atlas\",\r\n        \"title\": \"Atlas Testnet\",\r\n        \"chain\": \"ATLAS\",\r\n        \"icon\": \"atlas\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.atl.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TON\",\r\n            \"symbol\": \"TON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://atl.network\",\r\n        \"shortName\": \"atlas-testnet\",\r\n        \"chainId\": 622463,\r\n        \"networkId\": 622463,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Atlas Testnet Scan\",\r\n                \"url\": \"https://explorer.testnet.atl.network\",\r\n                \"icon\": \"atlas\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Polter Testnet\",\r\n        \"chain\": \"Geist\",\r\n        \"rpc\": [\r\n            \"https://geist-polter.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Polter GHST\",\r\n            \"symbol\": \"GHST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://playongeist.com\",\r\n        \"shortName\": \"poltergeist\",\r\n        \"chainId\": 631571,\r\n        \"networkId\": 631571,\r\n        \"status\": \"active\",\r\n        \"icon\": \"polterGeist\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Polter Testnet Explorer\",\r\n                \"url\": \"https://polter-testnet.explorer.alchemy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"EDU Chain Testnet\",\r\n        \"chain\": \"EDU Chain Testnet\",\r\n        \"icon\": \"open-campus-codex\",\r\n        \"rpc\": [\r\n            \"https://rpc.open-campus-codex.gelato.digital\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EDU\",\r\n            \"symbol\": \"EDU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/open-campus-codex\",\r\n        \"shortName\": \"open-campus-codex\",\r\n        \"chainId\": 656476,\r\n        \"networkId\": 656476,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Open Campus Codex\",\r\n                \"url\": \"https://edu-chain-testnet.blockscout.com\",\r\n                \"icon\": \"open-campus-codex\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Conwai Mainnet\",\r\n        \"chain\": \"CNW\",\r\n        \"rpc\": [\r\n            \"https://conwai.calderachain.xyz/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Conwai\",\r\n            \"symbol\": \"CNW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://conwai.net\",\r\n        \"shortName\": \"cnw\",\r\n        \"chainId\": 668668,\r\n        \"networkId\": 668668,\r\n        \"icon\": \"conwai\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"conwaiscan\",\r\n                \"icon\": \"conwaiscan\",\r\n                \"url\": \"https://conwai.calderaexplorer.xyz\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Primea Chain\",\r\n        \"chain\": \"Primea Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.primeanetwork.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PrimeaCoin\",\r\n            \"symbol\": \"PRIM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://primeanetwork.com\",\r\n        \"shortName\": \"prim\",\r\n        \"chainId\": 698369,\r\n        \"networkId\": 698369,\r\n        \"icon\": \"prim\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Fidesinnova\",\r\n        \"chain\": \"Fidesinnova\",\r\n        \"rpc\": [\r\n            \"https://fidesf1-rpc.fidesinnova.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fidesinnova\",\r\n            \"symbol\": \"FDS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fidesinnova1.gitbook.io/fidesinnova\",\r\n        \"shortName\": \"Fidesinnova\",\r\n        \"chainId\": 706883,\r\n        \"networkId\": 706883,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Fidesinnova Blockchain Explorer\",\r\n                \"url\": \"https://explorer.fidesinnova.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zether Mainnet\",\r\n        \"chain\": \"Zether\",\r\n        \"rpc\": [\r\n            \"https://rpc.zether.org\",\r\n            \"https://rpc.zthscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zether\",\r\n            \"symbol\": \"ZTH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zether.org\",\r\n        \"shortName\": \"zth\",\r\n        \"chainId\": 715131,\r\n        \"networkId\": 715131,\r\n        \"icon\": \"zether\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"zthscan\",\r\n                \"url\": \"https://zthscan.com\",\r\n                \"icon\": \"zether\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ERAM Mainnet\",\r\n        \"chain\": \"ERAM\",\r\n        \"icon\": \"eram\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.eramscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ERAM\",\r\n            \"symbol\": \"ERAM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"http://doc.eramscan.com/\",\r\n        \"shortName\": \"ERAM\",\r\n        \"chainId\": 721529,\r\n        \"networkId\": 721529,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Eramscan\",\r\n                \"url\": \"https://eramscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TixChain Testnet\",\r\n        \"chain\": \"TIXCHAIN\",\r\n        \"rpc\": [\r\n            \"https://subnets.avax.network/tixchain/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TIX Token\",\r\n            \"symbol\": \"TIX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://subnets-test.avax.network/tixchain/details\",\r\n        \"shortName\": \"tixchain\",\r\n        \"chainId\": 723107,\r\n        \"networkId\": 723107,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TixChain Testnet Subnet Explorer\",\r\n                \"url\": \"https://subnets-test.avax.network/tixchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ternoa Testnet\",\r\n        \"chain\": \"Ternoa\",\r\n        \"rpc\": [\r\n            \"https://rpc.zkevm.ternoa.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.zkevm.ternoa.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Capsule Coin\",\r\n            \"symbol\": \"CAPS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"ternoa\",\r\n        \"chainId\": 752024,\r\n        \"networkId\": 7502024,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://explorer.zkevm.ternoa.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ternoa\",\r\n        \"chain\": \"Ternoa\",\r\n        \"rpc\": [\r\n            \"https://rpc-mainnet.zkevm.ternoa.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Capsule Coin\",\r\n            \"symbol\": \"CAPS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"ternoa-mainnet\",\r\n        \"chainId\": 752025,\r\n        \"networkId\": 7502025,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://explorer-mainnet.zkevm.ternoa.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PAYSCAN CHAIN\",\r\n        \"chain\": \"PAYSCAN CHAIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.payscan.live\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PYZ\",\r\n            \"symbol\": \"PYZ\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://payscan.live\",\r\n        \"shortName\": \"payscan\",\r\n        \"chainId\": 756689,\r\n        \"networkId\": 756689,\r\n        \"slip44\": 108,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PAYSCAN CHAIN\",\r\n                \"url\": \"https://payscan.live\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ink Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc-gel-sepolia.inkonchain.com\",\r\n            \"wss://ws-gel-sepolia.inkonchain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://inkonchain.com/\",\r\n        \"shortName\": \"inksepolia\",\r\n        \"chainId\": 763373,\r\n        \"networkId\": 763373,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ink Sepolia Explorer\",\r\n                \"url\": \"https://explorer-sepolia.inkonchain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zebro Smart Chain\",\r\n        \"chain\": \"ZEBRO\",\r\n        \"rpc\": [\r\n            \"https://rpc.zebrocoin.app\",\r\n            \"https://rpc1.zebrocoin.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Zebrocoin\",\r\n            \"symbol\": \"ZEBRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zebrocoin.app\",\r\n        \"shortName\": \"zebro\",\r\n        \"chainId\": 786786,\r\n        \"networkId\": 786786,\r\n        \"icon\": \"zebrocoin\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zebrocoin Explorer\",\r\n                \"url\": \"https://explorer.zebrocoin.app\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Zebrocoin Explorer1\",\r\n                \"url\": \"https://explorer1.zebrocoin.app\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Emeraldz\",\r\n        \"chain\": \"EMED\",\r\n        \"rpc\": [\r\n            \"https://public.0xrpc.com/789789\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EMERALDZ\",\r\n            \"symbol\": \"EMED\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://emeraldzscan.com\",\r\n        \"shortName\": \"emed\",\r\n        \"chainId\": 789789,\r\n        \"networkId\": 789789,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Emeraldz Explorer\",\r\n                \"url\": \"https://emeraldzscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BOB Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://bob-sepolia.rpc.gobob.xyz\",\r\n            \"wss://bob-sepolia.rpc.gobob.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gobob.xyz\",\r\n        \"shortName\": \"bob-sepolia\",\r\n        \"chainId\": 808813,\r\n        \"networkId\": 808813,\r\n        \"icon\": \"bob\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"bobscout\",\r\n                \"url\": \"https://bob-sepolia.explorer.gobob.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bob-sepolia.gobob.xyz/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"SG Verse Mainnet\",\r\n        \"chain\": \"SG Verse\",\r\n        \"icon\": \"sg_verse\",\r\n        \"rpc\": [\r\n            \"https://rpc.sgverse.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OAS\",\r\n            \"symbol\": \"OAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"SGV\",\r\n        \"chainId\": 812397,\r\n        \"networkId\": 812397,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SG Verse Explorer\",\r\n                \"url\": \"https://explorer.sgverse.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-248\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"exSat Testnet\",\r\n        \"chain\": \"exSat\",\r\n        \"icon\": \"exsat\",\r\n        \"rpc\": [\r\n            \"https://evm-tst3.exsat.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcoin\",\r\n            \"symbol\": \"BTC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://exsat.network/\",\r\n        \"shortName\": \"txsat\",\r\n        \"chainId\": 839999,\r\n        \"networkId\": 839999,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"exSat Testnet Explorer\",\r\n                \"url\": \"https://scan-testnet.exsat.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"RUNEVM Testnet\",\r\n        \"chain\": \"RuneVM\",\r\n        \"rpc\": [\r\n            \"https://rpc.runevm.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.runevm.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Test Bitcoin\",\r\n            \"symbol\": \"tBTC\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"runevm-test\",\r\n        \"chainId\": 840000,\r\n        \"networkId\": 840000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://explorer.runevm.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Unite Testnet\",\r\n        \"chain\": \"UNITE\",\r\n        \"rpc\": [\r\n            \"https://unite-testnet.g.alchemy.com/public\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Unite\",\r\n            \"symbol\": \"UNITE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://unite.io\",\r\n        \"shortName\": \"unitetestnet\",\r\n        \"chainId\": 888991,\r\n        \"networkId\": 888991,\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Unite Testnet Explorer\",\r\n                \"url\": \"https://unite-testnet.explorer.alchemy.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Odyssey Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://odyssey.ithaca.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://ithaca.xyz\",\r\n        \"shortName\": \"odyssey-testnet\",\r\n        \"chainId\": 911867,\r\n        \"networkId\": 911867,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"odyssey explorer\",\r\n                \"url\": \"https://odyssey-explorer.ithaca.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Owshen Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"status\": \"active\",\r\n        \"icon\": \"owshen\",\r\n        \"rpc\": [\r\n            \"https://rpc.owshen.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DIVE\",\r\n            \"symbol\": \"DIVE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://owshen.io\",\r\n        \"shortName\": \"owshen-mainnet\",\r\n        \"chainId\": 918273,\r\n        \"networkId\": 918273,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Treasure Ruby\",\r\n        \"chainId\": 978657,\r\n        \"shortName\": \"treasure-ruby\",\r\n        \"chain\": \"TRS\",\r\n        \"networkId\": 978657,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet MAGIC\",\r\n            \"symbol\": \"MAGIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"slip44\": 1,\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://app.treasure.lol\",\r\n        \"icon\": \"treasureruby\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"status\": \"deprecated\",\r\n        \"explorers\": [],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Treasure Topaz\",\r\n        \"chain\": \"Treasure Topaz\",\r\n        \"shortName\": \"treasure-topaz\",\r\n        \"chainId\": 978658,\r\n        \"networkId\": 978658,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet MAGIC\",\r\n            \"symbol\": \"MAGIC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"slip44\": 1,\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://app.treasure.lol\",\r\n        \"icon\": \"treasuretopaz\",\r\n        \"rpc\": [\r\n            \"https://rpc.topaz.treasure.lol\",\r\n            \"wss://rpc.topaz.treasure.lol/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://app.treasure.lol/chain/faucet\",\r\n            \"https://thirdweb.com/treasure-topaz\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Treasure Topaz Block Explorer\",\r\n                \"url\": \"https://topaz.treasurescan.io\",\r\n                \"icon\": \"treasure\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://app.treasure.lol/chain/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Supernet Testnet\",\r\n        \"title\": \"Supernet Testnet\",\r\n        \"chain\": \"Supernet Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.supernet.chaingames.io/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.chaingames.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CHAIN\",\r\n            \"symbol\": \"CHAIN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"supernetchain\",\r\n        \"chainId\": 998899,\r\n        \"networkId\": 998899,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"supernet-testnet-explorer\",\r\n                \"url\": \"https://testnet-explorer.supernet.chaingames.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"1Money Network Testnet\",\r\n        \"chain\": \"1Money Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.1money.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD1\",\r\n            \"symbol\": \"USD1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://1money.com\",\r\n        \"shortName\": \"1money-testnet\",\r\n        \"chainId\": 1212101,\r\n        \"networkId\": 1212101,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Sharecle Mainnet\",\r\n        \"chain\": \"SHARECLE\",\r\n        \"icon\": \"sharecle\",\r\n        \"rpc\": [\r\n            \"https://mainnet.sharecle.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SHARECLE COIN\",\r\n            \"symbol\": \"SHR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://sharecle.com/\",\r\n        \"shortName\": \"shr\",\r\n        \"chainId\": 1234567,\r\n        \"networkId\": 1234567,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Etherscan\",\r\n                \"url\": \"https://etherscan.io\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"sharecle\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Automata Orbit Testnet\",\r\n        \"chain\": \"Automata Orbit Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-orbit-testnet.ata.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ATA\",\r\n            \"symbol\": \"ATA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ata.network\",\r\n        \"shortName\": \"automataorbittestnet\",\r\n        \"chainId\": 1398244,\r\n        \"networkId\": 1398244,\r\n        \"icon\": \"automata\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Automata Orbit Testnet Explorer\",\r\n                \"url\": \"https://automata-orbit-testnet-explorer.alt.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Waterfall 9 Test Network\",\r\n        \"chain\": \"Waterfall TestNet9\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet9.waterfall.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.testnet9.waterfall.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"WATER\",\r\n            \"symbol\": \"WATER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://waterfall.network\",\r\n        \"shortName\": \"water9\",\r\n        \"chainId\": 1501869,\r\n        \"networkId\": 1501869,\r\n        \"icon\": \"waterfall\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Waterfall Explorer Testnet9\",\r\n                \"url\": \"https://explorer.testnet9.waterfall.network\",\r\n                \"icon\": \"waterfall\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xterio Testnet\",\r\n        \"chain\": \"Xterio Testnet\",\r\n        \"rpc\": [\r\n            \"https://xterio-testnet.alt.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tBNB\",\r\n            \"symbol\": \"tBNB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xter.io\",\r\n        \"shortName\": \"xteriotest\",\r\n        \"chainId\": 1637450,\r\n        \"networkId\": 1637450,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xterio Testnet Explorer\",\r\n                \"url\": \"https://testnet.xterscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xphere Testnet\",\r\n        \"chain\": \"Xphere Testnet\",\r\n        \"icon\": \"xphere\",\r\n        \"rpc\": [\r\n            \"http://testnet.x-phere.com\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xphere Testnet\",\r\n            \"symbol\": \"XPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://x-phere.com/\",\r\n        \"shortName\": \"xp-test\",\r\n        \"chainId\": 1998991,\r\n        \"networkId\": 1998991,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Coinweb BNB shard\",\r\n        \"title\": \"Coinweb BNB shard\",\r\n        \"chain\": \"CWEB BNB\",\r\n        \"rpc\": [\r\n            \"https://api-cloud.coinweb.io/eth-rpc-service/bnb\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CWEB\",\r\n            \"symbol\": \"CWEB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://coinweb.io\",\r\n        \"shortName\": \"cweb-bnb\",\r\n        \"chainId\": 2222222,\r\n        \"networkId\": 2222222,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Coinweb block explorer\",\r\n                \"url\": \"https://explorer.coinweb.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xterio Chain (ETH)\",\r\n        \"chain\": \"Xterio\",\r\n        \"rpc\": [\r\n            \"https://xterio-eth.alt.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xter.io\",\r\n        \"shortName\": \"xterio\",\r\n        \"chainId\": 2702128,\r\n        \"networkId\": 2702128,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xterio Chain (ETH) Explorer\",\r\n                \"url\": \"https://eth.xterscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zuux chain testnet\",\r\n        \"title\": \"Zuux chain testnet\",\r\n        \"chain\": \"zuuxchain\",\r\n        \"icon\": \"zuuxchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.zuux.network\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"none\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.zuuxlend.xyz/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZUUX\",\r\n            \"symbol\": \"ZUUX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zuux.network\",\r\n        \"shortName\": \"zuuxchain\",\r\n        \"chainId\": 4284265,\r\n        \"networkId\": 4284265,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zuux chain explorer\",\r\n                \"url\": \"https://blockscout.zuux.network\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Zuux chain explorer\",\r\n                \"url\": \"https://explorer.zuux.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Altar Testnet\",\r\n        \"chain\": \"Altar\",\r\n        \"rpc\": [\r\n            \"https://altar-rpc.ceremonies.ai/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sepoliafaucet.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ceremonies.gitbook.io\",\r\n        \"shortName\": \"altarTestnet\",\r\n        \"chainId\": 4444444,\r\n        \"networkId\": 4444444,\r\n        \"slip44\": 1,\r\n        \"icon\": \"altarTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"altar testnet explorer\",\r\n                \"url\": \"https://altar-explorer.ceremonies.ai\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://altar-testnet-yzxhzk61ck-b7590e4db247a680.testnets.rollbridge.app/\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ZERO Testnet (Sepolia)\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"zero-sepolia\",\r\n        \"rpc\": [\r\n            \"https://rpc.zerion.io/v1/zero-sepolia\"\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.zero.network\"\r\n                }\r\n            ]\r\n        },\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.zero.network\",\r\n        \"shortName\": \"zero-sepolia\",\r\n        \"chainId\": 4457845,\r\n        \"networkId\": 4457845,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ZERO Testnet Explorer\",\r\n                \"url\": \"https://explorer.zero.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"PointPay Testnet\",\r\n        \"chain\": \"pointpay\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.pointpay.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PointPay\",\r\n            \"symbol\": \"PXP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pointpay.io\",\r\n        \"shortName\": \"PPTEST\",\r\n        \"chainId\": 5511555,\r\n        \"networkId\": 5511555,\r\n        \"icon\": \"pointpay\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"PointPay Testnet Explorer\",\r\n                \"url\": \"https://testnet.pointpay.io\",\r\n                \"icon\": \"pointpay\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Block Chain LOL Berachain Testnet\",\r\n        \"chain\": \"Block Chain LOL Berachain\",\r\n        \"rpc\": [\r\n            \"https://block-chain.alt.technology\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.block-chain.lol/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HarryPotterObamaSonic10Inu\",\r\n            \"symbol\": \"HARRY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://block-chain.lol/\",\r\n        \"shortName\": \"block-chain-lol-testnet\",\r\n        \"chainId\": 6231991,\r\n        \"networkId\": 6231991,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Block Chain LOL Berachain Testnet Blockscout Explorer\",\r\n                \"url\": \"https://explorer.block-chain.lol\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"The Ting Blockchain Testnet Explorer\",\r\n        \"chain\": \"Ting\",\r\n        \"rpc\": [\r\n            \"https://testnet.tingchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ton\",\r\n            \"symbol\": \"Ton\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://tingscan.com\",\r\n        \"shortName\": \"ting-testnet\",\r\n        \"chainId\": 6666689,\r\n        \"networkId\": 6666689,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TingScan\",\r\n                \"url\": \"https://tingscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"COTI Testnet\",\r\n        \"title\": \"COTI Testnet\",\r\n        \"chain\": \"COTI\",\r\n        \"icon\": \"coti\",\r\n        \"rpc\": [\r\n            \"https://testnet.coti.io/rpc\",\r\n            \"https://testnet-magnus-validator.coti.io/rpc\",\r\n            \"https://testnet-minor-validator.coti.io/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.coti.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"COTI\",\r\n            \"symbol\": \"COTI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://coti.io/\",\r\n        \"shortName\": \"coti-testnet\",\r\n        \"chainId\": 7082400,\r\n        \"networkId\": 7082400,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"COTI Testnet Explorer\",\r\n                \"url\": \"https://testnet.cotiscan.io\",\r\n                \"icon\": \"ethernal\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ozean Poseidon Testnet\",\r\n        \"chain\": \"Ozean Poseidon\",\r\n        \"rpc\": [\r\n            \"https://ozean-testnet.rpc.caldera.xyz/http\",\r\n            \"wss://ozean-testnet.rpc.caldera.xyz/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://ozean-testnet.hub.caldera.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDX\",\r\n            \"symbol\": \"USDX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.ozean.finance\",\r\n        \"shortName\": \"ozean-poseidon\",\r\n        \"chainId\": 7849306,\r\n        \"networkId\": 7849306,\r\n        \"icon\": \"ozean\",\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ozean Testnet Explorer\",\r\n                \"url\": \"https://ozean-testnet.explorer.caldera.xyz\",\r\n                \"icon\": \"ozean\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Fhenix Helium\",\r\n        \"chain\": \"tFHE\",\r\n        \"rpc\": [\r\n            \"https://api.helium.fhenix.zone\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://get-helium.fhenix.zone\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tFHE\",\r\n            \"symbol\": \"tFHE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.fhenix.io\",\r\n        \"shortName\": \"fhe-helium\",\r\n        \"chainId\": 8008135,\r\n        \"networkId\": 8008135,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Fhenix Helium Explorer (Blockscout)\",\r\n                \"url\": \"https://explorer.helium.fhenix.zone\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fluence\",\r\n        \"chain\": \"Fluence\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.fluence.dev/\",\r\n            \"wss://ws.mainnet.fluence.dev/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FLT\",\r\n            \"symbol\": \"FLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fluence.network/\",\r\n        \"shortName\": \"fluence\",\r\n        \"chainId\": 9999999,\r\n        \"networkId\": 9999999,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.mainnet.fluence.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Spotlight\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://spotlightchain.com/\",\r\n        \"shortName\": \"spotlight\",\r\n        \"chainId\": 10058111,\r\n        \"networkId\": 10058111,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Spotlight Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://spotlightchain.com/\",\r\n        \"shortName\": \"spotlightsep\",\r\n        \"chainId\": 10058112,\r\n        \"networkId\": 10058112,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"AlienX Mainnet\",\r\n        \"chain\": \"AlienX Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.alienxchain.io/http\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alienxchain.io/home\",\r\n        \"shortName\": \"AlienX\",\r\n        \"chainId\": 10241024,\r\n        \"networkId\": 10241024,\r\n        \"icon\": \"alienx\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AlienXChain Explorer\",\r\n                \"url\": \"https://explorer.alienxchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Blessnet Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://blessnet-sepolia-testnet.rpc.caldera.xyz/http\",\r\n            \"wss://blessnet-sepolia-testnet.rpc.caldera.xyz/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://blessnet-sepolia-testnet.hub.caldera.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bless\",\r\n            \"symbol\": \"BLESS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blessnet.io\",\r\n        \"shortName\": \"bless-sepolia\",\r\n        \"chainId\": 11145513,\r\n        \"networkId\": 11145513,\r\n        \"icon\": \"bless\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blessnet-sepolia-testnet.explorer.caldera.xyz\",\r\n                \"icon\": \"bless\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://blessnet-sepolia-testnet.bridge.caldera.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"R0AR Testnet\",\r\n        \"chain\": \"R0AR Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc-r0ar.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.r0arfaucet.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethereum\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://testnet.r0arscan.io\",\r\n        \"shortName\": \"R0AR-Test-Chain\",\r\n        \"chainId\": 11166111,\r\n        \"networkId\": 11166111,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://testnet.r0arscan.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Lummio Network\",\r\n        \"chain\": \"Lummio Network\",\r\n        \"rpc\": [\r\n            \"https://rpc.lummio.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lummio Reward Points\",\r\n            \"symbol\": \"LRPO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lummio.net\",\r\n        \"shortName\": \"lummio\",\r\n        \"chainId\": 12020498,\r\n        \"networkId\": 12020498,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.lummio.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Memento Testnet\",\r\n        \"chain\": \"Memento\",\r\n        \"rpc\": [\r\n            \"https://test-rpc.mementoblockchain.com/IRkghvI3FfEArEJMr4zC/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"memento-test\",\r\n        \"chainId\": 12052024,\r\n        \"networkId\": 12052024,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tracehawk\",\r\n                \"url\": \"https://test-explorer.mementoblockchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"NeoX Testnet T3\",\r\n        \"chain\": \"NeoX\",\r\n        \"rpc\": [\r\n            \"https://neoxseed1.ngd.network/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gas\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neo.org/\",\r\n        \"shortName\": \"neox\",\r\n        \"chainId\": 12227331,\r\n        \"networkId\": 12227331,\r\n        \"icon\": \"neox\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"neox-scan\",\r\n                \"url\": \"https://testnet.scan.banelabs.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"deprecated\"\r\n    },\r\n    {\r\n        \"name\": \"Neo X Testnet T4\",\r\n        \"chain\": \"Neo X\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.banelabs.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gas\",\r\n            \"symbol\": \"GAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neo.org/\",\r\n        \"shortName\": \"neox-t4\",\r\n        \"chainId\": 12227332,\r\n        \"networkId\": 12227332,\r\n        \"icon\": \"neox\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"neox-scan\",\r\n                \"url\": \"https://xt4scan.ngd.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \" Privix Chain Mainnet\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.privixchain.xyz/\",\r\n            \"wss://mainnet-rpc.privixchain.xyz/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Privix Coin\",\r\n            \"symbol\": \"PSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://privix.co/\",\r\n        \"shortName\": \"mpsc\",\r\n        \"chainId\": 16969696,\r\n        \"networkId\": 16969696,\r\n        \"icon\": \"privix\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://privixscan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mande Network Mainnet\",\r\n        \"chain\": \"Mande\",\r\n        \"rpc\": [\r\n            \"https://mande-mainnet.public.blastapi.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Mand\",\r\n            \"symbol\": \"MAND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mande.network/\",\r\n        \"shortName\": \"Mande\",\r\n        \"chainId\": 18071918,\r\n        \"networkId\": 18071918,\r\n        \"icon\": \"mande\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FYI\",\r\n                \"url\": \"https://dym.fyi/r/mande\",\r\n                \"icon\": \"fyi\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeepBrainChain Testnet\",\r\n        \"chain\": \"DeepBrainChain\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.dbcwallet.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeepBrainChain\",\r\n            \"symbol\": \"tDBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.deepbrainchain.org\",\r\n        \"shortName\": \"tDBC\",\r\n        \"chainId\": 19850818,\r\n        \"icon\": \"dbc\",\r\n        \"networkId\": 19850818,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeepBrainChain Testnet\",\r\n                \"url\": \"https://testnet.dbcscan.io\",\r\n                \"icon\": \"dbc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeepBrainChain Mainnet\",\r\n        \"chain\": \"DeepBrainChain\",\r\n        \"rpc\": [\r\n            \"https://rpc.dbcwallet.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeepBrainChain\",\r\n            \"symbol\": \"DBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.deepbrainchain.org\",\r\n        \"shortName\": \"DBC\",\r\n        \"chainId\": 19880818,\r\n        \"networkId\": 19880818,\r\n        \"icon\": \"dbc\",\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DeepBrainChain Mainnet\",\r\n                \"url\": \"https://www.dbcscan.io\",\r\n                \"icon\": \"dbc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SoonChain Sepolia Devnet\",\r\n        \"chain\": \"SoonChain Devnet Sepolia\",\r\n        \"rpc\": [\r\n            \"https://sepolia.rpc.soonchain.ai\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://console.optimism.io/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://soonchain.ai\",\r\n        \"shortName\": \"Soon-Devnet\",\r\n        \"chainId\": 20221001,\r\n        \"networkId\": 20221001,\r\n        \"icon\": \"soonchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Soon Scan\",\r\n                \"url\": \"https://sepolia.explorer.soonchain.ai\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vcity Testnet\",\r\n        \"chain\": \"VCITY\",\r\n        \"rpc\": [\r\n            \"https://testnet.vcity.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet Vcity Token\",\r\n            \"symbol\": \"VCITY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://vcity.app\",\r\n        \"shortName\": \"Vcity\",\r\n        \"chainId\": 20230825,\r\n        \"networkId\": 20230825,\r\n        \"icon\": \"vcity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vcity Explorer\",\r\n                \"url\": \"https://scan.vcity.app\",\r\n                \"icon\": \"vcity\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DBK Chain\",\r\n        \"chain\": \"DBK Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.dbkchain.io\"\r\n        ],\r\n        \"icon\": \"dbkchain\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.dbkchain.io\",\r\n        \"shortName\": \"dbkchain\",\r\n        \"chainId\": 20240603,\r\n        \"networkId\": 20240603,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"DBK Chain Explorer\",\r\n                \"url\": \"https://scan.dbkchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ETP Mainnet\",\r\n        \"chain\": \"ETP\",\r\n        \"rpc\": [\r\n            \"https://rpc.etpscan.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETP Chain Native Token\",\r\n            \"symbol\": \"ETP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.etposchain.com\",\r\n        \"shortName\": \"ETP\",\r\n        \"chainId\": 20256789,\r\n        \"networkId\": 20256789,\r\n        \"icon\": \"etpchain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ETPScan\",\r\n                \"url\": \"https://etpscan.xyz\",\r\n                \"icon\": \"etpchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Corn\",\r\n        \"chain\": \"BTCN\",\r\n        \"rpc\": [\r\n            \"https://mainnet.corn-rpc.com\",\r\n            \"https://rpc.ankr.com/corn_maizenet\",\r\n            \"https://maizenet-rpc.usecorn.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcorn\",\r\n            \"symbol\": \"BTCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://usecorn.com\",\r\n        \"shortName\": \"corn\",\r\n        \"chainId\": 21000000,\r\n        \"networkId\": 21000000,\r\n        \"icon\": \"corn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Corn Explorer\",\r\n                \"url\": \"https://cornscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Corn Blockscout\",\r\n                \"url\": \"https://maizenet-explorer.usecorn.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Corn Testnet\",\r\n        \"chain\": \"BTCN\",\r\n        \"rpc\": [\r\n            \"https://testnet.corn-rpc.com\",\r\n            \"https://rpc.ankr.com/corn_testnet\",\r\n            \"https://testnet-rpc.usecorn.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bitcorn\",\r\n            \"symbol\": \"BTCN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://usecorn.com\",\r\n        \"shortName\": \"corn-testnet\",\r\n        \"chainId\": 21000001,\r\n        \"networkId\": 21000001,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Corn Testnet Explorer\",\r\n                \"url\": \"https://testnet.cornscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Corn Testnet Blockscout\",\r\n                \"url\": \"https://testnet-explorer.usecorn.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"XMTP\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDC\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xmtp.org\",\r\n        \"shortName\": \"xmtp\",\r\n        \"chainId\": 24132016,\r\n        \"networkId\": 24132016,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"6Degree of Outreach - Testnet\",\r\n        \"chain\": \"6DO\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.6do.world\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"6Degree-Testnet Coin\",\r\n            \"symbol\": \"6DO-T\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://6do.world\",\r\n        \"shortName\": \"6dotest\",\r\n        \"chainId\": 24772477,\r\n        \"networkId\": 24772477,\r\n        \"icon\": \"6do\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"6Degree Testnet Chain Explorer\",\r\n                \"url\": \"https://explorer-testnet.6do.world\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Toliman Suave Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.toliman.suave.flashbots.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.toliman.suave.flashbots.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SUAVE Toliman Eth\",\r\n            \"symbol\": \"TEEth\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://suave-alpha.flashbots.net/toliman\",\r\n        \"shortName\": \"suave-toliman\",\r\n        \"chainId\": 33626250,\r\n        \"networkId\": 33626250,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://explorer.toliman.suave.flashbots.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xone Testnet\",\r\n        \"chain\": \"XOC\",\r\n        \"icon\": \"xone-test\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.xone.plus\",\r\n            \"https://rpc-testnet.xone.org\",\r\n            \"https://rpc-testnet.knight.center\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.xone.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xone Coin\",\r\n            \"symbol\": \"XOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xone.org\",\r\n        \"shortName\": \"txoc\",\r\n        \"chainId\": 33772211,\r\n        \"networkId\": 33772211,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"testnet-xscscan\",\r\n                \"url\": \"https://testnet.xscscan.com\",\r\n                \"icon\": \"testnet-xscscan\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"citronus-citro\",\r\n        \"title\": \"Citronus-Citro\",\r\n        \"chain\": \"citronus-citro\",\r\n        \"rpc\": [\r\n            \"https://rpc.citro-testnet.t.raas.gelato.cloud\",\r\n            \"wss://testnet-ws.eh-dev.app\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Citronus\",\r\n            \"symbol\": \"CITRO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/citronus-citro\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"citronus-citro\",\r\n        \"chainId\": 34949059,\r\n        \"networkId\": 34949059,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://test.citronus.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.gelato.network/bridge/citronus-citro\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Stavanger Public Testnet\",\r\n        \"chain\": \"stavanger\",\r\n        \"rpc\": [\r\n            \"https://rpc.stavanger.gateway.fm\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.stavanger.gateway.fm\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Polygon\",\r\n            \"symbol\": \"POL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://gateway.fm\",\r\n        \"shortName\": \"stavanger\",\r\n        \"chainId\": 50591822,\r\n        \"networkId\": 50591822,\r\n        \"icon\": \"stavanger\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BlockScout\",\r\n                \"url\": \"https://explorer.stavanger.gateway.fm\",\r\n                \"icon\": \"stavanger\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.stavanger.gateway.fm\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Deviant Token Blockchain\",\r\n        \"chain\": \"DTBC\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [\r\n            \"https://rpc.devianttoken.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Deviant Token\",\r\n            \"symbol\": \"DTBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://devianttoken.net\",\r\n        \"shortName\": \"dtbc\",\r\n        \"chainId\": 52027071,\r\n        \"networkId\": 52027071,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Deviant Token Blockchain Testnet\",\r\n        \"chain\": \"tDTBC\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [\r\n            \"https://trpc.devianttoken.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Deviant Token Testnet\",\r\n            \"symbol\": \"tDTBC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://devianttoken.net\",\r\n        \"shortName\": \"tdtbc\",\r\n        \"chainId\": 52027080,\r\n        \"networkId\": 52027080,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Fluence Testnet\",\r\n        \"chain\": \"Fluence Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.fluence.dev/\",\r\n            \"wss://ws.testnet.fluence.dev/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tFLT\",\r\n            \"symbol\": \"tFLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fluence.network/\",\r\n        \"shortName\": \"fluence-testnet\",\r\n        \"chainId\": 52164803,\r\n        \"networkId\": 52164803,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.testnet.fluence.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Autonity Bakerloo (Yamuna) Testnet\",\r\n        \"status\": \"deprecated\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://faucet.autonity.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Bakerloo Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"bakerloo-03\",\r\n        \"chainId\": 65010003,\r\n        \"networkId\": 65010003,\r\n        \"slip44\": 1,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://bakerloo.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Piccadilly (Yamuna) Testnet\",\r\n        \"status\": \"deprecated\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Piccadilly Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"piccadilly-03\",\r\n        \"chainId\": 65100003,\r\n        \"networkId\": 65100003,\r\n        \"slip44\": 1,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://piccadilly.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Autonity Piccadilly (Tiber) Testnet\",\r\n        \"chain\": \"AUT\",\r\n        \"rpc\": [\r\n            \"https://autonity.rpc.web3cdn.network/testnet\",\r\n            \"wss://autonity.rpc.web3cdn.network/testnet/ws\",\r\n            \"https://autonity-piccadilly.rpc.subquery.network/public\",\r\n            \"https://piccadilly.autonity-apis.com\",\r\n            \"wss://piccadilly-ws.autonity-apis.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Piccadilly Auton\",\r\n            \"symbol\": \"ATN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://autonity.org/\",\r\n        \"shortName\": \"piccadilly-04\",\r\n        \"chainId\": 65100004,\r\n        \"networkId\": 65100004,\r\n        \"slip44\": 1,\r\n        \"icon\": \"autonity\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"autonity-blockscout\",\r\n                \"url\": \"https://piccadilly.autonity.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"SX Toronto Rollup\",\r\n        \"chain\": \"SX\",\r\n        \"icon\": \"SX\",\r\n        \"rpc\": [\r\n            \"https://rpc.sx-rollup-testnet.t.raas.gelato.cloud\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.toronto.sx.technology\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SX Network\",\r\n            \"symbol\": \"SX\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.sx.technology\",\r\n        \"shortName\": \"SXR-Testnet\",\r\n        \"chainId\": 79479957,\r\n        \"networkId\": 79479957,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"SX Toronto L2 Explorer\",\r\n                \"url\": \"https://explorerl2.toronto.sx.technology\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"SX\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Backstop Testnet\",\r\n        \"chain\": \"backstopTestnet\",\r\n        \"icon\": \"backstop\",\r\n        \"rpc\": [\r\n            \"https://testnet.rpc.backstop.technology\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Backstop Testnet 1\",\r\n            \"symbol\": \"ZBS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://backstop.technology/testnet\",\r\n        \"shortName\": \"backstop-testnet\",\r\n        \"chainId\": 88558801,\r\n        \"networkId\": 88558801,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet.bridge.backstop.technology\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Reya Cronos\",\r\n        \"title\": \"Reya Cronos\",\r\n        \"chain\": \"reya-cronos\",\r\n        \"rpc\": [\r\n            \"https://rpc.reya-cronos.gelato.digital\",\r\n            \"wss://ws.reya-cronos.gelato.digital\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/reya-cronos\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"reya-cronos\",\r\n        \"chainId\": 89346162,\r\n        \"networkId\": 89346162,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://reya-cronos.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gelato.network/bridge/reya-cronos\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \" Privix Chain Testnet\",\r\n        \"chain\": \"PSC\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.privixchain.xyz/\",\r\n            \"wss://testnet-rpc.privixchain.xyz/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.privixchain.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Privix Coin\",\r\n            \"symbol\": \"tPSC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://privix.co/\",\r\n        \"shortName\": \"tpsc\",\r\n        \"chainId\": 96969696,\r\n        \"networkId\": 96969696,\r\n        \"icon\": \"privix\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.privixscan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ChadChain\",\r\n        \"chain\": \"CHAD\",\r\n        \"status\": \"incubating\",\r\n        \"rpc\": [\r\n            \"https://rpc.chadchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ChadChain\",\r\n            \"symbol\": \"CHAD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://chadchain.org\",\r\n        \"shortName\": \"chad\",\r\n        \"chainId\": 97912060,\r\n        \"networkId\": 97912060,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Ethos\",\r\n        \"chain\": \"ETHOS\",\r\n        \"rpc\": [\r\n            \"https://rpc.ethos.cool\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.ethos.cool\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETHOS\",\r\n            \"symbol\": \"ETHOS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://ethos.cool\",\r\n        \"shortName\": \"ETHOS\",\r\n        \"chainId\": 100000000,\r\n        \"networkId\": 100000000,\r\n        \"icon\": \"ethos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ethos scan\",\r\n                \"url\": \"https://scan.ethos.cool\",\r\n                \"icon\": \"ethos\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XMTP Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDC\",\r\n            \"symbol\": \"USDC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xmtp.org\",\r\n        \"shortName\": \"xmtp-sepolia\",\r\n        \"chainId\": 241320161,\r\n        \"networkId\": 241320161,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Neon EVM Devnet Rollup\",\r\n        \"chain\": \"Solana\",\r\n        \"rpc\": [\r\n            \"https://devnet.rollup.neonevm.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"icon\": \"neon\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Neon\",\r\n            \"symbol\": \"NEON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://neonevm.org/\",\r\n        \"shortName\": \"neonevm-devnet-rollup\",\r\n        \"chainId\": 245022929,\r\n        \"networkId\": 245022929,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Flame\",\r\n        \"chain\": \"Flame\",\r\n        \"rpc\": [\r\n            \"https://rpc.flame.astria.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TIA\",\r\n            \"symbol\": \"TIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://astria.org\",\r\n        \"shortName\": \"flame\",\r\n        \"chainId\": 253368190,\r\n        \"networkId\": 253368190,\r\n        \"icon\": \"flame\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.flame.astria.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nal Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.nal.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"nal\",\r\n        \"infoURL\": \"https://www.nal.network\",\r\n        \"shortName\": \"nalsep\",\r\n        \"chainId\": 328527624,\r\n        \"networkId\": 328527624,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nal Sepolia Testnet Network Explorer\",\r\n                \"url\": \"https://testnet-scan.nal.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Asset Hub\",\r\n        \"chain\": \"DOT\",\r\n        \"rpc\": [\r\n            \"https://asset-hub-eth-rpc.polkadot.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOT\",\r\n            \"symbol\": \"DOT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://polkadot.network\",\r\n        \"shortName\": \"AH\",\r\n        \"chainId\": 420420419,\r\n        \"networkId\": 420420419,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Westend Asset Hub\",\r\n        \"chain\": \"WST\",\r\n        \"rpc\": [\r\n            \"https://westend-asset-hub-eth-rpc.polkadot.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.polkadot.io/westend\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Westies\",\r\n            \"symbol\": \"WND\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://polkadot.network\",\r\n        \"shortName\": \"wst\",\r\n        \"chainId\": 420420421,\r\n        \"networkId\": 420420421,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"subscan\",\r\n                \"icon\": \"subscan\",\r\n                \"url\": \"https://westend-asset-hub-eth-explorer.parity.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GPT Testnet\",\r\n        \"chain\": \"Skopje Testnet\",\r\n        \"icon\": \"skopje-gpt\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.gptprotocol.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.gptprotocol.io\"\r\n        ],\r\n        \"chainId\": 476462898,\r\n        \"networkId\": 476462898,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SkpGPT\",\r\n            \"symbol\": \"SkpGPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gptprotocol.com\",\r\n        \"shortName\": \"Skopje\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.gptprotocol.io\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet-explorer.gptprotocol.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"blockscout\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Sophon Testnet\",\r\n        \"chain\": \"Sophon Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.sophon.xyz\",\r\n            \"wss://rpc.testnet.sophon.xyz/ws\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sophon\",\r\n            \"symbol\": \"SOPH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"sophon-testnet\",\r\n        \"chainId\": 531050104,\r\n        \"networkId\": 531050104,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Sophon Block Explorer\",\r\n                \"url\": \"https://explorer.testnet.sophon.xyz\",\r\n                \"icon\": \"sophon-testnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://portal.testnet.sophon.xyz/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Tron Mainnet\",\r\n        \"chain\": \"TRON\",\r\n        \"rpc\": [\r\n            \"https://rpc.ankr.com/tron_jsonrpc\",\r\n            \"https://api.trongrid.io/jsonrpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tron\",\r\n            \"symbol\": \"TRX\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://tron.network\",\r\n        \"shortName\": \"tron\",\r\n        \"chainId\": 728126428,\r\n        \"networkId\": 728126428,\r\n        \"icon\": \"tron\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tronscan\",\r\n                \"url\": \"https://tronscan.org\",\r\n                \"icon\": \"tron\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"OFFICIAL VASYL\",\r\n        \"title\": \"OFFICIAL VASYL\",\r\n        \"chain\": \"Official-Vasyl\",\r\n        \"rpc\": [\r\n            \"https://rpc.official-vasyl.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.official-vasyl.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OFFICIAL VASYL\",\r\n            \"symbol\": \"VASYL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"official-vasyl.network\",\r\n        \"shortName\": \"Vasyl\",\r\n        \"chainId\": 1278060416,\r\n        \"networkId\": 1278060416,\r\n        \"icon\": \"vasyl\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Official Vasyl Explorer\",\r\n                \"url\": \"https://explorer.official-vasyl.network\",\r\n                \"icon\": \"vasyl\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.official-vasyl.network\"\r\n                }\r\n            ]\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Turbo\",\r\n        \"chain\": \"NEAR\",\r\n        \"rpc\": [\r\n            \"https://rpc-0x4e45415f.aurora-cloud.dev\"\r\n        ],\r\n        \"icon\": \"turbo\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Turbo\",\r\n            \"symbol\": \"TURBO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://turbotoken.io\",\r\n        \"shortName\": \"turbo\",\r\n        \"chainId\": 1313161567,\r\n        \"networkId\": 1313161567,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Turbo explorer\",\r\n                \"url\": \"https://explorer.turbo.aurora.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tuxappcoin\",\r\n        \"chain\": \"NEAR\",\r\n        \"rpc\": [\r\n            \"https://rpc-0x4e454165.aurora-cloud.dev\"\r\n        ],\r\n        \"icon\": \"tuxa\",\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TUXA\",\r\n            \"symbol\": \"TUXA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://x.com/tuxapp_coin\",\r\n        \"shortName\": \"tuxa\",\r\n        \"chainId\": 1313161573,\r\n        \"networkId\": 1313161573,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TUXA explorer\",\r\n                \"url\": \"https://explorer.tuxa.aurora.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zephyr Testnet\",\r\n        \"title\": \"Zephyr Testnet\",\r\n        \"chain\": \"Zephyr-testnet\",\r\n        \"rpc\": [\r\n            \"https://zephyr-rpc.eu-north-2.gateway.fm\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://zephyr-faucet.eu-north-2.gateway.fm\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ZERO\",\r\n            \"symbol\": \"Z\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://zero.tech\",\r\n        \"shortName\": \"zephyr\",\r\n        \"chainId\": 1417429182,\r\n        \"networkId\": 1417429182,\r\n        \"icon\": \"zephyr\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://zephyr-blockscout.eu-north-2.gateway.fm\",\r\n                \"icon\": \"zephyr\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://zephyr-bridge.eu-north-2.gateway.fm\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"GPT Mainnet\",\r\n        \"chain\": \"GPT Protocol\",\r\n        \"icon\": \"gpt\",\r\n        \"rpc\": [\r\n            \"https://rpc.gptprotocol.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"chainId\": 1511670449,\r\n        \"networkId\": 1511670449,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GPT\",\r\n            \"symbol\": \"GPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gptprotocol.com\",\r\n        \"shortName\": \"GPT\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.gptprotocol.io\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.gptprotocol.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"blockscout\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Haust Network Testnet\",\r\n        \"title\": \"Haust Network Testnet\",\r\n        \"chain\": \"haust-network-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.haust.app\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.haust.app\"\r\n        ],\r\n        \"status\": \"active\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HAUST\",\r\n            \"symbol\": \"HAUST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://haust.network/\",\r\n        \"shortName\": \"HaustTestnet\",\r\n        \"chainId\": 1523903251,\r\n        \"networkId\": 1523903251,\r\n        \"icon\": \"haust\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Haust Network Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.haust.app\",\r\n                \"icon\": \"haust\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-testnet.haust.app\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Haust Testnet\",\r\n        \"title\": \"Haust Testnet\",\r\n        \"chain\": \"Haust-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.haust.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://haust-testnet-faucet.eu-north-2.gateway.fm\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"HAUST\",\r\n            \"symbol\": \"HAUST\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://haust.network/\",\r\n        \"shortName\": \"hst-test\",\r\n        \"chainId\": 1570754601,\r\n        \"networkId\": 1570754601,\r\n        \"icon\": \"haust\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://haust-testnet-blockscout.eu-north-2.gateway.fm\",\r\n                \"icon\": \"haust\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://haust-testnet-bridge.eu-north-2.gateway.fm\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"WITNESS CHAIN\",\r\n        \"title\": \"WITNESS CHAIN\",\r\n        \"chain\": \"Witness-Chain\",\r\n        \"rpc\": [\r\n            \"https://sequencer.witnesschain.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETHER\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.witnesschain.com\",\r\n        \"shortName\": \"Witness\",\r\n        \"chainId\": 1702448187,\r\n        \"networkId\": 1702448187,\r\n        \"icon\": \"witness\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Witness Chain Explorer\",\r\n                \"url\": \"https://explorer.witnesschain.com\",\r\n                \"icon\": \"witness\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.witnesschain.com\"\r\n                }\r\n            ]\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Silicon zkEVM Sepolia Testnet\",\r\n        \"title\": \"Silicon zkEVM Sepolia Testnet\",\r\n        \"chain\": \"Silicon\",\r\n        \"rpc\": [\r\n            \"https://rpc-sepolia.silicon.network\",\r\n            \"https://silicon-testnet.nodeinfra.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.silicon.network\",\r\n        \"shortName\": \"silicon-sepolia-testnet\",\r\n        \"chainId\": 1722641160,\r\n        \"networkId\": 1722641160,\r\n        \"icon\": \"silicon\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"siliconscope-sepolia\",\r\n                \"url\": \"https://scope-sepolia.silicon.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-sepolia.silicon.network\"\r\n                }\r\n            ]\r\n        },\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Gemuchain Testnet\",\r\n        \"chain\": \"Gemuchain\",\r\n        \"rpc\": [\r\n            \"https://gemutest-rpc.gemuchain.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.gemuchain.io/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Gemuchain\",\r\n            \"symbol\": \"GEMU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gemuchain.io/\",\r\n        \"shortName\": \"Gemuchain\",\r\n        \"chainId\": 1903648807,\r\n        \"networkId\": 1903648807,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Gemuchain Explorer (Blockscout)\",\r\n                \"url\": \"https://gemutest-explorer.gemuchain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://gemutest-bridge.gemuchain.io/login\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Lumia Testnet\",\r\n        \"shortName\": \"lumiatestnet\",\r\n        \"title\": \"Lumia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"lumia\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.lumia.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet-faucet.lumia.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Lumia\",\r\n            \"symbol\": \"LUMIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://lumia.org\",\r\n        \"chainId\": 1952959480,\r\n        \"networkId\": 1952959480,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Lumia Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.lumia.org\",\r\n                \"icon\": \"lumia\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.lumia.org\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Accumulate Kermit\",\r\n        \"shortName\": \"Kermit\",\r\n        \"title\": \"Accumulate Kermit Testnet\",\r\n        \"chain\": \"Accumulate\",\r\n        \"chainId\": 2478899481,\r\n        \"networkId\": 2478899481,\r\n        \"infoURL\": \"https://accumulate.org\",\r\n        \"slip44\": 2147483929,\r\n        \"rpc\": [\r\n            \"https://kermit.accumulatenetwork.io/eth\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ACME\",\r\n            \"symbol\": \"ACME\",\r\n            \"decimals\": 18\r\n        },\r\n        \"faucets\": [\r\n            \"https://kermit.explorer.accumulatenetwork.io/faucet\"\r\n        ],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"accumulate-explorer-kermit\",\r\n                \"url\": \"https://kermit.explorer.accumulatenetwork.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Mekong\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.mekong.ethpandaops.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mekong.ethpandaops.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://mekong.ethpandaops.io\",\r\n        \"shortName\": \"mekong\",\r\n        \"chainId\": 7078815900,\r\n        \"networkId\": 7078815900,\r\n        \"icon\": \"ethereum\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Holesky Dora Explorer\",\r\n                \"url\": \"https://explorer.mekong.ethpandaops.io\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"pectra-devnet-5\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.pectra-devnet-5.ethpandaops.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.pectra-devnet-5.ethpandaops.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pectra-devnet-5.ethpandaops.io\",\r\n        \"shortName\": \"pectra5\",\r\n        \"chainId\": 7088110746,\r\n        \"networkId\": 7088110746,\r\n        \"icon\": \"ethereum\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Explorer\",\r\n                \"url\": \"https://explorer.pectra-devnet-5.ethpandaops.io\",\r\n                \"icon\": \"ethereum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Deriw Devnet\",\r\n        \"chainId\": 44474237230,\r\n        \"shortName\": \"deriw-dev\",\r\n        \"title\": \"Deriw Devnet\",\r\n        \"chain\": \"Deriw Devnet\",\r\n        \"networkId\": 44474237230,\r\n        \"icon\": \"deriw\",\r\n        \"rpc\": [\r\n            \"https://rpc.dev.deriw.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Deriw\",\r\n            \"symbol\": \"Der\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://deriw.com\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Deriw Explorer\",\r\n                \"url\": \"https://explorer.dev.deriw.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-421614\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ALDChain Testnet\",\r\n        \"chain\": \"ALD\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.aldrickb.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.aldrickb.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ALD Token\",\r\n            \"symbol\": \"ALD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://aldrickb.com/projects\",\r\n        \"shortName\": \"ald\",\r\n        \"chainId\": 96737205180,\r\n        \"networkId\": 96737205180,\r\n        \"icon\": \"aldrickb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ALDChain Testnet Explorer\",\r\n                \"url\": \"https://testnet-explorer.aldrickb.xyz\",\r\n                \"icon\": \"aldrickb\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Thanos Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.thanos-sepolia.tokamak.network\",\r\n            \"wss://rpc.thanos-sepolia.tokamak.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tokamak Network\",\r\n            \"symbol\": \"TON\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tokamak.network\",\r\n        \"shortName\": \"thanos-sepolia\",\r\n        \"chainId\": 111551119090,\r\n        \"networkId\": 111551119090,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.thanos-sepolia.tokamak.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fluence Stage\",\r\n        \"chain\": \"Fluence Stage (Testnet)\",\r\n        \"rpc\": [\r\n            \"https://rpc.stage.fluence.dev\",\r\n            \"wss://ws.stage.fluence.dev\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tFLT\",\r\n            \"symbol\": \"tFLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fluence.network/\",\r\n        \"shortName\": \"fluence-stage\",\r\n        \"chainId\": 123420000220,\r\n        \"networkId\": 123420000220,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blockscout.stage.fluence.dev\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"PIN\",\r\n        \"title\": \"PIN\",\r\n        \"chain\": \"PIN\",\r\n        \"rpc\": [\r\n            \"https://rpc.pin.t.raas.gelato.cloud\",\r\n            \"wss://ws.pin.t.raas.gelato.cloud\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/pin\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"PIN\",\r\n        \"chainId\": 123420000558,\r\n        \"networkId\": 123420000558,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.pin.t.raas.gelato.cloud\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.gelato.network/bridge/pin/bridge/pin\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"sivo-defi-testnet\",\r\n        \"title\": \"Sivo Defi Testnet\",\r\n        \"chain\": \"sivo-defi-testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc.sivo-defi-testnet.t.raas.gelato.cloud\",\r\n            \"wss://ws.sivo-defi-testnet.t.raas.gelato.cloud\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/sivo-defi-testnet\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"sivo-defi-testnet\",\r\n        \"chainId\": 123420000586,\r\n        \"networkId\": 123420000586,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://sivo-defi-testnet.cloud.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.gelato.network/bridge/sivo-defi-testnet\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"volmex\",\r\n        \"title\": \"Volmex\",\r\n        \"chain\": \"volmex\",\r\n        \"rpc\": [\r\n            \"https://rpc.volmex.t.raas.gelato.cloud\",\r\n            \"wss://ws.volmex.t.raas.gelato.cloud\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://raas.gelato.network/rollups/details/public/volmex\",\r\n        \"faucets\": [],\r\n        \"shortName\": \"volmex\",\r\n        \"chainId\": 123420000588,\r\n        \"networkId\": 123420000588,\r\n        \"slip44\": 60,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://volmex.cloud.blockscout.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-84532\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.gelato.network/bridge/volmex\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"GM Network Testnet\",\r\n        \"chain\": \"GM Network Testnet\",\r\n        \"rpc\": [\r\n            \"https://gmnetwork-testnet.alt.technology/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://gmnetwork.ai\",\r\n        \"shortName\": \"gmnetwork-testnet\",\r\n        \"chainId\": 202402181627,\r\n        \"networkId\": 202402181627,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"gmnetwork-testnet\",\r\n                \"url\": \"https://gmnetwork-testnet-explorer.alt.technology\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Smart Pay Mobile Money\",\r\n        \"chain\": \"Mobile Money\",\r\n        \"rpc\": [\r\n            \"https://network.uat.smartmoneyewallet.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SmartPay Mobile Money\",\r\n            \"symbol\": \"SMRTP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://network.uat.smartmoneyewallet.com/\",\r\n        \"shortName\": \"SmartPay\",\r\n        \"chainId\": 666301179999,\r\n        \"networkId\": 666301179999,\r\n        \"icon\": \"smartpay\"\r\n    },\r\n    {\r\n        \"name\": \"Flame Testnet\",\r\n        \"chain\": \"Flame\",\r\n        \"rpc\": [\r\n            \"https://rpc.flame.dawn-1.astria.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"TIA\",\r\n            \"symbol\": \"TIA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://astria.org\",\r\n        \"shortName\": \"flame-testnet\",\r\n        \"chainId\": 16604737732183,\r\n        \"networkId\": 16604737732183,\r\n        \"icon\": \"flame\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.flame.dawn-1.astria.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kakarot Starknet Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"kakarot\",\r\n        \"rpc\": [\r\n            \"https://sepolia-rpc.kakarot.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://sepolia-faucet.kakarot.org/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kakarot.org\",\r\n        \"shortName\": \"kkrt-starknet-sepolia\",\r\n        \"chainId\": 920637907288165,\r\n        \"networkId\": 920637907288165,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Kakarot Scan\",\r\n                \"url\": \"https://sepolia.kakarotscan.org\",\r\n                \"standard\": \"EIP3091\"\r\n            },\r\n            {\r\n                \"name\": \"Kakarot Explorer\",\r\n                \"url\": \"https://sepolia-explorer.kakarot.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": []\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ENI Mainnet\",\r\n        \"chainId\": 173,\r\n        \"shortName\": \"ENI\",\r\n        \"chain\": \"ENI\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 173,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EGAS\",\r\n            \"symbol\": \"EGAS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.eniac.network\",\r\n            \"https://rpc1.eniac.network\",\r\n            \"https://rpc2.eniac.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EniacScan\",\r\n                \"url\": \"https://scan.eniac.network/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.eniac.network\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://www.eniac.network/1740454198610.png\",\r\n            \"ic_chain_unselect\": \"https://www.eniac.network/1740454248235.png\",\r\n            \"color_chain_bg\": \"0x10100E\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://www.eniac.network/1740454209678.png\",\r\n            \"ic_home_logo\": \"https://www.eniac.network/1740454267140.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"firachain\",\r\n        \"chain\": \"FIR\",\r\n        \"icon\": \"firachainIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.firachain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"firachain\",\r\n            \"symbol\": \"FIR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://firachain.com\",\r\n        \"shortName\": \"FIR\",\r\n        \"chainId\": 194,\r\n        \"networkId\": 194,\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"FiraChain Explorer\",\r\n                \"url\": \"https://block.firachain.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IDN Mainnet\",\r\n        \"chain\": \"IDN\",\r\n        \"icon\": \"idn\",\r\n        \"rpc\": [\r\n            \"https://dataseed1.idn-rpc.com\",\r\n            \"https://dataseed2.idn-rpc.com\",\r\n            \"https://dataseed3.idn-rpc.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"IDN\",\r\n            \"symbol\": \"IDN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.idn.world\",\r\n        \"shortName\": \"IDN\",\r\n        \"chainId\": 215,\r\n        \"networkId\": 215,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Idn Explorer\",\r\n                \"url\": \"https://scan.idn-network.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Telos zkEVM Testnet\",\r\n        \"title\": \"Telos zkEVM Testnet\",\r\n        \"chain\": \"Telos\",\r\n        \"rpc\": [\r\n            \"https://zkrpc.testnet.telos.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"telos-zkevm-testnet\",\r\n        \"chainId\": 331,\r\n        \"networkId\": 331,\r\n        \"icon\": \"telos\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TeloScan\",\r\n                \"icon\": \"teloscan\",\r\n                \"url\": \"https://zkexplorer.testnet.telos.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://zkbridge.testnet.telos.net\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"BlackFort Exchange Network\",\r\n        \"chain\": \"BXN\",\r\n        \"rpc\": [\r\n            \"https://rpc.blackfort.network/mainnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BlackFort Token\",\r\n            \"symbol\": \"BXN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blackfort.com\",\r\n        \"shortName\": \"BXN\",\r\n        \"chainId\": 488,\r\n        \"networkId\": 488,\r\n        \"icon\": \"bxn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://blackfortscan.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Radius Testnet\",\r\n        \"chain\": \"Radius\",\r\n        \"rpc\": [\r\n            \"https://dev-secure.rpc.theradius.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Useless\",\r\n            \"symbol\": \"USLS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.theradius.xyz/\",\r\n        \"shortName\": \"radius-testnet\",\r\n        \"chainId\": 863,\r\n        \"networkId\": 863\r\n    },\r\n    {\r\n        \"name\": \"Weber Governance Mainnet\",\r\n        \"chain\": \"PTT\",\r\n        \"rpc\": [\r\n            \"https://chain.myweber.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PALLET\",\r\n            \"symbol\": \"PTT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://myweber.org\",\r\n        \"shortName\": \"ptt\",\r\n        \"chainId\": 881,\r\n        \"networkId\": 881,\r\n        \"icon\": \"ptt\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Weber Governance Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.myweber.org\",\r\n                \"icon\": \"ptt\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"IOPN Testnet\",\r\n        \"chain\": \"IOPN Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.iopn.tech\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.iopn.tech\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OPN\",\r\n            \"symbol\": \"OPN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://iopn.tech\",\r\n        \"shortName\": \"iopn-Test-Chain\",\r\n        \"chainId\": 984,\r\n        \"networkId\": 984,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://testnet.iopn.tech\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"LAGOM Mainnet\",\r\n        \"chain\": \"LAGOM Mainnet\",\r\n        \"rpc\": [\r\n            \"https://rpc1.lagom.mainnet.zeeve.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LAGO\",\r\n            \"symbol\": \"LAGO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://lagomchain.com\",\r\n        \"shortName\": \"Lagom-Chain\",\r\n        \"chainId\": 986,\r\n        \"networkId\": 986,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"tracehawk\",\r\n                \"url\": \"https://Explorer.lagomchain.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"StateMesh\",\r\n        \"icon\": \"statemesh\",\r\n        \"chain\": \"MESH\",\r\n        \"rpc\": [\r\n            \"https://rpc.statemesh.net\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"StateMesh\",\r\n            \"symbol\": \"MESH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://statemesh.net\",\r\n        \"shortName\": \"mesh\",\r\n        \"chainId\": 1134,\r\n        \"networkId\": 1134,\r\n        \"slip44\": 1134,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://scan.statemesh.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Kii Testnet Oro\",\r\n        \"chain\": \"KII\",\r\n        \"rpc\": [\r\n            \"https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://explorer.kiichain.io/testnet/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Kii\",\r\n            \"symbol\": \"KII\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://kiichain.io\",\r\n        \"shortName\": \"kiioro\",\r\n        \"chainId\": 1336,\r\n        \"networkId\": 1336,\r\n        \"icon\": \"kii\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"KiiExplorer\",\r\n                \"url\": \"https://explorer.kiichain.io/testnet\",\r\n                \"icon\": \"kii\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Perennial\",\r\n        \"chain\": \"perennial\",\r\n        \"rpc\": [\r\n            \"https://rpc.perennial.foundation\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://perennial.finance\",\r\n        \"shortName\": \"perennial\",\r\n        \"chainId\": 1424,\r\n        \"networkId\": 1424,\r\n        \"icon\": \"perennial\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Perennial Explorer\",\r\n                \"url\": \"https://explorer.perennial.foundation\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-8453\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.perennial.foundation\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"ONINO Mainnet\",\r\n        \"chain\": \"ONI\",\r\n        \"rpc\": [\r\n            \"https://rpc.onino.io\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.onino.io\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ONI\",\r\n            \"symbol\": \"ONI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://onino.io\",\r\n        \"shortName\": \"onino\",\r\n        \"chainId\": 1425,\r\n        \"networkId\": 1425,\r\n        \"icon\": \"onino\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"onino\",\r\n                \"url\": \"https://explorer.onino.io\",\r\n                \"icon\": \"onino\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Reactive Mainnet\",\r\n        \"title\": \"Reactive Network\",\r\n        \"chain\": \"REACT\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.rnk.dev\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"React\",\r\n            \"symbol\": \"REACT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://reactive.network\",\r\n        \"shortName\": \"react\",\r\n        \"icon\": \"reactive\",\r\n        \"chainId\": 1597,\r\n        \"networkId\": 1597,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Reactscan\",\r\n                \"url\": \"https://reactscan.net\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ethpar Mainnet\",\r\n        \"chain\": \"ETP\",\r\n        \"rpc\": [\r\n            \"https://rpc01.ethpar.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethpar\",\r\n            \"symbol\": \"ETP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://ethpar.com\",\r\n        \"shortName\": \"ethpar\",\r\n        \"chainId\": 1727,\r\n        \"networkId\": 1727,\r\n        \"icon\": \"ethpar\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ethpar Mainnet Explorer\",\r\n                \"url\": \"https://dora.ethpar.net\",\r\n                \"icon\": \"ethpar\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Fuga Mainnet\",\r\n        \"chain\": \"Fuga\",\r\n        \"rpc\": [\r\n            \"https://rpc.fuga.blue\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FUGA\",\r\n            \"symbol\": \"FUGA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fuga.one\",\r\n        \"shortName\": \"FUGA\",\r\n        \"chainId\": 1732,\r\n        \"networkId\": 1732,\r\n        \"slip44\": 732,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Fuga Testnet\",\r\n        \"chain\": \"Fuga\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.fuga.blue\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FUGA\",\r\n            \"symbol\": \"FUGA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fuga.one\",\r\n        \"shortName\": \"FUGA_T\",\r\n        \"chainId\": 1733,\r\n        \"networkId\": 1733,\r\n        \"slip44\": 1,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Fuga Develop\",\r\n        \"chain\": \"Fuga\",\r\n        \"rpc\": [\r\n            \"https://rpc-develop.fuga.blue\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"FUGA\",\r\n            \"symbol\": \"FUGA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://fuga.one\",\r\n        \"shortName\": \"FUGA_D\",\r\n        \"chainId\": 1734,\r\n        \"networkId\": 1734,\r\n        \"slip44\": 1,\r\n        \"explorers\": [],\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Atleta Network\",\r\n        \"chain\": \"Atleta\",\r\n        \"rpc\": [\r\n            \"https://rpc.mainnet.atleta.network\",\r\n            \"wss://rpc.mainnet.atleta.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Atla\",\r\n            \"symbol\": \"ATLA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://atleta.network\",\r\n        \"shortName\": \"atla\",\r\n        \"chainId\": 2440,\r\n        \"networkId\": 2440,\r\n        \"slip44\": 965,\r\n        \"icon\": \"atleta\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Atleta Explorer\",\r\n                \"icon\": \"atleta\",\r\n                \"url\": \"https://blockscout.atleta.network\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"Atleta Polka Explorer\",\r\n                \"icon\": \"atleta\",\r\n                \"url\": \"https://polkadot-explorer.atleta.network/#/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Apertum\",\r\n        \"title\": \"Apertum\",\r\n        \"chain\": \"APTM\",\r\n        \"rpc\": [\r\n            \"https://rpc.apertum.io/ext/bc/YDJ1r9RMkewATmA7B35q1bdV18aywzmdiXwd9zGBq3uQjsCnn/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Apertum\",\r\n            \"symbol\": \"APTM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://apertum.io\",\r\n        \"shortName\": \"aptm\",\r\n        \"chainId\": 2786,\r\n        \"networkId\": 2786,\r\n        \"icon\": \"apertum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Apertum Explorer\",\r\n                \"url\": \"https://explorer.apertum.io\",\r\n                \"icon\": \"apertum\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Pentagon Chain\",\r\n        \"chain\": \"Pentagon Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.pentagon.games\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://bridge.pentagon.games\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Pentagon Chain\",\r\n            \"symbol\": \"PC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"pentagonchain\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://pentagon.games\",\r\n        \"shortName\": \"PentagonChain\",\r\n        \"chainId\": 3344,\r\n        \"networkId\": 3344,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Pentagon Chain Explorer\",\r\n                \"url\": \"https://explorer.pentagon.games\",\r\n                \"icon\": \"pentagonchain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Pepe Unchained\",\r\n        \"chain\": \"PEPU\",\r\n        \"icon\": \"pepu\",\r\n        \"rpc\": [\r\n            \"https://rpc-pepe-unchained-gupg0lo9wf.t.conduit.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"PEPU\",\r\n            \"symbol\": \"PEPU\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pepeunchained.com/\",\r\n        \"shortName\": \"PEPU\",\r\n        \"chainId\": 3409,\r\n        \"networkId\": 3409,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"pepuscan\",\r\n                \"url\": \"https://pepuscan.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"TRUMPCHAIN\",\r\n        \"chain\": \"trumpchain\",\r\n        \"rpc\": [\r\n            \"https://testnet.trumpchain.dev/http\",\r\n            \"wss://testnet.trumpchain.dev/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Official Trump\",\r\n            \"symbol\": \"TRUMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://trumpchain.dev\",\r\n        \"shortName\": \"TRUMPCHAIN\",\r\n        \"chainId\": 4547,\r\n        \"networkId\": 4547,\r\n        \"icon\": \"trump\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"TRUMPCHAIN Explorer\",\r\n                \"url\": \"https://explorer.trumpchain.dev\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BlackFort Exchange Network Testnet\",\r\n        \"chain\": \"BXNT\",\r\n        \"rpc\": [\r\n            \"https://rpc.blackfort.network/testnet/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BlackFort Testnet Token\",\r\n            \"symbol\": \"BXNT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://blackfort.com\",\r\n        \"shortName\": \"BXNT\",\r\n        \"chainId\": 4888,\r\n        \"networkId\": 4888,\r\n        \"slip44\": 1,\r\n        \"icon\": \"bxn\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://testnet.blackfortscan.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Seismic devnet\",\r\n        \"chain\": \"Seismic\",\r\n        \"rpc\": [\r\n            \"https://node-2.seismicdev.net/rpc\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet-2.seismicdev.net/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Seismic Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://seismic.systems\",\r\n        \"shortName\": \"seismic-devnet\",\r\n        \"chainId\": 5124,\r\n        \"networkId\": 5124,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Seismic Devnet Explorer\",\r\n                \"url\": \"https://explorer-2.seismicdev.net\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Inertia Scan\",\r\n        \"chain\": \"IRTA\",\r\n        \"icon\": \"inertiascan\",\r\n        \"rpc\": [\r\n            \"https://rpc.inertiascan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Inertia\",\r\n            \"symbol\": \"IRTA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://inertiascan.com\",\r\n        \"shortName\": \"IRTA\",\r\n        \"chainId\": 5433,\r\n        \"networkId\": 5433,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://inertiascan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Tea Mainnet\",\r\n        \"chain\": \"TEA\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tea\",\r\n            \"symbol\": \"TEA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tea.xyz\",\r\n        \"shortName\": \"tea\",\r\n        \"chainId\": 6122,\r\n        \"networkId\": 6122,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\"\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"MegaETH Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MegaETH Testnet Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://carrot.megaeth.com/rpc\",\r\n            \"wss://carrot.megaeth.com/ws\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://testnet.megaeth.com\",\r\n        \"shortName\": \"megatest\",\r\n        \"chainId\": 6342,\r\n        \"networkId\": 6342,\r\n        \"slip44\": 1\r\n    },\r\n    {\r\n        \"name\": \"Nibiru testnet-2\",\r\n        \"chain\": \"Nibiru\",\r\n        \"rpc\": [\r\n            \"https://evm-rpc.testnet-2.nibiru.fi\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NIBI\",\r\n            \"symbol\": \"NIBI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nibiru.fi\",\r\n        \"shortName\": \"nibiru-testnet-2\",\r\n        \"chainId\": 6911,\r\n        \"networkId\": 6911,\r\n        \"icon\": \"nibiru\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Rarimo\",\r\n        \"title\": \"Rarimo Mainnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://l2.rarimo.com\",\r\n            \"wss://wss.l2.rarimo.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Rarimo Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rarimo.com\",\r\n        \"shortName\": \"rarimo\",\r\n        \"chainId\": 7368,\r\n        \"networkId\": 7368,\r\n        \"icon\": \"rarimo\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://l2bridge.rarimo.com\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://scan.rarimo.com\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"rarimo\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Draw Coin\",\r\n        \"chain\": \"DRW\",\r\n        \"icon\": \"drawchain\",\r\n        \"rpc\": [\r\n            \"https://rpc.drawchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DRW\",\r\n            \"symbol\": \"DRW\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://drawchain.io/\",\r\n        \"shortName\": \"drw\",\r\n        \"chainId\": 7788,\r\n        \"networkId\": 7788,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Draw Chain Explorer\",\r\n                \"url\": \"https://drawscan.io\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"drawchain\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Powerloom Mainnet V2\",\r\n        \"chain\": \"Powerloom Mainnet V2\",\r\n        \"rpc\": [\r\n            \"https://rpc-v2.powerloom.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Powerloom Token\",\r\n            \"symbol\": \"POWER\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://powerloom.network\",\r\n        \"shortName\": \"powerloom\",\r\n        \"chainId\": 7869,\r\n        \"networkId\": 7869,\r\n        \"icon\": \"power\",\r\n        \"status\": \"active\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer-v2.powerloom.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shardeum Testnet\",\r\n        \"chain\": \"ShardeumTestnet\",\r\n        \"icon\": \"shardeum\",\r\n        \"rpc\": [\r\n            \"https://api-testnet.shardeum.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shardeum Test SHM\",\r\n            \"symbol\": \"SHM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.shardeum.org/\",\r\n        \"shortName\": \"ShardeumTestnet\",\r\n        \"chainId\": 8083,\r\n        \"networkId\": 8083,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shardeum Testnet Explorer\",\r\n                \"url\": \"https://explorer-testnet.shardeum.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Shardeum\",\r\n        \"chain\": \"Shardeum\",\r\n        \"icon\": \"shardeum\",\r\n        \"rpc\": [\r\n            \"https://api.shardeum.org/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Shardeum\",\r\n            \"symbol\": \"SHM\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.shardeum.org/\",\r\n        \"shortName\": \"Shardeum\",\r\n        \"chainId\": 8118,\r\n        \"networkId\": 8118,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Shardeum Explorer\",\r\n                \"url\": \"https://explorer.shardeum.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Okto Testnet\",\r\n        \"chain\": \"Okto\",\r\n        \"rpc\": [\r\n            \"https://rpc.okto-testnet.zeeve.online\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.okto-testnet.zeeve.online\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Okto\",\r\n            \"symbol\": \"OKTO\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"okto-testnet\",\r\n        \"chainId\": 8801,\r\n        \"networkId\": 8801,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Okto Testnet Explorer\",\r\n                \"url\": \"https://explorer.okto-testnet.zeeve.online\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Qubetics Testnet\",\r\n        \"chain\": \"Qubetics Testnet\",\r\n        \"rpc\": [\r\n            \"https://rpc-testnet.qubetics.work/\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://testnet.qubetics.work/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Qubetics Testnet Token\",\r\n            \"symbol\": \"TICS\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.qubetics.com/\",\r\n        \"shortName\": \"Qubetics\",\r\n        \"chainId\": 9029,\r\n        \"networkId\": 9029,\r\n        \"icon\": \"qubetics\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Qubetics Testnet Explorer\",\r\n                \"url\": \"https://testnet.qubetics.work\",\r\n                \"standard\": \"none\",\r\n                \"icon\": \"qubetics\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"DeepSafe Beta Mainnet\",\r\n        \"chain\": \"DeepSafe\",\r\n        \"rpc\": [\r\n            \"https://betamainnet-rpc-node-http.deepsafe.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DeepSafe Native Token\",\r\n            \"symbol\": \"DEF\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://deepsafe.network/\",\r\n        \"shortName\": \"DeepSafe\",\r\n        \"chainId\": 10011,\r\n        \"networkId\": 10011,\r\n        \"icon\": \"deepsafe\"\r\n    },\r\n    {\r\n        \"name\": \"Tea Sepolia Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Tea\",\r\n            \"symbol\": \"TEA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://tea.xyz\",\r\n        \"shortName\": \"teasep\",\r\n        \"chainId\": 10218,\r\n        \"networkId\": 10218,\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Fuse Flash Testnet\",\r\n        \"chain\": \"Fuse Flash\",\r\n        \"rpc\": [],\r\n        \"faucets\": [\r\n            \"https://faucet.quicknode.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Fuse\",\r\n            \"symbol\": \"FUSE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.fuse.io\",\r\n        \"shortName\": \"fuseflash\",\r\n        \"chainId\": 10920,\r\n        \"networkId\": 10920,\r\n        \"icon\": \"fuse\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\"\r\n        },\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"StateMesh Testnet\",\r\n        \"icon\": \"statemesh\",\r\n        \"chain\": \"MESH\",\r\n        \"rpc\": [\r\n            \"https://rpc-test.statemesh.net\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.statemesh.net\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"StateMesh\",\r\n            \"symbol\": \"MESH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://statemesh.net\",\r\n        \"shortName\": \"mesh-test\",\r\n        \"chainId\": 11343,\r\n        \"networkId\": 11343,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer-test.statemesh.net\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Esports Chain\",\r\n        \"chain\": \"ESPT\",\r\n        \"icon\": \"esports\",\r\n        \"rpc\": [\r\n            \"https://esportsblock.org/rpc/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Esport Token\",\r\n            \"symbol\": \"ESPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://esportsblock.org\",\r\n        \"shortName\": \"Esports\",\r\n        \"chainId\": 17735,\r\n        \"networkId\": 17735,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"esportsblock_explorer\",\r\n                \"url\": \"https://esportsblock.org/explorer\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Nexurachain\",\r\n        \"chain\": \"nexurachain\",\r\n        \"icon\": \"xuraIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.nexurachain.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XURA\",\r\n            \"symbol\": \"XURA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://nexurachain.io\",\r\n        \"shortName\": \"XURAm\",\r\n        \"chainId\": 24125,\r\n        \"networkId\": 24125,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nexurachain Explorer\",\r\n                \"url\": \"https://explorer.nexurachain.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Recall\",\r\n        \"chain\": \"Recall\",\r\n        \"rpc\": [\r\n            \"https://evm.node-0.mainnet.recall.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Recall\",\r\n            \"symbol\": \"RECALL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://recall.network\",\r\n        \"shortName\": \"recall\",\r\n        \"chainId\": 24816,\r\n        \"networkId\": 24816,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"AB Core Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.core.testnet.ab.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AB\",\r\n            \"symbol\": \"AB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://ab.org\",\r\n        \"shortName\": \"tABCore\",\r\n        \"chainId\": 26888,\r\n        \"networkId\": 26888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"AB Core explorer\",\r\n                \"url\": \"https://explorer.core.testnet.ab.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XferChain Testnet\",\r\n        \"chain\": \"XferChain Testnet\",\r\n        \"icon\": \"xferIcon\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.xferchain.org\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.xferchain.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dapo\",\r\n            \"symbol\": \"Dapo\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xferchain.org\",\r\n        \"shortName\": \"DPt\",\r\n        \"chainId\": 27125,\r\n        \"networkId\": 27125,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XferChain Testnet Explorer\",\r\n                \"url\": \"https://testnet.xferchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XferChain Mainnet\",\r\n        \"chain\": \"XferChain Mainnet\",\r\n        \"icon\": \"xferIcon\",\r\n        \"rpc\": [\r\n            \"https://rpc.xferchain.org\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Dapo\",\r\n            \"symbol\": \"Dapo\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xferchain.org\",\r\n        \"shortName\": \"DPm\",\r\n        \"chainId\": 28125,\r\n        \"networkId\": 28125,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XferChain Mainnet Explorer\",\r\n                \"url\": \"https://xferchain.org\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"BasedAI\",\r\n        \"title\": \"BasedAI\",\r\n        \"chain\": \"BasedAI\",\r\n        \"rpc\": [\r\n            \"https://mainnet.basedaibridge.com/rpc/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BasedAI\",\r\n            \"symbol\": \"BASED\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://getbased.ai\",\r\n        \"shortName\": \"basedai\",\r\n        \"chainId\": 32323,\r\n        \"networkId\": 32323,\r\n        \"icon\": \"basedai\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"BasedAI Explorer\",\r\n                \"url\": \"https://explorer.getbased.ai\",\r\n                \"standard\": \"none\"\r\n            },\r\n            {\r\n                \"name\": \"BF1337 BasedAI Explorer\",\r\n                \"url\": \"https://explorer.bf1337.org\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"GUNZ\",\r\n        \"chain\": \"GUNZ\",\r\n        \"rpc\": [\r\n            \"https://rpc.gunzchain.io/ext/bc/2M47TxWHGnhNtq6pM5zPXdATBtuqubxn5EPFgFmEawCQr9WFML/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GUN\",\r\n            \"symbol\": \"GUN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"icon\": \"gunz\",\r\n        \"infoURL\": \"https://gunbygunz.com\",\r\n        \"shortName\": \"gunz-mainnet\",\r\n        \"chainId\": 43419,\r\n        \"networkId\": 43419,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://gunzscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo JUNE-Chain\",\r\n        \"chain\": \"Juneo JUNE-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/JUNE/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"JUNE\",\r\n            \"symbol\": \"JUNE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"JUNE\",\r\n        \"chainId\": 45003,\r\n        \"networkId\": 45003,\r\n        \"icon\": \"juneomainnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/2\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo DAI1-Chain\",\r\n        \"chain\": \"Juneo DAI1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/DAI1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DAI1\",\r\n            \"symbol\": \"DAI1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"DAI1\",\r\n        \"chainId\": 45004,\r\n        \"networkId\": 45004,\r\n        \"icon\": \"juneo-dai1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/5\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo USDT1-Chain\",\r\n        \"chain\": \"Juneo USDT1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/USDT1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USDT1\",\r\n            \"symbol\": \"USDT1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"USDT1\",\r\n        \"chainId\": 45005,\r\n        \"networkId\": 45005,\r\n        \"icon\": \"juneo-usdt1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/3\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo USD1-Chain\",\r\n        \"chain\": \"Juneo USD1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/USD1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"USD1\",\r\n            \"symbol\": \"USD1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"USD1\",\r\n        \"chainId\": 45006,\r\n        \"networkId\": 45006,\r\n        \"icon\": \"juneo-usd1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/4\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo mBTC1-Chain\",\r\n        \"chain\": \"Juneo mBTC1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/mBTC1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"mBTC1\",\r\n            \"symbol\": \"mBTC1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"mBTC1\",\r\n        \"chainId\": 45007,\r\n        \"networkId\": 45007,\r\n        \"icon\": \"juneo-mbtc1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/9\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo GLD1-Chain\",\r\n        \"chain\": \"Juneo GLD1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/GLD1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GLD1\",\r\n            \"symbol\": \"GLD1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"GLD1\",\r\n        \"chainId\": 45008,\r\n        \"networkId\": 45008,\r\n        \"icon\": \"juneo-gld1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/8\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo LTC1-Chain\",\r\n        \"chain\": \"Juneo LTC1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/LTC1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LTC1\",\r\n            \"symbol\": \"LTC1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"LTC1\",\r\n        \"chainId\": 45009,\r\n        \"networkId\": 45009,\r\n        \"icon\": \"juneo-ltc1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/11\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo DOGE1-Chain\",\r\n        \"chain\": \"Juneo DOGE1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/DOGE1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"DOGE1\",\r\n            \"symbol\": \"DOGE1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"DOGE1\",\r\n        \"chainId\": 45010,\r\n        \"networkId\": 45010,\r\n        \"icon\": \"juneo-doge1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/10\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo EUR1-Chain\",\r\n        \"chain\": \"Juneo EUR1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/EUR1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EUR1\",\r\n            \"symbol\": \"EUR1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"EUR1\",\r\n        \"chainId\": 45011,\r\n        \"networkId\": 45011,\r\n        \"icon\": \"juneo-eur1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/6\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo SGD1-Chain\",\r\n        \"chain\": \"Juneo SGD1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/SGD1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"SGD1\",\r\n            \"symbol\": \"SGD1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"SGD1\",\r\n        \"chainId\": 45012,\r\n        \"networkId\": 45012,\r\n        \"icon\": \"juneo-sgd1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/7\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo BCH1-Chain\",\r\n        \"chain\": \"Juneo BCH1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/BCH1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"BCH1\",\r\n            \"symbol\": \"BCH1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"BCH1\",\r\n        \"chainId\": 45013,\r\n        \"networkId\": 45013,\r\n        \"icon\": \"juneo-bch1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/12\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Juneo LINK1-Chain\",\r\n        \"chain\": \"Juneo LINK1-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.juneo-mainnet.network/ext/bc/LINK1/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"LINK1\",\r\n            \"symbol\": \"LINK1\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"LINK1\",\r\n        \"chainId\": 45014,\r\n        \"networkId\": 45014,\r\n        \"icon\": \"juneo-link1\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://juneoscan.io/chain/13\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Zircuit Garfield Testnet\",\r\n        \"chain\": \"Zircuit Garfield Testnet\",\r\n        \"icon\": \"zircuit\",\r\n        \"rpc\": [\r\n            \"https://garfield-testnet.zircuit.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.zircuit.com/\",\r\n        \"shortName\": \"zircuit-garfield-testnet\",\r\n        \"chainId\": 48898,\r\n        \"networkId\": 48898,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Zircuit\",\r\n                \"url\": \"https://explorer.garfield-testnet.zircuit.com\",\r\n                \"icon\": \"zircuit\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Somnia Testnet\",\r\n        \"chain\": \"Somnia\",\r\n        \"rpc\": [\r\n            \"https://dream-rpc.somnia.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Somnia Testnet\",\r\n            \"symbol\": \"STT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://somnia.network\",\r\n        \"shortName\": \"SomniaTestnet\",\r\n        \"chainId\": 50312,\r\n        \"networkId\": 50312,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Somnia Testnet\",\r\n                \"url\": \"https://somnia-testnet.socialscan.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Cytonic Ethereum Testnet\",\r\n        \"chain\": \"CytonicEVM\",\r\n        \"rpc\": [\r\n            \"http://rpc.evm.testnet.cytonic.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Cytonic\",\r\n            \"symbol\": \"CCC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://cytonic.com\",\r\n        \"shortName\": \"CEVM\",\r\n        \"chainId\": 52226,\r\n        \"networkId\": 52226,\r\n        \"icon\": \"cytonic_l2\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.evm.testnet.cytonic.com\",\r\n                \"icon\": \"cytonic_l2\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-52225\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Perennial Sepolia\",\r\n        \"chain\": \"perennialSepolia\",\r\n        \"rpc\": [\r\n            \"https://rpc-sepolia.perennial.foundation\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://perennial.finance\",\r\n        \"shortName\": \"perennial-sepolia\",\r\n        \"chainId\": 60850,\r\n        \"networkId\": 60850,\r\n        \"icon\": \"perennial\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Perennial Explorer\",\r\n                \"url\": \"https://explorer-sepolia.perennial.foundation\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-84532\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge-sepolia.perennial.foundation\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"XCHAIN Testnet\",\r\n        \"chain\": \"XCHAIN\",\r\n        \"rpc\": [\r\n            \"https://xchain-testnet-rpc.kuma.bid\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kuma.bid\",\r\n        \"shortName\": \"xct\",\r\n        \"chainId\": 64002,\r\n        \"networkId\": 64002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XCHAIN Testnet Explorer\",\r\n                \"url\": \"https://xchain-testnet-explorer.kuma.bid\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Berachain Bepolia\",\r\n        \"chain\": \"Berachain\",\r\n        \"rpc\": [\r\n            \"https://bepolia.rpc.berachain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Testnet BERA Token\",\r\n            \"symbol\": \"BERA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.berachain.com\",\r\n        \"shortName\": \"berachain-bepolia\",\r\n        \"chainId\": 80069,\r\n        \"networkId\": 80069,\r\n        \"icon\": \"berachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Beratrail\",\r\n                \"url\": \"https://bepolia.beratrail.io\",\r\n                \"icon\": \"berachain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Miracle Chain\",\r\n        \"chain\": \"MIRACLE\",\r\n        \"rpc\": [\r\n            \"https://rpc.miracleplay.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Miracle Play Token\",\r\n            \"symbol\": \"MPT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://miracleplay.gg\",\r\n        \"shortName\": \"MIRACLE\",\r\n        \"chainId\": 92278,\r\n        \"networkId\": 92278,\r\n        \"icon\": \"miracle\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Miracle Chain Explorer\",\r\n                \"icon\": \"miracle\",\r\n                \"url\": \"https://explorer.miracleplay.io\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XCHAIN\",\r\n        \"chain\": \"XCHAIN\",\r\n        \"rpc\": [\r\n            \"https://xchain-rpc.kuma.bid\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://kuma.bid\",\r\n        \"shortName\": \"xc\",\r\n        \"chainId\": 94524,\r\n        \"networkId\": 94524,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"XCHAIN Explorer\",\r\n                \"url\": \"https://xchain-explorer.kuma.bid\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Plume Mainnet\",\r\n        \"title\": \"Plume Ethereum L2 Rollup Mainnet\",\r\n        \"chain\": \"PLUME\",\r\n        \"rpc\": [\r\n            \"https://phoenix-rpc.plumenetwork.xyz\",\r\n            \"wss://phoenix-rpc.plumenetwork.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plume\",\r\n            \"symbol\": \"PLUME\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plumenetwork.xyz/\",\r\n        \"shortName\": \"plume-mainnet\",\r\n        \"chainId\": 98866,\r\n        \"networkId\": 98866,\r\n        \"slip44\": 1,\r\n        \"icon\": \"plume\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://phoenix-explorer.plumenetwork.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.plumenetwork.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Plume Testnet\",\r\n        \"title\": \"Plume Sepolia L2 Rollup Testnet\",\r\n        \"chain\": \"PLUME Testnet\",\r\n        \"rpc\": [\r\n            \"https://testnet-rpc.plumenetwork.xyz\",\r\n            \"wss://testnet-rpc.plumenetwork.xyz\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.plumenetwork.xyz\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Plume\",\r\n            \"symbol\": \"PLUME\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://plumenetwork.xyz/\",\r\n        \"shortName\": \"plume-testnet\",\r\n        \"chainId\": 98867,\r\n        \"networkId\": 98867,\r\n        \"slip44\": 1,\r\n        \"icon\": \"plume\",\r\n        \"status\": \"incubating\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://testnet-explorer.plumenetwork.xyz\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://testnet-bridge.plumenetwork.xyz\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Socotra JUNE-Chain\",\r\n        \"chain\": \"Socotra JUNE-Chain\",\r\n        \"rpc\": [\r\n            \"https://rpc.socotra-testnet.network/ext/bc/JUNE/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Socotra JUNE\",\r\n            \"symbol\": \"JUNE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://juneo.com/\",\r\n        \"shortName\": \"Socotra-JUNE\",\r\n        \"chainId\": 101003,\r\n        \"networkId\": 101003,\r\n        \"icon\": \"juneoSocotraTestnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Juneo Scan\",\r\n                \"url\": \"https://socotra.juneoscan.io/chain/2\",\r\n                \"icon\": \"juneomainnet\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xitcoin\",\r\n        \"chain\": \"XITCOIN\",\r\n        \"faucets\": [],\r\n        \"rpc\": [\r\n            \"https://network.xitcoin.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xitcoin\",\r\n            \"symbol\": \"$XTC\",\r\n            \"decimals\": 8\r\n        },\r\n        \"infoURL\": \"https://docs.xitcoin.org/\",\r\n        \"shortName\": \"Xitcoin\",\r\n        \"chainId\": 101088,\r\n        \"networkId\": 101088,\r\n        \"icon\": \"xitcoin\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Tatara Testnet\",\r\n        \"chain\": \"Tatara\",\r\n        \"rpc\": [\r\n            \"https://rpc.tatara.katanarpc.com/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"\",\r\n        \"shortName\": \"Tatara\",\r\n        \"chainId\": 129399,\r\n        \"networkId\": 129399,\r\n        \"icon\": \"ethereum\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tatara explorer\",\r\n                \"url\": \"https://explorer.tatara.katana.network\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Eventum Mainnet\",\r\n        \"shortName\": \"Eventum\",\r\n        \"chain\": \"Eventum\",\r\n        \"icon\": \"eventum\",\r\n        \"networkId\": 161803,\r\n        \"chainId\": 161803,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.evedex.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Eventum Mainnet Explorer\",\r\n                \"url\": \"https://explorer.evedex.com\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://evedex.com\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-1\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.arbitrum.io\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MUD Chain\",\r\n        \"chain\": \"MUD\",\r\n        \"rpc\": [\r\n            \"https://rpc.mud.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.mud.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MUD\",\r\n            \"symbol\": \"MUD\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://mud.network\",\r\n        \"shortName\": \"MUD\",\r\n        \"chainId\": 168169,\r\n        \"networkId\": 168169,\r\n        \"icon\": \"mud\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"MUD Chain Scan\",\r\n                \"url\": \"https://scan.mud.network\",\r\n                \"icon\": \"mud\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Altblockscan Mainnet\",\r\n        \"chain\": \"ALTB\",\r\n        \"rpc\": [\r\n            \"https://rpc.altblockscan.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Altblockscan\",\r\n            \"symbol\": \"ALTB\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://altblockscan.com\",\r\n        \"shortName\": \"altb\",\r\n        \"chainId\": 191919,\r\n        \"networkId\": 191919,\r\n        \"icon\": \"altb\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"altblockscan\",\r\n                \"url\": \"https://scan.altblockscan.com\",\r\n                \"icon\": \"altb\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"B20 Testnet\",\r\n        \"chain\": \"B20\",\r\n        \"rpc\": [\r\n            \"https://rpc.beonescan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.beonechain.com/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"B20\",\r\n            \"symbol\": \"TBOC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://rpc.beonescan.com\",\r\n        \"shortName\": \"B20\",\r\n        \"chainId\": 223344,\r\n        \"networkId\": 223344,\r\n        \"icon\": \"b20\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"beonescan\",\r\n                \"url\": \"https://beonescan.com\",\r\n                \"icon\": \"b20\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"CELESTIUM Network Testnet\",\r\n        \"chain\": \"CELESTIUM\",\r\n        \"rpc\": [\r\n            \"https://rpc-private-testnet.celestium.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.celestium.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"CLT\",\r\n            \"symbol\": \"tCLT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://celestium.network\",\r\n        \"shortName\": \"tclt\",\r\n        \"chainId\": 252525,\r\n        \"networkId\": 252525,\r\n        \"slip44\": 1,\r\n        \"icon\": \"celestium\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"CELESTIUM Testnet Explorer\",\r\n                \"icon\": \"celestium\",\r\n                \"url\": \"https://testnet.celestium.network\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Xsolla ZK Sepolia Testnet\",\r\n        \"chain\": \"Xsolla ZK Sepolia\",\r\n        \"rpc\": [\r\n            \"https://zkrpc-sepolia.xsollazk.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://xsollazk.com/faucet\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Sepolia Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xsolla.com/zk\",\r\n        \"shortName\": \"xsollazk-sepolia\",\r\n        \"chainId\": 555777,\r\n        \"networkId\": 555777,\r\n        \"slip44\": 1,\r\n        \"icon\": \"xsollazk\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Xsolla ZK Sepolia Block Explorer\",\r\n                \"url\": \"https://x.la/explorer\",\r\n                \"icon\": \"xsollazk\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hetu Testnet\",\r\n        \"chain\": \"HETU\",\r\n        \"rpc\": [\r\n            \"https://rpc.testchainv1.hetuscan.com\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https:/testchainv1.hetuscan.com\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"tETH\",\r\n            \"symbol\": \"tETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hetu.org\",\r\n        \"shortName\": \"HETU\",\r\n        \"chainId\": 560000,\r\n        \"networkId\": 560000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Hetu Testnet Scan\",\r\n                \"url\": \"https://testchainv1.hetuscan.com\",\r\n                \"icon\": \"hetu\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Hoodi testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"icon\": \"ethereum\",\r\n        \"rpc\": [\r\n            \"https://rpc.hoodi.ethpandaops.io\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.hoodi.ethpandaops.io\",\r\n            \"https://hoodi-faucet.pk910.de/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Hoodi Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://hoodi.ethpandaops.io\",\r\n        \"shortName\": \"hoe\",\r\n        \"chainId\": 560048,\r\n        \"networkId\": 560048,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"dora\",\r\n                \"url\": \"https://light-hoodi.beaconcha.in\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Gensyn Testnet\",\r\n        \"chain\": \"Gensyn\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://www.gensyn.ai/\",\r\n        \"shortName\": \"gensyn-test\",\r\n        \"chainId\": 685685,\r\n        \"networkId\": 685685,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Pyrope Testnet\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://rpc.pyropechain.com\",\r\n            \"wss://rpc.pyropechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://pyropechain.com\",\r\n        \"shortName\": \"pyrope\",\r\n        \"chainId\": 695569,\r\n        \"networkId\": 695569,\r\n        \"icon\": \"pyrope\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://pyrope.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://pyropechain.com/bridge\"\r\n                }\r\n            ]\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Surge Testnet\",\r\n        \"chain\": \"Surge Testnet\",\r\n        \"rpc\": [\r\n            \"https://l2-rpc.surge.staging-nethermind.xyz\",\r\n            \"wss://l2-rpc.surge.staging-nethermind.xyz\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://surge.wtf\",\r\n        \"shortName\": \"surge-testnet\",\r\n        \"chainId\": 763374,\r\n        \"networkId\": 763374,\r\n        \"icon\": \"surge-testnet\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.holesky.surge.wtf\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"surge-testnet\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Winr Protocol Mainnet\",\r\n        \"chain\": \"WINR\",\r\n        \"rpc\": [\r\n            \"https://rpc.winr.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Winr\",\r\n            \"symbol\": \"WINR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://winr.games\",\r\n        \"shortName\": \"winr\",\r\n        \"chainId\": 777777,\r\n        \"networkId\": 777777,\r\n        \"icon\": \"winr\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Winr Protocol Explorer\",\r\n                \"url\": \"https://explorer.winr.games\",\r\n                \"icon\": \"winr\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Oone Chain Mainnet\",\r\n        \"chain\": \"OONE\",\r\n        \"rpc\": [\r\n            \"https://rpc.oonechain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"OONE\",\r\n            \"symbol\": \"OONE\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://oonechain.com\",\r\n        \"shortName\": \"oone\",\r\n        \"chainId\": 777888,\r\n        \"networkId\": 777888,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://oonescan.com\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ethpar Testnet\",\r\n        \"chain\": \"ETP\",\r\n        \"rpc\": [\r\n            \"https://rpc82.testnet.ethpar.net/\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ethpar\",\r\n            \"symbol\": \"ETP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://ethpar.com\",\r\n        \"shortName\": \"ethpar-tesnet\",\r\n        \"chainId\": 806582,\r\n        \"networkId\": 806582,\r\n        \"icon\": \"ethpar\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Ethpar Testnet Explorer\",\r\n                \"url\": \"https://dora.testnet.ethpar.net\",\r\n                \"icon\": \"ethpar\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Naga Testnet\",\r\n        \"chain\": \"Naga\",\r\n        \"rpc\": [\r\n            \"https://rpc.nagafintech.com\",\r\n            \"wss://rpc.nagafintech.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Naga\",\r\n            \"symbol\": \"Naga\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://stablecoin.nagafintech.com/#/app/home\",\r\n        \"shortName\": \"Naga\",\r\n        \"chainId\": 1008686,\r\n        \"networkId\": 1008686,\r\n        \"icon\": \"naga\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Naga Explorer Testnet\",\r\n                \"url\": \"https://explorer.nagafintech.com\",\r\n                \"icon\": \"naga\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XRPL EVM Sidechain Devnet\",\r\n        \"chain\": \"XRPLEVM Devnet\",\r\n        \"icon\": \"xrplevm\",\r\n        \"rpc\": [\r\n            \"https://rpc.xrplevm.org\",\r\n            \"https://ws.xrplevm.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.xrplevm.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XRP\",\r\n            \"symbol\": \"XRP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xrplevm.org\",\r\n        \"shortName\": \"xrplevmdevnet\",\r\n        \"chainId\": 1440002,\r\n        \"networkId\": 1440002,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.xrplevm.org\",\r\n                \"icon\": \"xrplevm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"XRPL EVM Sidechain Testnet\",\r\n        \"chain\": \"XRPLEVM Testnet\",\r\n        \"icon\": \"xrplevm\",\r\n        \"rpc\": [\r\n            \"https://rpc.testnet.xrplevm.org\",\r\n            \"https://ws.testnet.xrplevm.org\"\r\n        ],\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.xrplevm.org\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"XRP\",\r\n            \"symbol\": \"XRP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://xrplevm.org\",\r\n        \"shortName\": \"xrplevmtestnet\",\r\n        \"chainId\": 1449000,\r\n        \"networkId\": 1449000,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://explorer.testnet.xrplevm.org\",\r\n                \"icon\": \"xrplevm\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Primea Network Testnet\",\r\n        \"chain\": \"Primea Network Testnet\",\r\n        \"rpc\": [\r\n            \"http://test-rpc.primeanetwork.com/rpc-http\",\r\n            \"https://test-rpc.primeanetwork.com/rpc-https\",\r\n            \"ws://test-rpc.primeanetwork.com/rpc-ws\",\r\n            \"wss://test-rpc.primeanetwork.com/rpc-wss\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"GoldPrimeaNetwork Test\",\r\n            \"symbol\": \"GOLDPN\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://primeanetwork.com\",\r\n        \"shortName\": \"test-goldpn\",\r\n        \"chainId\": 1698369,\r\n        \"networkId\": 1698369,\r\n        \"icon\": \"prim\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Alterscope Testnet\",\r\n        \"chain\": \"AlterscopeTest\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"RISK Test Token\",\r\n            \"symbol\": \"RISKT\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://alterscope.org\",\r\n        \"shortName\": \"AlterscopeTest\",\r\n        \"chainId\": 2022091,\r\n        \"networkId\": 2022091,\r\n        \"status\": \"incubating\"\r\n    },\r\n    {\r\n        \"name\": \"Recall Testnet\",\r\n        \"chain\": \"Recall Testnet\",\r\n        \"rpc\": [\r\n            \"https://evm.v013.node-0.testnet.recall.network\"\r\n        ],\r\n        \"faucets\": [\r\n            \"faucet.recall.network\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Recall\",\r\n            \"symbol\": \"RECALL\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://recall.network\",\r\n        \"shortName\": \"trecall\",\r\n        \"chainId\": 2481632,\r\n        \"networkId\": 2481632,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Recall testnet explorer\",\r\n                \"url\": \"https://explorer.testnet.recall.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"COTI\",\r\n        \"chainId\": 2632500,\r\n        \"shortName\": \"coti\",\r\n        \"chain\": \"COTI\",\r\n        \"networkId\": 2632500,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"COTI\",\r\n            \"symbol\": \"COTI\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://mainnet.coti.io/rpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"COTI Mainnet Explorer\",\r\n                \"url\": \"https://mainnet.cotiscan.io\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://coti.io/\",\r\n        \"icon\": \"coti\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Arcadia Mainnet\",\r\n        \"chain\": \"Arcadia\",\r\n        \"rpc\": [\r\n            \"https://arcadia.khalani.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"AIP\",\r\n            \"symbol\": \"AIP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://khalani.network\",\r\n        \"shortName\": \"aip\",\r\n        \"chainId\": 4278608,\r\n        \"networkId\": 4278608,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Arcadia Mainnet Explorer\",\r\n                \"url\": \"https://explorer.arcadia.khalani.network\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"RISE Testnet\",\r\n        \"chain\": \"RISE\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ETH\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.riselabs.xyz/\",\r\n        \"shortName\": \"rise-testnet\",\r\n        \"chainId\": 11155931,\r\n        \"networkId\": 11155931,\r\n        \"icon\": \"rise\",\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"Xphere Mainnet\",\r\n        \"chain\": \"Xphere\",\r\n        \"icon\": \"xphere\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://en-bkk.x-phere.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Xphere\",\r\n            \"symbol\": \"XP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://x-phere.com/\",\r\n        \"shortName\": \"xp\",\r\n        \"chainId\": 20250217,\r\n        \"networkId\": 20250217,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Tamsa\",\r\n                \"url\": \"https://xp.tamsa.io\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Vcitychain Mainnet\",\r\n        \"chain\": \"Vcitychain\",\r\n        \"rpc\": [\r\n            \"https://mainnet-rpc.vcity.app\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Vcity Coin\",\r\n            \"symbol\": \"VCITY\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://vcity.app\",\r\n        \"shortName\": \"vcity\",\r\n        \"chainId\": 20250825,\r\n        \"networkId\": 20250825,\r\n        \"icon\": \"vcitychain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Vcitychain Explorer\",\r\n                \"url\": \"https://blockchain.vcity.app\",\r\n                \"icon\": \"vcitychain\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"dKargo Warehouse Testnet\",\r\n        \"chain\": \"dKargo Warehouse\",\r\n        \"rpc\": [\r\n            \"https://warehouse-full01.dkargo.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"dKargo\",\r\n            \"symbol\": \"DKA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://dkargo.io\",\r\n        \"shortName\": \"dkargowarehouse\",\r\n        \"chainId\": 61022448,\r\n        \"networkId\": 61022448\r\n    },\r\n    {\r\n        \"name\": \"Winr Protocol Testnet\",\r\n        \"chain\": \"WINR\",\r\n        \"rpc\": [\r\n            \"https://rpc-devnet.winr.games\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Winr\",\r\n            \"symbol\": \"WINR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"features\": [],\r\n        \"infoURL\": \"https://winr.games\",\r\n        \"shortName\": \"winrtestnet\",\r\n        \"chainId\": 66666666,\r\n        \"networkId\": 66666666,\r\n        \"icon\": \"winr\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Winr Protocol Testnet Explorer\",\r\n                \"url\": \"https://explorer-winrprotocoltestnet-wmwv59m23g.t.conduit.xyz\",\r\n                \"icon\": \"winr\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Smart Mainnet\",\r\n        \"chain\": \"SMART\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Smart\",\r\n            \"symbol\": \"SMART\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://smartblockchain.com\",\r\n        \"shortName\": \"smart\",\r\n        \"chainId\": 661898459,\r\n        \"networkId\": 661898459,\r\n        \"slip44\": 783,\r\n        \"icon\": \"smart\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"smartexplorer\",\r\n                \"url\": \"https://smartexplorer.com\",\r\n                \"icon\": \"smart\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Status Network Sepolia\",\r\n        \"title\": \"Status Network Sepolia\",\r\n        \"chain\": \"ETH\",\r\n        \"rpc\": [\r\n            \"https://public.sepolia.rpc.status.network\",\r\n            \"wss://status-sepolia-rpc.eu-north-2.gateway.fm/ws\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://faucet.status.network/\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://status.network\",\r\n        \"shortName\": \"sn-sepolia\",\r\n        \"chainId\": 1660990954,\r\n        \"networkId\": 1660990954,\r\n        \"icon\": \"sn\",\r\n        \"parent\": {\r\n            \"type\": \"L2\",\r\n            \"chain\": \"eip155-11155111\",\r\n            \"bridges\": [\r\n                {\r\n                    \"url\": \"https://bridge.status.network\"\r\n                }\r\n            ]\r\n        },\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Blockscout\",\r\n                \"url\": \"https://sepoliascan.status.network\",\r\n                \"standard\": \"EIP3091\",\r\n                \"icon\": \"sn\"\r\n            }\r\n        ],\r\n        \"status\": \"active\"\r\n    },\r\n    {\r\n        \"name\": \"Tron Shasta\",\r\n        \"chain\": \"TRON\",\r\n        \"rpc\": [\r\n            \"https://api.shasta.trongrid.io/jsonrpc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Tron\",\r\n            \"symbol\": \"TRX\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://tron.network\",\r\n        \"shortName\": \"tron-shasta\",\r\n        \"chainId\": 2494104990,\r\n        \"networkId\": 2494104990,\r\n        \"icon\": \"tron\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"shasta tronscan\",\r\n                \"url\": \"https://shasta.tronscan.org\",\r\n                \"icon\": \"tron\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Ultima Mainnet\",\r\n        \"chain\": \"ULTIMA\",\r\n        \"rpc\": [],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ultima\",\r\n            \"symbol\": \"ULTIMA\",\r\n            \"decimals\": 6\r\n        },\r\n        \"infoURL\": \"https://ultima.io\",\r\n        \"shortName\": \"ultima\",\r\n        \"chainId\": 3416255149,\r\n        \"networkId\": 3416255149,\r\n        \"slip44\": 785,\r\n        \"icon\": \"ultima\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ultimachain\",\r\n                \"url\": \"https://ultimachain.info\",\r\n                \"icon\": \"ultima\",\r\n                \"standard\": \"none\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"ONFA Chain\",\r\n        \"title\": \"ONFA Chain\",\r\n        \"chain\": \"onfa\",\r\n        \"rpc\": [\r\n            \"https://rpc.onfa.io\",\r\n            \"https://rpc.onfachain.com\",\r\n            \"wss://ws.onfa.io\",\r\n            \"wss://ws.onfachain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Onfa Coin\",\r\n            \"symbol\": \"OFC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://onfa.io\",\r\n        \"shortName\": \"onfa\",\r\n        \"chainId\": 8691942025,\r\n        \"networkId\": 8691942025,\r\n        \"icon\": \"onfachain\",\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"ONFA Scan\",\r\n                \"url\": \"https://onfascan.com\",\r\n                \"icon\": \"onfachain\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Basecamp\",\r\n        \"chain\": \"CAMP\",\r\n        \"icon\": \"camp\",\r\n        \"features\": [\r\n            {\r\n                \"name\": \"EIP155\"\r\n            },\r\n            {\r\n                \"name\": \"EIP1559\"\r\n            }\r\n        ],\r\n        \"rpc\": [\r\n            \"https://rpc.basecamp.t.raas.gelato.cloud\"\r\n        ],\r\n        \"faucets\": [\r\n            \"https://www.campnetwork.xyz/faucet_l1\"\r\n        ],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Camp\",\r\n            \"symbol\": \"CAMP\",\r\n            \"decimals\": 18\r\n        },\r\n        \"infoURL\": \"https://docs.campnetwork.xyz/\",\r\n        \"shortName\": \"Basecamp\",\r\n        \"chainId\": 123420001114,\r\n        \"networkId\": 123420001114,\r\n        \"slip44\": 1,\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"blockscout\",\r\n                \"url\": \"https://basecamp.cloud.blockscout.com\",\r\n                \"icon\": \"blockscout\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ]\r\n    },\r\n    {\r\n        \"name\": \"Yominet\",\r\n        \"chain\": \"YOMINET\",\r\n        \"icon\": \"yominet\",\r\n        \"rpc\": [\r\n            \"https://jsonrpc-yominet-1.anvil.asia-southeast.initia.xyz\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"Ether\",\r\n            \"symbol\": \"ETH\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"yomi\",\r\n        \"infoURL\": \"https://www.kamigotchi.io/\",\r\n        \"chainId\": 428962654539583,\r\n        \"networkId\": 428962654539583,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"CryptoZR\",\r\n        \"chain\": \"CryptoZR\",\r\n        \"icon\": \"CryptoZR\",\r\n        \"rpc\": [\r\n            \"https://doubun.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"nativeCurrency\": {\r\n            \"name\": \"ART\",\r\n            \"symbol\": \"ART\",\r\n            \"decimals\": 18\r\n        },\r\n        \"shortName\": \"CryptoZR\",\r\n        \"infoURL\": \"\",\r\n        \"chainId\": 7198,\r\n        \"networkId\": 7198,\r\n        \"explorers\": []\r\n    },\r\n    {\r\n        \"name\": \"ENI Mainnet\",\r\n        \"chainId\": 173,\r\n        \"shortName\": \"ENI\",\r\n        \"chain\": \"ENI\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 173,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"EGAS\",\r\n            \"symbol\": \"EGAS\",\r\n            \"decimals\": 18,\r\n            \"logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1750862098594.png\"\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.eniac.network\",\r\n            \"https://rpc1.eniac.network\",\r\n            \"https://rpc2.eniac.network\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"EniacScan\",\r\n                \"url\": \"https://scan.eniac.network/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.eniac.network\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1750862112876.png\",\r\n            \"ic_chain_unselect\": \"https://hk.tpstatic.net/dapp/tokenpocket-1750862117868.png\",\r\n            \"color_chain_bg\": \"0x10100E\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1750862128546.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1750862161587.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mars Chain\",\r\n        \"chainId\": 704851,\r\n        \"shortName\": \"Mars\",\r\n        \"chain\": \"Mars\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 704851,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MarsC\",\r\n            \"symbol\": \"MarsC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.mars-scan.io\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Mars Scan\",\r\n                \"url\": \"https://explorer.mars-chain.io/\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.mars-chain.io/\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://hk.tpstatic.net/dapp/tokenpocket-1751806883293.png\",\r\n            \"ic_chain_unselect\": \"hhttps://hk.tpstatic.net/dapp/tokenpocket-1751806894282.png\",\r\n            \"color_chain_bg\": \"0xF27022\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_chain_unselect_dark\": \"https://hk.tpstatic.net/dapp/tokenpocket-1751806898481.png\",\r\n            \"ic_home_logo\": \"https://hk.tpstatic.net/dapp/tokenpocket-1751806917647.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MixMax Chain\",\r\n        \"chainId\": 79,\r\n        \"shortName\": \"MC\",\r\n        \"chain\": \"MixMax\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 79,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MC\",\r\n            \"symbol\": \"MC\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://chain.mixmax.cc\",\r\n            \"https://chain5.mixmax.cc\",\r\n            \"https://chain-1.mmchain.cc\",\r\n            \"https://chain3.mixmax.cc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://www.mixmax.pro/white-paper\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://pic.mixmax.cc/ic_chain_select.png\",\r\n            \"ic_chain_unselect\": \"https://pic.mixmax.cc/ic_chain_unselect.png\",\r\n            \"ic_chain_unselect_dark\": \"https://pic.mixmax.cc/ic_chain_unselect.png\",\r\n            \"color_chain_bg\": \"0x4E2700\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_home_logo\": \"https://pic.mixmax.cc/ic_chain_select.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Mova Chain\",\r\n        \"chainId\": 61900,\r\n        \"shortName\": \"Mova\",\r\n        \"chain\": \"Mova\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 61900,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MOVA\",\r\n            \"symbol\": \"MOVA\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://rpc.movachain.com\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"infoURL\": \"https://movachain.com\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"https://asset.movachain.com/logo/Mova-TP-Icon-01.png\",\r\n            \"ic_chain_unselect\": \"https://asset.movachain.com/logo/Mova-TP-Icon-04.png\",\r\n            \"ic_chain_unselect_dark\": \"https://asset.movachain.com/logo/Mova-TP-Icon-03.png\",\r\n            \"color_chain_bg\": \"0xC0FF72\",\r\n            \"color_chain_text\": \"0xFFFFFF\",\r\n            \"ic_home_logo\": \"https://asset.movachain.com/logo/Mova-TP-Icon-01.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"Nexus Chain\",\r\n        \"chainId\": 8910,\r\n        \"shortName\": \"Nexus\",\r\n        \"chain\": \"Nexus\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 8910,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"NXR\",\r\n            \"symbol\": \"NXR\",\r\n            \"decimals\": 18\r\n        },\r\n        \"rpc\": [\r\n            \"https://node.nexuschain.cc\"\r\n        ],\r\n        \"faucets\": [],\r\n        \"explorers\": [\r\n            {\r\n                \"name\": \"Nexus explorer\",\r\n                \"url\": \"https://explorer.nexuschain.cc\",\r\n                \"standard\": \"EIP3091\"\r\n            }\r\n        ],\r\n        \"infoURL\": \"https://www.nexuschain.cc\",\r\n        \"app_resource\": {\r\n            \"ic_chain_select\": \"http://icon.nexuschain.cc/day-m.png\",\r\n            \"ic_chain_unselect\": \"http://icon.nexuschain.cc/day.png\",\r\n            \"color_chain_bg\": \"#646464\",\r\n            \"color_chain_text\": \"#66FFFF \",\r\n            \"ic_chain_unselect_dark\": \"http://icon.nexuschain.cc/night.png\",\r\n            \"ic_home_logo\": \"http://icon.nexuschain.cc/night-m.png\"\r\n        }\r\n    },\r\n    {\r\n        \"name\": \"MCNChain\",\r\n        \"chainId\": 32169,\r\n        \"shortName\": \"mcn\",\r\n        \"chain\": \"MCN\",\r\n        \"network\": \"mainnet\",\r\n        \"networkId\": 32169,\r\n        \"nativeCurrency\": {\r\n            \"name\": \"MCN\",\r\n            \"symbol\": \"MCN\",\r\n                \"decimals\": 18\r\n    },\r\n    \"rpc\": [\r\n        \"https://rpc1.mcnsmartchain.com\",\r\n        \"https://rpc2.mcnsmartchain.com\",\r\n        \"https://rpc3.mcnsmartchain.com\"\r\n    ],\r\n    \"faucets\": [],\r\n    \"infoURL\": \"https://www.mcnsmartchain.com\",\r\n    \"explorers\": [\r\n        {\r\n            \"name\": \"MCN Scan\",\r\n            \"url\": \"https://block.mcnsmartchain.com\",\r\n            \"standard\": \"EIP3091\"\r\n        }\r\n    ],\r\n    \"app_resource\": {\r\n        \"ic_chain_select\": \"https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg\",\r\n        \"ic_chain_unselect\": \"https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg\",\r\n        \"ic_chain_unselect_dark\": \"https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg\",\r\n        \"color_chain_bg\": \"0x99FF00\",\r\n        \"color_chain_text\": \"0x000000\",\r\n        \"ic_home_logo\": \"https://photos.pinksale.finance/file/pinksale-logo-upload/1768216345304-4f17a2cc73fa22989e27cd2b22ec94bd.jpg\"\r\n    }\r\n}\r\n\r\n]\r\n\r\n"
  },
  {
    "path": "components/chain/chain.js",
    "content": "import React, { useState, useEffect } from 'react';\nimport { Typography, Paper, Grid, Button, Tooltip } from '@material-ui/core'\nimport Skeleton from '@material-ui/lab/Skeleton';\nimport { useRouter } from 'next/router'\nimport Web3 from 'web3';\n\nimport classes from './chain.module.css'\n\nimport stores from '../../stores/index.js'\nimport { getProvider } from '../../utils'\n\nimport {\n  ERROR,\n  CONNECT_WALLET,\n  TRY_CONNECT_WALLET,\n  ACCOUNT_CONFIGURED\n} from '../../stores/constants'\n\nexport default function Chain({ chain }) {\n  const router = useRouter()\n\n  const [account, setAccount] = useState(null)\n\n  useEffect(() => {\n    const accountConfigure = () => {\n      const accountStore = stores.accountStore.getStore('account')\n      setAccount(accountStore)\n    }\n\n    stores.emitter.on(ACCOUNT_CONFIGURED, accountConfigure)\n\n    const accountStore = stores.accountStore.getStore('account')\n    setAccount(accountStore)\n\n    return () => {\n      stores.emitter.removeListener(ACCOUNT_CONFIGURED, accountConfigure)\n    }\n  }, [])\n\n  const toHex = (num) => {\n    return '0x' + num.toString(16)\n  }\n\n  const addToNetwork = () => {\n    if (!(account && account.address)) {\n      stores.dispatcher.dispatch({ type: TRY_CONNECT_WALLET })\n      return\n    }\n\n    const params = {\n      chainId: toHex(chain.chainId), // A 0x-prefixed hexadecimal string\n      chainName: chain.name,\n      nativeCurrency: {\n        name: chain.nativeCurrency.name,\n        symbol: chain.nativeCurrency.symbol, // 2-6 characters long\n        decimals: chain.nativeCurrency.decimals,\n      },\n      rpcUrls: chain.rpc,\n      blockExplorerUrls: [((chain.explorers && chain.explorers.length > 0 && chain.explorers[0].url) ? chain.explorers[0].url : chain.infoURL)]\n    }\n\n    window.web3.eth.getAccounts((error, accounts) => {\n      window.ethereum.request({\n        method: 'wallet_addEthereumChain',\n        params: [params, accounts[0]],\n      })\n        .then((result) => {\n          console.log(result)\n        })\n        .catch((error) => {\n          stores.emitter.emit(ERROR, error.message ? error.message : error)\n          console.log(error)\n        });\n    })\n  }\n\n  const renderProviderText = () => {\n\n    if (account && account.address) {\n      const providerTextList = {\n        tokenpocket: 'Add to TokenPocket',\n        dfox: 'Add to TokenPocket',\n        Metamask: 'Add to Metamask',\n        imToken: 'Add to imToken',\n        Wallet: 'Add to Wallet'\n      }\n      return providerTextList[getProvider()]\n    } else {\n      return 'Connect wallet'\n    }\n\n  }\n\n  if (!chain) {\n    return <div></div>\n  }\n\n  return (\n    <Paper elevation={1} className={classes.chainContainer} key={chain.chainId}>\n      <div className={classes.chainNameContainer}>\n        <img\n          // src='/connectors/icn-asd.svg'\n          // onError={e => {\n          //   e.target.onerror = null;\n          //   e.target.src = \"/chains/unknown-logo.png\";\n          // }}\n          src=\"/chains/unknown-logo.png\"\n          width={28}\n          height={28}\n          className={classes.avatar}\n        />\n        <Tooltip title={chain.name}>\n          <Typography variant='h3' className={classes.name} noWrap>\n            <a href={chain.infoURL} target=\"_blank\" rel=\"noreferrer\">\n              {chain.name}\n            </a>\n          </Typography>\n        </Tooltip>\n      </div>\n      <div className={classes.chainInfoContainer}>\n        <div className={classes.dataPoint}>\n          <Typography variant='subtitle1' color='textSecondary' className={classes.dataPointHeader} >ChainID</Typography>\n          <Typography variant='h5'>{chain.chainId}</Typography>\n        </div>\n        <div className={classes.dataPoint}>\n          <Typography variant='subtitle1' color='textSecondary' className={classes.dataPointHeader}>Currency</Typography>\n          <Typography variant='h5'>{chain.nativeCurrency ? chain.nativeCurrency.symbol : 'none'}</Typography>\n        </div>\n      </div>\n      <div className={classes.addButton}>\n        <Button\n          variant='outlined'\n          color='primary'\n          onClick={addToNetwork}\n        >\n          {renderProviderText()}\n        </Button>\n      </div>\n    </Paper>\n  )\n}\n"
  },
  {
    "path": "components/chain/chain.module.css",
    "content": ".chainContainer {\n  width: 100%;\n  border-radius: 10px;\n  padding: 30px;\n}\n\n.addButton {\n  width: 100%;\n  display: flex;\n  justify-content: center;\n}\n\n.name {\n}\n\n.chainInfoContainer {\n  display: flex;\n  align-items: flex-start;\n  margin-left: 52px;\n  margin-bottom: 20px;\n}\n\n.dataPoint {\n  flex: 1;\n}\n\n.dataPointHeader {\n  padding-bottom: 7px;\n}\n\n.avatar {\n  margin-right: 24px;\n}\n\n.chainNameContainer {\n  display: flex;\n  align-items: center;\n  justify-content: flex-start;\n  width: 100%;\n  margin-bottom: 12px !important;\n}\n"
  },
  {
    "path": "components/chain/package.json",
    "content": "{\n  \"main\": \"chain.js\"\n}\n"
  },
  {
    "path": "components/header/header.js",
    "content": "import React, { useState, useEffect } from 'react';\n\nimport { Typography, Switch, Button } from '@material-ui/core'\nimport { withStyles } from '@material-ui/core/styles';\nimport { withTheme } from '@material-ui/core/styles';\n\nimport WbSunnyOutlinedIcon from '@material-ui/icons/WbSunnyOutlined';\nimport Brightness2Icon from '@material-ui/icons/Brightness2';\nimport ArrowBackIcon from '@material-ui/icons/ArrowBack';\n\nimport {\n  CONNECT_WALLET,\n  TRY_CONNECT_WALLET,\n  ACCOUNT_CONFIGURED\n} from '../../stores/constants'\n\n// import Unlock from '../unlock'\n\nimport stores from '../../stores'\nimport { formatAddress, getProvider } from '../../utils'\n\nimport classes from './header.module.css'\n\nconst StyledSwitch = withStyles((theme) => ({\n  root: {\n    width: 58,\n    height: 32,\n    padding: 0,\n    margin: theme.spacing(1),\n  },\n  switchBase: {\n    padding: 1,\n    '&$checked': {\n      transform: 'translateX(28px)',\n      color: '#212529',\n      '& + $track': {\n        backgroundColor: '#ffffff',\n        opacity: 1,\n      },\n    },\n    '&$focusVisible $thumb': {\n      color: '#ffffff',\n      border: '6px solid #fff',\n    }\n  },\n  thumb: {\n    width: 24,\n    height: 24,\n  },\n  track: {\n    borderRadius: 32 / 2,\n    border: `1px solid #212529`,\n    backgroundColor: '#212529',\n    opacity: 1,\n    transition: theme.transitions.create(['background-color', 'border']),\n  },\n  checked: {},\n  focusVisible: {},\n}))(({ classes, ...props }) => {\n  return (\n    <Switch\n      focusVisibleClassName={classes.focusVisible}\n      disableRipple\n      classes={{\n        root: classes.root,\n        switchBase: classes.switchBase,\n        thumb: classes.thumb,\n        track: classes.track,\n        checked: classes.checked,\n      }}\n      {...props}\n    />\n  );\n});\n\nfunction Header(props) {\n\n  const [account, setAccount] = useState(null)\n  const [darkMode, setDarkMode] = useState(props.theme.palette.type === 'dark' ? true : false);\n  const [unlockOpen, setUnlockOpen] = useState(false);\n\n  useEffect(() => {\n    const accountConfigure = () => {\n      const accountStore = stores.accountStore.getStore('account')\n      setAccount(accountStore)\n    }\n    const connectWallet = () => {\n      onAddressClicked()\n      stores.dispatcher.dispatch({ type: TRY_CONNECT_WALLET })\n    }\n\n    stores.emitter.on(ACCOUNT_CONFIGURED, accountConfigure)\n    stores.emitter.on(CONNECT_WALLET, connectWallet)\n\n\n    const accountStore = stores.accountStore.getStore('account')\n    setAccount(accountStore)\n\n    return () => {\n      stores.emitter.removeListener(ACCOUNT_CONFIGURED, accountConfigure)\n      stores.emitter.removeListener(CONNECT_WALLET, connectWallet)\n    }\n  }, [])\n\n  const handleToggleChange = (event, val) => {\n    setDarkMode(val)\n    props.changeTheme(val)\n  }\n\n  const onAddressClicked = () => {\n    stores.dispatcher.dispatch({ type: TRY_CONNECT_WALLET })\n  }\n\n  const renderProviderLogo = () => {\n    const providerLogoList = {\n      Metamask: 'metamask',\n      dfox: 'tokenpocket',\n      tokenpocket: 'tokenpocket',\n      imToken: 'imtoken',\n      Wallet: 'metamask',\n    }\n    return providerLogoList[getProvider()]\n  }\n\n  useEffect(function () {\n    const localStorageDarkMode = window.localStorage.getItem('yearn.finance-dark-mode')\n    setDarkMode(localStorageDarkMode ? localStorageDarkMode === 'dark' : false)\n  }, []);\n\n  return (\n    <div className={classes.headerContainer}>\n      {props.backClicked && (\n        <div className={classes.backButton}>\n          <Button\n            color={props.theme.palette.type === 'light' ? 'primary' : 'secondary'}\n            onClick={props.backClicked}\n            disableElevation\n          >\n            <ArrowBackIcon fontSize={'large'} />\n          </Button>\n        </div>\n      )}\n      <div className={classes.themeSelectContainer}>\n        <StyledSwitch\n          icon={<Brightness2Icon className={classes.switchIcon} />}\n          checkedIcon={<WbSunnyOutlinedIcon className={classes.switchIcon} />}\n          checked={darkMode}\n          onChange={handleToggleChange}\n        />\n      </div>\n      <Button\n        disableElevation\n        className={classes.accountButton}\n        variant='contained'\n        color='secondary'\n        onClick={onAddressClicked}\n      >\n        {account && account.address && <div className={`${classes.accountIcon} ${classes[renderProviderLogo()]}`}></div>}\n        <Typography variant='h5'>{(account && account.address) ? formatAddress(account.address) : 'Connect Wallet'}</Typography>\n      </Button>\n    </div>\n  )\n}\n\nexport default withTheme(Header)\n"
  },
  {
    "path": "components/header/header.module.css",
    "content": ".headerContainer {\n  display: flex;\n  justify-content: flex-end;\n  align-items: center;\n}\n\n.accountButton {\n  display: flex;\n  align-items: center;\n  margin-left: 12px !important;\n  min-height: 40px;\n  width: 250px;\n}\n\n.accountIcon {\n  width: 30px;\n  height: 30px;\n  background-size: 100%;\n  margin-right: 12px;\n}\n\n.metamask {\n  background-image: url('/connectors/icn-metamask.svg');\n}\n\n.dfox {\n  background-image: url('/connectors/icn-dfox.svg');\n}\n\n.tokenpocket {\n  background-image: url('/connectors/icn-tokenpocket.svg');\n}\n\n.imtoken {\n  background-image: url('/connectors/icn-imtoken.svg');\n}\n\n.ledger {\n  background-image: url('/connectors/icn-ledger.svg');\n}\n\n.coinbase {\n  background-image: url('/connectors/coinbaseWalletIcon.svg');\n}\n\n.torus {\n  background-image: url('/connectors/torus.jpg');\n}\n\n.trust {\n  background-image: url('/connectors/trustWallet.png');\n}\n\n.themeSelectContainer {\n  margin-left: 12px !important;\n}\n\n.switchIcon {\n  font-size: 1.5rem !important;\n  margin-top: 0.2rem;\n}\n\n.backButton {\n  flex: 1;\n}\n\n@media screen and (max-width: 600px) {\n  .headerContainer {\n    width: 100%;\n    display: flex;\n    justify-content: space-between;\n    margin-bottom: 10px;\n  }\n\n  .accountButton {\n    width: 100%;\n  }\n}"
  },
  {
    "path": "components/header/package.json",
    "content": "{\n  \"main\": \"header.js\"\n}\n"
  },
  {
    "path": "components/multichain/multichain.js",
    "content": "import React, { useState } from 'react';\nimport { Typography, Paper, Grid, Button, FormControlLabel, Checkbox } from '@material-ui/core'\nimport { createMuiTheme, ThemeProvider } from '@material-ui/core/styles';\nimport Skeleton from '@material-ui/lab/Skeleton';\nimport Web3 from 'web3';\nimport ArrowForwardIcon from '@material-ui/icons/ArrowForward';\nimport CloseIcon from '@material-ui/icons/Close';\n\nimport classes from './multichain.module.css'\n\nimport stores from '../../stores/index.js'\nimport { getProvider } from '../../utils'\n\nexport default function Multichain({ closeMultichain }) {\n\n  const [checked, setChecked] = useState(false)\n\n  const navigateToMultichain = () => {\n    window.open(\"https://www.transit.finance/?from=chainlist\", \"_blank\")\n  }\n\n  const handleChange = () => {\n    setChecked(!checked)\n  }\n\n  const theme = createMuiTheme({\n    palette: {\n      type: 'dark',\n      secondary: {\n        main: '#fff'\n      }\n    },\n    typography: {\n      fontFamily: [\n        'Inter',\n        'Arial',\n        '-apple-system',\n        'BlinkMacSystemFont',\n        '\"Segoe UI\"',\n        'Roboto',\n        '\"Helvetica Neue\"',\n        'sans-serif',\n        '\"Apple Color Emoji\"',\n        '\"Segoe UI Emoji\"',\n        '\"Segoe UI Symbol\"',\n      ].join(','),\n      body1: {\n        fontSize: '12px'\n      }\n    },\n    overrides: {\n      MuiButton: {\n        root: {\n          borderRadius: '32px',\n          padding: '9px 16px'\n        },\n        containedPrimary: {\n          backgroundColor: '#fff',\n          color: '#000'\n        }\n      },\n      MuiFormControlLabel: {\n        root: {\n          color: '#fff'\n        }\n      }\n    },\n  });\n\n  return (\n    <Paper elevation={1} className={classes.chainContainer} key={'multichain'} >\n      <ThemeProvider theme={theme}>\n        <div className={classes.topInfo}>\n          <img src='/chains/transit-logo.png' width={126} height={126} className={classes.avatar} />\n          <Typography variant='subtitle1' className={classes.descriptionText} align='center' >Manage over 120 tokens and multi-chain assets with fully supported cross chain transactions.</Typography>\n          <Button\n            className={classes.tryButton}\n            variant='contained'\n            disableElevation\n            onClick={navigateToMultichain}\n            color='secondary'\n            endIcon={<ArrowForwardIcon />}\n          >\n            <Typography className={classes.buttonLabel}>Try out <b>Transit.finance</b></Typography>\n          </Button>\n        </div>\n        <div className={classes.bottomActions}>\n          <FormControlLabel\n            control={<Checkbox checked={checked} onChange={handleChange} name=\"checked\" />}\n            label=\"Don't show again\"\n          />\n          <Button\n            size='small'\n            onClick={() => { closeMultichain(checked) }}\n            endIcon={<CloseIcon />}\n          >\n            <Typography className={classes.buttonLabel}>Close</Typography>\n          </Button>\n        </div>\n      </ThemeProvider>\n    </Paper>\n  )\n}\n"
  },
  {
    "path": "components/multichain/multichain.module.css",
    "content": ".chainContainer {\n  width: 100%;\n  border-radius: 10px;\n  background: #0074de !important;\n  display: flex;\n  flex-direction: column;\n\n  grid-column-start: 3;\n  grid-column-end: 4;\n  grid-row-start: 2;\n  grid-row-end: 4;\n}\n\n.tryButton {\n  width: 100%;\n  display: flex;\n  justify-content: center;\n}\n\n.descriptionText {\n  width: 100%;\n  color: #fff !important;\n}\n\n.topInfo {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: space-between;\n  flex-grow: 1;\n  padding: 30px;\n}\n\n.bottomActions {\n  border-top: 1px solid #FFFFFF1A;\n  display: flex;\n  align-items: center;\n  justify-content: space-evenly;\n  padding: 6px 24px;\n}\n\n\n.buttonLabel {\n  text-transform: none !important;\n  font-weight: 500 !important;\n}\n\n.buttonText {\n  width: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n\n\n@media screen and (max-width: 1700px) {\n  .chainContainer {\n    grid-column-start: 2;\n    grid-column-end: 3;\n    grid-row-start: 2;\n    grid-row-end: 4;\n  }\n}\n\n\n@media screen and (max-width: 600px) {\n  .chainContainer {\n    grid-column-start: 1;\n    grid-column-end: 2;\n    grid-row-start: 1;\n    grid-row-end: 2;\n  }\n}\n"
  },
  {
    "path": "components/multichain/package.json",
    "content": "{\n  \"main\": \"multichain.js\"\n}\n"
  },
  {
    "path": "components/snackbar/package.json",
    "content": "{\n  \"main\": \"snackbarController.jsx\"\n}\n"
  },
  {
    "path": "components/snackbar/snackbar.jsx",
    "content": "import React, { Component } from \"react\";\nimport {\n  Snackbar,\n  IconButton,\n  Button,\n  Typography,\n  SvgIcon\n} from '@material-ui/core';\n\nimport { colors } from \"../../theme/coreTheme\";\n\nconst iconStyle = {\n  fontSize: '22px',\n  marginRight: '10px',\n  verticalAlign: 'middle'\n}\n\nfunction CloseIcon(props) {\n  const { color } = props;\n  return (\n    <SvgIcon style={{fontSize: '22px'}}>\n      <path\n        fill={ color }\n        d=\"M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z\"\n      />\n    </SvgIcon>\n  );\n}\n\nfunction SuccessIcon(props) {\n  const { color } = props;\n  return (\n    <SvgIcon style={iconStyle}>\n      <path\n        fill={ color }\n        d=\"M12,0A12,12,0,1,0,24,12,12,12,0,0,0,12,0ZM10.75,16.518,6.25,12.2l1.4-1.435L10.724,13.7l6.105-6.218L18.25,8.892Z\"\n      />\n    </SvgIcon>\n  );\n}\n\nfunction ErrorIcon(props) {\n  const { color } = props;\n  return (\n    <SvgIcon style={iconStyle}>\n      <path\n        fill={ color }\n        d=\"M16.971,0H7.029L0,7.029V16.97L7.029,24H16.97L24,16.971V7.029L16.971,0Zm-1.4,16.945-3.554-3.521L8.5,16.992,7.079,15.574l3.507-3.566L7,8.536,8.418,7.119,12,10.577l3.539-3.583,1.431,1.431-3.535,3.568L17,15.515Z\"\n      />\n    </SvgIcon>\n  );\n}\n\nfunction WarningIcon(props) {\n  const { color } = props;\n  return (\n    <SvgIcon style={iconStyle}>\n      <path\n        fill={ color }\n        d=\"M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z\"\n      />\n    </SvgIcon>\n  );\n}\n\nfunction InfoIcon(props) {\n  const { color } = props;\n  return (\n    <SvgIcon style={iconStyle}>\n      <path\n        fill={ color }\n        d=\"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4M11,16.5L6.5,12L7.91,10.59L11,13.67L16.59,8.09L18,9.5L11,16.5\"\n      />\n    </SvgIcon>\n  );\n}\n\n\nclass MySnackbar extends Component {\n\n  state = {\n    open: this.props.open,\n  };\n\n  handleClick = () => {\n    this.setState({ open: true });\n  };\n\n  handleClose = (event, reason) => {\n    if (reason === 'clickaway') {\n      return;\n    }\n\n    this.setState({ open: false });\n  };\n\n  render() {\n\n    const { type, message } = this.props\n\n    let icon = <SuccessIcon color={colors.blue} />\n    let color = colors.blue\n    let messageType = ''\n    let actions = [\n      <IconButton\n        key=\"close\"\n        aria-label=\"Close\"\n        onClick={this.handleClose}\n      >\n        <CloseIcon />\n      </IconButton>,\n    ]\n\n    switch (type) {\n      case 'Error':\n        icon = <ErrorIcon color={colors.red} />\n        color = colors.red\n        messageType = \"Error\"\n        break;\n      case 'Success':\n        icon = <SuccessIcon color={colors.blue} />\n        color = colors.blue\n        messageType = \"Success\"\n        break;\n      case 'Warning':\n        icon = <WarningIcon color={colors.orange} />\n        color = colors.orange\n        messageType = \"Warning\"\n        break;\n      case 'Info':\n        icon = <InfoIcon color={colors.blue} />\n        color = colors.blue\n        messageType = \"Info\"\n        break;\n      case 'Hash':\n        icon = <SuccessIcon color={colors.blue} />\n        color = colors.blue\n        messageType = \"Hash\"\n\n        let snackbarMessage = 'https://etherscan.io/tx/'+message;\n        actions = [<Button variant=\"text\" size=\"small\" onClick={()=> window.open(snackbarMessage, \"_blank\")}>\n          View\n        </Button>,\n          <IconButton\n            key=\"close\"\n            aria-label=\"Close\"\n            onClick={this.handleClose}\n          >\n            <CloseIcon />\n          </IconButton>,\n        ]\n        break;\n      default:\n        icon = <SuccessIcon color={colors.blue} />\n        color = colors.blue\n        messageType = \"Success\"\n        break;\n    }\n\n    return (\n      <Snackbar\n        anchorOrigin={{\n          vertical: 'bottom',\n          horizontal: 'left',\n        }}\n        open={ this.state.open }\n        autoHideDuration={6000}\n        onClose={this.handleClose}\n        message={\n          <div style={{ padding: '12px', borderLeft: '5px solid '+color, borderRadius: '4px'}}>\n            {icon}\n            <div style={{ display: 'inline-block', verticalAlign: 'middle', maxWidth: '400px' }}>\n              <Typography variant='body1' style={{ fontSize: '12px', color: color }}>{ messageType }</Typography>\n              <Typography variant='body1' style={{ fontSize: '10px' }}>{ message }</Typography>\n            </div>\n          </div>\n        }\n        action={actions}\n      />\n    );\n  }\n}\n\nexport default MySnackbar;\n"
  },
  {
    "path": "components/snackbar/snackbarController.jsx",
    "content": "import React, { Component } from \"react\";\nimport { withStyles } from '@material-ui/core/styles';\n\nimport Snackbar from './snackbar.jsx'\n\nimport {\n  ERROR,\n  TX_SUBMITTED,\n} from '../../stores/constants'\n\nimport stores from \"../../stores\";\nconst emitter = stores.emitter\n\nconst styles = theme => ({\n  root: {\n\n  },\n});\n\nclass SnackbarController extends Component {\n\n  constructor(props) {\n    super()\n\n    this.state = {\n      open: false,\n      snackbarType: null,\n      snackbarMessage: null\n    }\n  }\n\n  componentWillMount() {\n    emitter.on(ERROR, this.showError);\n    emitter.on(TX_SUBMITTED, this.showHash);\n  }\n\n  componentWillUnmount() {\n    emitter.removeListener(ERROR, this.showError);\n    emitter.removeListener(TX_SUBMITTED, this.showHash);\n  };\n\n  showError = (error) => {\n    const snackbarObj = { snackbarMessage: null, snackbarType: null, open: false }\n    this.setState(snackbarObj)\n\n    const that = this\n    setTimeout(() => {\n      const snackbarObj = { snackbarMessage: error.toString(), snackbarType: 'Error', open: true }\n      that.setState(snackbarObj)\n    })\n  }\n\n  showHash = (txHash) => {\n    const snackbarObj = { snackbarMessage: null, snackbarType: null, open: false }\n    this.setState(snackbarObj)\n\n    const that = this\n    setTimeout(() => {\n      const snackbarObj = { snackbarMessage: txHash, snackbarType: 'Hash', open: true }\n      that.setState(snackbarObj)\n    })\n  }\n\n  render() {\n    const {\n      snackbarType,\n      snackbarMessage,\n      open\n    } = this.state\n\n    if(open) {\n      return <Snackbar type={ snackbarType } message={ snackbarMessage } open={ true } />\n    } else {\n      return <div></div>\n    }\n\n  };\n}\n\nexport default withStyles(styles)(SnackbarController);\n"
  },
  {
    "path": "components/unlock/package.json",
    "content": "{\n  \"main\": \"unlockModal.js\"\n}\n"
  },
  {
    "path": "components/unlock/unlock.js",
    "content": "import React, { Component } from \"react\";\nimport { withStyles } from '@material-ui/core/styles';\nimport {\n  Typography,\n  Button,\n  CircularProgress\n} from '@material-ui/core';\nimport CloseIcon from '@material-ui/icons/Close';\n\nimport {\n  Web3ReactProvider,\n  useWeb3React,\n} from \"@web3-react/core\";\nimport { Web3Provider } from \"@ethersproject/providers\";\n\nimport {\n  ERROR,\n  CONNECTION_DISCONNECTED,\n  CONNECTION_CONNECTED,\n  CONFIGURE,\n} from '../../stores/constants'\n\nimport stores from '../../stores'\n\nconst styles = theme => ({\n  root: {\n    flex: 1,\n    height: 'auto',\n    display: 'flex',\n    position: 'relative'\n  },\n  contentContainer: {\n    margin: 'auto',\n    textAlign: 'center',\n    padding: '12px',\n    display: 'flex',\n    flexWrap: 'wrap'\n  },\n  cardContainer: {\n    marginTop: '60px',\n    minHeight: '260px',\n    display: 'flex',\n    flexDirection: 'column',\n    justifyContent: 'space-around',\n    alignItems: 'center'\n  },\n  unlockCard: {\n    padding: '24px'\n  },\n  buttonText: {\n    marginLeft: '12px',\n    fontWeight: '700',\n  },\n  instruction: {\n    maxWidth: '400px',\n    marginBottom: '32px',\n    marginTop: '32px'\n  },\n  actionButton: {\n    padding: '12px',\n    backgroundColor: 'white',\n    borderRadius: '3rem',\n    border: '1px solid #E1E1E1',\n    fontWeight: 500,\n    [theme.breakpoints.up('md')]: {\n      padding: '15px',\n    }\n  },\n  connect: {\n    width: '100%'\n  },\n  closeIcon: {\n    position: 'absolute',\n    right: '-8px',\n    top: '-8px',\n    cursor: 'pointer'\n  }\n});\n\nclass Unlock extends Component {\n\n  constructor(props) {\n    super()\n\n    this.state = {\n      loading: false,\n      error: null\n    }\n  }\n\n  componentWillMount() {\n    stores.emitter.on(CONNECTION_CONNECTED, this.connectionConnected);\n    stores.emitter.on(CONNECTION_DISCONNECTED, this.connectionDisconnected);\n    stores.emitter.on(ERROR, this.error);\n  };\n\n  componentWillUnmount() {\n    stores.emitter.removeListener(CONNECTION_CONNECTED, this.connectionConnected);\n    stores.emitter.removeListener(CONNECTION_DISCONNECTED, this.connectionDisconnected);\n    stores.emitter.removeListener(ERROR, this.error);\n  };\n\n  error = (err) => {\n    this.setState({ loading: false, error: err })\n  };\n\n  connectionConnected = () => {\n\n    if(this.props.closeModal != null) {\n      this.props.closeModal()\n    }\n  }\n\n  connectionDisconnected = () => {\n    if(this.props.closeModal != null) {\n      this.props.closeModal()\n    }\n  }\n\n  render() {\n    const { classes, closeModal } = this.props;\n\n    return (\n      <div className={ classes.root }>\n        <div className={ classes.closeIcon } onClick={ closeModal }><CloseIcon /></div>\n        <div className={ classes.contentContainer }>\n          <Web3ReactProvider getLibrary={getLibrary}>\n            <MyComponent closeModal={ closeModal} />\n          </Web3ReactProvider>\n        </div>\n      </div>\n    )\n  };\n}\n\nfunction getLibrary(provider) {\n\n  const library = new Web3Provider(provider);\n  library.pollingInterval = 8000;\n  return library;\n}\n\nfunction onConnectionClicked(currentConnector, name, setActivatingConnector, activate) {\n  const connectorsByName = stores.accountStore.getStore('connectorsByName')\n  setActivatingConnector(currentConnector);\n  activate(connectorsByName[name]);\n}\n\nfunction onDeactivateClicked(deactivate, connector) {\n  if(deactivate) {\n    deactivate()\n  }\n  if(connector && connector.close) {\n    connector.close()\n  }\n  stores.accountStore.setStore({ account: { }, web3context: null })\n  stores.emitter.emit(CONNECTION_DISCONNECTED)\n}\n\nfunction MyComponent(props) {\n\n  const context = useWeb3React();\n  const localContext = stores.accountStore.getStore('web3context');\n  var localConnector = null;\n  if (localContext) {\n    localConnector = localContext.connector\n  }\n  const {\n    connector,\n    library,\n    account,\n    activate,\n    deactivate,\n    active,\n    error\n  } = context;\n  var connectorsByName = stores.accountStore.getStore('connectorsByName')\n\n  const { closeModal } = props\n\n  const [activatingConnector, setActivatingConnector] = React.useState();\n  React.useEffect(() => {\n    if (activatingConnector && activatingConnector === connector) {\n      setActivatingConnector(undefined);\n    }\n  }, [activatingConnector, connector]);\n\n  React.useEffect(() => {\n    if (account && active && library) {\n      stores.accountStore.setStore({ account: { address: account }, web3context: context })\n      stores.emitter.emit(CONNECTION_CONNECTED)\n    }\n  }, [account, active, closeModal, context, library]);\n\n  const width = window.innerWidth\n\n  return (\n    <div style={{ display: 'flex', flexWrap: 'wrap', justifyContent: (width > 576 ? 'space-between' : 'center'), alignItems: 'center' }}>\n      {Object.keys(connectorsByName).map(name => {\n        const currentConnector = connectorsByName[name];\n        const activating = currentConnector === activatingConnector;\n        const connected = (currentConnector === connector||currentConnector === localConnector);\n        const disabled =\n           !!activatingConnector || !!error;\n\n        let url;\n        let display = name;\n        let descriptor = ''\n        if (name === 'MetaMask') {\n          url = '/connectors/icn-metamask.svg'\n          descriptor= 'Connect to your MetaMask wallet'\n        } else if (name === 'WalletConnect') {\n          url = '/connectors/walletConnectIcon.svg'\n          descriptor= 'Scan with WalletConnect to connect'\n        } else if (name === 'TrustWallet') {\n          url = '/connectors/trustWallet.png'\n          descriptor= 'Connect to your TrustWallet'\n        } else if (name === 'Portis') {\n          url = '/connectors/portisIcon.png'\n          descriptor= 'Connect with your Portis account'\n        } else if (name === 'Fortmatic') {\n          url = '/connectors/fortmaticIcon.png'\n          descriptor= 'Connect with your Fortmatic account'\n        } else if (name === 'Ledger') {\n          url = '/connectors/icn-ledger.svg'\n          descriptor= 'Connect with your Ledger Device'\n        } else if (name === 'Squarelink') {\n          url = '/connectors/squarelink.png'\n          descriptor= 'Connect with your Squarelink account'\n        } else if (name === 'Trezor') {\n          url = '/connectors/trezor.png'\n          descriptor= 'Connect with your Trezor Device'\n        } else if (name === 'Torus') {\n          url = '/connectors/torus.jpg'\n          descriptor= 'Connect with your Torus account'\n        } else if (name === 'Authereum') {\n          url = '/connectors/icn-aethereum.svg'\n          descriptor= 'Connect with your Authereum account'\n        } else if (name === 'WalletLink') {\n          display = 'Coinbase Wallet'\n          url = '/connectors/coinbaseWalletIcon.svg'\n          descriptor= 'Connect to your Coinbase wallet'\n        } else if (name === 'Frame') {\n          return ''\n        }\n\n        return (\n          <div key={name} style={{ padding: '0px', display: 'flex', margin: (width > 576 ? '12px 0px' : '0px') }}>\n            <Button style={ {\n                width: ( width > 576 ? '350px' : 'calc(100vw - 100px)'),\n                height: '160px'\n              } }\n              variant='contained'\n              onClick={() => {\n                onConnectionClicked(currentConnector, name, setActivatingConnector, activate)\n              }}\n              disableElevation\n              color='secondary'\n              disabled={ disabled }>\n              <div style={{\n                height: '130px',\n                width: '100%',\n                display: 'flex',\n                flexDirection: 'column',\n                alignItems: 'center',\n                justifyContent: 'space-evenly'\n              }}>\n                <img style={{\n                    width: '40px',\n                    height: '40px'\n                  }} src={url} alt=\"\"/>\n                <Typography variant={ 'h2'}>\n                  { display }\n                </Typography>\n                <Typography variant={ 'body2'}>\n                  { descriptor }\n                </Typography>\n                { activating && <CircularProgress size={ 15 } style={{marginRight: '10px'}} /> }\n                { (!activating && connected) && <div style={{ background: '#4caf50', borderRadius: '10px', width: '10px', height: '10px', marginRight: '10px' }}></div> }\n              </div>\n            </Button>\n          </div>\n        )\n      }) }\n    </div>\n  )\n\n}\n\nexport default withStyles(styles)(Unlock);\n"
  },
  {
    "path": "components/unlock/unlockModal.js",
    "content": "import React, { Component } from \"react\";\nimport {\n  DialogContent,\n  Dialog,\n  Slide\n} from '@material-ui/core';\n\nimport Unlock from './unlock.js';\n\nfunction Transition(props) {\n  return <Slide direction=\"up\" {...props} />;\n}\n\nclass UnlockModal extends Component {\n  render() {\n    const { closeModal, modalOpen } = this.props;\n\n    const fullScreen = window.innerWidth < 576;\n\n    return (\n      <Dialog open={ modalOpen } onClose={ closeModal } fullWidth={ true } maxWidth={ 'sm' } TransitionComponent={ Transition } fullScreen={ fullScreen }>\n        <DialogContent>\n          <Unlock closeModal={ closeModal } />\n        </DialogContent>\n      </Dialog>\n    )\n  };\n}\n\nexport default UnlockModal;\n"
  },
  {
    "path": "eslint.config.mjs",
    "content": "import jsonc from \"eslint-plugin-jsonc\";\nimport jsoncParser from \"jsonc-eslint-parser\";\n\nexport default [\n    {\n        files: [\"chains.json\"],\n        languageOptions: {\n            parser: jsoncParser,\n        },\n        plugins: {\n            jsonc,\n        },\n        rules: {\n            \"jsonc/auto\": \"error\",\n            \"jsonc/comma-dangle\": \"error\"\n        }\n    },\n];"
  },
  {
    "path": "next.config.js",
    "content": "module.exports = {\n    // Use the CDN in production and localhost for development.\n    // assetPrefix: 'https://tp-lab.tokenpocket.pro/NetworkList/',\n    basePath: '',\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"networklist\",\n  \"version\": \"1.0.0\",\n  \"private\": true,\n  \"scripts\": {\n    \"dev\": \"next dev\",\n    \"build\": \"next build\",\n    \"export\": \"next export\",\n    \"build2\": \"next build && next export\",\n    \"start\": \"next start\"\n  },\n  \"dependencies\": {\n    \"@material-ui/core\": \"^4.11.3\",\n    \"@material-ui/icons\": \"^4.11.2\",\n    \"@material-ui/lab\": \"^4.0.0-alpha.57\",\n    \"flux\": \"^4.0.1\",\n    \"next\": \"10.0.7\",\n    \"react\": \"17.0.1\",\n    \"react-dom\": \"17.0.1\",\n    \"swr\": \"^0.5.6\",\n    \"web3\": \"^1.3.4\"\n  },\n  \"devDependencies\": {\n    \"eslint-plugin-jsonc\": \"^2.16.0\",\n    \"jsonc-eslint-parser\": \"^2.4.0\"\n  }\n}\n"
  },
  {
    "path": "pages/_app.js",
    "content": "import React, { useState, useEffect } from 'react';\nimport { ThemeProvider } from '@material-ui/core/styles';\nimport CssBaseline from '@material-ui/core/CssBaseline';\n\nimport SnackbarController from '../components/snackbar'\n\nimport stores from '../stores/index.js'\n\nimport {\n  CONFIGURE,\n} from '../stores/constants'\n\nimport '../styles/globals.css'\n\nimport lightTheme from '../theme/light';\nimport darkTheme from '../theme/dark';\n\nfunction MyApp({ Component, pageProps }) {\n  const [ themeConfig, setThemeConfig ] = useState(lightTheme);\n\n  const changeTheme = (dark) => {\n    setThemeConfig(dark ? darkTheme : lightTheme)\n    localStorage.setItem(\"yearn.finance-dark-mode\", dark ? \"dark\" : \"light\");\n  }\n\n  useEffect(function() {\n    const localStorageDarkMode = window.localStorage.getItem(\n      \"yearn.finance-dark-mode\"\n    );\n    changeTheme(localStorageDarkMode ? localStorageDarkMode === \"dark\" : false);\n  }, []);\n\n  useEffect(function() {\n    stores.dispatcher.dispatch({ type: CONFIGURE })\n  },[]);\n\n  return (\n    <ThemeProvider theme={ themeConfig }>\n      <CssBaseline />\n      <Component {...pageProps} changeTheme={ changeTheme } />\n        <SnackbarController />\n    </ThemeProvider>\n  )\n}\n\nexport default MyApp\n"
  },
  {
    "path": "pages/_document.js",
    "content": "/* eslint-disable react/jsx-filename-extension */\nimport React from 'react';\nimport Document, { Html, Head, Main, NextScript } from 'next/document';\nimport { ServerStyleSheets } from '@material-ui/core/styles';\n\nexport default class MyDocument extends Document {\n  render() {\n    return (\n      <Html lang=\"en\">\n        <Head>\n          <script src=\"/hm.js\"></script>\n          <link rel=\"stylesheet\" href=\"/fonts/Inter/Inter.css\" />\n          <link rel=\"stylesheet\" href=\"/fonts/Druk/Druk.css\" />\n        </Head>\n        <body>\n          <Main />\n          <NextScript />\n        </body>\n      </Html>\n    );\n  }\n}\n\n// `getInitialProps` belongs to `_document` (instead of `_app`),\n// it's compatible with server-side generation (SSG).\nMyDocument.getInitialProps = async (ctx) => {\n\n  // Render app and page and get the context of the page with collected side effects.\n  const sheets = new ServerStyleSheets();\n  const originalRenderPage = ctx.renderPage;\n\n  ctx.renderPage = () => originalRenderPage({\n    enhanceApp: (App) => (props) => sheets.collect(<App {...props} />),\n  });\n\n  const initialProps = await Document.getInitialProps(ctx);\n\n  return {\n    ...initialProps,\n    // Styles fragment is rendered after the app and page rendering finish.\n    styles: [...React.Children.toArray(initialProps.styles), sheets.getStyleElement()],\n  };\n};\n"
  },
  {
    "path": "pages/index.js",
    "content": "import React, { useState, useEffect } from 'react';\nimport Head from 'next/head'\nimport { useRouter } from 'next/router'\nimport styles from '../styles/Home.module.css'\nimport { withTheme, createMuiTheme, ThemeProvider } from '@material-ui/core/styles';\nimport path from 'path'\nimport {\n  Grid,\n  Typography,\n  Button,\n  TextField,\n  InputAdornment,\n  Paper\n} from '@material-ui/core'\nimport ToggleButton from '@material-ui/lab/ToggleButton';\nimport ToggleButtonGroup from '@material-ui/lab/ToggleButtonGroup';\nimport Chain from '../components/chain'\nimport MultiChain from '../components/multichain'\nimport Header from '../components/header'\n\nimport SearchIcon from '@material-ui/icons/Search';\nimport AppsIcon from '@material-ui/icons/Apps';\nimport ListIcon from '@material-ui/icons/List';\nimport AddIcon from '@material-ui/icons/Add';\nimport useSWR from 'swr'\n\nimport classes from './index.module.css'\n\n// import data from '../chains.json'\n\nconst searchTheme = createMuiTheme({\n  palette: {\n    type: 'light',\n    primary: {\n      main: '#2F80ED',\n    },\n  },\n  shape: {\n    borderRadius: '10px'\n  },\n  typography: {\n    fontFamily: [\n      'Inter',\n      'Arial',\n      '-apple-system',\n      'BlinkMacSystemFont',\n      '\"Segoe UI\"',\n      'Roboto',\n      '\"Helvetica Neue\"',\n      'sans-serif',\n      '\"Apple Color Emoji\"',\n      '\"Segoe UI Emoji\"',\n      '\"Segoe UI Symbol\"',\n    ].join(','),\n    body1: {\n      fontSize: '12px'\n    }\n  },\n  overrides: {\n    MuiPaper: {\n      elevation1: {\n        \"box-shadow\": '0px 7px 7px #0000000A;',\n        \"-webkit-box-shadow\": '0px 7px 7px #0000000A;',\n        \"-moz-box-shadow\": '0px 7px 7px #0000000A;',\n      }\n    },\n    MuiInputBase: {\n      input: {\n        fontSize: '14px'\n      },\n    },\n    MuiOutlinedInput: {\n      input: {\n        padding: '12.5px 14px'\n      },\n      notchedOutline: {\n        borderColor: \"#FFF\",\n      }\n    },\n  },\n});\n\nconst fetcher = (...args) => fetch(...args).then(res => res.json())\n\nfunction Home({ changeTheme, theme }) {\n  const { data, error } = useSWR('https://tp-statics.tokenpocket.pro/chains.json', fetcher)\n\n  const [layout, setLayout] = useState('grid')\n  const [search, setSearch] = useState('')\n  const [hideMultichain, setHideMultichain] = useState('1')\n  const router = useRouter()\n  if (router.query.search) {\n    setSearch(router.query.search)\n    delete router.query.search\n  }\n\n  const onSearchChanged = (event) => {\n    setSearch(event.target.value)\n  }\n\n  const handleLayoutChanged = (event, newVal) => {\n    if (newVal !== null) {\n      setLayout(newVal)\n      localStorage.setItem('yearn.finance-invest-layout', newVal ? newVal : '')\n    }\n  }\n\n  const addNetwork = () => {\n    window.open('https://github.com/TP-Lab/networklist-org/', '_blank')\n  }\n\n  const closeMultichain = (perma) => {\n    setHideMultichain('1')\n    localStorage.setItem('chainlist.org-hideMultichain', perma ? '1' : '0')\n  }\n\n  useEffect(() => {\n    const multi = localStorage.getItem('chainlist.org-hideMultichain')\n    if (multi) {\n      setHideMultichain(multi)\n    } else {\n      setHideMultichain('0')\n    }\n  }, [])\n\n  return (\n    <div className={styles.container}>\n      <Head>\n        <title>Chainlist</title>\n        <link rel=\"icon\" href=\"/favicon.png\" />\n      </Head>\n\n      <main className={styles.main}>\n        <div className={theme.palette.type === 'dark' ? classes.containerDark : classes.container}>\n          <div className={classes.copyContainer}>\n            <div className={classes.copyCentered}>\n              <Typography variant='h1' className={classes.chainListSpacing}><span className={classes.helpingUnderline}>Chainlist</span></Typography>\n              <Typography variant='h2' className={classes.helpingParagraph}>Helping users connect to EVM powered networks</Typography>\n              <Typography className={classes.subTitle}>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.</Typography>\n\n              <Button\n                size='large'\n                color='primary'\n                variant='contained'\n                className={classes.addNetworkButton}\n                onClick={addNetwork}\n                endIcon={<AddIcon />}\n              >\n                <Typography className={classes.buttonLabel}>Add Your Network</Typography>\n              </Button>\n\n              <a target=\"_blank\" href=\"https://help.tokenpocket.pro/en/wallet-operation/how-to-add-custom-network\" ><img style={{ width: '90%', marginTop: '36px' }} src=\"https://chainlist.tokenpocket.pro/add-to-tokenpocket.png\" /></a>\n\n              <div className={classes.socials}>\n                <a className={`${classes.socialButton}`} href='https://github.com/TP-Lab/networklist-org/' target='_blank' rel=\"noopener noreferrer\" >\n                  <svg version=\"1.1\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\">\n                    <path fill={'#2F80ED'} d=\"M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z\" />\n                  </svg>\n                  <Typography variant='body1' className={classes.sourceCode}>View Source Code</Typography>\n                </a>\n                <Typography variant='subtitle1' className={classes.version}>Version 1.0.7</Typography>\n              </div>\n            </div>\n          </div>\n          <div className={theme.palette.type === 'dark' ? classes.listContainerDark : classes.listContainer}>\n            <div className={theme.palette.type === 'dark' ? classes.headerContainerDark : classes.headerContainer}>\n              <div className={classes.filterRow}>\n                <ThemeProvider theme={searchTheme}>\n                  <Paper className={classes.searchPaper}>\n                    <TextField\n                      fullWidth\n                      className={classes.searchContainer}\n                      variant=\"outlined\"\n                      placeholder=\"ETH, Fantom, ...\"\n                      value={search}\n                      onChange={onSearchChanged}\n                      InputProps={{\n                        endAdornment: <InputAdornment position=\"end\">\n                          <SearchIcon fontSize=\"small\" />\n                        </InputAdornment>,\n                        startAdornment: <InputAdornment position=\"start\">\n                          <Typography className={classes.searchInputAdnornment}>\n                            Search Networks\n                          </Typography>\n                        </InputAdornment>\n                      }}\n                    />\n                  </Paper>\n                </ThemeProvider>\n              </div>\n              <Header changeTheme={changeTheme} />\n            </div>\n            <div className={classes.cardsContainer}>\n              {hideMultichain === '0' && <MultiChain closeMultichain={closeMultichain} />}\n              {\n                data && data.filter((chain) => {\n                  if (search === '') {\n                    return true\n                  } else {\n                    //filter\n                    return (chain.chain.toLowerCase().includes(search.toLowerCase()) ||\n                      chain.chainId.toString().toLowerCase().includes(search.toLowerCase()) ||\n                      chain.name.toLowerCase().includes(search.toLowerCase()) ||\n                      (chain.nativeCurrency ? chain.nativeCurrency.symbol : '').toLowerCase().includes(search.toLowerCase()))\n                  }\n                }).map((chain, idx) => {\n                  return <Chain chain={chain} key={idx} />\n                })\n              }\n            </div>\n          </div>\n        </div>\n      </main>\n    </div>\n  )\n}\n\nexport default withTheme(Home)\n\n// export const getStaticProps  = async () => {\n//\n//   try {\n//     const chainsResponse = await fetch('https://chainid.network/chains.json')\n//     const chainsJson = await chainsResponse.json()\n//\n//     return {\n//       props: {\n//         chains: chainsJson\n//       },\n//       revalidate: 60,\n//     }\n//   } catch (ex) {\n//     return {\n//       props: {\n//         chains: []\n//       }\n//     }\n//   }\n//\n// }\n"
  },
  {
    "path": "pages/index.module.css",
    "content": ".container {\n  display: grid;\n  grid-template-columns: 700px calc(100vw - 717px);\n  position: relative;\n  box-sizing: border-box;\n}\n\n.containerDark {\n  display: grid;\n  grid-template-columns: 700px calc(100vw - 717px);\n  position: relative;\n  box-sizing: border-box;\n  background: #2b2e3c;\n}\n\n.copyContainer {\n  display: flex;\n  flex-direction: column;\n  position: sticky;\n  justify-content: center;\n  align-items: center;\n  min-height: 100vh;\n  height: fit-content;\n  top: 0;\n}\n\n.copyCentered {\n  width: 425px;\n}\n\n.headerContainer {\n  width: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  padding-bottom: 48px;\n  padding-top: 24px;\n  position: sticky;\n  top: 0;\n  background: linear-gradient(rgba(243, 243, 243, 1) 90%, rgba(243, 243, 243, 0) 100%);\n  padding: 24px 80px 48px 80px;\n  z-index: 1;\n}\n\n.headerContainerDark {\n  width: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  padding-bottom: 48px;\n  padding-top: 24px;\n  position: sticky;\n  top: 0;\n  background: linear-gradient(rgba(35, 37, 46, 1) 90%, rgba(35, 37, 46, 0) 100%);\n  padding: 24px 80px 48px 80px;\n  z-index: 1;\n}\n\n.listContainer {\n  min-height: 100vh;\n  width: 100%;\n  align-items: flex-start;\n  background: #f3f3f3;\n  padding: 0px 24px 24px;\n}\n\n.listContainerDark {\n  min-height: 100vh;\n  width: 100%;\n  align-items: flex-start;\n  background: #23252e;\n  padding: 0px 24px;\n}\n\n.cardsContainer {\n  padding: 0px 80px;\n  display: grid;\n  grid-template-columns: calc(33% - 15px) calc(33% - 15px) calc(33% - 15px);\n  gap: 30px;\n  max-width: 1400px;\n}\n\n.chainListSpacing {\n  margin-bottom: 21px !important;\n}\n\n.helpingUnderline {\n  color: #2f80ed;\n}\n\n.helpingParagraph {\n  margin-bottom: 30px !important;\n  max-width: 320px;\n}\n\n.addNetworkButton {\n  margin-top: 50px !important;\n  width: fit-content;\n}\n\n.filterRow {\n  display: flex;\n  align-items: center;\n  justify-content: flex-end;\n  width: 100%;\n  flex: 1;\n}\n\n.searchContainer {\n  margin-right: 24px !important;\n}\n\n.socials {\n  margin-top: 50px;\n}\n\n.socialButton {\n  display: flex;\n  align-items: center;\n}\n\n.sourceCode {\n  padding-left: 6px;\n}\n\n.version {\n  padding-left: 30px;\n}\n\n.searchPaper {\n  width: 100%;\n}\n\n.searchInputAdnornment {\n  font-size: 14px !important;\n  font-weight: bold !important;\n}\n\n.buttonLabel {\n  text-transform: capitalize !important;\n  font-weight: 500 !important;\n}\n\n.buttonText {\n  width: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n\n@media screen and (max-width: 1700px) {\n  .cardsContainer {\n    grid-template-columns: calc(50% - 15px) calc(50% - 15px);\n  }\n}\n\n@media screen and (max-width: 1500px) {\n  .container {\n    grid-template-columns: 500px calc(100vw - 517px);\n  }\n\n  .containerDark {\n    grid-template-columns: 500px calc(100vw - 517px);\n  }\n\n  .headerContainer,\n  .headerContainerDark {\n    padding: 24px 48px 48px 48px;\n  }\n\n  .cardsContainer {\n    padding: 0px 48px 48px;\n  }\n}\n\n@media screen and (max-width: 1200px) {\n  .container {\n    display: flex;\n    flex-direction: column;\n  }\n\n  .containerDark {\n    display: flex;\n    flex-direction: column;\n  }\n\n  .copyContainer {\n    position: relative;\n    top: 0px;\n    min-height: 100vh;\n  }\n\n  .copyCentered {\n    position: static;\n    padding-bottom: 0px;\n  }\n\n  .listContainer {\n    width: calc(100vw - 17px);\n    padding: 0px;\n  }\n\n  .listContainerDark {\n    width: calc(100vw - 17px);\n    padding: 0px;\n  }\n\n  .socials {\n    position: relative;\n    margin-top: calc(2em + 10px);\n    bottom: 0px;\n  }\n}\n\n@media screen and (max-width: 600px) {\n  .copyContainer,\n  .socialButton,\n  .version,\n  .socials {\n    max-width: 100vw;\n  }\n  .copyContainer {\n    text-align: center;\n  }\n  .cardsContainer {\n    padding: 0 20px 20px;\n  }\n  .helpingParagraph {\n    margin: 10px !important;\n    max-width: 100vw;\n  }\n  .copyCentered {\n    max-width: 100vw;\n  }\n  .subTitle {\n    padding: 0 10px;\n  }\n  .socialButton {\n    text-align: center;\n    justify-content: center;\n  }\n  .version {\n    padding-left: 0;\n  }\n  .cardsContainer {\n    grid-template-columns: 100%;\n  }\n  .listContainer,\n  .listContainerDark {\n    width: 100vw;\n  }\n  .headerContainer,\n  .headerContainerDark {\n    display: flex;\n    flex-direction: column-reverse;\n    padding: 20px;\n  }\n}\n"
  },
  {
    "path": "public/fonts/Druk/Druk.css",
    "content": "@font-face {\n  font-family: \"Druk Wide Bold\";\n  src: url(\"/fonts/Druk/Druk Wide Bold.ttf\");\n  font-style: normal;\n  font-weight: 400;\n  font-display: swap;\n}\n"
  },
  {
    "path": "public/fonts/Inter/Inter.css",
    "content": "@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 100;\n  font-display: swap;\n  src: url(\"Inter-Thin.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Thin.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 100;\n  font-display: swap;\n  src: url(\"Inter-ThinItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-ThinItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 200;\n  font-display: swap;\n  src: url(\"Inter-ExtraLight.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-ExtraLight.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 200;\n  font-display: swap;\n  src: url(\"Inter-ExtraLightItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-ExtraLightItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 300;\n  font-display: swap;\n  src: url(\"Inter-Light.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Light.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 300;\n  font-display: swap;\n  src: url(\"Inter-LightItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-LightItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 400;\n  font-display: swap;\n  src: url(\"Inter-Regular.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Regular.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 400;\n  font-display: swap;\n  src: url(\"Inter-Italic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Italic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 500;\n  font-display: swap;\n  src: url(\"Inter-Medium.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Medium.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 500;\n  font-display: swap;\n  src: url(\"Inter-MediumItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-MediumItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 600;\n  font-display: swap;\n  src: url(\"Inter-SemiBold.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-SemiBold.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 600;\n  font-display: swap;\n  src: url(\"Inter-SemiBoldItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-SemiBoldItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 700;\n  font-display: swap;\n  src: url(\"Inter-Bold.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Bold.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 700;\n  font-display: swap;\n  src: url(\"Inter-BoldItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-BoldItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 800;\n  font-display: swap;\n  src: url(\"Inter-ExtraBold.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-ExtraBold.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 800;\n  font-display: swap;\n  src: url(\"Inter-ExtraBoldItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-ExtraBoldItalic.woff?v=3.17\") format(\"woff\");\n}\n\n@font-face {\n  font-family: 'Inter';\n  font-style:  normal;\n  font-weight: 900;\n  font-display: swap;\n  src: url(\"Inter-Black.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-Black.woff?v=3.17\") format(\"woff\");\n}\n@font-face {\n  font-family: 'Inter';\n  font-style:  italic;\n  font-weight: 900;\n  font-display: swap;\n  src: url(\"Inter-BlackItalic.woff2?v=3.17\") format(\"woff2\"),\n       url(\"Inter-BlackItalic.woff?v=3.17\") format(\"woff\");\n}\n\n/* -------------------------------------------------------\nVariable font.\nUsage:\n\n  html { font-family: 'Inter', sans-serif; }\n  @supports (font-variation-settings: normal) {\n    html { font-family: 'Inter var', sans-serif; }\n  }\n*/\n@font-face {\n  font-family: 'Inter var';\n  font-weight: 100 900;\n  font-display: swap;\n  font-style: normal;\n  font-named-instance: 'Regular';\n  src: url(\"Inter-roman.var.woff2?v=3.17\") format(\"woff2\");\n}\n@font-face {\n  font-family: 'Inter var';\n  font-weight: 100 900;\n  font-display: swap;\n  font-style: italic;\n  font-named-instance: 'Italic';\n  src: url(\"Inter-italic.var.woff2?v=3.17\") format(\"woff2\");\n}\n\n\n/* --------------------------------------------------------------------------\n[EXPERIMENTAL] Multi-axis, single variable font.\n\nSlant axis is not yet widely supported (as of February 2019) and thus this\nmulti-axis single variable font is opt-in rather than the default.\n\nWhen using this, you will probably need to set font-variation-settings\nexplicitly, e.g.\n\n  * { font-variation-settings: \"slnt\" 0deg }\n  .italic { font-variation-settings: \"slnt\" 10deg }\n\n*/\n@font-face {\n  font-family: 'Inter var experimental';\n  font-weight: 100 900;\n  font-display: swap;\n  font-style: oblique 0deg 10deg;\n  src: url(\"Inter.var.woff2?v=3.17\") format(\"woff2\");\n}\n"
  },
  {
    "path": "public/hm.js",
    "content": "var _hmt = _hmt || [];\n(function () {\n    var hm = document.createElement(\"script\");\n    hm.src = \"https://hm.baidu.com/hm.js?c16d2338c63a2782d9491fb51dfac97a\";\n    var s = document.getElementsByTagName(\"script\")[0];\n    s.parentNode.insertBefore(hm, s);\n})();\n\n"
  },
  {
    "path": "stores/accountStore.js",
    "content": "import {\n  ERROR,\n  STORE_UPDATED,\n  CONFIGURE,\n  ACCOUNT_CONFIGURED,\n  ACCOUNT_CHANGED,\n  TRY_CONNECT_WALLET,\n} from './constants';\n\nimport stores from './'\n\nimport Web3 from 'web3';\n\nclass Store {\n  constructor(dispatcher, emitter) {\n\n    this.dispatcher = dispatcher\n    this.emitter = emitter\n\n    this.store = {\n      account: null,\n      web3: null,\n    }\n\n    dispatcher.register(\n      function (payload) {\n        switch (payload.type) {\n          case CONFIGURE:\n            this.configure(payload);\n            break;\n          case TRY_CONNECT_WALLET:\n            this.tryConnectWallet(payload)\n            break;\n          default: {\n          }\n        }\n      }.bind(this)\n    );\n  }\n\n  getStore(index) {\n    return(this.store[index]);\n  };\n\n  setStore(obj) {\n    this.store = {...this.store, ...obj}\n    return this.emitter.emit(STORE_UPDATED);\n  };\n\n  configure = async () => {\n    // if (window.ethereum) {\n    //   window.web3 = new Web3(ethereum);\n    //   try {\n    //     await ethereum.enable();\n    //     var accounts= await web3.eth.getAccounts();\n    //     this.setStore({ account: { address: accounts[0] }, web3: window.web3 })\n    //     this.emitter.emit(ACCOUNT_CONFIGURED)\n    //   } catch (error) {\n    //     // User denied account access...\n    //   }\n    //\n    //   this.updateAccount()\n    //\n    // } else if (window.web3) {\n    //   window.web3 = new Web3(web3.currentProvider);\n    //   // Acccounts always exposed\n    //   web3.eth.sendTransaction({/* ... */});\n    // }\n    // // Non-dapp browsers...\n    // else {\n    //   console.log('Non-Ethereum browser detected. You should consider trying MetaMask!');\n    // }\n  };\n\n  updateAccount = () => {\n    const that = this\n    const res = window.ethereum.on('accountsChanged', function (accounts) {\n      that.setStore({ account: { address: accounts[0] } })\n      that.emitter.emit(ACCOUNT_CHANGED)\n      that.emitter.emit(ACCOUNT_CONFIGURED)\n    })\n  }\n\n  getWeb3Provider = async () => {\n    let web3context = this.getStore('web3context')\n    let provider = null\n\n    if(!web3context) {\n      provider = network.providers['1']\n    } else {\n      provider = web3context.library.provider\n    }\n\n    if(!provider) {\n      return null\n    }\n    return new Web3(provider);\n\n  }\n\n  tryConnectWallet = async () => {\n    if (window.ethereum) {\n      window.web3 = new Web3(ethereum);\n      try {\n        await ethereum.enable();\n        var accounts= await web3.eth.getAccounts();\n        this.setStore({ account: { address: accounts[0] }, web3: window.web3 })\n        this.emitter.emit(ACCOUNT_CONFIGURED)\n      } catch (error) {\n          // User denied account access...\n      }\n    }\n    // Legacy dapp browsers...\n    else if (window.web3) {\n      window.web3 = new Web3(web3.currentProvider);\n      var accounts= await web3.eth.getAccounts();\n      this.setStore({ account: { address: accounts[0] }, web3: window.web3 })\n      this.emitter.emit(ACCOUNT_CONFIGURED)\n    }\n    // Non-dapp browsers...\n    else {\n      console.log('Non-Ethereum browser detected. You should consider trying MetaMask!');\n    }\n  }\n}\n\nexport default Store;\n"
  },
  {
    "path": "stores/connectors/connectors.js",
    "content": "import { InjectedConnector } from \"@web3-react/injected-connector\";\n\nexport const injected = new InjectedConnector({\n  supportedChainIds: [1, 3, 4, 5, 42]\n});\n"
  },
  {
    "path": "stores/connectors/package.json",
    "content": "{\n  \"main\": \"connectors.js\"\n}\n"
  },
  {
    "path": "stores/constants/constants.js",
    "content": "// GENERAL\nexport const ERROR = 'ERROR'\nexport const CONNECTION_CONNECTED = 'CONNECTION_CONNECTED'\nexport const CONNECTION_DISCONNECTED = 'CONNECTION_DISCONNECTED'\nexport const CONNECT_WALLET = 'CONNECT_WALLET'\n\nexport const CONFIGURE = 'CONFIGURE'\nexport const ACCOUNT_CONFIGURED = 'ACCOUNT_CONFIGURED'\n\nexport const CONFIGURE_NETWORK_LIST = 'CONFIGURE_NETWORK_LIST'\nexport const NETWORK_LIST_CONFIGURED = 'NETWORK_LIST_CONFIGURED'\n\nexport const STORE_UPDATED = 'STORE_UPDATED'\nexport const ACCOUNT_CHANGED = 'ACCOUNT_CHANGED'\nexport const TRY_CONNECT_WALLET = 'TRY_CONNECT_WALLET'\n\nexport const TX_SUBMITTED = 'TX_SUBMITTED'\n"
  },
  {
    "path": "stores/constants/package.json",
    "content": "{\n  \"main\": \"constants.js\"\n}\n"
  },
  {
    "path": "stores/index.js",
    "content": "import AccountStore from \"./accountStore\";\n\nconst Dispatcher = require('flux').Dispatcher;\nconst Emitter = require('events').EventEmitter;\n\nconst dispatcher = new Dispatcher();\nconst emitter = new Emitter();\n\nconst accountStore = new AccountStore(dispatcher, emitter)\n\nexport default {\n  accountStore: accountStore,\n  dispatcher: dispatcher,\n  emitter: emitter\n};\n"
  },
  {
    "path": "styles/Home.module.css",
    "content": ".container {\n  min-height: 100vh;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  align-items: center;\n}\n\n.main {\n  flex: 1;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  align-items: center;\n  width: 100%;\n}\n"
  },
  {
    "path": "styles/globals.css",
    "content": "html,\nbody {\n  padding: 0;\n  margin: 0;\n  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,\n    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;\n}\n\na {\n  color: inherit;\n  text-decoration: none;\n}\n\n* {\n  box-sizing: border-box;\n}\n"
  },
  {
    "path": "theme/coreTheme.js",
    "content": "import { createMuiTheme } from '@material-ui/core/styles';\n\nexport const colors = {\n  blue: \"#2F80ED\",\n  red: '#ed4337',\n  orange: '#ffb347',\n  lightBlack: 'rgba(0, 0, 0, 0.87)'\n};\n\nconst coreTheme = {\n  breakpoints: {\n    values: {\n      xs: 0,\n      sm: 600,\n      md: 1024,\n      lg: 1600,\n      xl: 1920,\n    },\n  },\n  shape: {\n    borderRadius: '10px'\n  },\n  typography: {\n    fontFamily: [\n      'Inter',\n      'Arial',\n      '-apple-system',\n      'BlinkMacSystemFont',\n      '\"Segoe UI\"',\n      'Roboto',\n      '\"Helvetica Neue\"',\n      'sans-serif',\n      '\"Apple Color Emoji\"',\n      '\"Segoe UI Emoji\"',\n      '\"Segoe UI Symbol\"',\n    ].join(','),\n    h1: {\n      fontFamily: [\n        '\"Helvetica Neue\"',\n        'Inter',\n      ],\n      fontSize: '60px',\n      fontWeight: 700,\n      lineHeight: 1.167,\n      letterSpacing: '1px'\n    },\n    h2: {\n      fontSize: '24px',\n      fontWeight: 700,\n      lineHeight: 1.167\n    },\n    h3: {\n      fontFamily: [\n        'Inter',\n      ],\n      fontSize: '20px',\n      fontWeight: 600\n    },\n    h4: {\n      fontSize: '1.5rem',\n      fontWeight: 600,\n      lineHeight: 1.167\n    },\n    h5: {   // card headers\n      fontSize: '15px',\n      fontWeight: 700,\n      lineHeight: 1.167\n    },\n    h6: {   // card headers\n      fontSize: '1.5rem',\n      fontWeight: 700,\n      lineHeight: 1.167,\n      letterSpacing: '2px',\n      ['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key\n        fontSize: '1.2rem'\n      }\n    },\n    subtitle1: {\n      fontSize: '14px',\n      fontWeight: 300,\n      lineHeight: 1.167,\n      ['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key\n        fontSize: '0.7rem'\n      }\n    },\n    body1: {\n      fontSize: '16px',\n      fontWeight: 500,\n      lineHeight: 1.7,\n      ['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key\n        fontSize: '0.8rem'\n      }\n    }\n  },\n  palette: {\n    primary: {\n      main: 'rgba(0, 0, 0, 0.87)',\n    },\n    secondary: {\n      main: '#EFEFEF',\n    },\n    error: {\n      main: '#dc3545'\n    }\n  },\n  overrides: {\n    MuiPaper: {\n      elevation1: {\n        \"box-shadow\": '0px 7px 7px #0000000A;',\n        \"-webkit-box-shadow\": '0px 7px 7px #0000000A;',\n        \"-moz-box-shadow\": '0px 7px 7px #0000000A;',\n      }\n    },\n    MuiOutlinedInput: {\n      input: {\n        padding: '12.5px 14px'\n      }\n    },\n    MuiTooltip: {\n      tooltip: {\n        maxWidth: 'none',\n      }\n    },\n    MuiButton: {\n      sizeLarge: {\n        borderRadius: '50px',\n        width: '260px',\n        height: '60px'\n      },\n      root: {\n        minWidth: '50px',\n        borderRadius: '32px'\n      },\n      outlinedSizeSmall: {\n        fontSize: '0.7rem',\n        padding: '6px 9px',\n        ['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key\n          padding: '3px 0px',\n        }\n      },\n      textSizeLarge: {\n        fontSize: '2.4rem',\n        ['@media (max-width:576px)']: { // eslint-disable-line no-useless-computed-key\n          fontSize: '2rem'\n        }\n      },\n      label: {\n        textTransform: 'capitalize'\n      },\n      outlinedPrimary: {\n        border: '1px solid #EAEAEA',\n        \"&:hover\": {\n          backgroundColor: colors.blue+' !important',\n          color: '#fff'\n        }\n      }\n    },\n    MuiDialog: {\n      paperWidthSm: {\n        maxWidth: '800px'\n      }\n    },\n    MuiToggleButton: {\n      root: {\n        flex: 1,\n        padding: '9px 6px'\n      }\n    },\n    MuiSnackbar : {\n      root: {\n        maxWidth: 'calc(100vw - 24px)'\n      },\n      anchorOriginBottomLeft: {\n        bottom: '12px',\n        left: '12px',\n        '@media (min-width: 960px)': {\n          bottom: '50px',\n          left: '80px'\n        }\n      }\n    },\n    MuiInputBase: {\n      input: {\n        fontSize: '14px'\n      },\n      root: {\n        margin: '0px',\n        '&:before': { //underline color when textfield is inactive\n          borderBottom: 'none !important',\n          height: '0px'\n        },\n        '&:after': { //underline color when textfield is inactive\n          borderBottom: 'none !important',\n          height: '0px'\n        },\n      }\n    },\n    MuiAccordion: {\n      root: {\n        margin: '0px',\n        '&:before': { //underline color when textfield is inactive\n          backgroundColor: 'none',\n          height: '0px'\n        },\n        '&$expanded': {\n          margin: '0px'\n        }\n      }\n    },\n    MuiAccordionSummary: {\n      root: {\n        padding: '0px 24px',\n        '@media (max-width:576px)': {\n          padding: '0px 6px',\n        }\n      },\n      content: {\n        margin: '0px !important'\n      }\n    },\n    MuiAccordionDetails: {\n      root: {\n        padding: '0',\n      }\n    },\n    MuiFormHelperText: {\n      contained: {\n        textAlign: 'end'\n      }\n    }\n  }\n}\n\n\nexport default coreTheme;\n"
  },
  {
    "path": "theme/dark.js",
    "content": "import { createMuiTheme } from '@material-ui/core/styles';\nimport coreTheme from './coreTheme';\n\n// Create a theme instance.\nconst theme = createMuiTheme({\n  ...coreTheme,\n  palette: {\n    ...coreTheme.palette,\n    background: {\n      default: '#22252E',\n      paper: '#2B2E3C'\n    },\n    primary: {\n      main: '#2F80ED',\n    },\n    type: 'dark',\n  },\n  overrides: {\n    ...coreTheme.overrides,\n    MuiButton: {\n      ...coreTheme.overrides.MuiButton,\n      outlinedPrimary: {\n        border: '1px solid #FFFFFF1A',\n        \"&:hover\": {\n          backgroundColor: '#2F80ED !important',\n          color: '#fff'\n        }\n      }\n    },\n    MuiInputBase: {\n      ...coreTheme.overrides.MuiInputBase,\n      root: {\n        background: \"#fff\"\n      }\n    },\n    MuiOutlinedInput: {\n      ...coreTheme.overrides.MuiOutlinedInput,\n      notchedOutline: {\n        borderColor: \"#FFF\"\n      }\n    },\n    MuiSnackbarContent: {\n      root: {\n        color: '#fff',\n        backgroundColor: '#2B2E3C',\n        padding: '0px',\n        minWidth: 'auto',\n        '@media (min-width: 960px)': {\n          minWidth: '500px',\n        }\n      },\n      message: {\n        padding: '0px'\n      },\n      action: {\n        marginRight: '0px'\n      }\n    },\n  }\n});\n\nexport default theme;\n"
  },
  {
    "path": "theme/light.js",
    "content": "import { createMuiTheme } from '@material-ui/core/styles';\nimport { red } from '@material-ui/core/colors';\nimport coreTheme from './coreTheme';\n\n// Create a theme instance.\nconst theme = createMuiTheme({\n  ...coreTheme,\n  palette: {\n    ...coreTheme.palette,\n    background: {\n      default: '#fff',\n      paper: '#fff'\n    },\n    accountButton: {\n      default: '#EFEFEF'\n    },\n    primary: {\n      main: '#2F80ED',\n    },\n    secondary: {\n      main: '#DEDEDE'\n    },\n    type: 'light',\n  },\n  overrides: {\n    ...coreTheme.overrides,\n    MuiButton: {\n      ...coreTheme.overrides.MuiButton,\n      outlinedPrimary: {\n        border: '1px solid #EAEAEA',\n        \"&:hover\": {\n          backgroundColor: '#2F80ED !important',\n          color: '#fff'\n        }\n      }\n    },\n    MuiInputBase: {\n      ...coreTheme.overrides.MuiInputBase,\n      root: {\n        background: \"#fff\"\n      }\n    },\n    MuiOutlinedInput: {\n      ...coreTheme.overrides.MuiOutlinedInput,\n      notchedOutline: {\n        borderColor: \"#FFF\"\n      }\n    },\n    MuiSnackbarContent: {\n      root: {\n        color: 'rgba(0, 0, 0, 0.87)',\n        backgroundColor: '#F8F9FE',\n        padding: '0px',\n        minWidth: 'auto',\n        '@media (min-width: 960px)': {\n          minWidth: '500px',\n        }\n      },\n      message: {\n        padding: '0px'\n      },\n      action: {\n        marginRight: '0px'\n      }\n    },\n  }\n});\n\nexport default theme;\n"
  },
  {
    "path": "utils/package.json",
    "content": "{\n  \"main\": \"utils.js\"\n}\n"
  },
  {
    "path": "utils/utils.js",
    "content": "import BigNumber from 'bignumber.js'\n\n// todo: get navigator declared somehow? probably an issue with using nextjs\n// function getLang() {\n//  if (window.navigator.languages != undefined)\n//   return window.navigator.languages[0];\n//  else\n//   return window.navigator.language;\n// }\n\nexport function formatCurrency(amount, decimals = 2) {\n  if (!isNaN(amount)) {\n    const formatter = new Intl.NumberFormat(undefined, {\n      minimumFractionDigits: decimals,\n      maximumFractionDigits: decimals,\n    });\n\n    return formatter.format(amount)\n  } else {\n    return 0\n  }\n}\n\nexport function formatAddress(address, length = 'short') {\n  if (address && length === 'short') {\n    address = address.substring(0, 6) + '...' + address.substring(address.length - 4, address.length)\n    return address\n  } else if (address && length === 'long') {\n    address = address.substring(0, 12) + '...' + address.substring(address.length - 8, address.length)\n    return address\n  } else {\n    return null\n  }\n}\n\nexport function bnDec(decimals) {\n  return new BigNumber(10)\n    .pow(parseInt(decimals))\n}\n\nexport function getProvider() {\n  if (typeof window !== \"undefined\" && typeof window.ethereum !== \"undefined\") {\n    if (window.ethereum.isDfox) return 'tokenpocket'\n    if (window.ethereum.isTokenPocket) return 'tokenpocket'\n    if (window.ethereum.isMetaMask) return 'Metamask'\n    if (window.ethereum.isImToken) return 'imToken'\n  }\n  return 'Wallet'\n}\n"
  }
]