diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 000000000..48d5f81fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..4121ba860 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,145 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +#Basic set up for three package managers + +version: 2 + +enable-beta-ecosystems: true + +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + # Maintain dependencies for Composer + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + # Maintain dependencies for Bundler + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + + # Maintain dependencies for Pip + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + + # Maintain dependencies for Pub + - package-ecosystem: "pub" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + + # Maintain dependencies for Docker + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + + # Check for npm updates at 9am UTC + time: "01:00" + + allow: + # Allow both direct and indirect updates for all packages + - dependency-type: "all" + + pull-request-branch-name: + # Separate sections of the branch name with a hyphen + # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` + separator: "-" + + +# Use this YAML in your workflow file for each job +# runs-on: self-hosted diff --git a/.github/workflows/alibabacloud.yml b/.github/workflows/alibabacloud.yml new file mode 100644 index 000000000..94a15c484 --- /dev/null +++ b/.github/workflows/alibabacloud.yml @@ -0,0 +1,122 @@ +# This workflow will build and push a new container image to Alibaba Cloud Container Registry (ACR), +# and then will deploy it to Alibaba Cloud Container Service for Kubernetes (ACK), when there is a push to the "main" branch. +# +# To use this workflow, you will need to complete the following set-up steps: +# +# 1. Create an ACR repository to store your container images. +# You can use ACR EE instance for more security and better performance. +# For instructions see https://www.alibabacloud.com/help/doc-detail/142168.htm +# +# 2. Create an ACK cluster to run your containerized application. +# You can use ACK Pro cluster for more security and better performance. +# For instructions see https://www.alibabacloud.com/help/doc-detail/95108.htm +# +# 3. Store your AccessKey pair in GitHub Actions secrets named `ACCESS_KEY_ID` and `ACCESS_KEY_SECRET`. +# For instructions on setting up secrets see: https://developer.github.com/actions/managing-workflows/storing-secrets/ +# +# 4. Change the values for the REGION_ID, REGISTRY, NAMESPACE, IMAGE, ACK_CLUSTER_ID, and ACK_DEPLOYMENT_NAME. +# + +name: Build and Deploy to ACK + +on: + push: + branches: [ "main" ] + +# Environment variables available to all jobs and steps in this workflow. +env: + REGION_ID: cn-hangzhou + REGISTRY: registry.cn-hangzhou.aliyuncs.com + NAMESPACE: namespace + IMAGE: repo + TAG: ${{ github.sha }} + ACK_CLUSTER_ID: clusterID + ACK_DEPLOYMENT_NAME: nginx-deployment + + ACR_EE_REGISTRY: myregistry.cn-hangzhou.cr.aliyuncs.com + ACR_EE_INSTANCE_ID: instanceID + ACR_EE_NAMESPACE: namespace + ACR_EE_IMAGE: repo + ACR_EE_TAG: ${{ github.sha }} + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + environment: production + + steps: + - name: Checkout + uses: actions/checkout@v4 + + # 1.1 Login to ACR + - name: Login to ACR with the AccessKey pair + uses: aliyun/acr-login@v1 + with: + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + + # 1.2 Build and push image to ACR + - name: Build and push image to ACR + run: | + docker build --tag "$REGISTRY/$NAMESPACE/$IMAGE:$TAG" . + docker push "$REGISTRY/$NAMESPACE/$IMAGE:$TAG" + + # 1.3 Scan image in ACR + - name: Scan image in ACR + uses: aliyun/acr-scan@v1 + with: + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + repository: "${{ env.NAMESPACE }}/${{ env.IMAGE }}" + tag: "${{ env.TAG }}" + + # 2.1 (Optional) Login to ACR EE + - uses: actions/checkout@v4 + - name: Login to ACR EE with the AccessKey pair + uses: aliyun/acr-login@v1 + with: + login-server: "https://${{ env.ACR_EE_REGISTRY }}" + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + instance-id: "${{ env.ACR_EE_INSTANCE_ID }}" + + # 2.2 (Optional) Build and push image ACR EE + - name: Build and push image to ACR EE + run: | + docker build -t "$ACR_EE_REGISTRY/$ACR_EE_NAMESPACE/$ACR_EE_IMAGE:$TAG" . + docker push "$ACR_EE_REGISTRY/$ACR_EE_NAMESPACE/$ACR_EE_IMAGE:$TAG" + # 2.3 (Optional) Scan image in ACR EE + - name: Scan image in ACR EE + uses: aliyun/acr-scan@v1 + with: + region-id: "${{ env.REGION_ID }}" + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + instance-id: "${{ env.ACR_EE_INSTANCE_ID }}" + repository: "${{ env.ACR_EE_NAMESPACE}}/${{ env.ACR_EE_IMAGE }}" + tag: "${{ env.ACR_EE_TAG }}" + + # 3.1 Set ACK context + - name: Set K8s context + uses: aliyun/ack-set-context@v1 + with: + access-key-id: "${{ secrets.ACCESS_KEY_ID }}" + access-key-secret: "${{ secrets.ACCESS_KEY_SECRET }}" + cluster-id: "${{ env.ACK_CLUSTER_ID }}" + + # 3.2 Deploy the image to the ACK cluster + - name: Set up Kustomize + run: |- + curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash /dev/stdin 3.8.6 + - name: Deploy + run: |- + ./kustomize edit set image REGISTRY/NAMESPACE/IMAGE:TAG=$REGISTRY/$NAMESPACE/$IMAGE:$TAG + ./kustomize build . | kubectl apply -f - + kubectl rollout status deployment/$ACK_DEPLOYMENT_NAME + kubectl get services -o wide diff --git a/.github/workflows/apisec-scan.yml b/.github/workflows/apisec-scan.yml new file mode 100644 index 000000000..8e7a72bc8 --- /dev/null +++ b/.github/workflows/apisec-scan.yml @@ -0,0 +1,72 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# APIsec addresses the critical need to secure APIs before they reach production. +# APIsec provides the industry’s only automated and continuous API testing platform that uncovers security vulnerabilities and logic flaws in APIs. +# Clients rely on APIsec to evaluate every update and release, ensuring that no APIs go to production with vulnerabilities. + +# How to Get Started with APIsec.ai +# 1. Schedule a demo at https://www.apisec.ai/request-a-demo . +# +# 2. Register your account at https://cloud.apisec.ai/#/signup . +# +# 3. Register your API . See the video (https://www.youtube.com/watch?v=MK3Xo9Dbvac) to get up and running with APIsec quickly. +# +# 4. Get GitHub Actions scan attributes from APIsec Project -> Configurations -> Integrations -> CI-CD -> GitHub Actions +# +# apisec-run-scan +# +# This action triggers the on-demand scans for projects registered in APIsec. +# If your GitHub account allows code scanning alerts, you can then upload the sarif file generated by this action to show the scan findings. +# Else you can view the scan results from the project home page in APIsec Platform. +# The link to view the scan results is also displayed on the console on successful completion of action. + +# This is a starter workflow to help you get started with APIsec-Scan Actions + +name: APIsec + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + # Customize trigger events based on your DevSecOps processes. + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '32 0 * * 6' + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + + +permissions: + contents: read + +jobs: + + Trigger_APIsec_scan: + permissions: + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + - name: APIsec scan + uses: apisec-inc/apisec-run-scan@025432089674a28ba8fb55f8ab06c10215e772ea + with: + # The APIsec username with which the scans will be executed + apisec-username: ${{ secrets.apisec_username }} + # The Password of the APIsec user with which the scans will be executed + apisec-password: ${{ secrets.apisec_password}} + # The name of the project for security scan + apisec-project: "VAmPI" + # The name of the sarif format result file The file is written only if this property is provided. + sarif-result-file: "apisec-results.sarif" + - name: Import results + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: ./apisec-results.sarif + #20250215 diff --git a/.github/workflows/appknox.yml b/.github/workflows/appknox.yml new file mode 100644 index 000000000..2481c4d6a --- /dev/null +++ b/.github/workflows/appknox.yml @@ -0,0 +1,54 @@ +# This workflow uses actions that are not certified by GitHub. They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support documentation. +# +# Appknox: Leader in Mobile Application Security Testing Solutions +# +# To use this workflow, you must be an existing Appknox customer with GitHub Advanced Security (GHAS) enabled for your +# repository. +# +# If you *are not* an existing customer, click here to contact us for licensing and pricing details: +# . +# +# Instructions: +# +# 1. In your repository settings, navigate to 'Secrets' and click on 'New repository secret.' Name the +# secret APPKNOX_ACCESS_TOKEN and paste your appknox user token into the value field. If you don't have a appknox token +# or need to generate a new one for GitHub, visit the Appknox Platform, go to Account Settings->Developer Settings +# and create a token labeled GitHub +# +# 2. Refer to the detailed workflow below, make any required adjustments, and then save it to your repository. After the +# action executes, check the 'Security' tab for results + +name: Appknox + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +jobs: + appknox: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + + - name: Build the app + run: ./gradlew build # Update this to build your Android or iOS application + + - name: Appknox GitHub action + uses: appknox/appknox-github-action@b7d2bfb2321d5544e97bffcba48557234ab953a4 + with: + appknox_access_token: ${{ secrets.APPKNOX_ACCESS_TOKEN }} + file_path: app/build/outputs/apk/debug/app-debug.apk # Specify the path to your .ipa or .apk here + risk_threshold: MEDIUM # Update this to desired risk threshold [LOW, MEDIUM, HIGH, CRITICAL] + sarif: Enable + + - name: Upload SARIF to GHAS + if: always() + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: report.sarif diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 000000000..6a9c312e6 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml new file mode 100644 index 000000000..0ac33d90b --- /dev/null +++ b/.github/workflows/cmake-single-platform.yml @@ -0,0 +1,39 @@ +# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage. +# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml +name: CMake on a single platform + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build: + # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. + # You can convert this to a matrix build if you need cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Configure CMake + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + # Build your program with the given configuration + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Test + working-directory: ${{github.workspace}}/build + # Execute tests defined by the CMake configuration. + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail + run: ctest -C ${{env.BUILD_TYPE}} + diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml new file mode 100644 index 000000000..2f0aabaa2 --- /dev/null +++ b/.github/workflows/codacy.yml @@ -0,0 +1,61 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow checks out code, performs a Codacy security scan +# and integrates the results with the +# GitHub Advanced Security code scanning feature. For more information on +# the Codacy security scan action usage and parameters, see +# https://github.com/codacy/codacy-analysis-cli-action. +# For more information on Codacy Analysis CLI in general, see +# https://github.com/codacy/codacy-analysis-cli. + +name: Codacy Security Scan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '22 10 * * 0' + +permissions: + contents: read + +jobs: + codacy-security-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + name: Codacy Security Scan + runs-on: ubuntu-latest + steps: + # Checkout the repository to the GitHub Actions runner + - name: Checkout code + uses: actions/checkout@v4 + + # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis + - name: Run Codacy Analysis CLI + uses: codacy/codacy-analysis-cli-action@d840f886c4bd4edc059706d09c6a1586111c540b + with: + # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository + # You can also omit the token and run the tools that support default configurations + project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} + verbose: true + output: results.sarif + format: sarif + # Adjust severity of non-security issues + gh-code-scanning-compat: true + # Force 0 exit code to allow SARIF file generation + # This will handover control about PR rejection to the GitHub side + max-allowed-issues: 2147483647 + + # Upload the SARIF file generated in the previous step + - name: Upload SARIF results file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..2263a37d4 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,93 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL Advanced" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '16 19 * * 0' + +jobs: + analyze: + name: Analyze (${{ matrix.language }}) + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners (GitHub.com only) + # Consider using larger runners or machines with greater resources for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + permissions: + # required for all workflows + security-events: write + + # required to fetch internal or private CodeQL packs + packages: read + + # only required for workflows in private repositories + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + include: + - language: javascript-typescript + build-mode: none + # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' + # Use `c-cpp` to analyze code written in C, C++ or both + # Use 'java-kotlin' to analyze code written in Java, Kotlin or both + # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, + # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. + # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how + # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + # If the analyze step fails for one of the languages you are analyzing with + # "We were unable to automatically build your code", modify the matrix above + # to set the build mode to "manual" for that language. Then modify this step + # to build your code. + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + - if: matrix.build-mode == 'manual' + shell: bash + run: | + echo 'If you are using a "manual" build mode for one or more of the' \ + 'languages you are analyzing, replace this with the commands to build' \ + 'your code, for example:' + echo ' make bootstrap' + echo ' make release' + exit 1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" + #20250210 diff --git a/.github/workflows/codescan.yml b/.github/workflows/codescan.yml new file mode 100644 index 000000000..3c46e88c9 --- /dev/null +++ b/.github/workflows/codescan.yml @@ -0,0 +1,50 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow requires that you have an existing account with codescan.io +# For more information about configuring your workflow, +# read our documentation at https://github.com/codescan-io/codescan-scanner-action +name: CodeScan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '24 7 * * 2' + +permissions: + contents: read + +jobs: + CodeScan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Cache files + uses: actions/cache@v3 + with: + path: | + ~/.sonar + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Run Analysis + uses: codescan-io/codescan-scanner-action@6793740039071596c5e9445dd60dd3825238d290 + with: + login: ${{ secrets.CODESCAN_AUTH_TOKEN }} + organization: ${{ secrets.CODESCAN_ORGANIZATION_KEY }} + projectKey: ${{ secrets.CODESCAN_PROJECT_KEY }} + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: codescan.sarif + #20250218 diff --git a/.github/workflows/crda.yml b/.github/workflows/crda.yml new file mode 100644 index 000000000..816db8376 --- /dev/null +++ b/.github/workflows/crda.yml @@ -0,0 +1,126 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow performs a static analysis of your source code using +# Red Hat CodeReady Dependency Analytics. + +# Scans are triggered: +# 1. On every push to default and protected branches +# 2. On every Pull Request targeting the default branch +# 3. On a weekly schedule +# 4. Manually, on demand, via the "workflow_dispatch" event + +# 💁 The CRDA Starter workflow will: +# - Checkout your repository +# - Setup the required tool stack +# - Install the CRDA command line tool +# - Auto detect the manifest file and install the project's dependencies +# - Perform the security scan using CRDA +# - Upload the SARIF result to the GitHub Code Scanning which can be viewed under the security tab +# - Optionally upload the SARIF file as an artifact for the future reference + +# ℹ️ Configure your repository and the workflow with the following steps: +# 1. Setup the tool stack based on the project's requirement. +# Refer to: https://github.com/redhat-actions/crda/#1-set-up-the-tool-stack +# 2. (Optional) CRDA action attempt to detect the language and install the +# required dependencies for your project. If your project doesn't aligns +# with the default dependency installation command mentioned here +# https://github.com/redhat-actions/crda/#3-installing-dependencies. +# Use the required inputs to setup the same +# 3. (Optional) CRDA action attempts to detect the manifest file if it is +# present in the root of the project and named as per the default mentioned +# here https://github.com/redhat-actions/crda/#3-installing-dependencies. +# If it deviates from the default, use the required inputs to setup the same +# 4. Setup Authentication - Create the CRDA_KEY or SNYK_TOKEN. +# Refer to: https://github.com/redhat-actions/crda/#4-set-up-authentication +# 5. (Optional) Upload SARIF file as an Artifact to download and view +# 6. Commit and push the workflow file to your default branch to trigger a workflow run. + +# 👋 Visit our GitHub organization at https://github.com/redhat-actions/ to see our actions and provide feedback. + +name: CRDA Scan + +# Controls when the workflow will run +on: + # TODO: Customize trigger events based on your DevSecOps processes + # + # This workflow is made to run with OpenShift starter workflow + # https://github.com/actions/starter-workflows/blob/main/deployments/openshift.yml + # However, if you want to run this workflow as a standalone workflow, please + # uncomment the 'push' trigger below and configure it based on your requirements. + # + workflow_call: + secrets: + CRDA_KEY: + required: false + SNYK_TOKEN: + required: false + workflow_dispatch: + + # push: + # branches: [ "main" ] + + # pull_request_target is used to securely share secret to the PR's workflow run. + # For more info visit: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target + pull_request_target: + branches: [ "main" ] + types: [ assigned, opened, synchronize, reopened, labeled, edited ] + +permissions: + contents: read + +jobs: + crda-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for redhat-actions/crda to upload SARIF results + name: Scan project vulnerabilities with CRDA + runs-on: ubuntu-20.04 + steps: + + - name: Check out repository + uses: actions/checkout@v2 + + # ******************************************************************* + # Required: Instructions to setup project + # 1. Setup Go, Java, Node.js or Python depending on your project type + # 2. Setup Actions are listed below, choose one from them: + # - Go: https://github.com/actions/setup-go + # - Java: https://github.com/actions/setup-java + # - Node.js: https://github.com/actions/setup-node + # - Python: https://github.com/actions/setup-python + # + # Example: + # - name: Setup Node + # uses: actions/setup-node@v4 + # with: + # node-version: '20' + + # https://github.com/redhat-actions/openshift-tools-installer/blob/main/README.md + - name: Install CRDA CLI + uses: redhat-actions/openshift-tools-installer@v1 + with: + source: github + github_pat: ${{ github.token }} + # Choose the desired version of the CRDA CLI + crda: "latest" + + ###################################################################################### + # https://github.com/redhat-actions/crda/blob/main/README.md + # + # By default, CRDA will detect the manifest file and install the required dependencies + # using the standard command for the project type. + # If your project doesn't aligns with the defaults mentioned in this action, you will + # need to set few inputs that are described here: + # https://github.com/redhat-actions/crda/blob/main/README.md#3-installing-dependencies + # Visit https://github.com/redhat-actions/crda/#4-set-up-authentication to understand + # process to get a SNYK_TOKEN or a CRDA_KEY + - name: CRDA Scan + id: scan + uses: redhat-actions/crda@v1 + with: + crda_key: ${{ secrets.CRDA_KEY }} # Either use crda_key or snyk_token + # snyk_token: ${{ secrets.SNYK_TOKEN }} + # upload_artifact: false # Set this to false to skip artifact upload diff --git a/.github/workflows/d.yml b/.github/workflows/d.yml new file mode 100644 index 000000000..9fc15a1f5 --- /dev/null +++ b/.github/workflows/d.yml @@ -0,0 +1,32 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +name: D + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: dlang-community/setup-dlang@4c99aa991ce7d19dd3064de0a4f2f6b2f152e2d7 + + - name: 'Build & Test' + run: | + # Build the project, with its main file included, without unittests + dub build --compiler=$DC + # Build and run tests, as defined by `unittest` configuration + # In this mode, `mainSourceFile` is excluded and `version (unittest)` are included + # See https://dub.pm/package-format-json.html#configurations + dub test --compiler=$DC diff --git a/.github/workflows/datadog-synthetics.yml b/.github/workflows/datadog-synthetics.yml new file mode 100644 index 000000000..c3a3d3ce8 --- /dev/null +++ b/.github/workflows/datadog-synthetics.yml @@ -0,0 +1,38 @@ +# This workflow will trigger Datadog Synthetic tests within your Datadog organisation +# For more information on running Synthetic tests within your GitHub workflows see: https://docs.datadoghq.com/synthetics/cicd_integrations/github_actions/ + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# To get started: + +# 1. Add your Datadog API (DD_API_KEY) and Application Key (DD_APP_KEY) as secrets to your GitHub repository. For more information, see: https://docs.datadoghq.com/account_management/api-app-keys/. +# 2. Start using the action within your workflow + +name: Run Datadog Synthetic tests + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + # Run Synthetic tests within your GitHub workflow. + # For additional configuration options visit the action within the marketplace: https://github.com/marketplace/actions/datadog-synthetics-ci + - name: Run Datadog Synthetic tests + uses: DataDog/synthetics-ci-github-action@87b505388a22005bb8013481e3f73a367b9a53eb # v1.4.0 + with: + api_key: ${{secrets.DD_API_KEY}} + app_key: ${{secrets.DD_APP_KEY}} + test_search_query: 'tag:e2e-tests' #Modify this tag to suit your tagging strategy + + diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 000000000..782af35b4 --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,42 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow will install Deno then run `deno lint` and `deno test`. +# For more information see: https://github.com/denoland/setup-deno + +name: Deno + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Setup repo + uses: actions/checkout@v4 + + - name: Setup Deno + # uses: denoland/setup-deno@v1 + uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 + with: + deno-version: v1.x + + # Uncomment this step to verify the use of 'deno fmt' on each commit. + # - name: Verify formatting + # run: deno fmt --check + + - name: Run linter + run: deno lint + + - name: Run tests + run: deno test -A diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 000000000..d19e21b79 --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,39 @@ +# Dependency Review Action +# +# This Action will scan dependency manifest files that change as part of a Pull Request, +# surfacing known-vulnerable versions of the packages declared or updated in the PR. +# Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable +# packages will be blocked from merging. +# +# Source repository: https://github.com/actions/dependency-review-action +# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement +name: 'Dependency review' +on: + pull_request: + branches: [ "main" ] + +# If using a dependency submission action in this workflow this permission will need to be set to: +# +# permissions: +# contents: write +# +# https://docs.github.com/en/enterprise-cloud@latest/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api +permissions: + contents: read + # Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option + pull-requests: write + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: 'Checkout repository' + uses: actions/checkout@v4 + - name: 'Dependency Review' + uses: actions/dependency-review-action@v4 + # Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options. + with: + comment-summary-in-pr: always + # fail-on-severity: moderate + # deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later + # retry-on-snapshot-warnings: true diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 000000000..a67c4f3d7 --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,99 @@ +name: Docker + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +on: + schedule: + - cron: '27 11 * * *' + push: + branches: [ "main" ] + # Publish semver tags as releases. + tags: [ 'v*.*.*' ] + pull_request: + branches: [ "main" ] + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ghcr.io + # github.repository as / + IMAGE_NAME: ${{ github.repository }} + + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Install the cosign tool except on PR + # https://github.com/sigstore/cosign-installer + - name: Install cosign + if: github.event_name != 'pull_request' + uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 #v3.5.0 + with: + cosign-release: 'v2.2.4' + + # Set up BuildKit Docker container builder to be able to build + # multi-platform images and export cache + # https://github.com/docker/setup-buildx-action + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + # Login against a Docker registry except on PR + # https://github.com/docker/login-action + - name: Log into registry ${{ env.REGISTRY }} + if: github.event_name != 'pull_request' + uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + # Extract metadata (tags, labels) for Docker + # https://github.com/docker/metadata-action + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + # Build and push Docker image with Buildx (don't push on PR) + # https://github.com/docker/build-push-action + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max + + # Sign the resulting Docker image digest except on PRs. + # This will only write to the public Rekor transparency log when the Docker + # repository is public to avoid leaking data. If you would like to publish + # transparency data even for private images, pass --force to cosign below. + # https://github.com/sigstore/cosign + - name: Sign the published Docker image + if: ${{ github.event_name != 'pull_request' }} + env: + # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable + TAGS: ${{ steps.meta.outputs.tags }} + DIGEST: ${{ steps.build-and-push.outputs.digest }} + # This step uses the identity token to provision an ephemeral certificate + # against the sigstore community Fulcio instance. + run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST} + #20250208 diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml new file mode 100644 index 000000000..27d3326a0 --- /dev/null +++ b/.github/workflows/erlang.yml @@ -0,0 +1,26 @@ +name: Erlang CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + + build: + + runs-on: ubuntu-latest + + container: + image: erlang:22.0.7 + + steps: + - uses: actions/checkout@v4 + - name: Compile + run: rebar3 compile + - name: Run tests + run: rebar3 do eunit, ct diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml new file mode 100644 index 000000000..0e65e31ea --- /dev/null +++ b/.github/workflows/eslint.yml @@ -0,0 +1,53 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# ESLint is a tool for identifying and reporting on patterns +# found in ECMAScript/JavaScript code. +# More details at https://github.com/eslint/eslint +# and https://eslint.org + +name: ESLint + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '36 4 * * 6' + +jobs: + eslint: + name: Run eslint scanning + runs-on: ubuntu-latest + permissions: + contents: read + security-events: write + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install ESLint + run: | + npm install eslint@8.10.0 + npm install @microsoft/eslint-formatter-sarif@3.1.0 + + - name: Run ESLint + env: + SARIF_ESLINT_IGNORE_SUPPRESSED: "true" + run: npx eslint . + --config .eslintrc.js + --ext .js,.jsx,.ts,.tsx + --format @microsoft/eslint-formatter-sarif + --output-file eslint-results.sarif + continue-on-error: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + #sarif_file: eslint-results.sarif + wait-for-processing: true + #20250222 diff --git a/.github/workflows/frogbot-scan-and-fix.yml b/.github/workflows/frogbot-scan-and-fix.yml new file mode 100644 index 000000000..e5bcd0796 --- /dev/null +++ b/.github/workflows/frogbot-scan-and-fix.yml @@ -0,0 +1,65 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# Frogbot Scan and Fix does the following: +# Automatically creates pull requests with fixes for vulnerable project dependencies. +# Uses JFrog Xray to scan the project. +# Read more about Frogbot here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot + +# Some projects require creating a frogbot-config.yml file. Read more about it here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot/setup-frogbot/frogbot-configuration + +name: "Frogbot Scan and Fix" +on: + push: + branches: [ "main" ] +permissions: + contents: write + pull-requests: write + security-events: write +jobs: + create-fix-pull-requests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: jfrog/frogbot@5d9c42c30f1169d8be4ba5510b40e75ffcbbc2a9 # v2.21.2 + env: + # [Mandatory if the two conditions below are met] + # 1. The project uses npm, yarn 2, NuGet or .NET to download its dependencies + # 2. The `installCommand` variable isn't set in your frogbot-config.yml file. + # + # The command that installs the project dependencies (e.g "npm i", "nuget restore" or "dotnet restore") + # JF_INSTALL_DEPS_CMD: "" + + # [Mandatory] + # JFrog platform URL + JF_URL: ${{ secrets.JF_URL }} + + # [Mandatory if JF_USER and JF_PASSWORD are not provided] + # JFrog access token with 'read' permissions on Xray service + JF_ACCESS_TOKEN: ${{ secrets.JF_ACCESS_TOKEN }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog username with 'read' permissions for Xray. Must be provided with JF_PASSWORD + # JF_USER: ${{ secrets.JF_USER }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog password. Must be provided with JF_USER + # JF_PASSWORD: ${{ secrets.JF_PASSWORD }} + + # [Mandatory] + # The GitHub token automatically generated for the job + JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # [Optional] + # If the machine that runs Frogbot has no access to the internat, set the name of a remote repository + # in Artifactory, which proxies https://releases.jfrog.io/artifactory + # The 'frogbot' executable and other tools it needs will be downloaded through this repository. + # JF_RELEASES_REPO: "" + + # [Optional] + # Frogbot will download the project dependencies, if they're not cached locally. To download the + # dependencies from a virtual repository in Artifactory, set the name of of the repository. There's no + # need to set this value, if it is set in the frogbot-config.yml file. + # JF_DEPS_REPO: "" diff --git a/.github/workflows/frogbot-scan-pr.yml b/.github/workflows/frogbot-scan-pr.yml new file mode 100644 index 000000000..41a83f5c1 --- /dev/null +++ b/.github/workflows/frogbot-scan-pr.yml @@ -0,0 +1,70 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# Frogbot Scan Pull Request does the following: +# Automatically scans new pull requests for security vulnerabilities. +# Uses JFrog Xray to scan the project. +# Read more about Frogbot here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot + +# Some projects require creating a frogbot-config.yml file. Read more about it here - https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot/setup-frogbot/frogbot-configuration + +name: "Frogbot Scan Pull Request" +on: + pull_request_target: + types: [ opened, synchronize ] +permissions: + pull-requests: write + contents: read +jobs: + scan-pull-request: + runs-on: ubuntu-latest + # A pull request needs to be approved, before Frogbot scans it. Any GitHub user who is associated with the + # "frogbot" GitHub environment can approve the pull request to be scanned. + # Read more here (Install Frogbot Using GitHub Actions): https://docs.jfrog-applications.jfrog.io/jfrog-applications/frogbot/setup-frogbot/setup-frogbot-using-github-actions + environment: frogbot + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + + - uses: jfrog/frogbot@5d9c42c30f1169d8be4ba5510b40e75ffcbbc2a9 # v2.21.2 + env: + # [Mandatory if the two conditions below are met] + # 1. The project uses npm, yarn 2, NuGet or .NET to download its dependencies + # 2. The `installCommand` variable isn't set in your frogbot-config.yml file. + # + # The command that installs the project dependencies (e.g "npm i", "nuget restore" or "dotnet restore") + # JF_INSTALL_DEPS_CMD: "" + + # [Mandatory] + # JFrog platform URL + JF_URL: ${{ secrets.JF_URL }} + + # [Mandatory if JF_USER and JF_PASSWORD are not provided] + # JFrog access token with 'read' permissions on Xray service + JF_ACCESS_TOKEN: ${{ secrets.JF_ACCESS_TOKEN }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog username with 'read' permissions for Xray. Must be provided with JF_PASSWORD + # JF_USER: ${{ secrets.JF_USER }} + + # [Mandatory if JF_ACCESS_TOKEN is not provided] + # JFrog password. Must be provided with JF_USER + # JF_PASSWORD: ${{ secrets.JF_PASSWORD }} + + # [Mandatory] + # The GitHub token automatically generated for the job + JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # [Optional] + # If the machine that runs Frogbot has no access to the internat, set the name of a remote repository + # in Artifactory, which proxies https://releases.jfrog.io/artifactory + # The 'frogbot' executable and other tools it needs will be downloaded through this repository. + # JF_RELEASES_REPO: "" + + # [Optional] + # Frogbot will download the project dependencies, if they're not cached locally. To download the + # dependencies from a virtual repository in Artifactory, set the name of of the repository. There's no + # need to set this value, if it is set in the frogbot-config.yml file. + # JF_DEPS_REPO: "" diff --git a/.github/workflows/gatsby.yml b/.github/workflows/gatsby.yml new file mode 100644 index 000000000..9aaecfe2d --- /dev/null +++ b/.github/workflows/gatsby.yml @@ -0,0 +1,97 @@ +# Sample workflow for building and deploying a Gatsby site to GitHub Pages +# +# To get started with Gatsby see: https://www.gatsbyjs.com/docs/quick-start/ +# +name: Deploy Gatsby site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +# Default to bash +defaults: + run: + shell: bash + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Detect package manager + id: detect-package-manager + run: | + if [ -f "${{ github.workspace }}/yarn.lock" ]; then + echo "manager=yarn" >> $GITHUB_OUTPUT + echo "command=install" >> $GITHUB_OUTPUT + exit 0 + elif [ -f "${{ github.workspace }}/package.json" ]; then + echo "manager=npm" >> $GITHUB_OUTPUT + echo "command=ci" >> $GITHUB_OUTPUT + exit 0 + else + echo "Unable to determine package manager" + exit 1 + fi + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: "20" + cache: ${{ steps.detect-package-manager.outputs.manager }} + - name: Setup Pages + id: pages + uses: actions/configure-pages@v5 + with: + # Automatically inject pathPrefix in your Gatsby configuration file. + # + # You may remove this line if you want to manage the configuration yourself. + static_site_generator: gatsby + - name: Restore cache + uses: actions/cache@v4 + with: + path: | + public + .cache + key: ${{ runner.os }}-gatsby-build-${{ hashFiles('public') }} + restore-keys: | + ${{ runner.os }}-gatsby-build- + - name: Install dependencies + run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} + - name: Build with Gatsby + env: + PREFIX_PATHS: 'true' + run: ${{ steps.detect-package-manager.outputs.manager }} run build + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/generator-generic-ossf-slsa3-publish.yml b/.github/workflows/generator-generic-ossf-slsa3-publish.yml new file mode 100644 index 000000000..35c829b13 --- /dev/null +++ b/.github/workflows/generator-generic-ossf-slsa3-publish.yml @@ -0,0 +1,66 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow lets you generate SLSA provenance file for your project. +# The generation satisfies level 3 for the provenance requirements - see https://slsa.dev/spec/v0.1/requirements +# The project is an initiative of the OpenSSF (openssf.org) and is developed at +# https://github.com/slsa-framework/slsa-github-generator. +# The provenance file can be verified using https://github.com/slsa-framework/slsa-verifier. +# For more information about SLSA and how it improves the supply-chain, visit slsa.dev. + +name: SLSA generic generator +on: + workflow_dispatch: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + outputs: + digests: ${{ steps.hash.outputs.digests }} + + steps: + - uses: actions/checkout@v4 + + # ======================================================== + # + # Step 1: Build your artifacts. + # + # ======================================================== + - name: Build artifacts + run: | + # These are some amazing artifacts. + echo "artifact1" > artifact1 + echo "artifact2" > artifact2 + + # ======================================================== + # + # Step 2: Add a step to generate the provenance subjects + # as shown below. Update the sha256 sum arguments + # to include all binaries that you generate + # provenance for. + # + # ======================================================== + - name: Generate subject for provenance + id: hash + run: | + set -euo pipefail + + # List the artifacts the provenance will refer to. + files=$(ls artifact*) + # Generate the subjects (base64 encoded). + echo "hashes=$(sha256sum $files | base64 -w0)" >> "${GITHUB_OUTPUT}" + + provenance: + needs: [build] + permissions: + actions: read # To read the workflow path. + id-token: write # To sign the provenance. + contents: write # To add assets to a release. + uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0 + with: + base64-subjects: "${{ needs.build.outputs.digests }}" + upload-assets: true # Optional: Upload to a new release diff --git a/.github/workflows/google.yml b/.github/workflows/google.yml new file mode 100644 index 000000000..0b5c7d12f --- /dev/null +++ b/.github/workflows/google.yml @@ -0,0 +1,116 @@ +# This workflow will build a docker container, publish it to Google Container +# Registry, and deploy it to GKE when there is a push to the "main" +# branch. +# +# To configure this workflow: +# +# 1. Enable the following Google Cloud APIs: +# +# - Artifact Registry (artifactregistry.googleapis.com) +# - Google Kubernetes Engine (container.googleapis.com) +# - IAM Credentials API (iamcredentials.googleapis.com) +# +# You can learn more about enabling APIs at +# https://support.google.com/googleapi/answer/6158841. +# +# 2. Ensure that your repository contains the necessary configuration for your +# Google Kubernetes Engine cluster, including deployment.yml, +# kustomization.yml, service.yml, etc. +# +# 3. Create and configure a Workload Identity Provider for GitHub: +# https://github.com/google-github-actions/auth#preferred-direct-workload-identity-federation. +# +# Depending on how you authenticate, you will need to grant an IAM principal +# permissions on Google Cloud: +# +# - Artifact Registry Administrator (roles/artifactregistry.admin) +# - Kubernetes Engine Developer (roles/container.developer) +# +# You can learn more about setting IAM permissions at +# https://cloud.google.com/iam/docs/manage-access-other-resources +# +# 5. Change the values in the "env" block to match your values. + +name: 'Build and Deploy to GKE' + +on: + push: + branches: + - '"main"' + +env: + PROJECT_ID: 'my-project' # TODO: update to your Google Cloud project ID + GAR_LOCATION: 'us-central1' # TODO: update to your region + GKE_CLUSTER: 'cluster-1' # TODO: update to your cluster name + GKE_ZONE: 'us-central1-c' # TODO: update to your cluster zone + DEPLOYMENT_NAME: 'gke-test' # TODO: update to your deployment name + REPOSITORY: 'samples' # TODO: update to your Artifact Registry docker repository name + IMAGE: 'static-site' + WORKLOAD_IDENTITY_PROVIDER: 'projects/123456789/locations/global/workloadIdentityPools/my-pool/providers/my-provider' # TODO: update to your workload identity provider + +jobs: + setup-build-publish-deploy: + name: 'Setup, Build, Publish, and Deploy' + runs-on: 'ubuntu-latest' + environment: 'production' + + permissions: + contents: 'read' + id-token: 'write' + + steps: + - name: 'Checkout' + uses: 'actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332' # actions/checkout@v4 + + # Configure Workload Identity Federation and generate an access token. + # + # See https://github.com/google-github-actions/auth for more options, + # including authenticating via a JSON credentials file. + - id: 'auth' + name: 'Authenticate to Google Cloud' + uses: 'google-github-actions/auth@f112390a2df9932162083945e46d439060d66ec2' # google-github-actions/auth@v2 + with: + workload_identity_provider: '${{ env.WORKLOAD_IDENTITY_PROVIDER }}' + + # Authenticate Docker to Google Cloud Artifact Registry + - name: 'Docker Auth' + uses: 'docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567' # docker/login-action@v3 + with: + username: 'oauth2accesstoken' + password: '${{ steps.auth.outputs.auth_token }}' + registry: '${{ env.GAR_LOCATION }}-docker.pkg.dev' + + # Get the GKE credentials so we can deploy to the cluster + - name: 'Set up GKE credentials' + uses: 'google-github-actions/get-gke-credentials@6051de21ad50fbb1767bc93c11357a49082ad116' # google-github-actions/get-gke-credentials@v2 + with: + cluster_name: '${{ env.GKE_CLUSTER }}' + location: '${{ env.GKE_ZONE }}' + + # Build the Docker image + - name: 'Build and push Docker container' + run: |- + DOCKER_TAG="${GAR_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${REPOSITORY}/${IMAGE}:${GITHUB_SHA}" + + docker build \ + --tag "${DOCKER_TAG}" \ + --build-arg GITHUB_SHA="${GITHUB_SHA}" \ + --build-arg GITHUB_REF="${GITHUB_REF}" \ + . + + docker push "${DOCKER_TAG}" + + # Set up kustomize + - name: 'Set up Kustomize' + run: |- + curl -sfLo kustomize https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.4.3/kustomize_v5.4.3_linux_amd64.tar.gz + chmod u+x ./kustomize + + # Deploy the Docker image to the GKE cluster + - name: 'Deploy to GKE' + run: |- + # replacing the image name in the k8s template + ./kustomize edit set image LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY/IMAGE:TAG=$GAR_LOCATION-docker.pkg.dev/$PROJECT_ID/$REPOSITORY/$IMAGE:$GITHUB_SHA + ./kustomize build . | kubectl apply -f - + kubectl rollout status deployment/$DEPLOYMENT_NAME + kubectl get services -o wide diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 000000000..87d5ecb55 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,67 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle + +name: Java CI with Gradle + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. + # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md + - name: Setup Gradle + uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 + + - name: Build with Gradle Wrapper + run: ./gradlew build + + # NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html). + # If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version. + # + # - name: Setup Gradle + # uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 + # with: + # gradle-version: '8.9' + # + # - name: Build with Gradle 8.9 + # run: gradle build + + dependency-submission: + + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + # Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies. + # See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md + - name: Generate and submit dependency graph + uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..46774343e --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request" diff --git a/.github/workflows/hadolint.yml b/.github/workflows/hadolint.yml new file mode 100644 index 000000000..61f17e593 --- /dev/null +++ b/.github/workflows/hadolint.yml @@ -0,0 +1,48 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# hadoint is a Dockerfile linter written in Haskell +# that helps you build best practice Docker images. +# More details at https://github.com/hadolint/hadolint + +name: Hadolint + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '44 0 * * 3' + +permissions: + contents: read + +jobs: + hadolint: + name: Run hadolint scanning + runs-on: ubuntu-latest + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Run hadolint + uses: hadolint/hadolint-action@f988afea3da57ee48710a9795b6bb677cc901183 + with: + dockerfile: ./Dockerfile + format: sarif + output-file: hadolint-results.sarif + no-fail: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: hadolint-results.sarif + wait-for-processing: true + #20250219 diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml new file mode 100644 index 000000000..347afd27d --- /dev/null +++ b/.github/workflows/haskell.yml @@ -0,0 +1,43 @@ +name: Haskell CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-haskell@v1 + with: + ghc-version: '8.10.3' + cabal-version: '3.2' + + - name: Cache + uses: actions/cache@v3 + env: + cache-name: cache-cabal + with: + path: ~/.cabal + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- + + - name: Install dependencies + run: | + cabal update + cabal build --only-dependencies --enable-tests --enable-benchmarks + - name: Build + run: cabal build --enable-tests --enable-benchmarks all + - name: Run tests + run: cabal test all diff --git a/.github/workflows/ibm.yml b/.github/workflows/ibm.yml new file mode 100644 index 000000000..f5e8cd8e2 --- /dev/null +++ b/.github/workflows/ibm.yml @@ -0,0 +1,75 @@ +# This workflow will build a docker container, publish it to IBM Container Registry, and deploy it to IKS when there is a push to the "main" branch. +# +# To configure this workflow: +# +# 1. Ensure that your repository contains a Dockerfile +# 2. Setup secrets in your repository by going to settings: Create ICR_NAMESPACE and IBM_CLOUD_API_KEY +# 3. Change the values for the IBM_CLOUD_REGION, REGISTRY_HOSTNAME, IMAGE_NAME, IKS_CLUSTER, DEPLOYMENT_NAME, and PORT + +name: Build and Deploy to IKS + +on: + push: + branches: [ "main" ] + +# Environment variables available to all jobs and steps in this workflow +env: + GITHUB_SHA: ${{ github.sha }} + IBM_CLOUD_API_KEY: ${{ secrets.IBM_CLOUD_API_KEY }} + IBM_CLOUD_REGION: us-south + ICR_NAMESPACE: ${{ secrets.ICR_NAMESPACE }} + REGISTRY_HOSTNAME: us.icr.io + IMAGE_NAME: iks-test + IKS_CLUSTER: example-iks-cluster-name-or-id + DEPLOYMENT_NAME: iks-test + PORT: 5001 + +jobs: + setup-build-publish-deploy: + name: Setup, Build, Publish, and Deploy + runs-on: ubuntu-latest + environment: production + steps: + + - name: Checkout + uses: actions/checkout@v4 + + # Download and Install IBM Cloud CLI + - name: Install IBM Cloud CLI + run: | + curl -fsSL https://clis.cloud.ibm.com/install/linux | sh + ibmcloud --version + ibmcloud config --check-version=false + ibmcloud plugin install -f kubernetes-service + ibmcloud plugin install -f container-registry + + # Authenticate with IBM Cloud CLI + - name: Authenticate with IBM Cloud CLI + run: | + ibmcloud login --apikey "${IBM_CLOUD_API_KEY}" -r "${IBM_CLOUD_REGION}" -g default + ibmcloud cr region-set "${IBM_CLOUD_REGION}" + ibmcloud cr login + + # Build the Docker image + - name: Build with Docker + run: | + docker build -t "$REGISTRY_HOSTNAME"/"$ICR_NAMESPACE"/"$IMAGE_NAME":"$GITHUB_SHA" \ + --build-arg GITHUB_SHA="$GITHUB_SHA" \ + --build-arg GITHUB_REF="$GITHUB_REF" . + + # Push the image to IBM Container Registry + - name: Push the image to ICR + run: | + docker push $REGISTRY_HOSTNAME/$ICR_NAMESPACE/$IMAGE_NAME:$GITHUB_SHA + + # Deploy the Docker image to the IKS cluster + - name: Deploy to IKS + run: | + ibmcloud ks cluster config --cluster $IKS_CLUSTER + kubectl config current-context + kubectl create deployment $DEPLOYMENT_NAME --image=$REGISTRY_HOSTNAME/$ICR_NAMESPACE/$IMAGE_NAME:$GITHUB_SHA --dry-run -o yaml > deployment.yaml + kubectl apply -f deployment.yaml + kubectl rollout status deployment/$DEPLOYMENT_NAME + kubectl create service loadbalancer $DEPLOYMENT_NAME --tcp=80:$PORT --dry-run -o yaml > service.yaml + kubectl apply -f service.yaml + kubectl get services -o wide diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 000000000..e31d81c58 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml new file mode 100644 index 000000000..68520b5ae --- /dev/null +++ b/.github/workflows/jekyll.yml @@ -0,0 +1,64 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Ruby + uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0 + with: + ruby-version: '3.1' # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + cache-version: 0 # Increment this number if you need to re-download cached gems + - name: Setup Pages + id: pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + # Outputs to the './_site' directory by default + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + env: + JEKYLL_ENV: production + - name: Upload artifact + # Automatically uploads an artifact from the './_site' directory by default + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 000000000..461356907 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,22 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# +# To use this workflow, you will need to set up a .github/labeler.yml +# file with configuration. For more information, see: +# https://github.com/actions/labeler + +name: Labeler +on: [pull_request_target] + +jobs: + label: + + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml new file mode 100644 index 000000000..fd8c644e6 --- /dev/null +++ b/.github/workflows/laravel.yml @@ -0,0 +1,35 @@ +name: Laravel + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: '8.0' + - uses: actions/checkout@v4 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Create Database + run: | + mkdir -p database + touch database/database.sqlite + - name: Execute tests (Unit and Feature tests) via PHPUnit/Pest + env: + DB_CONNECTION: sqlite + DB_DATABASE: database/database.sqlite + run: php artisan test diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 000000000..11b2e3558 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml new file mode 100644 index 000000000..64b848b61 --- /dev/null +++ b/.github/workflows/maven-publish.yml @@ -0,0 +1,34 @@ +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path + +name: Maven Package + +on: + release: + types: [created] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 11 + uses: actions/setup-java@v4 + with: + java-version: '11' + distribution: 'temurin' + server-id: github # Value of the distributionManagement/repository/id field of the pom.xml + settings-path: ${{ github.workspace }} # location for the settings.xml file + + - name: Build with Maven + run: mvn -B package --file pom.xml + + - name: Publish to GitHub Packages Apache Maven + run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml + env: + GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/mobsf.yml b/.github/workflows/mobsf.yml new file mode 100644 index 000000000..6f1ea95bd --- /dev/null +++ b/.github/workflows/mobsf.yml @@ -0,0 +1,43 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: MobSF + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '18 12 * * 2' + +permissions: + contents: read + +jobs: + mobile-security: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup python + uses: actions/setup-python@v3 + with: + python-version: 3.8 + + - name: Run mobsfscan + uses: MobSF/mobsfscan@a60d10a83af68e23e0b30611c6515da604f06f65 + with: + args: . --sarif --output results.sarif || true + + - name: Upload mobsfscan report + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml new file mode 100644 index 000000000..5ef7a9ae1 --- /dev/null +++ b/.github/workflows/npm-grunt.yml @@ -0,0 +1,28 @@ +name: NodeJS with Grunt + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + grunt diff --git a/.github/workflows/npm-publish-github-packages.yml b/.github/workflows/npm-publish-github-packages.yml new file mode 100644 index 000000000..ea2d329fa --- /dev/null +++ b/.github/workflows/npm-publish-github-packages.yml @@ -0,0 +1,36 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test + + publish-gpr: + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://npm.pkg.github.com/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 000000000..2a4766d38 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,33 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: Node.js Package + +on: + release: + types: [created] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test + + publish-npm: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://registry.npmjs.org/ + - run: npm ci + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.npm_token}} diff --git a/.github/workflows/objective-c-xcode.yml b/.github/workflows/objective-c-xcode.yml new file mode 100644 index 000000000..add007bf1 --- /dev/null +++ b/.github/workflows/objective-c-xcode.yml @@ -0,0 +1,30 @@ +name: Xcode - Build and Analyze + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + name: Build and analyse default scheme using xcodebuild command + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set Default Scheme + run: | + scheme_list=$(xcodebuild -list -json | tr -d "\n") + default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]") + echo $default | cat >default + echo Using default scheme: $default + - name: Build + env: + scheme: ${{ 'default' }} + run: | + if [ $scheme = default ]; then scheme=$(cat default); fi + if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi + file_to_build=`echo $file_to_build | awk '{$1=$1;print}'` + xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]} diff --git a/.github/workflows/octopusdeploy.yml b/.github/workflows/octopusdeploy.yml new file mode 100644 index 000000000..b8ddb6ddf --- /dev/null +++ b/.github/workflows/octopusdeploy.yml @@ -0,0 +1,112 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by separate terms of service, +# privacy policy, and support documentation. +# +# This workflow will build and publish a Docker container which is then deployed through Octopus Deploy. +# +# The build job in this workflow currently assumes that there is a Dockerfile that generates the relevant application image. +# If required, this job can be modified to generate whatever alternative build artifact is required for your deployment. +# +# This workflow assumes you have already created a Project in Octopus Deploy. +# For instructions see https://octopus.com/docs/projects/setting-up-projects +# +# To configure this workflow: +# +# 1. Decide where you are going to host your image. +# This template uses the GitHub Registry for simplicity but if required you can update the relevant DOCKER_REGISTRY variables below. +# +# 2. Create and configure an OIDC credential for a service account in Octopus. +# This allows for passwordless authentication to your Octopus instance through a trust relationship configured between Octopus, GitHub and your GitHub Repository. +# https://octopus.com/docs/octopus-rest-api/openid-connect/github-actions +# +# 3. Configure your Octopus project details below: +# OCTOPUS_URL: update to your Octopus Instance Url +# OCTOPUS_SERVICE_ACCOUNT: update to your service account Id +# OCTOPUS_SPACE: update to the name of the space your project is configured in +# OCTOPUS_PROJECT: update to the name of your Octopus project +# OCTOPUS_ENVIRONMENT: update to the name of the environment to recieve the first deployment + + +name: 'Build and Deploy to Octopus Deploy' + +on: + push: + branches: + - '"main"' + +jobs: + build: + name: Build + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + env: + DOCKER_REGISTRY: ghcr.io # TODO: Update to your docker registry uri + DOCKER_REGISTRY_USERNAME: ${{ github.actor }} # TODO: Update to your docker registry username + DOCKER_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} # TODO: Update to your docker registry password + outputs: + image_tag: ${{ steps.meta.outputs.version }} + steps: + - uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.DOCKER_REGISTRY }} + username: ${{ env.DOCKER_REGISTRY_USERNAME }} + password: ${{ env.DOCKER_REGISTRY_PASSWORD }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: ${{ env.DOCKER_REGISTRY }}/${{ github.repository }} + tags: type=semver,pattern={{version}},value=v1.0.0-{{sha}} + + - name: Build and push Docker image + id: push + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + deploy: + name: Deploy + permissions: + id-token: write + runs-on: ubuntu-latest + needs: [ build ] + env: + OCTOPUS_URL: 'https://your-octopus-url' # TODO: update to your Octopus Instance url + OCTOPUS_SERVICE_ACCOUNT: 'your-service-account-id' # TODO: update to your service account Id + OCTOPUS_SPACE: 'your-space' # TODO: update to the name of the space your project is configured in + OCTOPUS_PROJECT: 'your-project' # TODO: update to the name of your Octopus project + OCTOPUS_ENVIRONMENT: 'your-environment' # TODO: update to the name of the environment to recieve the first deployment + + steps: + - name: Log in to Octopus Deploy + uses: OctopusDeploy/login@34b6dcc1e86fa373c14e6a28c5507d221e4de629 #v1.0.2 + with: + server: '${{ env.OCTOPUS_URL }}' + service_account_id: '${{ env.OCTOPUS_SERVICE_ACCOUNT }}' + + - name: Create Release + id: create_release + uses: OctopusDeploy/create-release-action@fea7e7b45c38c021b6bc5a14bd7eaa2ed5269214 #v3.2.2 + with: + project: '${{ env.OCTOPUS_PROJECT }}' + space: '${{ env.OCTOPUS_SPACE }}' + packages: '*:${{ needs.build.outputs.image_tag }}' + + - name: Deploy Release + uses: OctopusDeploy/deploy-release-action@b10a606c903b0a5bce24102af9d066638ab429ac #v3.2.1 + with: + project: '${{ env.OCTOPUS_PROJECT }}' + space: '${{ env.OCTOPUS_SPACE }}' + release_number: '${{ steps.create_release.outputs.release_number }}' + environments: ${{ env.OCTOPUS_ENVIRONMENT }} diff --git a/.github/workflows/openshift.yml b/.github/workflows/openshift.yml new file mode 100644 index 000000000..f5de1669f --- /dev/null +++ b/.github/workflows/openshift.yml @@ -0,0 +1,202 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# 💁 The OpenShift Starter workflow will: +# - Checkout your repository +# - Perform a container image build +# - Push the built image to the GitHub Container Registry (GHCR) +# - Log in to your OpenShift cluster +# - Create an OpenShift app from the image and expose it to the internet + +# ℹ️ Configure your repository and the workflow with the following steps: +# 1. Have access to an OpenShift cluster. Refer to https://www.openshift.com/try +# 2. Create the OPENSHIFT_SERVER and OPENSHIFT_TOKEN repository secrets. Refer to: +# - https://github.com/redhat-actions/oc-login#readme +# - https://docs.github.com/en/actions/reference/encrypted-secrets +# - https://cli.github.com/manual/gh_secret_set +# 3. (Optional) Edit the top-level 'env' section as marked with '🖊️' if the defaults are not suitable for your project. +# 4. (Optional) Edit the build-image step to build your project. +# The default build type is by using a Dockerfile at the root of the repository, +# but can be replaced with a different file, a source-to-image build, or a step-by-step buildah build. +# 5. Commit and push the workflow file to your default branch to trigger a workflow run. + +# 👋 Visit our GitHub organization at https://github.com/redhat-actions/ to see our actions and provide feedback. + +name: OpenShift + +env: + # 🖊️ EDIT your repository secrets to log into your OpenShift cluster and set up the context. + # See https://github.com/redhat-actions/oc-login#readme for how to retrieve these values. + # To get a permanent token, refer to https://github.com/redhat-actions/oc-login/wiki/Using-a-Service-Account-for-GitHub-Actions + OPENSHIFT_SERVER: ${{ secrets.OPENSHIFT_SERVER }} + OPENSHIFT_TOKEN: ${{ secrets.OPENSHIFT_TOKEN }} + # 🖊️ EDIT to set the kube context's namespace after login. Leave blank to use your user's default namespace. + OPENSHIFT_NAMESPACE: "" + + # 🖊️ EDIT to set a name for your OpenShift app, or a default one will be generated below. + APP_NAME: "" + + # 🖊️ EDIT with the port your application should be accessible on. + # If the container image exposes *exactly one* port, this can be left blank. + # Refer to the 'port' input of https://github.com/redhat-actions/oc-new-app + APP_PORT: "" + + # 🖊️ EDIT to change the image registry settings. + # Registries such as GHCR, Quay.io, and Docker Hub are supported. + IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} + IMAGE_REGISTRY_USER: ${{ github.actor }} + IMAGE_REGISTRY_PASSWORD: ${{ github.token }} + + # 🖊️ EDIT to specify custom tags for the container image, or default tags will be generated below. + IMAGE_TAGS: "" + +on: + # https://docs.github.com/en/actions/reference/events-that-trigger-workflows + workflow_dispatch: + push: + # Edit to the branch(es) you want to build and deploy on each push. + branches: [ "main" ] + +jobs: + # 🖊️ EDIT if you want to run vulnerability check on your project before deploying + # the application. Please uncomment the below CRDA scan job and configure to run it in + # your workflow. For details about CRDA action visit https://github.com/redhat-actions/crda/blob/main/README.md + # + # TODO: Make sure to add 'CRDA Scan' starter workflow from the 'Actions' tab. + # For guide on adding new starter workflow visit https://docs.github.com/en/github-ae@latest/actions/using-workflows/using-starter-workflows + + #crda-scan: + # uses: ./.github/workflows/crda.yml + # secrets: + # CRDA_KEY: ${{ secrets.CRDA_KEY }} + # # SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} # Either use SNYK_TOKEN or CRDA_KEY + + openshift-ci-cd: + # 🖊️ Uncomment this if you are using CRDA scan step above + # needs: crda-scan + name: Build and deploy to OpenShift + runs-on: ubuntu-latest + environment: production + + outputs: + ROUTE: ${{ steps.deploy-and-expose.outputs.route }} + SELECTOR: ${{ steps.deploy-and-expose.outputs.selector }} + + steps: + - name: Check for required secrets + uses: actions/github-script@v6 + with: + script: | + const secrets = { + OPENSHIFT_SERVER: `${{ secrets.OPENSHIFT_SERVER }}`, + OPENSHIFT_TOKEN: `${{ secrets.OPENSHIFT_TOKEN }}`, + }; + + const GHCR = "ghcr.io"; + if (`${{ env.IMAGE_REGISTRY }}`.startsWith(GHCR)) { + core.info(`Image registry is ${GHCR} - no registry password required`); + } + else { + core.info("A registry password is required"); + secrets["IMAGE_REGISTRY_PASSWORD"] = `${{ secrets.IMAGE_REGISTRY_PASSWORD }}`; + } + + const missingSecrets = Object.entries(secrets).filter(([ name, value ]) => { + if (value.length === 0) { + core.error(`Secret "${name}" is not set`); + return true; + } + core.info(`✔️ Secret "${name}" is set`); + return false; + }); + + if (missingSecrets.length > 0) { + core.setFailed(`❌ At least one required secret is not set in the repository. \n` + + "You can add it using:\n" + + "GitHub UI: https://docs.github.com/en/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-a-repository \n" + + "GitHub CLI: https://cli.github.com/manual/gh_secret_set \n" + + "Also, refer to https://github.com/redhat-actions/oc-login#getting-started-with-the-action-or-see-example"); + } + else { + core.info(`✅ All the required secrets are set`); + } + + - name: Check out repository + uses: actions/checkout@v4 + + - name: Determine app name + if: env.APP_NAME == '' + run: | + echo "APP_NAME=$(basename $PWD)" | tee -a $GITHUB_ENV + + - name: Determine image tags + if: env.IMAGE_TAGS == '' + run: | + echo "IMAGE_TAGS=latest ${GITHUB_SHA::12}" | tee -a $GITHUB_ENV + + # https://github.com/redhat-actions/buildah-build#readme + - name: Build from Dockerfile + id: build-image + uses: redhat-actions/buildah-build@v2 + with: + image: ${{ env.APP_NAME }} + tags: ${{ env.IMAGE_TAGS }} + + # If you don't have a Dockerfile/Containerfile, refer to https://github.com/redhat-actions/buildah-build#scratch-build-inputs + # Or, perform a source-to-image build using https://github.com/redhat-actions/s2i-build + # Otherwise, point this to your Dockerfile/Containerfile relative to the repository root. + dockerfiles: | + ./Dockerfile + + # https://github.com/redhat-actions/push-to-registry#readme + - name: Push to registry + id: push-image + uses: redhat-actions/push-to-registry@v2 + with: + image: ${{ steps.build-image.outputs.image }} + tags: ${{ steps.build-image.outputs.tags }} + registry: ${{ env.IMAGE_REGISTRY }} + username: ${{ env.IMAGE_REGISTRY_USER }} + password: ${{ env.IMAGE_REGISTRY_PASSWORD }} + + # The path the image was pushed to is now stored in ${{ steps.push-image.outputs.registry-path }} + + - name: Install oc + uses: redhat-actions/openshift-tools-installer@v1 + with: + oc: 4 + + # https://github.com/redhat-actions/oc-login#readme + - name: Log in to OpenShift + uses: redhat-actions/oc-login@v1 + with: + openshift_server_url: ${{ env.OPENSHIFT_SERVER }} + openshift_token: ${{ env.OPENSHIFT_TOKEN }} + insecure_skip_tls_verify: true + namespace: ${{ env.OPENSHIFT_NAMESPACE }} + + # This step should create a deployment, service, and route to run your app and expose it to the internet. + # https://github.com/redhat-actions/oc-new-app#readme + - name: Create and expose app + id: deploy-and-expose + uses: redhat-actions/oc-new-app@v1 + with: + app_name: ${{ env.APP_NAME }} + image: ${{ steps.push-image.outputs.registry-path }} + namespace: ${{ env.OPENSHIFT_NAMESPACE }} + port: ${{ env.APP_PORT }} + + - name: Print application URL + env: + ROUTE: ${{ steps.deploy-and-expose.outputs.route }} + SELECTOR: ${{ steps.deploy-and-expose.outputs.selector }} + run: | + [[ -n ${{ env.ROUTE }} ]] || (echo "Determining application route failed in previous step"; exit 1) + echo + echo "======================== Your application is available at: ========================" + echo ${{ env.ROUTE }} + echo "===================================================================================" + echo + echo "Your app can be taken down with: \"oc delete all --selector='${{ env.SELECTOR }}'\"" diff --git a/.github/workflows/prisma.yml b/.github/workflows/prisma.yml new file mode 100644 index 000000000..8ef921a3a --- /dev/null +++ b/.github/workflows/prisma.yml @@ -0,0 +1,62 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# A sample workflow that checks for security issues using +# the Prisma Cloud Infrastructure as Code Scan Action on +# the IaC files present in the repository. +# The results are uploaded to GitHub Security Code Scanning +# +# For more details on the Action configuration see https://github.com/prisma-cloud-shiftleft/iac-scan-action + +name: Prisma Cloud IaC Scan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '37 9 * * 0' + +permissions: + contents: read + +jobs: + prisma_cloud_iac_scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + name: Run Prisma Cloud IaC Scan to check + steps: + - name: Checkout + uses: actions/checkout@v4 + - id: iac-scan + name: Run Scan on CFT files in the repository + uses: prisma-cloud-shiftleft/iac-scan-action@53278c231c438216d99b463308a3cbed351ba0c3 + with: + # You will need Prisma Cloud API Access Token + # More details in https://github.com/prisma-cloud-shiftleft/iac-scan-action + prisma_api_url: ${{ secrets.PRISMA_CLOUD_API_URL }} + access_key: ${{ secrets.PRISMA_CLOUD_ACCESS_KEY }} + secret_key: ${{ secrets.PRISMA_CLOUD_SECRET_KEY }} + # Scan sources on Prisma Cloud are uniquely identified by their name + asset_name: 'my-asset-name' + # The service need to know the type of IaC being scanned + template_type: 'CFT' + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + # Results are generated only on a success or failure + # this is required since GitHub by default won't run the next step + # when the previous one has failed. + # And alternative it to add `continue-on-error: true` to the previous step + if: success() || failure() + with: + # The SARIF Log file name is configurable on scan action + # therefore the file name is best read from the steps output + sarif_file: ${{ steps.iac-scan.outputs.iac_scan_result_sarif_path }} + #20250209 diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml new file mode 100644 index 000000000..6ff2b9ba1 --- /dev/null +++ b/.github/workflows/psalm.yml @@ -0,0 +1,39 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Psalm Security Scan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '31 4 * * 6' + +permissions: + contents: read + +jobs: + php-security: + runs-on: ubuntu-latest + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Psalm Security Scan + uses: psalm/psalm-github-security-scan@f3e6fd9432bc3e44aec078572677ce9d2ef9c287 + + - name: Upload Security Analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + #20250208 diff --git a/.github/workflows/puppet-lint.yml b/.github/workflows/puppet-lint.yml new file mode 100644 index 000000000..41f197193 --- /dev/null +++ b/.github/workflows/puppet-lint.yml @@ -0,0 +1,56 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# Puppet Lint tests Puppet code against the recommended Puppet language style guide. +# https://puppet.com/docs/puppet/7/style_guide.html +# Puppet Lint validates only code style; it does not validate syntax. +# To test syntax, use Puppet's puppet parser validate command. +# More details at https://github.com/puppetlabs/puppet-lint/ + +name: puppet-lint + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '40 22 * * 6' + +permissions: + contents: read + +jobs: + puppet-lint: + name: Run puppet-lint scanning + runs-on: ubuntu-latest + permissions: + contents: read # for checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Ruby + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: 2.7 + bundler-cache: true + + - name: Install puppet-lint + run: gem install puppet-lint + + - name: Run puppet-lint + run: puppet-lint . --sarif > puppet-lint-results.sarif + continue-on-error: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: puppet-lint-results.sarif + wait-for-processing: true + #20250209 diff --git a/.github/workflows/pyre.yml b/.github/workflows/pyre.yml new file mode 100644 index 000000000..053f88a6f --- /dev/null +++ b/.github/workflows/pyre.yml @@ -0,0 +1,46 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow integrates Pyre with GitHub's +# Code Scanning feature. +# +# Pyre is a performant type checker for Python compliant with +# PEP 484. Pyre can analyze codebases with millions of lines +# of code incrementally – providing instantaneous feedback +# to developers as they write code. +# +# See https://pyre-check.org + +name: Pyre + +on: + workflow_dispatch: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + pyre: + permissions: + actions: read + contents: read + security-events: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Run Pyre + uses: facebook/pyre-action@60697a7858f7cc8470d8cc494a3cf2ad6b06560d + with: + # To customize these inputs: + # See https://github.com/facebook/pyre-action#inputs + repo-directory: './' + requirements-path: 'requirements.txt' diff --git a/.github/workflows/pysa.yml b/.github/workflows/pysa.yml new file mode 100644 index 000000000..4f2c48314 --- /dev/null +++ b/.github/workflows/pysa.yml @@ -0,0 +1,51 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow integrates Python Static Analyzer (Pysa) with +# GitHub's Code Scanning feature. +# +# Python Static Analyzer (Pysa) is a security-focused static +# analysis tool that tracks flows of data from where they +# originate to where they terminate in a dangerous location. +# +# See https://pyre-check.org/docs/pysa-basics/ + +name: Pysa + +on: + workflow_dispatch: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '16 6 * * 4' + +permissions: + contents: read + +jobs: + pysa: + permissions: + actions: read + contents: read + security-events: write + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Run Pysa + uses: facebook/pysa-action@f46a63777e59268613bd6e2ff4e29f144ca9e88b + with: + # To customize these inputs: + # See https://github.com/facebook/pysa-action#inputs + repo-directory: './' + requirements-path: 'requirements.txt' + infer-types: true + include-default-sapp-filters: true + #20250222 diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml new file mode 100644 index 000000000..1168bd9ad --- /dev/null +++ b/.github/workflows/python-app.yml @@ -0,0 +1,39 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python application + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml new file mode 100644 index 000000000..f3586044a --- /dev/null +++ b/.github/workflows/python-package-conda.yml @@ -0,0 +1,34 @@ +name: Python Package using Conda + +on: [push] + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: '3.10' + - name: Add conda to system path + run: | + # $CONDA is an environment variable pointing to the root of the miniconda directory + echo $CONDA/bin >> $GITHUB_PATH + - name: Install dependencies + run: | + conda env update --file environment.yml --name base + - name: Lint with flake8 + run: | + conda install flake8 + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + conda install pytest + pytest diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml new file mode 100644 index 000000000..0373118d5 --- /dev/null +++ b/.github/workflows/rubocop.yml @@ -0,0 +1,54 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# pulled from repo +name: "Rubocop" + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '41 2 * * 6' + +jobs: + rubocop: + runs-on: ubuntu-latest + strategy: + fail-fast: false + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # If running on a self-hosted runner, check it meets the requirements + # listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners + - name: Set up Ruby + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: 2.6 + + # This step is not necessary if you add the gem to your Gemfile + - name: Install Code Scanning integration + run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install + + - name: Install dependencies + run: bundle install + + - name: Rubocop run + run: | + bash -c " + bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif + [[ $? -ne 2 ]] + " + + - name: Upload Sarif output + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: rubocop.sarif + + #20250208 diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml new file mode 100644 index 000000000..5d80832d3 --- /dev/null +++ b/.github/workflows/ruby.yml @@ -0,0 +1,38 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake +# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby + +name: Ruby + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + test: + + runs-on: ubuntu-latest + strategy: + matrix: + ruby-version: ['2.6', '2.7', '3.0'] + + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, + # change this to (see https://github.com/ruby/setup-ruby#versioning): + # uses: ruby/setup-ruby@v1 + uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0 + with: + ruby-version: ${{ matrix.ruby-version }} + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + - name: Run tests + run: bundle exec rake diff --git a/.github/workflows/rust-clippy.yml b/.github/workflows/rust-clippy.yml new file mode 100644 index 000000000..32297d6dd --- /dev/null +++ b/.github/workflows/rust-clippy.yml @@ -0,0 +1,56 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# rust-clippy is a tool that runs a bunch of lints to catch common +# mistakes in your Rust code and help improve your Rust code. +# More details at https://github.com/rust-lang/rust-clippy +# and https://rust-lang.github.io/rust-clippy/ + +name: rust-clippy analyze + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '17 13 * * 4' + +jobs: + rust-clippy-analyze: + name: Run rust-clippy analyzing + runs-on: ubuntu-latest + permissions: + contents: read + security-events: write + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Install Rust toolchain + uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1 + with: + profile: minimal + toolchain: stable + components: clippy + override: true + + - name: Install required cargo + run: cargo install clippy-sarif sarif-fmt + + - name: Run rust-clippy + run: + cargo clippy + --all-features + --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt + continue-on-error: true + + - name: Upload analysis results to GitHub + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: rust-clippy-results.sarif + wait-for-processing: true + #20250214 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 000000000..9fd45e090 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml new file mode 100644 index 000000000..1277165ce --- /dev/null +++ b/.github/workflows/scorecard.yml @@ -0,0 +1,74 @@ +# This workflow uses actions that are not certified by GitHub. They are provided +# by a third-party and are governed by separate terms of service, privacy +# policy, and support documentation. + +name: Scorecard supply-chain security +on: + # For Branch-Protection check. Only the default branch is supported. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection + branch_protection_rule: + # To guarantee Maintained check is occasionally updated. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained + schedule: + - cron: '39 20 * * 3' + push: + branches: [ "main" ] + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + # Uncomment the permissions below if installing in a private repository. + # contents: read + # actions: read + + steps: + - name: "Checkout code" + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + with: + persist-credentials: false + + - name: "Run analysis" + uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 + with: + results_file: results.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecard on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action?tab=readme-ov-file#authentication-with-fine-grained-pat-optional. + # repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: true + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: "Upload artifact" + uses: actions/upload-artifact@97a0fba1372883ab732affbe8f94b823f91727db # v3.pre.node20 + with: + name: SARIF file + path: results.sarif + retention-days: 5 + + # Upload the results to GitHub's code scanning dashboard (optional). + # Commenting out will disable upload of results to your repo's Code Scanning dashboard + - name: "Upload to code-scanning" + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + #20250208 diff --git a/.github/workflows/securitycodescan.yml b/.github/workflows/securitycodescan.yml new file mode 100644 index 000000000..d1c347fc0 --- /dev/null +++ b/.github/workflows/securitycodescan.yml @@ -0,0 +1,43 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow integrates SecurityCodeScan with GitHub's Code Scanning feature +# SecurityCodeScan is a vulnerability patterns detector for C# and VB.NET + +name: SecurityCodeScan + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '27 20 * * 0' + +jobs: + SCS: + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + - uses: nuget/setup-nuget@04b0c2b8d1b97922f67eca497d7cf0bf17b8ffe1 + - uses: microsoft/setup-msbuild@v1.0.2 + + - name: Set up projects for analysis + uses: security-code-scan/security-code-scan-add-action@f8ff4f2763ed6f229eded80b1f9af82ae7f32a0d + + - name: Restore dependencies + run: dotnet restore + + - name: Build + run: dotnet build --no-restore + + - name: Convert sarif for uploading to GitHub + uses: security-code-scan/security-code-scan-results-action@cdb3d5e639054395e45bf401cba8688fcaf7a687 + + - name: Upload sarif + uses: github/codeql-action/upload-sarif@v3 + + #20250210 diff --git a/.github/workflows/snyk-infrastructure.yml b/.github/workflows/snyk-infrastructure.yml new file mode 100644 index 000000000..fe6919728 --- /dev/null +++ b/.github/workflows/snyk-infrastructure.yml @@ -0,0 +1,55 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# A sample workflow which checks out your Infrastructure as Code Configuration files, +# such as Kubernetes, Helm & Terraform and scans them for any security issues. +# The results are then uploaded to GitHub Security Code Scanning +# +# For more examples, including how to limit scans to only high-severity issues +# and fail PR checks, see https://github.com/snyk/actions/ + +name: Snyk Infrastructure as Code + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '37 11 * * 1' + +permissions: + contents: read + +jobs: + snyk: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run Snyk to check configuration files for security issues + # Snyk can be used to break the build when it detects security issues. + # In this case we want to upload the issues to GitHub Code Scanning + continue-on-error: true + uses: snyk/actions/iac@14818c4695ecc4045f33c9cee9e795a788711ca4 + env: + # In order to use the Snyk Action you will need to have a Snyk API token. + # More details in https://github.com/snyk/actions#getting-your-snyk-token + # or you can signup for free at https://snyk.io/login + SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} + with: + # Add the path to the configuration file that you would like to test. + # For example `deployment.yaml` for a Kubernetes deployment manifest + # or `main.tf` for a Terraform configuration file + file: your-file-to-test.yaml + - name: Upload result to GitHub Code Scanning + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: snyk.sarif + #20250218 diff --git a/.github/workflows/sobelow.yml b/.github/workflows/sobelow.yml new file mode 100644 index 000000000..a0eebd128 --- /dev/null +++ b/.github/workflows/sobelow.yml @@ -0,0 +1,42 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# +# Sobelow is a security-focused static analysis tool for the Phoenix framework. https://sobelow.io/ +# +# To use this workflow, you must have GitHub Advanced Security (GHAS) enabled for your repository. +# +# Instructions: +# 2. Follow the annotated workflow below and make any necessary modifications then save the workflow to your repository +# and review the "Security" tab once the action has run. +name: Sobelow + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '42 16 * * 6' + +permissions: + contents: read + +jobs: + security-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - id: run-action + uses: sobelow/action@1afd6d2cae70ae8bd900b58506f54487ed863912 + - name: Upload report + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif + #20250208 diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml new file mode 100644 index 000000000..07701bef6 --- /dev/null +++ b/.github/workflows/sonarcloud.yml @@ -0,0 +1,67 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow helps you trigger a SonarCloud analysis of your code and populates +# GitHub Code Scanning alerts with the vulnerabilities found. +# Free for open source project. + +# 1. Login to SonarCloud.io using your GitHub account + +# 2. Import your project on SonarCloud +# * Add your GitHub organization first, then add your repository as a new project. +# * Please note that many languages are eligible for automatic analysis, +# which means that the analysis will start automatically without the need to set up GitHub Actions. +# * This behavior can be changed in Administration > Analysis Method. +# +# 3. Follow the SonarCloud in-product tutorial +# * a. Copy/paste the Project Key and the Organization Key into the args parameter below +# (You'll find this information in SonarCloud. Click on "Information" at the bottom left) +# +# * b. Generate a new token and add it to your Github repository's secrets using the name SONAR_TOKEN +# (On SonarCloud, click on your avatar on top-right > My account > Security +# or go directly to https://sonarcloud.io/account/security/) + +# Feel free to take a look at our documentation (https://docs.sonarcloud.io/getting-started/github/) +# or reach out to our community forum if you need some help (https://community.sonarsource.com/c/help/sc/9) + +name: SonarCloud analysis + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + workflow_dispatch: + +permissions: + pull-requests: read # allows SonarCloud to decorate PRs with analysis results + +jobs: + Analysis: + runs-on: ubuntu-latest + + steps: + - name: Analyze with SonarCloud + + # You can pin the exact commit or the version. + # uses: SonarSource/sonarcloud-github-action@v2.2.0 + uses: SonarSource/sonarcloud-github-action@4006f663ecaf1f8093e8e4abb9227f6041f52216 + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on Sonarcloud.io, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) + with: + # Additional arguments for the SonarScanner CLI + args: + # Unique keys of your project and organization. You can find them in SonarCloud > Information (bottom-left menu) + # mandatory + -Dsonar.projectKey= + -Dsonar.organization= + # Comma-separated paths to directories containing main source files. + #-Dsonar.sources= # optional, default is project base directory + # Comma-separated paths to directories containing test source files. + #-Dsonar.tests= # optional. For more info about Code Coverage, please refer to https://docs.sonarcloud.io/enriching/test-coverage/overview/ + # Adds more detail to both client and server-side analysis logs, activating DEBUG mode for the scanner, and adding client-side environment variables and system properties to the server-side log of analysis report processing. + #-Dsonar.verbose= # optional, default is false + # When you need the analysis to take place in a directory other than the one from which it was launched, default is . + projectBaseDir: . diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml new file mode 100644 index 000000000..d038d1f65 --- /dev/null +++ b/.github/workflows/sonarqube.yml @@ -0,0 +1,66 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow helps you trigger a SonarQube analysis of your code and populates +# GitHub Code Scanning alerts with the vulnerabilities found. +# (this feature is available starting from SonarQube 9.7, Developer Edition and above) + +# 1. Make sure you add a valid GitHub configuration to your SonarQube (Administration > DevOps platforms > GitHub) + +# 2. Import your project on SonarQube +# * Add your repository as a new project by clicking "Create project" from your homepage. +# +# 3. Select GitHub Actions as your CI and follow the tutorial +# * a. Generate a new token and add it to your GitHub repository's secrets using the name SONAR_TOKEN +# (On SonarQube, click on your avatar on top-right > My account > Security or ask your administrator) +# +# * b. Copy/paste your SonarQube host URL to your GitHub repository's secrets using the name SONAR_HOST_URL +# +# * c. Copy/paste the project Key into the args parameter below +# (You'll find this information in SonarQube by following the tutorial or by clicking on Project Information at the top-right of your project's homepage) + +# Feel free to take a look at our documentation (https://docs.sonarqube.org/latest/analysis/github-integration/) +# or reach out to our community forum if you need some help (https://community.sonarsource.com/c/sq/10) + +name: SonarQube analysis + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + workflow_dispatch: + +permissions: + pull-requests: read # allows SonarQube to decorate PRs with analysis results + +jobs: + Analysis: + runs-on: ubuntu-latest + + steps: + - name: Analyze with SonarQube + + # You can pin the exact commit or the version. + # uses: SonarSource/sonarqube-scan-action@v1.1.0 + uses: SonarSource/sonarqube-scan-action@884b79409bbd464b2a59edc326a4b77dc56b2195 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Generate a token on SonarQube, add it to the secrets of this repo with the name SONAR_TOKEN (Settings > Secrets > Actions > add new repository secret) + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} # add the URL of your instance to the secrets of this repo with the name SONAR_HOST_URL (Settings > Secrets > Actions > add new repository secret) + with: + # Additional arguments for the sonarcloud scanner + args: + # Unique key of your project. You can find it in SonarQube > [my project] > Project Information (top-right menu) + # mandatory + -Dsonar.projectKey= + # Comma-separated paths to directories containing main source files. + #-Dsonar.sources= # optional, default is project base directory + # When you need the analysis to take place in a directory other than the one from which it was launched + #-Dsonar.projectBaseDir= # optional, default is . + # Comma-separated paths to directories containing test source files. + #-Dsonar.tests= # optional. For more info about Code Coverage, please refer to https://docs.sonarcloud.io/enriching/test-coverage/overview/ + # Adds more detail to both client and server-side analysis logs, activating DEBUG mode for the scanner, and adding client-side environment variables and system properties to the server-side log of analysis report processing. + #-Dsonar.verbose= # optional, default is false diff --git a/.github/workflows/soos-dast-scan.yml b/.github/workflows/soos-dast-scan.yml new file mode 100644 index 000000000..10d020205 --- /dev/null +++ b/.github/workflows/soos-dast-scan.yml @@ -0,0 +1,50 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# +# SOOS is the easy-to-integrate and affordable software security solution for your whole team. +# +# Learn more at https://soos.io/ +# +# To use this action, perform the following steps: +# +# 1. Create an account on https://app.soos.io. SOOS offers a free 30 day trial for our SCA, DAST, and SBOM products. +# +# 2. Navigate to the "Integrate" page in the SOOS app (https://app.soos.io/integrate/dast/). Note the "API Credentials" section of this page; the keys you will need for the next step are here. +# +# 3. Set up your SOOS API Key and SOOS Client Id as Github Secrets named SOOS_API_KEY and SOOS_CLIENT_ID. +# +# 4. (Optional) If you'd like to upload SARIF results of DAST scans to GitHub, set SOOS_GITHUB_PAT with your Github Personal Access Token. +# +# Check for the latest version here: https://github.com/marketplace/actions/soos-dast + +name: "SOOS DAST Scan" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + soos: + permissions: + security-events: write # for uploading code scanning alert info + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + name: SOOS DAST Analysis + runs-on: ubuntu-latest + steps: + - name: Run SOOS DAST Analysis + uses: soos-io/soos-dast-github-action@65d9878d77c8993f3db9e86a92bc2ad3a6e060af + with: + client_id: ${{ secrets.SOOS_CLIENT_ID }} + api_key: ${{ secrets.SOOS_API_KEY }} + project_name: "" + scan_mode: "baseline" + target_url: "https://www.example.com/" + output_format: "sarif" + - name: Upload SOOS DAST SARIF Report + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: results.sarif diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..2a2fc6fbd --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,27 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: Mark stale issues and pull requests + +on: + schedule: + - cron: '45 5 * * *' + +jobs: + stale: + + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + + steps: + - uses: actions/stale@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'Stale issue message' + stale-pr-message: 'Stale pull request message' + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 000000000..f2c9e97c9 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,43 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 000000000..af6a923ba --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,29 @@ +# This workflow executes several linters on changed files based on languages used in your code base whenever +# you push a code or open a pull request. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/github/super-linter +name: Lint Code Base + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] +jobs: + run-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + # Full git history is needed to get a proper list of changed files within `super-linter` + fetch-depth: 0 + + - name: Lint Code Base + uses: github/super-linter@v4 + env: + VALIDATE_ALL_CODEBASE: false + DEFAULT_BRANCH: "main" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 000000000..21ae770fb --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,22 @@ +# This workflow will build a Swift project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift + +name: Swift + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v diff --git a/.github/workflows/tencent.yml b/.github/workflows/tencent.yml new file mode 100644 index 000000000..9032a26b4 --- /dev/null +++ b/.github/workflows/tencent.yml @@ -0,0 +1,79 @@ +# This workflow will build a docker container, publish and deploy it to Tencent Kubernetes Engine (TKE) when there is a push to the "main" branch. +# +# To configure this workflow: +# +# 1. Ensure that your repository contains the necessary configuration for your Tencent Kubernetes Engine cluster, +# including deployment.yml, kustomization.yml, service.yml, etc. +# +# 2. Set up secrets in your workspace: +# - TENCENT_CLOUD_SECRET_ID with Tencent Cloud secret id +# - TENCENT_CLOUD_SECRET_KEY with Tencent Cloud secret key +# - TENCENT_CLOUD_ACCOUNT_ID with Tencent Cloud account id +# - TKE_REGISTRY_PASSWORD with TKE registry password +# +# 3. Change the values for the TKE_IMAGE_URL, TKE_REGION, TKE_CLUSTER_ID and DEPLOYMENT_NAME environment variables (below). + +name: Tencent Kubernetes Engine + +on: + push: + branches: [ "main" ] + +# Environment variables available to all jobs and steps in this workflow +env: + TKE_IMAGE_URL: ccr.ccs.tencentyun.com/demo/mywebapp + TKE_REGION: ap-guangzhou + TKE_CLUSTER_ID: cls-mywebapp + DEPLOYMENT_NAME: tke-test + +permissions: + contents: read + +jobs: + setup-build-publish-deploy: + name: Setup, Build, Publish, and Deploy + runs-on: ubuntu-latest + environment: production + steps: + + - name: Checkout + uses: actions/checkout@v4 + + # Build + - name: Build Docker image + run: | + docker build -t ${TKE_IMAGE_URL}:${GITHUB_SHA} . + + - name: Login TKE Registry + run: | + docker login -u ${{ secrets.TENCENT_CLOUD_ACCOUNT_ID }} -p '${{ secrets.TKE_REGISTRY_PASSWORD }}' ${TKE_IMAGE_URL} + + # Push the Docker image to TKE Registry + - name: Publish + run: | + docker push ${TKE_IMAGE_URL}:${GITHUB_SHA} + + - name: Set up Kustomize + run: | + curl -o kustomize --location https://github.com/kubernetes-sigs/kustomize/releases/download/v3.1.0/kustomize_3.1.0_linux_amd64 + chmod u+x ./kustomize + + - name: Set up ~/.kube/config for connecting TKE cluster + uses: TencentCloud/tke-cluster-credential-action@v1 + with: + secret_id: ${{ secrets.TENCENT_CLOUD_SECRET_ID }} + secret_key: ${{ secrets.TENCENT_CLOUD_SECRET_KEY }} + tke_region: ${{ env.TKE_REGION }} + cluster_id: ${{ env.TKE_CLUSTER_ID }} + + - name: Switch to TKE context + run: | + kubectl config use-context ${TKE_CLUSTER_ID}-context-default + + # Deploy the Docker image to the TKE cluster + - name: Deploy + run: | + ./kustomize edit set image ${TKE_IMAGE_URL}:${GITHUB_SHA} + ./kustomize build . | kubectl apply -f - + kubectl rollout status deployment/${DEPLOYMENT_NAME} + kubectl get services -o wide diff --git a/.github/workflows/tfsec.yml b/.github/workflows/tfsec.yml new file mode 100644 index 000000000..2da320b07 --- /dev/null +++ b/.github/workflows/tfsec.yml @@ -0,0 +1,38 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: tfsec + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '24 5 * * 1' + +jobs: + tfsec: + name: Run tfsec sarif report + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + steps: + - name: Clone repo + uses: actions/checkout@v4 + + - name: Run tfsec + uses: aquasecurity/tfsec-sarif-action@21ded20e8ca120cd9d3d6ab04ef746477542a608 + with: + sarif_file: tfsec.sarif + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + # Path to SARIF file relative to the root of the repository + sarif_file: tfsec.sarif diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml new file mode 100644 index 000000000..525ee2120 --- /dev/null +++ b/.github/workflows/trivy.yml @@ -0,0 +1,49 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: trivy + +on: + push: + branches: [ "main" ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ "main" ] + schedule: + - cron: '38 3 * * 5' + +permissions: + contents: read + +jobs: + build: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + name: Build + runs-on: "ubuntu-20.04" + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build an image from Dockerfile + run: | + docker build -t docker.io/my-organization/my-app:${{ github.sha }} . + + - name: Run Trivy vulnerability scanner + uses: aquasecurity/trivy-action@7b7aa264d83dc58691451798b4d117d53d21edfe + with: + image-ref: 'docker.io/my-organization/my-app:${{ github.sha }}' + format: 'template' + template: '@/contrib/sarif.tpl' + output: 'trivy-results.sarif' + severity: 'CRITICAL,HIGH' + + - name: Upload Trivy scan results to GitHub Security tab + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: 'trivy-results.sarif' + #20250214 diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 000000000..9626ff6d3 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,28 @@ +name: NodeJS with Webpack + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + npx webpack diff --git a/.github/workflows/zscaler-iac-scan.yml b/.github/workflows/zscaler-iac-scan.yml new file mode 100644 index 000000000..8ebfe9664 --- /dev/null +++ b/.github/workflows/zscaler-iac-scan.yml @@ -0,0 +1,57 @@ +#This workflow uses actions that are not certified by GitHub. +#They are provided by a third party and are governed by +#separate terms of service, privacy policy, and support +#documentation. + +#This workflow runs the Zscaler Infrastructure as Code (IaC) Scan app, +#which detects security misconfigurations in IaC templates and publishes the findings +#under the code scanning alerts section within the repository. + +#Log into the Zscaler Posture Control(ZPC) Portal to begin the onboarding process. +#Copy the client ID and client secret key generated during the onboarding process and configure. +#GitHub secrets (ZSCANNER_CLIENT_ID, ZSCANNER_CLIENT_SECRET). + +#Refer https://github.com/marketplace/actions/zscaler-iac-scan for additional details on setting up this workflow. +#Any issues with this workflow, please raise it on https://github.com/ZscalerCWP/Zscaler-IaC-Action/issues for further investigation. + +name: Zscaler IaC Scan +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '27 18 * * 4' + +permissions: + contents: read + +jobs: + zscaler-iac-scan: + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + runs-on: ubuntu-latest + steps: + - name : Code Checkout + uses: actions/checkout@v4 + - name : Zscaler IAC Scan + uses : ZscalerCWP/Zscaler-IaC-Action@8d2afb33b10b4bd50e2dc2c932b37c6e70ac1087 + id : zscaler-iac-scan + with: + client_id : ${{ secrets.ZSCANNER_CLIENT_ID }} + client_secret : ${{ secrets.ZSCANNER_CLIENT_SECRET }} + #This is the user region specified during the onboarding process within the ZPC Admin Portal. + region : 'US' + iac_dir : #Enter the IaC directory path from root. + iac_file : #Enter the IaC file path from root. + output_format : #(Optional) By default, the output is provided in a human readable format. However, if you require a different format, you can specify it here. + #To fail the build based on policy violations identified in the IaC templates, set the input value (fail_build) to true. + fail_build : #Enter true/false + #Ensure that the following step is included in order to post the scan results under the code scanning alerts section within the repository. + - name: Upload SARIF file + if: ${{ success() || failure() && (steps.zscaler-iac-scan.outputs.sarif_file_path != '') }} + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: ${{ steps.zscaler-iac-scan.sarif_file_path }} + #20250214 diff --git a/.github/workflows/zscan.yml b/.github/workflows/zscan.yml new file mode 100644 index 000000000..0c35e1714 --- /dev/null +++ b/.github/workflows/zscan.yml @@ -0,0 +1,60 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# +# The zimperium-zscan GitHub action scans your mobile app binary (iOS or Android) +# and identifies security, privacy, and compliance-related vulnerabilities. ​ +# +# Prerequisites: +# * An active Zimperium zScan account is required. If you are not an existing Zimperium +# zScan customer, please request a zSCAN demo by visiting https://www.zimperium.com/contact-us. +# * Either GitHub Advanced Security (GHAS) or a public repository is required to display +# issues and view the remediation information inside of GitHub code scanning alerts.​ +# +# For additional information and setup instructions +# please visit: https://github.com/Zimperium/zScanMarketplace#readme + +name: "Zimperium zScan" + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + zscan: + name: zScan + runs-on: ubuntu-latest + permissions: + contents: read # for actions/checkout to fetch code + security-events: write # for github/codeql-action/upload-sarif to upload SARIF results + actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Execute gradle build + run: ./gradlew build # Change this to build your mobile application + + - name: Run Zimperium zScan + uses: zimperium/zscanmarketplace@bfc6670f6648d796098c251ccefcfdb98983174d + timeout-minutes: 60 + with: + # REPLACE: Zimperium Client Environment Name + client_env: env_string + # REPLACE: Zimperium Client ID + client_id: id_string + # REPLACE: Zimperium Client Secret + client_secret: ${{ secrets.ZSCAN_CLIENT_SECRET }} + # REPLACE: The path to an .ipa or .apk + app_file: app-release-unsigned.apk + + - name: Upload SARIF file + uses: github/codeql-action/upload-sarif@v3 + with: + sarif_file: Zimperium.sarif diff --git a/AJX.js b/AJX.js new file mode 100644 index 000000000..bdfdbb282 --- /dev/null +++ b/AJX.js @@ -0,0 +1,85 @@ +public static api KeyAuthApp = new api( + name: "AJX", // App name + ownerid: "o0dHuOg0Bv", // Account ID + version: "1.0" // Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + //path: @"Your_Path_Here" // (OPTIONAL) see tutorial here https://www.youtube.com/watch?v=I9rxt821gMk&t=1s +); + +std::string name = skCrypt("AJX").decrypt(); // App name +std::string ownerid = skCrypt("o0dHuOg0Bv").decrypt(); // Account ID +std::string secret = skCrypt("2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7").decrypt(); // Application secret (not used in latest C++ example) +std::string version = skCrypt("1.0").decrypt(); // Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs +std::string url = skCrypt("https://keyauth.win/api/1.3/").decrypt(); // change if using KeyAuth custom domains feature +std::string path = skCrypt("").decrypt(); // (OPTIONAL) see tutorial here https://www.youtube.com/watch?v=I9rxt821gMk&t=1s + + +keyauthapp = api( + name = "AJX", // App name + ownerid = "o0dHuOg0Bv", //Account ID + version = "1.0", //Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + hash_to_check = getchecksum() +); + + +$name = "AJX"; // App name +$ownerid = "o0dHuOg0Bv"; // Account ID + + +const KeyAuthApp = new KeyAuth( + "AJX", // App name + "o0dHuOg0Bv", // Account ID + "2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7", // Encryption key, keep hidden and protect this string in your code! + "1.0", // Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs +); + + +private static String ownerid = "o0dHuOg0Bv", // Account ID +private static String appname = "AJX", // App name +private static String version = "1.0" // Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + + +Private Shared name As String = "AJX" ' App name +Private Shared ownerid As String = "o0dHuOg0Bv" ' Account ID +Private Shared secret As String = "2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7" ' Encryption key, keep hidden and protect this string in your code! +Private Shared version As String = "1.0" ' Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + + + +let mut keyauthapp = keyauth::v1_2::KeyauthApi::new( + "AJX", // App name + "o0dHuOg0Bv", // Account ID + "2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7", // Encryption key, keep hidden and protect this string in your code! + "1.0", // Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + "https://keyauth.win/api/1.2/", // This is the API URL, change this to your custom domain if you have it enabled +); + + + +let mut keyauthapp = keyauth::v1_2::KeyauthApi::new( + "AJX", // App name + "o0dHuOg0Bv", // Account ID + "2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7", // Encryption key, keep hidden and protect this string in your code! + "1.0", // Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + "https://keyauth.win/api/1.2/", // This is the API URL, change this to your custom domain if you have it enabled +); + + +local name = "AJX"; -- App name +local ownerid = "o0dHuOg0Bv"; -- Account ID +local version = "1.0"; -- Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs + + +KeyAuth.new.Api( + "AJX", //App name + "o0dHuOg0Bv", //Account ID + "2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7", //Encryption key, keep hidden and protect this string in your code! + "1.0" //Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs +); + + +KeyAuth::Api( + "AJX", //App name + "o0dHuOg0Bv", //Account ID + "2b670f906cdc059bc089d153163adbf35904241f60ad46183902c316cfc6d2d7", //Encryption key, keep hidden and protect this string in your code! + "1.0" //Application version. Used for automatic downloads see video here https://www.youtube.com/watch?v=kW195PLCBKs +); diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..a4fbe9c1c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,36 @@ +FROM mcr.microsoft.com/dotnet/runtime-deps:6.0 as build + +# Replace value with the latest runner release version +# source: https://github.com/actions/runner/releases +# ex: 2.303.0 +ARG RUNNER_VERSION="" +ARG RUNNER_ARCH="x64" +# Replace value with the latest runner-container-hooks release version +# source: https://github.com/actions/runner-container-hooks/releases +# ex: 0.3.1 +ARG RUNNER_CONTAINER_HOOKS_VERSION="" + +ENV DEBIAN_FRONTEND=noninteractive +ENV RUNNER_MANUALLY_TRAP_SIG=1 +ENV ACTIONS_RUNNER_PRINT_LOG_TO_STDOUT=1 + +RUN apt update -y && apt install curl unzip -y + +RUN adduser --disabled-password --gecos "" --uid 1001 runner \ + && groupadd docker --gid 123 \ + && usermod -aG sudo runner \ + && usermod -aG docker runner \ + && echo "%sudo ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers \ + && echo "Defaults env_keep += \"DEBIAN_FRONTEND\"" >> /etc/sudoers + +WORKDIR /home/runner + +RUN curl -f -L -o runner.tar.gz https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \ + && tar xzf ./runner.tar.gz \ + && rm runner.tar.gz + +RUN curl -f -L -o runner-container-hooks.zip https://github.com/actions/runner-container-hooks/releases/download/v${RUNNER_CONTAINER_HOOKS_VERSION}/actions-runner-hooks-k8s-${RUNNER_CONTAINER_HOOKS_VERSION}.zip \ + && unzip ./runner-container-hooks.zip -d ./k8s \ + && rm runner-container-hooks.zip + +USER runner diff --git a/FUNDING.yml b/FUNDING.yml new file mode 100644 index 000000000..e087d08f5 --- /dev/null +++ b/FUNDING.yml @@ -0,0 +1,16 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +polar: # Replace with a single Polar username +buy_me_a_coffee: # Replace with a single Buy Me a Coffee username +thanks_dev: # Replace with a single thanks.dev username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] + diff --git a/README.md b/README.md index f02f3316b..b12f3e33e 100644 --- a/README.md +++ b/README.md @@ -1,110 +1,34 @@ -# Description -This is the repo for TokenPocket to add public chains according to the community requirements. Once the PR is merged, the chain will be included on TokenPocket's Easy Add feature. You can also visit the entrance of the custom network in **https://chainlist.tokenpocket.pro/**. For adding more network data, please read the following tutorials. +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). -## Listing and donation standard -https://help.tokenpocket.pro/developer-en/network/add-chain +## Getting Started -A donation is needed for your PR to be merged. If your PR is not compatible with the Review Rules, it won't be merged and the donation won't be refunded. Please be cautious. +First, run the development server: - -# 简介 -本仓库为TokenPocket根据社区需求进行自定义网络(公链)更新,只要PR被合并就可以在自定义网络--快捷加链的列表中收录,同时,你也可在 **https://chainlist.tokenpocket.pro/** 中查看自定义网络的添加入口。添加更多网络信息,请根据以下指引进行提交。 - -## 公链收录审核及捐赠标准 -https://help.tokenpocket.pro/developer-cn/public-chain/add-chain - -提交PR合并需要捐赠,如果不满足审核要求,则不进行合并,捐赠不会进行退回,请您按需进行提交。 - -## How to add a new chain - -Fork this repo and add your evm chain info into `chains.json` - -Example: - -```javascript -{ - "name": "xDAI Chain", - "chainId": 100, - "shortName": "xdai", - "chain": "XDAI", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xdaichain.com", - "https://xdai.poanetwork.dev", - "wss://rpc.xdaichain.com/wss", - "wss://xdai.poanetwork.dev/wss", - "http://xdai.poanetwork.dev", - "https://dai.poa.network", - "ws://xdai.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png",//network icon selected status - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png",//network icon unselected status in light mode - "ic_chain_unselect_dark": "",//network icon unselected status in dark mode - "color_chain_bg": "0x58B2AF",//wallet card backgroud color - "color_chain_text": "0xFFFFFF",//wallet card text color - "ic_home_logo":""//logo on top of asset page - } -} +```bash +npm run dev +# or +yarn dev ``` -## 如何添加一个新链 +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. -Fork该仓库并在`chains.json` 中加入您的EVM链信息 +You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. -示例: +[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. -```javascript -{ - "name": "xDAI Chain", - "chainId": 100, - "shortName": "xdai", - "chain": "XDAI", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xdaichain.com", - "https://xdai.poanetwork.dev", - "wss://rpc.xdaichain.com/wss", - "wss://xdai.poanetwork.dev/wss", - "http://xdai.poanetwork.dev", - "https://dai.poa.network", - "ws://xdai.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", //链icon选中状态 - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", //链icon白天模式的未选择状态 - "ic_chain_unselect_dark": "", //链icon黑夜模式的未选择状态 - "color_chain_bg": "0x58B2AF", //选择钱包时,卡片的背景颜色 - "color_chain_text": "0xFFFFFF", //选择钱包时,卡片的文字颜色 - "ic_home_logo":"" //首页卡片显示的logo - } -} -``` +The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. + +## Learn More +To learn more about Next.js, take a look at the following resources: +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. -`app_resource` is optional, which is only affect the appearance in TokenPocket Wallet. You can follow the standard below: +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! +## Deploy on Vercel -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-11.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-12.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-13.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-14.png) -![standard](https://tp-statics.tokenpocket.pro/images/custom-chains-standard-15.png) +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..034e84803 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. diff --git a/chains.json b/chains.json index af195da15..70f77f7e6 100644 --- a/chains.json +++ b/chains.json @@ -1,43160 +1,161 @@ -[ - { - "name": "Ethereum Mainnet", - "chainId": 1, - "shortName": "eth", - "chain": "ETH", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "https://api.mycryptoapi.com/eth", - "https://cloudflare-eth.com" - ], - "faucets": [], - "infoURL": "https://ethereum.org" - }, - { - "name": "Optimistic Ethereum", - "chainId": 10, - "shortName": "oeth", - "chain": "ETH", - "network": "mainnet", - "networkId": 10, - "nativeCurrency": { - "name": "Ether", - "symbol": "OETH", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.optimism.io/" - ], - "faucets": [], - "infoURL": "https://optimism.io", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png", - "color_chain_bg": "0xF54B49" - } - }, - { - "name": "Polygon (Matic) Mainnet", - "chainId": 137, - "shortName": "matic", - "chain": "Matic", - "network": "mainnet", - "networkId": 137, - "nativeCurrency": { - "name": "Matic", - "symbol": "MATIC", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.matic.network", - "wss://ws-mainnet.matic.network" - ], - "faucets": [], - "infoURL": "https://matic.network/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/0.png", - "color_chain_bg": "0x7F4CDE" - } - }, - { - "name": "Avalanche Mainnet", - "chainId": 43114, - "shortName": "Avalanche", - "chain": "AVAX", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "rpc": [ - "https://api.avax.network/ext/bc/C/rpc" - ], - "faucets": [], - "infoURL": "https://cchain.explorer.avax.network/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/0.png", - "color_chain_bg": "0xE92734" - } - }, - { - "name": "Cronos Mainnet", - "chainId": 25, - "shortName": "CRO", - "chain": "CRO", - "network": "mainnet", - "networkId": 25, - "nativeCurrency": { - "name": "CRO", - "symbol": "CRO", - "decimals": 18 - }, - "rpc": [ - "https://evm.cronos.org", - "https://cronosrpc-1.xstaking.sg", - "https://evm-cronos.crypto.org", - "https://cronos-rpc.heavenswail.one", - "https://cronos-rpc.elk.finance" - ], - "faucets": [], - "infoURL": "https://cronos.crypto.org/explorer" - }, - { - "name": "Fusion Mainnet", - "chainId": 32659, - "shortName": "fsn", - "chain": "FSN", - "network": "mainnet", - "networkId": 32659, - "nativeCurrency": { - "name": "Fusion", - "symbol": "FSN", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.anyswap.exchange" - ], - "faucets": [], - "infoURL": "https://fsnex.com/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/2.png", - "color_chain_bg": "0x2E3B4A" - } - }, - { - "name": "ThunderCore Mainnet", - "chainId": 108, - "shortName": "TT", - "chain": "TT", - "network": "mainnet", - "networkId": 108, - "nativeCurrency": { - "name": "ThunderCore Mainnet Ether", - "symbol": "TT", - "decimals": 18 - }, - "rpc": [ - "https://mainnet-rpc.thundercore.com" - ], - "faucets": [ - "https://faucet.thundercore.com" - ], - "infoURL": "https://thundercore.com", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/2.png", - "color_chain_bg": "0xEAC541" - } - }, - { - "name": "FON Smart Chain", - "chainId": 201022, - "shortName": "FON", - "chain": "FON", - "network": "mainnet", - "networkId": 201022, - "nativeCurrency": { - "name": "FON", - "symbol": "FON", - "decimals": 18 - }, - "rpc": [ - "https://fsc-dataseed2.fonscan.io" - ], - "faucets": [], - "explorers": [ - { - "name": "FONScan", - "url": "https://fonscan.io/", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1698387395064.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1698387436381.png", - "color_chain_bg": "0x343434", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1675422074776.png", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1675422139280.png" - } - }, - { - "name": "Fraxtal", - "chain": "FRAX", - "rpc": [ - "https://rpc.frax.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 - }, - "infoURL": "https://mainnet.frax.com", - "shortName": "Fraxtal", - "chainId": 252, - "networkId": 252, - "explorers": [ - { - "name": "FraxScan", - "url": "https://fraxscan.com", - "icon": "Frax", - "standard": "EIP3091" - } - ], - "status": "active", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1710309559685.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1710309496700.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1710309512399.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1710309529426.png" - } - }, - { - "name": "Viction Mainnet", - "chainId": 88, - "shortName": "vic", - "chain": "VIC", - "network": "mainnet", - "networkId": 88, - "nativeCurrency": { - "name": "Viction Ether", - "symbol": "VIC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.tomochain.com" - ], - "faucets": [], - "infoURL": "https://www.vicscan.xyz/", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1701074390781.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1701074408625.png", - "color_chain_bg": "0xF5F2C4", - "color_chain_text": "0x1E1E1E", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1701074424755.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1701074444858.png" - } - }, - { - "name": "smartBCH Mainnet", - "chainId": 10000, - "shortName": "smartBCH", - "chain": "smartBCH", - "network": "mainnet", - "networkId": 10000, - "nativeCurrency": { - "name": "Bitcoin Cash", - "symbol": "BCH", - "decimals": 18 - }, - "rpc": [ - "https://smartbch.greyh.at", - "https://rpc-mainnet.smartbch.org", - "https://smartbch.fountainhead.cash/mainnet", - "https://smartbch.devops.cash/mainnet" - ], - "faucets": [], - "infoURL": "https://smartbch.org/", - "app_resource": { - "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", - "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", - "color_chain_bg": "0x4cc947" - } - }, - { - "name": "Aurora Mainnet", - "chainId": 1313161554, - "shortName": "Aurora", - "chain": "NEAR", - "network": "mainnet", - "networkId": 1313161554, - "nativeCurrency": { - "name": "Ether", - "symbol": "aETH", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.aurora.dev" - ], - "faucets": [], - "infoURL": "https://aurora.dev", - "app_resource": { - "ic_home_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png", - "ic_chain_select": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390457950.png", - "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390467132.png", - "ic_all_whitelist_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390477377.png", - "color_chain_bg": "0x78d64b", - "color_chain_text": "0xFFFFFF" - } - }, - { - "name": "PulseChain Mainnet", - "shortName": "pls", - "chain": "PLS", - "chainId": 369, - "networkId": 369, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.pulsechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pulse", - "symbol": "PLS", - "decimals": 18 - }, - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1684207110566.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1684207099184.png", - "color_chain_bg": "0x1A1A1A", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1684207056831.png", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1684207085917.png" - } - }, - { - "name": "Kortho Chain Mainnet", - "chainId": 2559, - "shortName": "KTO", - "chain": "KTO", - "network": "mainnet", - "networkId": 2559, - "nativeCurrency": { - "name": "KORTHO", - "symbol": "KTO", - "decimals": 18 - }, - "rpc": [ - "https://www.kortho-chain.com", - "https://www.kortho-chain.co", - "https://www.kortho-chain.org", - "https://www.kortho-chain.xyz" - ], - "faucets": [], - "infoURL": "https://www.kortho.io", - "app_resource": { - "ic_chain_select": "https://www.kortho.io/static/image/1.png", - "ic_chain_unselect": "https://www.kortho.io/static/image/0.png", - "color_chain_bg": "0x748ee3", - "txUrl": " https://www.kortho.io/" - } - }, - { - "name": "Endurance Smart Chain Mainnet", - "chain": "ACE", - "rpc": [ - "https://rpc-endurance.fusionist.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Endurance Chain Native Token", - "symbol": "ACE", - "decimals": 18 - }, - "infoURL": "https://ace.fusionist.io/", - "shortName": "ace", - "chainId": 648, - "networkId": 648, - "explorers": [ - { - "name": "Endurance Scan", - "url": "https://explorer.endurance.fusionist.io", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709886151485.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709886075208.png", - "color_chain_bg": "0x050504", - "color_chain_text": "0xFFC783", - "ic_home_logo": "hhttps://hk.tpstatic.net/token/tokenpocket-1709886106935.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709886092252.png" - } - }, - { - "name": "Zora", - "chain": "ETH", - "rpc": [ - "https://rpc.zora.energy/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "zora", - "infoURL": "https://zora.energy", - "shortName": "zora", - "chainId": 7777777, - "networkId": 7777777, - "explorers": [ - { - "name": "Zora Network Explorer", - "url": "https://explorer.zora.energy", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899028504.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899005184.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899016829.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899043712.png" - } - }, - { - "name": "Morph Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-testnet.morphl2.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://morphl2.io", - "shortName": "tmorph", - "chainId": 2710, - "networkId": 2710, - "slip44": 1, - "explorers": [ - { - "name": "Morph Testnet Explorer", - "url": "https://explorer-testnet.morphl2.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge-testnet.morphl2.io" - } - ] - }, - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709898729370.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709898717628.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0x6AF495", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709898740826.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709898759382.png" - } - }, - { - "name": "Mode", - "chain": "ETH", - "rpc": [ - "https://mainnet.mode.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.mode.network/", - "shortName": "mode", - "chainId": 34443, - "networkId": 34443, - "icon": "mode", - "explorers": [ - { - "name": "modescout", - "url": "https://explorer.mode.network", - "standard": "none" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899308595.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899325224.png", - "color_chain_bg": "0xD9F417", - "color_chain_text": "0x000000", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899339092.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899353868.png" - } - }, - { - "name": "Berachain Artio", - "chain": "Berachain Artio", - "rpc": [ - "https://artio.rpc.berachain.com", - "https://rpc.ankr.com/berachain_testnet" - ], - "faucets": [ - "https://artio.faucet.berachain.com" - ], - "nativeCurrency": { - "name": "BERA Token", - "symbol": "BERA", - "decimals": 18 - }, - "infoURL": "https://www.berachain.com", - "shortName": "berachainArtio", - "chainId": 80085, - "networkId": 80085, - "icon": "berachain", - "explorers": [ - { - "name": "Beratrail", - "url": "https://artio.beratrail.io", - "icon": "berachain", - "standard": "none" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709885929619.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709885915602.png", - "color_chain_bg": "0xEF821F", - "color_chain_text": "0x050504", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709885984851.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709885969274.png" - } - }, - { - "name": "BounceBit Testnet", - "chainId": 6000, - "shortName": "BBT", - "chain": "BounceBit Testnet", - "network": "testnet", - "networkId": 6000, - "nativeCurrency": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 - }, - "rpc": [ - "https://fullnode-testnet.bouncebitapi.com" - ], - "faucets": [], - "explorers": [ - { - "name": "BBScan", - "url": "https://bbscan.io", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901807789.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709901770114.png", - "color_chain_bg": "0xEDEAE4", - "color_chain_text": "0x000000", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709901795926.png" - } - }, - { - "name": "zkLink Nova Mainnet", - "chainId": 810180, - "shortName": "zkLink Nova", - "chain": "zkLink Nova Mainnet", - "network": "Mainnet", - "networkId": 810180, - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc.zklink.io", - "wss://rpc.zklink.io" - ], - "faucets": [], - "explorers": [ - { - "name": "zkLink Nova Block Explorer", - "url": "https://explorer.zklink.io/", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711359675534.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711359694827.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xffffff", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711359711634.png" - } - }, - { - "name": "xDAI Chain", - "chainId": 100, - "shortName": "xdai", - "chain": "XDAI", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xdaichain.com", - "https://xdai.poanetwork.dev", - "wss://rpc.xdaichain.com/wss", - "wss://xdai.poanetwork.dev/wss", - "http://xdai.poanetwork.dev", - "https://dai.poa.network", - "ws://xdai.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://forum.poa.network/c/xdai-chain", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", - "color_chain_bg": "0x58B2AF" - } - }, - { - "name": "zkSync Era Testnet", - "chain": "ETH", - "rpc": [ - "https://zksync2-testnet.zksync.dev" - ], - "faucets": [ - "https://goerli.portal.zksync.io/faucet" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://era.zksync.io/docs/", - "shortName": "zksync-goerli", - "chainId": 280, - "networkId": 280, - "icon": "zksync-era", - "explorers": [ - { - "name": "zkSync Era Block Explorer", - "url": "https://goerli.explorer.zksync.io", - "icon": "zksync-era", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://goerli.portal.zksync.io/bridge" - } - ] - } - }, - { - "name": "zkSync Era Mainnet", - "chain": "ETH", - "rpc": [ - "https://zksync2-mainnet.zksync.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zksync.io/", - "shortName": "zksync", - "chainId": 324, - "networkId": 324, - "icon": "zksync-era", - "explorers": [ - { - "name": "zkSync Era Block Explorer", - "url": "https://explorer.zksync.io", - "icon": "zksync-era", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portal.zksync.io/bridge" - } - ] - } - }, - { - "name": "Merlin Mainnet", - "chainId": 4200, - "shortName": "Merlin Mainnet", - "chain": "Merlin Mainnet", - "network": "mainnet", - "networkId": 4200, - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.merlinchain.io" - ], - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.merlinchain.io/" - } - ] - }, - { - "name": "BTA Chain", - "chainId": 1657, - "shortName": "btachain", - "chain": "BTA", - "network": "mainnet", - "networkId": 1657, - "nativeCurrency": { - "name": "btachain", - "symbol": "BTA", - "decimals": 18 - }, - "rpc": [ - "https://dataseed1.btachain.com", - "https://dataseed2.btachain.com", - "wss://dataseed1.btachain.com/wss", - "wss://dataseed2.btachain.com/wss", - "ws://dataseed1.btachain.com:8861" - ], - "faucets": [], - "infoURL": "https://btachain.com", - "app_resource": { - "ic_chain_select": "https://btachain.com/images/favicon/logo.png", - "ic_chain_unselect": "https://btachain.com/images/favicon/logo-0x.png", - "color_chain_bg": "0x0777cf" - } - }, - { - "name": "Cycle StarFish Testnet", - "chain": "ETH", - "status": "active", - "icon": "Cycle", - "network": "testnet", - "rpc": [ - "https://rpc-testnet.cyclenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://cycle-network.gitbook.io/cycle-network-docs/welcome/testnet-starfish", - "shortName": "Cycle StarFish Testnet", - "chainId": 1221, - "networkId": 1221, - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711525328453.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711564983535.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711565004213.png" - } - }, - { - "name": "Arbitrum One", - "chainId": 42161, - "shortName": "Arbitrum", - "chain": "Arbitrum", - "network": "mainnet", - "networkId": 42161, - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://arb1.arbitrum.io/rpc" - ], - "faucets": [], - "infoURL": "https://arbitrum.io/" - }, - { - "name": "Fuse Mainnet", - "chainId": 122, - "shortName": "fuse", - "chain": "FUSE", - "network": "mainnet", - "networkId": 122, - "nativeCurrency": { - "name": "Fuse", - "symbol": "FUSE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.fuse.io" - ], - "faucets": [], - "infoURL": "https://fuse.io/", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/2.png", - "color_chain_bg": "0x62D970" - } - }, - { - "name": "Fantom Opera", - "chainId": 250, - "shortName": "ftm", - "chain": "FTM", - "network": "mainnet", - "networkId": 250, - "nativeCurrency": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 - }, - "rpc": [ - "https://rpcapi.fantom.network", - "https://fantomscan.io/rpc" - ], - "faucets": [], - "infoURL": "https://fantom.foundation", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/0.png", - "color_chain_bg": "0x1969FF" - } - }, - { - "name": "Ethereum Classic Mainnet", - "chainId": 61, - "shortName": "etc", - "chain": "ETC", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Ethereum Classic Ether", - "symbol": "ETC", - "decimals": 18 - }, - "rpc": [ - "https://www.ethercluster.com/etc" - ], - "faucets": [], - "infoURL": "https://ethereumclassic.org", - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/2.png", - "color_chain_bg": "0x3CBA3B" - } - }, - { - "name": "MVS", - "chainId": 23, - "shortName": "MVS", - "chain": "MVS", - "network": "mainnet", - "networkId": 23, - "nativeCurrency": { - "name": "ETP", - "symbol": "ETP", - "decimals": 18 - }, - "rpc": [ - "https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54" - ], - "faucets": [], - "infoURL": "" - }, - { - "name": "Catecoin Chain Mainnet", - "chainId": 1618, - "shortName": "cate", - "chain": "Catechain", - "network": "mainnet", - "networkId": 1618, - "nativeCurrency": { - "name": "Catecoin", - "symbol": "CATE", - "decimals": 18 - }, - "rpc": [ - "https://send.catechain.com" - ], - "faucets": [], - "infoURL": "https://catechain.com" - }, - { - "name": "Ethereum Testnet Ropsten", - "chainId": 3, - "shortName": "rop", - "chain": "ETH", - "network": "ropsten", - "networkId": 3, - "nativeCurrency": { - "name": "Ropsten Ether", - "symbol": "ROP", - "decimals": 18 - }, - "rpc": [ - "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://ropsten.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" - ], - "faucets": [ - "https://faucet.ropsten.be?${ADDRESS}" - ], - "infoURL": "https://github.com/ethereum/ropsten" - }, - { - "name": "Ethereum Testnet Kovan", - "chainId": 42, - "shortName": "kov", - "chain": "ETH", - "network": "kovan", - "networkId": 42, - "nativeCurrency": { - "name": "Kovan Ether", - "symbol": "KOV", - "decimals": 18 - }, - "rpc": [ - "https://kovan.poa.network", - "http://kovan.poa.network:8545", - "https://kovan.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://kovan.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "ws://kovan.poa.network:8546" - ], - "faucets": [ - "https://faucet.kovan.network", - "https://gitter.im/kovan-testnet/faucet" - ], - "infoURL": "https://kovan-testnet.github.io/website" - }, - { - "name": "Ethereum Testnet Rinkeby", - "chainId": 4, - "shortName": "rin", - "chain": "ETH", - "network": "rinkeby", - "networkId": 4, - "nativeCurrency": { - "name": "Rinkeby Ether", - "symbol": "RIN", - "decimals": 18 - }, - "rpc": [ - "https://rinkeby.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "wss://rinkeby.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" - ], - "faucets": [ - "https://faucet.rinkeby.io" - ], - "infoURL": "https://www.rinkeby.io" - }, - { - "name": "Ethereum Testnet Goerli", - "chainId": 5, - "shortName": "gor", - "chain": "ETH", - "network": "goerli", - "networkId": 5, - "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", - "decimals": 18 - }, - "rpc": [ - "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", - "https://rpc.goerli.mudit.blog/", - "https://rpc.slock.it/goerli ", - "https://goerli.prylabs.net/" - ], - "faucets": [ - "https://goerli-faucet.slock.it/?address=${ADDRESS}", - "https://faucet.goerli.mudit.blog" - ], - "infoURL": "https://goerli.net/#about" - }, - { - "name": "Klaytn Testnet Baobab", - "chainId": 1001, - "shortName": "Baobab", - "chain": "KLAY", - "network": "baobab", - "networkId": 1001, - "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 - }, - "rpc": [ - "https://node-api.klaytnapi.com/v1/klaytn" - ], - "faucets": [ - "https://baobab.wallet.klaytn.com/access?next=faucet" - ], - "infoURL": "https://www.klaytn.com/" - }, - { - "name": "Arbitrum Testnet V5", - "chainId": 144545313136048, - "shortName": "Arbitrum Test", - "chain": "Arbitrum Test", - "network": "testnet", - "networkId": 144545313136048, - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://kovan5.arbitrum.io/rpc" - ], - "faucets": [], - "infoURL": "" - }, - { - "name": "Zenith Smart Chain", - "chainId": 20212, - "shortName": "ZSC", - "chain": "ZSC", - "network": "mainnet", - "networkId": 20212, - "nativeCurrency": { - "name": "ZTB", - "symbol": "ZTB", - "decimals": 18 - }, - "rpc": [ - "https://zsc.one/rpc" - ], - "faucets": [], - "infoURL": "" - }, - { - "name": "Newton Testnet", - "chainId": 1007, - "shortName": "tnew", - "chain": "NEW", - "network": "testnet", - "networkId": 1007, - "nativeCurrency": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 - }, - "rpc": [ - "https://rpc1.newchain.newtonproject.org" - ], - "faucets": [], - "infoURL": "https://www.newtonproject.org/" - }, - { - "name": "EtherInc", - "chainId": 101, - "shortName": "eti", - "chain": "ETI", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "EtherInc Ether", - "symbol": "ETI", - "decimals": 18 - }, - "rpc": [ - "https://api.einc.io/jsonrpc/mainnet" - ], - "faucets": [], - "infoURL": "https://einc.io" - }, - { - "name": "Evrice Network", - "chainId": 1010, - "shortName": "EVC", - "chain": "EVC", - "network": "Evrice", - "networkId": 1010, - "nativeCurrency": { - "name": "Evrice", - "symbol": "EVC", - "decimals": 18 - }, - "rpc": [ - "https://meta.evrice.com" - ], - "faucets": [], - "infoURL": "https://evrice.com" - }, - { - "name": "Newton", - "chainId": 1012, - "shortName": "new", - "chain": "NEW", - "network": "mainnet", - "networkId": 1012, - "nativeCurrency": { - "name": "Newton", - "symbol": "NEW", - "decimals": 18 - }, - "rpc": [ - "https://global.rpc.mainnet.newtonproject.org" - ], - "faucets": [], - "infoURL": "https://www.newtonproject.org/" - }, - { - "name": "Web3Games Testnet", - "chainId": 102, - "shortName": "w3g", - "chain": "Web3Games", - "network": "Web3Games testnet", - "networkId": 102, - "nativeCurrency": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 - }, - "rpc": [ - "https://substrate.org.cn" - ], - "faucets": [], - "infoURL": "https://web3games.org/", - "app_resource": { - "ic_chain_select": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png", - "ic_chain_unselect": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-01.png", - "color_chain_bg": "0x2A31FB" - } - }, - { - "name": "Clover Testnet", - "chainId": 1023, - "shortName": "tclv", - "chain": "Clover", - "network": "clover testnet", - "networkId": 1023, - "nativeCurrency": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://clover.finance" - }, - { - "name": "Clover Mainnet", - "chainId": 1024, - "shortName": "clv", - "chain": "Clover", - "network": "clover mainnet", - "networkId": 1024, - "nativeCurrency": { - "name": "Clover", - "symbol": "CLV", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://clover.finance" - }, - { - "name": "Metadium Mainnet", - "chainId": 11, - "shortName": "meta", - "chain": "META", - "network": "mainnet", - "networkId": 11, - "nativeCurrency": { - "name": "Metadium Mainnet Ether", - "symbol": "META", - "decimals": 18 - }, - "rpc": [ - "https://api.metadium.com/prod" - ], - "faucets": [], - "infoURL": "https://metadium.com" - }, - { - "name": "IPOS Network", - "chainId": 1122334455, - "shortName": "ipos", - "chain": "IPOS", - "network": "mainnet", - "networkId": 1122334455, - "nativeCurrency": { - "name": "IPOS Network Ether", - "symbol": "IPOS", - "decimals": 18 - }, - "rpc": [ - "https://rpc.iposlab.com", - "https://rpc2.iposlab.com" - ], - "faucets": [], - "infoURL": "https://iposlab.com" - }, - { - "name": "MathChain", - "chainId": 1139, - "shortName": "MATH", - "chain": "MATH", - "network": "mainnet", - "networkId": 1139, - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://mathwallet.org" - }, - { - "name": "MathChain Testnet", - "chainId": 1140, - "shortName": "tMATH", - "chain": "MATH", - "network": "testnet", - "networkId": 1140, - "nativeCurrency": { - "name": "MathChain", - "symbol": "MATH", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://mathwallet.org/" - }, - { - "name": "Metadium Testnet", - "chainId": 12, - "shortName": "kal", - "chain": "META", - "network": "testnet", - "networkId": 12, - "nativeCurrency": { - "name": "Metadium Testnet Ether", - "symbol": "KAL", - "decimals": 18 - }, - "rpc": [ - "https://api.metadium.com/dev" - ], - "faucets": [], - "infoURL": "https://metadium.com" - }, - { - "name": "Huobi ECO Chain Mainnet", - "chainId": 128, - "shortName": "heco", - "chain": "Heco", - "network": "mainnet", - "networkId": 128, - "nativeCurrency": { - "name": "Huobi ECO Chain Native Token", - "symbol": "HT", - "decimals": 18 - }, - "rpc": [ - "https://http-mainnet.hecochain.com", - "wss://ws-mainnet.hecochain.com" - ], - "faucets": [], - "infoURL": "https://www.hecochain.com" - }, - { - "name": "Moonbeam Polkadot", - "chainId": 1284, - "shortName": "mbeam", - "chain": "MOON", - "network": "moonbeam", - "networkId": 1284, - "nativeCurrency": { - "name": "Glimmer", - "symbol": "GLMR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://moonbeam.network/networks/moonbeam/" - }, - { - "name": "Moonriver", - "chainId": 1285, - "shortName": "Moonriver", - "chain": "MOVR", - "network": "MOVR", - "networkId": 1285, - "nativeCurrency": { - "name": "MOVR", - "symbol": "MOVR", - "decimals": 18 - }, - "rpc": [ - "https://rpc.moonriver.moonbeam.network" - ], - "faucets": [], - "infoURL": "https://moonbeam.network/networks/moonriver/" - }, - { - "name": "Moonrock Rococo", - "chainId": 1286, - "shortName": "mrock", - "chain": "MOON", - "network": "moonrock", - "networkId": 1286, - "nativeCurrency": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "" - }, - { - "name": "Moonbeam Testnet Moonbase Alpha", - "chainId": 1287, - "shortName": "mbase", - "chain": "MOON", - "network": "moonbase", - "networkId": 1287, - "nativeCurrency": { - "name": "Dev", - "symbol": "DEV", - "decimals": 18 - }, - "rpc": [ - "https://rpc.testnet.moonbeam.network", - "wss://wss.testnet.moonbeam.network" - ], - "faucets": [], - "infoURL": "https://docs.moonbeam.network/networks/testnet/" - }, - { - "name": "Diode Testnet Staging", - "chainId": 13, - "shortName": "dstg", - "chain": "DIODE", - "network": "testnet", - "networkId": 13, - "nativeCurrency": { - "name": "Staging Diodes", - "symbol": "sDIODE", - "decimals": 18 - }, - "rpc": [ - "https://staging.diode.io:8443/", - "wss://staging.diode.io:8443/ws" - ], - "faucets": [], - "infoURL": "https://diode.io/staging" - }, - { - "name": "Ether-1", - "chainId": 1313114, - "shortName": "etho", - "chain": "ETHO", - "network": "mainnet", - "networkId": 1313114, - "nativeCurrency": { - "name": "Ether-1 Ether", - "symbol": "ETHO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.ether1.org" - ], - "faucets": [], - "infoURL": "https://ether1.org" - }, - { - "name": "NEAR TestNet", - "chainId": 1313161555, - "shortName": "neart", - "chain": "NEAR", - "network": "testnet", - "networkId": 1313161555, - "nativeCurrency": { - "name": "NEAR", - "symbol": "tNEAR", - "decimals": 24 - }, - "rpc": [], - "faucets": [ - "https://wallet.testnet.near.org" - ], - "infoURL": "https://near.org/" - }, - { - "name": "NEAR BetaNet", - "chainId": 1313161556, - "shortName": "nearb", - "chain": "NEAR", - "network": "betanet", - "networkId": 1313161556, - "nativeCurrency": { - "name": "NEAR", - "symbol": "bNEAR", - "decimals": 24 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://near.org/" - }, - { - "name": "Xerom", - "chainId": 1313500, - "shortName": "xero", - "chain": "XERO", - "network": "mainnet", - "networkId": 1313500, - "nativeCurrency": { - "name": "Xerom Ether", - "symbol": "XERO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xerom.org" - ], - "faucets": [], - "infoURL": "https://xerom.org" - }, - { - "name": "PepChain Churchill", - "chainId": 13371337, - "shortName": "tpep", - "chain": "PEP", - "network": "testnet", - "networkId": 13371337, - "nativeCurrency": { - "name": "PepChain Churchill Ether", - "symbol": "TPEP", - "decimals": 18 - }, - "rpc": [ - "https://churchill-rpc.pepchain.io" - ], - "faucets": [], - "infoURL": "https://pepchain.io" - }, - { - "name": "Flare Mainnet", - "chainId": 14, - "shortName": "flr", - "chain": "FLR", - "network": "flare", - "networkId": 14, - "nativeCurrency": { - "name": "Spark", - "symbol": "FLR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://flare.xyz" - }, - { - "name": "Diode Prenet", - "chainId": 15, - "shortName": "diode", - "chain": "DIODE", - "network": "mainnet", - "networkId": 15, - "nativeCurrency": { - "name": "Diodes", - "symbol": "DIODE", - "decimals": 18 - }, - "rpc": [ - "https://prenet.diode.io:8443/", - "wss://prenet.diode.io:8443/ws" - ], - "faucets": [], - "infoURL": "https://diode.io/prenet" - }, - { - "name": "Flare Testnet Coston", - "chainId": 16, - "shortName": "cflr", - "chain": "FLR", - "network": "coston", - "networkId": 16, - "nativeCurrency": { - "name": "Coston Spark", - "symbol": "CFLR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://github.com/flare-eng/coston" - }, - { - "name": "Lightstreams Testnet", - "chainId": 162, - "shortName": "tpht", - "chain": "PHT", - "network": "sirius", - "networkId": 162, - "nativeCurrency": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 - }, - "rpc": [ - "https://node.sirius.lightstreams.io" - ], - "faucets": [ - "https://discuss.lightstreams.network/t/request-test-tokens" - ], - "infoURL": "https://explorer.sirius.lightstreams.io" - }, - { - "name": "Atheios", - "chainId": 1620, - "shortName": "ath", - "chain": "ATH", - "network": "mainnet", - "networkId": 11235813, - "nativeCurrency": { - "name": "Atheios Ether", - "symbol": "ATH", - "decimals": 18 - }, - "rpc": [ - "https://wallet.atheios.com:8797" - ], - "faucets": [], - "infoURL": "https://atheios.com" - }, - { - "name": "Lightstreams Mainnet", - "chainId": 163, - "shortName": "pht", - "chain": "PHT", - "network": "mainnet", - "networkId": 163, - "nativeCurrency": { - "name": "Lightstreams PHT", - "symbol": "PHT", - "decimals": 18 - }, - "rpc": [ - "https://node.mainnet.lightstreams.io" - ], - "faucets": [], - "infoURL": "https://explorer.lightstreams.io" - }, - { - "name": "Harmony Mainnet Shard 0", - "chainId": 1666600000, - "shortName": "hmy-s0", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600000, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s0.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "Harmony Mainnet Shard 1", - "chainId": 1666600001, - "shortName": "hmy-s1", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600001, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s1.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "Harmony Mainnet Shard 2", - "chainId": 1666600002, - "shortName": "hmy-s2", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600002, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s2.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "Harmony Mainnet Shard 3", - "chainId": 1666600003, - "shortName": "hmy-s3", - "chain": "Harmony", - "network": "mainnet", - "networkId": 1666600003, - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.s3.t.hmny.io" - ], - "faucets": [], - "infoURL": "https://www.harmony.one/" - }, - { - "name": "ThaiChain 2.0 ThaiFi", - "chainId": 17, - "shortName": "tfi", - "chain": "TCH", - "network": "thaifi", - "networkId": 17, - "nativeCurrency": { - "name": "Thaifi Ether", - "symbol": "TFI", - "decimals": 18 - }, - "rpc": [ - "https://rpc.thaifi.com" - ], - "faucets": [], - "infoURL": "https://exp.thaifi.com" - }, - { - "name": "ThunderCore Testnet", - "chainId": 18, - "shortName": "TST", - "chain": "TST", - "network": "testnet", - "networkId": 18, - "nativeCurrency": { - "name": "ThunderCore Testnet Ether", - "symbol": "TST", - "decimals": 18 - }, - "rpc": [ - "https://testnet-rpc.thundercore.com" - ], - "faucets": [ - "https://faucet-testnet.thundercore.com" - ], - "infoURL": "https://thundercore.com" - }, - { - "name": "IOLite", - "chainId": 18289463, - "shortName": "ilt", - "chain": "ILT", - "network": "mainnet", - "networkId": 18289463, - "nativeCurrency": { - "name": "IOLite Ether", - "symbol": "ILT", - "decimals": 18 - }, - "rpc": [ - "https://net.iolite.io" - ], - "faucets": [], - "infoURL": "https://iolite.io" - }, - { - "name": "Teslafunds", - "chainId": 1856, - "shortName": "tsf", - "chain": "TSF", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Teslafunds Ether", - "symbol": "TSF", - "decimals": 18 - }, - "rpc": [ - "https://tsfapi.europool.me" - ], - "faucets": [], - "infoURL": "https://teslafunds.io" - }, - { - "name": "EtherGem", - "chainId": 1987, - "shortName": "egem", - "chain": "EGEM", - "network": "mainnet", - "networkId": 1987, - "nativeCurrency": { - "name": "EtherGem Ether", - "symbol": "EGEM", - "decimals": 18 - }, - "rpc": [ - "https://jsonrpc.egem.io/custom" - ], - "faucets": [], - "infoURL": "https://egem.io" - }, - { - "name": "Expanse Network", - "chainId": 2, - "shortName": "exp", - "chain": "EXP", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Expanse Network Ether", - "symbol": "EXP", - "decimals": 18 - }, - "rpc": [ - "https://node.expanse.tech" - ], - "faucets": [], - "infoURL": "https://expanse.tech" - }, - { - "name": "ELA-ETH-Sidechain Mainnet", - "chainId": 20, - "shortName": "elaeth", - "chain": "ETH", - "network": "mainnet", - "networkId": 20, - "nativeCurrency": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 - }, - "rpc": [ - "https://mainrpc.elaeth.io" - ], - "faucets": [], - "infoURL": "https://www.elastos.org/" - }, - { - "name": "Akroma", - "chainId": 200625, - "shortName": "aka", - "chain": "AKA", - "network": "mainnet", - "networkId": 200625, - "nativeCurrency": { - "name": "Akroma Ether", - "symbol": "AKA", - "decimals": 18 - }, - "rpc": [ - "https://remote.akroma.io" - ], - "faucets": [], - "infoURL": "https://akroma.io" - }, - { - "name": "420coin", - "chainId": 2020, - "shortName": "420", - "chain": "420", - "network": "mainnet", - "networkId": 2020, - "nativeCurrency": { - "name": "Fourtwenty", - "symbol": "420", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://420integrated.com" - }, - { - "name": "Edgeware Mainnet", - "chainId": 2021, - "shortName": "edg", - "chain": "EDG", - "network": "mainnet", - "networkId": 2021, - "nativeCurrency": { - "name": "Edge", - "symbol": "EDG", - "decimals": 18 - }, - "rpc": [ - "https://mainnet1.edgewa.re" - ], - "faucets": [], - "infoURL": "http://edgewa.re" - }, - { - "name": "Beresheet Testnet", - "chainId": 2022, - "shortName": "edgt", - "chain": "EDG", - "network": "beresheet", - "networkId": 2022, - "nativeCurrency": { - "name": "Testnet Edge", - "symbol": "tEDG", - "decimals": 18 - }, - "rpc": [ - "https://beresheet1.edgewa.re" - ], - "faucets": [], - "infoURL": "http://edgewa.re" - }, - { - "name": "ELA-ETH-Sidechain Testnet", - "chainId": 21, - "shortName": "elaetht", - "chain": "ETH", - "network": "testnet", - "networkId": 21, - "nativeCurrency": { - "name": "Elastos", - "symbol": "tELA", - "decimals": 18 - }, - "rpc": [ - "https://rpc.elaeth.io" - ], - "faucets": [ - "https://faucet.elaeth.io/" - ], - "infoURL": "https://elaeth.io/" - }, - { - "name": "Freight Trust Network", - "chainId": 211, - "shortName": "EDI", - "chain": "EDI", - "network": "freight & trade network", - "networkId": 0, - "nativeCurrency": { - "name": "Freight Trust Native", - "symbol": "0xF", - "decimals": 18 - }, - "rpc": [ - "http://13.57.207.168:3435", - "https://app.freighttrust.net/ftn/${API_KEY}" - ], - "faucets": [ - "http://faucet.freight.sh" - ], - "infoURL": "https://freighttrust.com" - }, - { - "name": "Webchain", - "chainId": 24484, - "shortName": "web", - "chain": "WEB", - "network": "mainnet", - "networkId": 37129, - "nativeCurrency": { - "name": "Webchain Ether", - "symbol": "WEB", - "decimals": 18 - }, - "rpc": [ - "https://node1.webchain.network" - ], - "faucets": [], - "infoURL": "https://webchain.network" - }, - { - "name": "Energy Web Chain", - "chainId": 246, - "shortName": "ewt", - "chain": "Energy Web Chain", - "network": "mainnet", - "networkId": 246, - "nativeCurrency": { - "name": "Energy Web Token", - "symbol": "EWT", - "decimals": 18 - }, - "rpc": [ - "https://rpc.energyweb.org", - "wss://rpc.energyweb.org/ws" - ], - "faucets": [], - "infoURL": "https://energyweb.org" - }, - { - "name": "ARTIS sigma1", - "chainId": 246529, - "shortName": "ats", - "chain": "ARTIS", - "network": "sigma1", - "networkId": 246529, - "nativeCurrency": { - "name": "ARTIS sigma1 Ether", - "symbol": "ATS", - "decimals": 18 - }, - "rpc": [ - "https://rpc.sigma1.artis.network" - ], - "faucets": [], - "infoURL": "https://artis.eco" - }, - { - "name": "ARTIS Testnet tau1", - "chainId": 246785, - "shortName": "atstau", - "chain": "ARTIS", - "network": "tau1", - "networkId": 246785, - "nativeCurrency": { - "name": "ARTIS tau1 Ether", - "symbol": "tATS", - "decimals": 18 - }, - "rpc": [ - "https://rpc.tau1.artis.network" - ], - "faucets": [], - "infoURL": "https://artis.network" - }, - { - "name": "Huobi ECO Chain Testnet", - "chainId": 256, - "shortName": "hecot", - "chain": "Heco", - "network": "testnet", - "networkId": 256, - "nativeCurrency": { - "name": "Huobi ECO Chain Test Native Token", - "symbol": "htt", - "decimals": 18 - }, - "rpc": [ - "https://http-testnet.hecochain.com", - "wss://ws-testnet.hecochain.com" - ], - "faucets": [ - "https://scan-testnet.hecochain.com/faucet" - ], - "infoURL": "https://www.hecochain.com" - }, - { - "name": "Auxilium Network Mainnet", - "chainId": 28945486, - "shortName": "auxi", - "chain": "AUX", - "network": "mainnet", - "networkId": 28945486, - "nativeCurrency": { - "name": "Auxilium coin", - "symbol": "AUX", - "decimals": 18 - }, - "rpc": [ - "https://rpc.auxilium.global" - ], - "faucets": [], - "infoURL": "https://auxilium.global" - }, - { - "name": "RSK Mainnet", - "chainId": 30, - "shortName": "rsk", - "chain": "RSK", - "network": "mainnet", - "networkId": 30, - "nativeCurrency": { - "name": "RSK Mainnet Ether", - "symbol": "RBTC", - "decimals": 18 - }, - "rpc": [ - "https://public-node.rsk.co", - "https://mycrypto.rsk.co" - ], - "faucets": [], - "infoURL": "https://rsk.co" - }, - { - "name": "RSK Testnet", - "chainId": 31, - "shortName": "trsk", - "chain": "RSK", - "network": "testnet", - "networkId": 31, - "nativeCurrency": { - "name": "RSK Testnet Ether", - "symbol": "tRBTC", - "decimals": 18 - }, - "rpc": [ - "https://public-node.testnet.rsk.co", - "https://mycrypto.testnet.rsk.co" - ], - "faucets": [ - "https://faucet.testnet.rsk.co" - ], - "infoURL": "https://rsk.co" - }, - { - "name": "Ethersocial Network", - "chainId": 31102, - "shortName": "esn", - "chain": "ESN", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Ethersocial Network Ether", - "symbol": "ESN", - "decimals": 18 - }, - "rpc": [ - "https://api.esn.gonspool.com" - ], - "faucets": [], - "infoURL": "https://ethersocial.org" - }, - { - "name": "Pirl", - "chainId": 3125659152, - "shortName": "pirl", - "chain": "PIRL", - "network": "mainnet", - "networkId": 3125659152, - "nativeCurrency": { - "name": "Pirl Ether", - "symbol": "PIRL", - "decimals": 18 - }, - "rpc": [ - "https://wallrpc.pirl.io" - ], - "faucets": [], - "infoURL": "https://pirl.io" - }, - { - "name": "GoodData Mainnet", - "chainId": 33, - "shortName": "GooD", - "chain": "GooD", - "network": "mainnet", - "networkId": 33, - "nativeCurrency": { - "name": "GoodData Mainnet Ether", - "symbol": "GooD", - "decimals": 18 - }, - "rpc": [ - "https://rpc.goodata.io" - ], - "faucets": [], - "infoURL": "https://www.goodata.org" - }, - { - "name": "TBWG Chain", - "chainId": 35, - "shortName": "tbwg", - "chain": "TBWG", - "network": "mainnet", - "networkId": 35, - "nativeCurrency": { - "name": "TBWG Ether", - "symbol": "TBG", - "decimals": 18 - }, - "rpc": [ - "https://rpc.tbwg.io" - ], - "faucets": [], - "infoURL": "https://tbwg.io" - }, - { - "name": "Joys Digital Mainnet", - "chainId": 35855456, - "shortName": "JOYS", - "chain": "JOYS", - "network": "mainnet", - "networkId": 35855456, - "nativeCurrency": { - "name": "JOYS", - "symbol": "JOYS", - "decimals": 18 - }, - "rpc": [ - "https://node.joys.digital" - ], - "faucets": [], - "infoURL": "https://joys.digital" - }, - { - "name": "Valorbit", - "chainId": 38, - "shortName": "val", - "chain": "VAL", - "network": "mainnet", - "networkId": 38, - "nativeCurrency": { - "name": "Valorbit", - "symbol": "VAL", - "decimals": 18 - }, - "rpc": [ - "https://rpc.valorbit.com/v2" - ], - "faucets": [], - "infoURL": "https://valorbit.com" - }, - { - "name": "Lisinski", - "chainId": 385, - "shortName": "lisinski", - "chain": "CRO", - "network": "mainnet", - "networkId": 385, - "nativeCurrency": { - "name": "Lisinski Ether", - "symbol": "LISINSKI", - "decimals": 18 - }, - "rpc": [ - "https://rpc-bitfalls1.lisinski.online" - ], - "faucets": [ - "https://pipa.lisinski.online" - ], - "infoURL": "https://lisinski.online" - }, - { - "name": "Energi Mainnet", - "chainId": 39797, - "shortName": "nrg", - "chain": "NRG", - "network": "mainnet", - "networkId": 39797, - "nativeCurrency": { - "name": "Energi", - "symbol": "NRG", - "decimals": 18 - }, - "rpc": [ - "https://nodeapi.gen3.energi.network" - ], - "faucets": [], - "infoURL": "https://www.energi.world/" - }, - { - "name": "Telos EVM Mainnet", - "chainId": 40, - "shortName": "Telos EVM", - "chain": "TLOS", - "network": "mainnet", - "networkId": 40, - "nativeCurrency": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.telos.net/evm" - ], - "faucets": [], - "infoURL": "https://telos.net" - }, - { - "name": "Telos EVM Testnet", - "chainId": 41, - "shortName": "Telos EVM Testnet", - "chain": "TLOS", - "network": "testnet", - "networkId": 41, - "nativeCurrency": { - "name": "Telos", - "symbol": "TLOS", - "decimals": 18 - }, - "rpc": [ - "https://testnet.telos.net/evm" - ], - "faucets": [ - "https://app.telos.net/testnet/developers" - ], - "infoURL": "https://telos.net" - }, - { - "name": "Optimistic Ethereum Testnet Goerli", - "chainId": 420, - "shortName": "ogor", - "chain": "ETH", - "network": "goerli", - "networkId": 420, - "nativeCurrency": { - "name": "Görli Ether", - "symbol": "GOR", - "decimals": 18 - }, - "rpc": [ - "https://goerli.optimism.io/" - ], - "faucets": [], - "infoURL": "https://optimism.io" - }, - { - "name": "pegglecoin", - "chainId": 42069, - "shortName": "PC", - "chain": "42069", - "network": "mainnet", - "networkId": 42069, - "nativeCurrency": { - "name": "pegglecoin", - "symbol": "peggle", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://teampeggle.com" - }, - { - "name": "Celo Mainnet", - "chainId": 42220, - "shortName": "CELO", - "chain": "CELO", - "network": "Mainnet", - "networkId": 42220, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://forno.celo.org", - "wss://forno.celo.org/ws" - ], - "faucets": [], - "infoURL": "https://docs.celo.org/" - }, - { - "name": "Darwinia Pangolin Testnet", - "chainId": 43, - "shortName": "darwinia", - "chain": "pangolin", - "network": "free testnet", - "networkId": 43, - "nativeCurrency": { - "name": "Pangolin RING", - "symbol": "PRING", - "decimals": 9 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://darwinia.network/" - }, - { - "name": "Athereum", - "chainId": 43110, - "shortName": "avaeth", - "chain": "ATH", - "network": "athereum", - "networkId": 43110, - "nativeCurrency": { - "name": "Athereum Ether", - "symbol": "ATH", - "decimals": 18 - }, - "rpc": [ - "https://ava.network:21015/ext/evm/rpc" - ], - "faucets": [ - "http://athfaucet.ava.network//?address=${ADDRESS}" - ], - "infoURL": "https://athereum.ava.network" - }, - { - "name": "Avalanche Fuji Testnet", - "chainId": 43113, - "shortName": "Fuji", - "chain": "AVAX", - "network": "testnet", - "networkId": 1, - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "rpc": [ - "https://api.avax-test.network/ext/bc/C/rpc" - ], - "faucets": [ - "https://faucet.avax-test.network/" - ], - "infoURL": "https://cchain.explorer.avax-test.network" - }, - { - "name": "Celo Alfajores Testnet", - "chainId": 44787, - "shortName": "ALFA", - "chain": "CELO", - "network": "Alfajores", - "networkId": 44787, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://alfajores-forno.celo-testnet.org", - "wss://alfajores-forno.celo-testnet.org/ws" - ], - "faucets": [ - "https://celo.org/developers/faucet", - "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" - ], - "infoURL": "https://docs.celo.org/" - }, - { - "name": "Energi Testnet", - "chainId": 49797, - "shortName": "tnrg", - "chain": "NRG", - "network": "testnet", - "networkId": 49797, - "nativeCurrency": { - "name": "Energi", - "symbol": "tNRG", - "decimals": 18 - }, - "rpc": [ - "https://nodeapi.test3.energi.network" - ], - "faucets": [], - "infoURL": "https://www.energi.world/" - }, - { - "name": "Rupaya", - "chainId": 499, - "shortName": "rupx", - "chain": "RUPX", - "network": "mainnet", - "networkId": 499, - "nativeCurrency": { - "name": "Rupaya", - "symbol": "RUPX", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://www.rupx.io" - }, - { - "name": "XinFin Network Mainnet", - "chainId": 50, - "shortName": "xdc", - "chain": "XDC", - "network": "mainnet", - "networkId": 50, - "nativeCurrency": { - "name": "XinFin", - "symbol": "XDC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.xinfin.network" - ], - "faucets": [], - "infoURL": "https://xinfin.org" - }, - { - "name": "XinFin Apothem Testnet", - "chainId": 51, - "shortName": "TXDC", - "chain": "TXDC", - "network": "testnet", - "networkId": 51, - "nativeCurrency": { - "name": "XinFinTest", - "symbol": "TXDC", - "decimals": 18 - }, - "rpc": [ - "https://rpc.apothem.network" - ], - "faucets": [], - "infoURL": "https://xinfin.org" - }, - { - "name": "CoinEx Smart Chain Mainnet", - "chainId": 52, - "shortName": "cet", - "chain": "CSC", - "network": "mainnet", - "networkId": 52, - "nativeCurrency": { - "name": "CoinEx Chain Native Token", - "symbol": "cet", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.coinex.net" - ], - "faucets": [], - "infoURL": "http://www.coinex.org/" - }, - { - "name": "CoinEx Smart Chain Testnet", - "chainId": 53, - "shortName": "tcet", - "chain": "CSC", - "network": "testnet", - "networkId": 53, - "nativeCurrency": { - "name": "CoinEx Chain Test Native Token", - "symbol": "cett", - "decimals": 18 - }, - "rpc": [ - "https://rpc-testnet.coinex.net" - ], - "faucets": [], - "infoURL": "http://www.coinex.org/" - }, - { - "name": "Tao Network", - "chainId": 558, - "shortName": "tao", - "chain": "TAO", - "network": "core", - "networkId": 558, - "nativeCurrency": { - "name": "Tao", - "symbol": "TAO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.testnet.tao.network", - "http://rpc.testnet.tao.network:8545", - "https://rpc.tao.network", - "wss://rpc.tao.network" - ], - "faucets": [], - "infoURL": "https://tao.network" - }, - { - "name": "Binance Smart Chain Mainnet", - "chainId": 56, - "shortName": "bnb", - "chain": "BSC", - "network": "mainnet", - "networkId": 56, - "nativeCurrency": { - "name": "Binance Chain Native Token", - "symbol": "BNB", - "decimals": 18 - }, - "rpc": [ - "https://bsc-dataseed1.binance.org", - "https://bsc-dataseed2.binance.org", - "https://bsc-dataseed3.binance.org", - "https://bsc-dataseed4.binance.org", - "https://bsc-dataseed1.defibit.io", - "https://bsc-dataseed2.defibit.io", - "https://bsc-dataseed3.defibit.io", - "https://bsc-dataseed4.defibit.io", - "https://bsc-dataseed1.ninicoin.io", - "https://bsc-dataseed2.ninicoin.io", - "https://bsc-dataseed3.ninicoin.io", - "https://bsc-dataseed4.ninicoin.io", - "wss://bsc-ws-node.nariox.org" - ], - "faucets": [], - "infoURL": "https://www.binance.org" - }, - { - "name": "Wegochain Rubidium Mainnet", - "chainId": 5869, - "shortName": "rbd", - "chain": "RBD", - "network": "mainnet", - "networkId": 5869, - "nativeCurrency": { - "name": "Rubid", - "symbol": "RBD", - "decimals": 18 - }, - "rpc": [ - "https://proxy.wegochain.io", - "http://wallet.wegochain.io:7764" - ], - "faucets": [], - "infoURL": "http://wegochain.io" - }, - { - "name": "Acala Mandala Testnet", - "chainId": 595, - "shortName": "maca", - "chain": "mACA", - "network": "testnet", - "networkId": 595, - "nativeCurrency": { - "name": "Acala Mandala Token", - "symbol": "mACA", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://acala.network" - }, - { - "name": "Ethereum Classic Testnet Kotti", - "chainId": 6, - "shortName": "kot", - "chain": "ETC", - "network": "kotti", - "networkId": 6, - "nativeCurrency": { - "name": "Kotti Ether", - "symbol": "KOT", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://explorer.jade.builders/?network=kotti" - }, - { - "name": "GoChain", - "chainId": 60, - "shortName": "go", - "chain": "GO", - "network": "mainnet", - "networkId": 60, - "nativeCurrency": { - "name": "GoChain Ether", - "symbol": "GO", - "decimals": 18 - }, - "rpc": [ - "https://rpc.gochain.io" - ], - "faucets": [], - "infoURL": "https://gochain.io" - }, - { - "name": "Aquachain", - "chainId": 61717561, - "shortName": "aqua", - "chain": "AQUA", - "network": "mainnet", - "networkId": 61717561, - "nativeCurrency": { - "name": "Aquachain Ether", - "symbol": "AQUA", - "decimals": 18 - }, - "rpc": [ - "https://c.onical.org", - "https://tx.aquacha.in/api" - ], - "faucets": [ - "https://aquacha.in/faucet" - ], - "infoURL": "https://aquachain.github.io" - }, - { - "name": "Ethereum Classic Testnet Morden", - "chainId": 62, - "shortName": "tetc", - "chain": "ETC", - "network": "testnet", - "networkId": 2, - "nativeCurrency": { - "name": "Ethereum Classic Testnet Ether", - "symbol": "TETC", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://ethereumclassic.org" - }, - { - "name": "Celo Baklava Testnet", - "chainId": 62320, - "shortName": "BKLV", - "chain": "CELO", - "network": "Baklava", - "networkId": 62320, - "nativeCurrency": { - "name": "CELO", - "symbol": "CELO", - "decimals": 18 - }, - "rpc": [ - "https://baklava-forno.celo-testnet.org" - ], - "faucets": [ - "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", - "https://cauldron.pretoriaresearchlab.io/baklava-faucet" - ], - "infoURL": "https://docs.celo.org/" - }, - { - "name": "Ethereum Classic Testnet Mordor", - "chainId": 63, - "shortName": "metc", - "chain": "ETC", - "network": "testnet", - "networkId": 7, - "nativeCurrency": { - "name": "Mordor Classic Testnet Ether", - "symbol": "METC", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://github.com/eth-classic/mordor/" - }, - { - "name": "Ellaism", - "chainId": 64, - "shortName": "ella", - "chain": "ELLA", - "network": "mainnet", - "networkId": 64, - "nativeCurrency": { - "name": "Ellaism Ether", - "symbol": "ELLA", - "decimals": 18 - }, - "rpc": [ - "https://jsonrpc.ellaism.org" - ], - "faucets": [], - "infoURL": "https://ellaism.org" - }, - { - "name": "OKExChain Testnet", - "chainId": 65, - "shortName": "tokt", - "chain": "okexchain", - "network": "testnet", - "networkId": 65, - "nativeCurrency": { - "name": "OKExChain Global Utility Token in testnet", - "symbol": "OKT", - "decimals": 18 - }, - "rpc": [ - "https://exchaintestrpc.okex.org" - ], - "faucets": [ - "https://www.okex.com/drawdex" - ], - "infoURL": "https://www.okex.com/okexchain", - "app_resource": { - "ic_home_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_home_bg.png", - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_select.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_unselect.png", - "ic_all_whitelist_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_whitelist_logo.png", - "color_chain_bg": "0x1E2D5D", - "color_chain_text": "0xFFFFFF" - } - }, - { - "name": "OKExChain Mainnet", - "chainId": 66, - "shortName": "okt", - "chain": "okexchain", - "network": "mainnet", - "networkId": 66, - "nativeCurrency": { - "name": "OKExChain Global Utility Token", - "symbol": "OKT", - "decimals": 18 - }, - "rpc": [ - "https://exchain.okexcn.com" - ], - "faucets": [], - "infoURL": "https://www.okex.com/okexchain" - }, - { - "name": "DBChain Testnet", - "chainId": 67, - "shortName": "dbm", - "chain": "DBM", - "network": "testnet", - "networkId": 67, - "nativeCurrency": { - "name": "DBChain Testnet", - "symbol": "DBM", - "decimals": 18 - }, - "rpc": [ - "http://test-rpc.dbmbp.com" - ], - "faucets": [], - "infoURL": "http://test.dbmbp.com" - }, - { - "name": "SoterOne Mainnet", - "chainId": 68, - "shortName": "SO1", - "chain": "SOTER", - "network": "mainnet", - "networkId": 68, - "nativeCurrency": { - "name": "SoterOne Mainnet Ether", - "symbol": "SOTER", - "decimals": 18 - }, - "rpc": [ - "https://rpc.soter.one" - ], - "faucets": [], - "infoURL": "https://www.soterone.com" - }, - { - "name": "Karura Network", - "chainId": 686, - "shortName": "kar", - "chain": "KAR", - "network": "mainnet", - "networkId": 686, - "nativeCurrency": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://karura.network" - }, - { - "name": "Optimistic Ethereum Testnet Kovan", - "chainId": 69, - "shortName": "okov", - "chain": "ETH", - "network": "kovan", - "networkId": 69, - "nativeCurrency": { - "name": "Kovan Ether", - "symbol": "KOR", - "decimals": 18 - }, - "rpc": [ - "https://kovan.optimism.io/" - ], - "faucets": [], - "infoURL": "https://optimism.io" - }, - { - "name": "ThaiChain", - "chainId": 7, - "shortName": "tch", - "chain": "TCH", - "network": "mainnet", - "networkId": 7, - "nativeCurrency": { - "name": "ThaiChain Ether", - "symbol": "TCH", - "decimals": 18 - }, - "rpc": [ - "https://rpc.dome.cloud" - ], - "faucets": [], - "infoURL": "https://thaichain.io" - }, - { - "name": "Energy Web Volta Testnet", - "chainId": 73799, - "shortName": "vt", - "chain": "Volta", - "network": "testnet", - "networkId": 73799, - "nativeCurrency": { - "name": "Volta Token", - "symbol": "VT", - "decimals": 18 - }, - "rpc": [ - "https://volta-rpc.energyweb.org", - "wss://volta-rpc.energyweb.org/ws" - ], - "faucets": [ - "https://voltafaucet.energyweb.org" - ], - "infoURL": "https://energyweb.org" - }, - { - "name": "Mix", - "chainId": 76, - "shortName": "mix", - "chain": "MIX", - "network": "mainnet", - "networkId": 76, - "nativeCurrency": { - "name": "Mix Ether", - "symbol": "MIX", - "decimals": 18 - }, - "rpc": [ - "https://rpc2.mix-blockchain.org:8647" - ], - "faucets": [], - "infoURL": "https://mix-blockchain.org" - }, - { - "name": "POA Network Sokol", - "chainId": 77, - "shortName": "poa", - "chain": "POA", - "network": "sokol", - "networkId": 77, - "nativeCurrency": { - "name": "POA Sokol Ether", - "symbol": "POA", - "decimals": 18 - }, - "rpc": [ - "https://sokol.poa.network", - "wss://sokol.poa.network/wss", - "ws://sokol.poa.network:8546" - ], - "faucets": [ - "https://faucet-sokol.herokuapp.com" - ], - "infoURL": "https://poa.network" - }, - { - "name": "Musicoin", - "chainId": 7762959, - "shortName": "music", - "chain": "MUSIC", - "network": "mainnet", - "networkId": 7762959, - "nativeCurrency": { - "name": "Musicoin", - "symbol": "MUSIC", - "decimals": 18 - }, - "rpc": [ - "https://mewapi.musicoin.tw" - ], - "faucets": [], - "infoURL": "https://musicoin.tw" - }, - { - "name": "Mint Testnet", - "chain": "ETH", - "rpc": [ - "https://testnet-rpc.mintchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.mintchain.io", - "shortName": "minttest", - "chainId": 1686, - "networkId": 1686, - "icon": "mintTestnet", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.mintchain.io", - "icon": "mintTestnet", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://testnet-bridge.mintchain.io" - } - ] - } - }, - { - "name": "Mint Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-testnet-rpc.mintchain.io" - ], - "nativeCurrency": { - "name": "Mint Sepolia Testnet", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.mintchain.io", - "shortName": "Mint Testnet", - "chainId": 1687, - "networkId": 1687, - "icon": "mintTestnet", - "explorers": [ - { - "name": "blockscout", - "url": "hhttps://sepolia-testnet-explorer.mintchain.io", - "icon": "mintTestnet", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://sepolia-testnet-bridge.mintchain.io" - } - ] - }, - "faucets": [ - "http://mintchain.io/faucet" - ] - }, - { - "name": "Ethermint Testnet", - "chainId": 777, - "shortName": "emint", - "chain": "ETHERMINT", - "network": "testnet", - "networkId": 777, - "nativeCurrency": { - "name": "Photon", - "symbol": "Photon", - "decimals": 18 - }, - "rpc": [ - "http://54.210.246.165:8545" - ], - "faucets": [], - "infoURL": "https://docs.ethermint.zone" - }, - { - "name": "PrimusChain mainnet", - "chainId": 78, - "shortName": "primuschain", - "chain": "PC", - "network": "mainnet", - "networkId": 78, - "nativeCurrency": { - "name": "Primus Ether", - "symbol": "PETH", - "decimals": 18 - }, - "rpc": [ - "https://ethnode.primusmoney.com/mainnet" - ], - "faucets": [], - "infoURL": "https://primusmoney.com" - }, - { - "name": "Firenze test network", - "chainId": 78110, - "shortName": "firenze", - "chain": "ETH", - "network": "testnet", - "networkId": 78110, - "nativeCurrency": { - "name": "Firenze Ether", - "symbol": "FIN", - "decimals": 18 - }, - "rpc": [ - "https://ethnode.primusmoney.com/firenze" - ], - "faucets": [], - "infoURL": "https://primusmoney.com" - }, - { - "name": "Acala Network", - "chainId": 787, - "shortName": "aca", - "chain": "ACA", - "network": "mainnet", - "networkId": 787, - "nativeCurrency": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://acala.network" - }, - { - "name": "GateChain Mainnet", - "chainId": 86, - "shortName": "gt", - "chain": "GT", - "network": "mainnet", - "networkId": 86, - "nativeCurrency": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 - }, - "rpc": [ - "https://evm.gatenode.cc", - "https://evm-cn1.gatenode.cc:6061" - ], - "faucets": [ - "https://www.gatescan.org/faucet" - ], - "infoURL": "https://www.gatechain.io" - }, - { - "name": "Ubiq Network Mainnet", - "chainId": 8, - "shortName": "ubq", - "chain": "UBQ", - "network": "mainnet", - "networkId": 88, - "nativeCurrency": { - "name": "Ubiq Ether", - "symbol": "UBQ", - "decimals": 18 - }, - "rpc": [ - "https://rpc.octano.dev", - "https://pyrus2.ubiqscan.io" - ], - "faucets": [], - "infoURL": "https://ubiqsmart.com" - }, - { - "name": "Matic Testnet Mumbai", - "chainId": 80001, - "shortName": "maticmum", - "chain": "Matic", - "network": "testnet", - "networkId": 80001, - "nativeCurrency": { - "name": "Matic", - "symbol": "tMATIC", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mumbai.matic.today", - "wss://ws-mumbai.matic.today" - ], - "faucets": [ - "https://faucet.matic.network/" - ], - "infoURL": "https://matic.network/" - }, - { - "name": "Meter Mainnet", - "chainId": 82, - "shortName": "Meter", - "chain": "METER", - "network": "mainnet", - "networkId": 82, - "nativeCurrency": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 - }, - "rpc": [ - "https://rpc.meter.io" - ], - "faucets": [], - "infoURL": "https://www.meter.io" - }, - { - "name": "Callisto Mainnet", - "chainId": 820, - "shortName": "clo", - "chain": "CLO", - "network": "mainnet", - "networkId": 1, - "nativeCurrency": { - "name": "Callisto Mainnet Ether", - "symbol": "CLO", - "decimals": 18 - }, - "rpc": [ - "https://clo-geth.0xinfra.com" - ], - "faucets": [], - "infoURL": "https://callisto.network" - }, - { - "name": "Callisto Testnet", - "chainId": 821, - "shortName": "tclo", - "chain": "CLO", - "network": "testnet", - "networkId": 2, - "nativeCurrency": { - "name": "Callisto Testnet Ether", - "symbol": "TCLO", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://callisto.network" - }, - { - "name": "Klaytn Mainnet Cypress", - "chainId": 8217, - "shortName": "Cypress", - "chain": "KLAY", - "network": "cypress", - "networkId": 8217, - "nativeCurrency": { - "name": "KLAY", - "symbol": "KLAY", - "decimals": 18 - }, - "rpc": [ - "https://node-api.klaytnapi.com/v1/klaytn" - ], - "faucets": [], - "infoURL": "https://www.klaytn.com/" - }, - { - "name": "Wanchain", - "chainId": 888, - "shortName": "wan", - "chain": "WAN", - "network": "mainnet", - "networkId": 888, - "nativeCurrency": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 - }, - "rpc": [ - "https://gwan-ssl.wandevs.org:56891/" - ], - "faucets": [], - "infoURL": "https://www.wanscan.org" - }, - { - "name": "bloxberg", - "chainId": 8995, - "shortName": "berg", - "chain": "bloxberg", - "network": "mainnet", - "networkId": 8995, - "nativeCurrency": { - "name": "BERG", - "symbol": "U+25B3", - "decimals": 18 - }, - "rpc": [ - "https://core.bloxberg.org" - ], - "faucets": [ - "https://faucet.bloxberg.org/" - ], - "infoURL": "https://bloxberg.org" - }, - { - "name": "Ubiq Network Testnet", - "chainId": 9, - "shortName": "tubq", - "chain": "UBQ", - "network": "mainnet", - "networkId": 2, - "nativeCurrency": { - "name": "Ubiq Testnet Ether", - "symbol": "TUBQ", - "decimals": 18 - }, - "rpc": [], - "faucets": [], - "infoURL": "https://ethersocial.org" - }, - { - "name": "Binance Smart Chain Testnet", - "chainId": 97, - "shortName": "bnbt", - "chain": "BSC", - "network": "Chapel", - "networkId": 97, - "nativeCurrency": { - "name": "Binance Chain Native Token", - "symbol": "tBNB", - "decimals": 18 - }, - "rpc": [ - "https://data-seed-prebsc-1-s1.binance.org:8545", - "https://data-seed-prebsc-2-s1.binance.org:8545", - "https://data-seed-prebsc-1-s2.binance.org:8545", - "https://data-seed-prebsc-2-s2.binance.org:8545", - "https://data-seed-prebsc-1-s3.binance.org:8545", - "https://data-seed-prebsc-2-s3.binance.org:8545" - ], - "faucets": [ - "https://testnet.binance.org/faucet-smart" - ], - "infoURL": "https://testnet.binance.org/" - }, - { - "name": "Nepal Blockchain Network", - "chainId": 977, - "shortName": "yeti", - "chain": "YETI", - "network": "mainnet", - "networkId": 977, - "nativeCurrency": { - "name": "Nepal Blockchain Network Ether", - "symbol": "YETI", - "decimals": 18 - }, - "rpc": [ - "https://api.nepalblockchain.dev", - "https://api.nepalblockchain.network" - ], - "faucets": [ - "https://faucet.nepalblockchain.network" - ], - "infoURL": "https://nepalblockchain.network" - }, - { - "name": "POA Network Core", - "chainId": 99, - "shortName": "skl", - "chain": "POA", - "network": "core", - "networkId": 99, - "nativeCurrency": { - "name": "POA Network Core Ether", - "symbol": "SKL", - "decimals": 18 - }, - "rpc": [ - "https://core.poanetwork.dev", - "http://core.poanetwork.dev:8545", - "https://core.poa.network", - "ws://core.poanetwork.dev:8546" - ], - "faucets": [], - "infoURL": "https://poa.network" - }, - { - "name": "Joys Digital TestNet", - "chainId": 99415706, - "shortName": "TOYS", - "chain": "TOYS", - "network": "testnet", - "networkId": 99415706, - "nativeCurrency": { - "name": "TOYS", - "symbol": "TOYS", - "decimals": 18 - }, - "rpc": [ - "https://toys.joys.cash/" - ], - "faucets": [ - "https://faucet.joys.digital/" - ], - "infoURL": "https://joys.digital" - }, - { - "name": "Wanchain Testnet", - "chainId": 999, - "shortName": "twan", - "chain": "WAN", - "network": "testnet", - "networkId": 999, - "nativeCurrency": { - "name": "Wancoin", - "symbol": "WAN", - "decimals": 18 - }, - "rpc": [ - "https://gwan-ssl.wandevs.org:46891/" - ], - "faucets": [], - "infoURL": "https://testnet.wanscan.org" - }, - { - "name": "HPB Mainnet", - "chainId": 269, - "shortName": "HPB", - "chain": "HPB", - "network": "mainnet", - "networkId": 100, - "nativeCurrency": { - "name": "HPB", - "symbol": "HPB", - "decimals": 18 - }, - "rpc": [ - "https://hpbnode.com" - ], - "faucets": [], - "infoURL": "https://hpb.io" - }, - { - "name": "KCC Mainnet", - "chainId": 321, - "shortName": "kcc", - "chain": "KCC", - "network": "mainnet", - "networkId": 321, - "nativeCurrency": { - "name": "KuCoin Token", - "symbol": "KCS", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.kcc.network", - "wss://rpc-ws-mainnet.kcc.network" - ], - "faucets": [], - "infoURL": "https://kcc.io", - "app_resource": { - "ic_chain_select": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-0.png", - "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-1.png", - "color_chain_bg": "0x27CD96" - }, - "explorers": [ - { - "name": "KCC Scan (Blockscout)", - "url": "https://scan.kcc.io", - "standard": "EIP3091" - }, - { - "name": "KCC Explorer", - "url": "https://explorer.kcc.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "HALO Mainnet", - "chainId": 1280, - "shortName": "HO", - "chain": "HALO", - "network": "mainnet", - "networkId": 1280, - "nativeCurrency": { - "name": "HALO", - "symbol": "HO", - "decimals": 18 - }, - "rpc": [ - "https://nodes.halo.land" - ], - "faucets": [], - "infoURL": "https://halo.land/#/", - "app_resource": { - "ic_chain_select": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png", - "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371627579.png", - "color_chain_bg": "0xB1232C" - } - }, - { - "name": "UN Chain", - "chainId": 1681681688, - "shortName": "un", - "chain": "UN", - "network": "mainnet", - "networkId": 1681681688, - "nativeCurrency": { - "name": "UN", - "symbol": "UN", - "decimals": 18 - }, - "rpc": [ - "http://116.62.244.90:50121", - "ws://116.62.244.90:60121" - ], - "faucets": [], - "infoURL": "http://www.untokencan.com/#/", - "app_resource": { - "ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png", - "ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png", - "color_chain_bg": "0x58B2AF" - } - }, - { - "name": "Vision Mainnet", - "chainId": 888888, - "shortName": "Vision", - "chain": "Vision - Mainnet", - "network": "mainnet", - "networkId": 888888, - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "rpc": [ - "https://infragrid.v.network/ethereum/compatible" - ], - "faucets": [], - "infoURL": "https://visionscan.org", - "app_resource": { - "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", - "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", - "color_chain_bg": "0x000000" - } - }, - { - "name": "Vision - Vpioneer Testnet", - "chainId": 666666, - "shortName": "Vpioneer", - "chain": "Vision - Vpioneer", - "network": "Vpioneer", - "networkId": 666666, - "nativeCurrency": { - "name": "VS", - "symbol": "VS", - "decimals": 18 - }, - "rpc": [ - "https://vpioneer.infragrid.v.network/ethereum/compatible" - ], - "faucets": [ - "https://vpioneerfaucet.visionscan.org" - ], - "infoURL": "https://visionscan.org", - "app_resource": { - "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", - "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", - "color_chain_bg": "0x000000" - } - }, - { - "name": "SAT L2 Chain", - "chainId": 123778899, - "shortName": "SL2", - "chain": "SL2", - "network": "testnet", - "networkId": 123778899, - "nativeCurrency": { - "name": "SL2", - "symbol": "SL2", - "decimals": 18 - }, - "rpc": [ - "http://123.58.210.13:8546" - ], - "faucets": [], - "infoURL": "", - "app_resource": { - "ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png", - "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", - "color_chain_bg": "0x8250df" - } - }, - { - "name": "Evmos Testnet", - "chain": "Evmos", - "rpc": [ - "https://evmos-archive-testnet.api.bdnodes.net:8545" - ], - "faucets": [ - "https://faucet.evmos.dev" - ], - "nativeCurrency": { - "name": "test-Evmos", - "symbol": "tEVMOS", - "decimals": 18 - }, - "infoURL": "https://evmos.org", - "shortName": "evmos-testnet", - "chainId": 9000, - "networkId": 9000, - "icon": "evmos", - "explorers": [ - { - "name": "Evmos EVM Explorer (Blockscout)", - "url": "https://evm.evmos.dev", - "standard": "none", - "icon": "evmos" - }, - { - "name": "Evmos Cosmos Explorer", - "url": "https://explorer.evmos.dev", - "standard": "none", - "icon": "evmos" - } - ] - }, - { - "name": "Evmos", - "chain": "Evmos", - "rpc": [ - "https://eth.bd.evmos.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Evmos", - "symbol": "EVMOS", - "decimals": 18 - }, - "infoURL": "https://evmos.org", - "shortName": "evmos", - "chainId": 9001, - "networkId": 9001, - "icon": "evmos", - "explorers": [ - { - "name": "Evmos EVM Explorer (Blockscout)", - "url": "https://evm.evmos.org", - "standard": "none", - "icon": "evmos" - }, - { - "name": "Evmos Cosmos Explorer (Mintscan)", - "url": "https://www.mintscan.io/evmos", - "standard": "none", - "icon": "evmos" - } - ] - }, - { - "name": "Songbird Canary-Network", - "chain": "SGB", - "icon": "songbird", - "rpc": [ - "https://songbird.towolabs.com/rpc", - "https://sgb.ftso.com.au/ext/bc/C/rpc", - "https://sgb.lightft.so/rpc", - "https://sgb-rpc.ftso.eu" - ], - "faucets": [], - "nativeCurrency": { - "name": "Songbird", - "symbol": "SGB", - "decimals": 18 - }, - "infoURL": "https://flare.xyz", - "shortName": "sgb", - "chainId": 19, - "networkId": 19, - "explorers": [ - { - "name": "blockscout", - "url": "https://songbird-explorer.flare.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "ELA-DID-Sidechain Mainnet", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Elastos", - "symbol": "ELA", - "decimals": 18 - }, - "infoURL": "https://www.elastos.org/", - "shortName": "eladid", - "chainId": 22, - "networkId": 22 - }, - { - "name": "Dithereum Mainnet", - "chain": "DTH", - "icon": "dithereum", - "rpc": [ - "https://node-mainnet.dithereum.io" - ], - "faucets": [ - "https://faucet.dithereum.org" - ], - "nativeCurrency": { - "name": "Dither", - "symbol": "DTH", - "decimals": 18 - }, - "infoURL": "https://dithereum.org", - "shortName": "dthmainnet", - "chainId": 24, - "networkId": 24 - }, - { - "name": "Genesis L1 testnet", - "chain": "genesis", - "rpc": [ - "https://testrpc.genesisl1.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "L1 testcoin", - "symbol": "L1test", - "decimals": 18 - }, - "infoURL": "https://www.genesisl1.com", - "shortName": "L1test", - "chainId": 26, - "networkId": 26, - "explorers": [ - { - "name": "Genesis L1 testnet explorer", - "url": "https://testnet.genesisl1.org", - "standard": "none" - } - ] - }, - { - "name": "ShibaChain", - "chain": "SHIB", - "rpc": [ - "https://rpc.shibachain.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "SHIBA INU COIN", - "symbol": "SHIB", - "decimals": 18 - }, - "infoURL": "https://www.shibachain.net", - "shortName": "shib", - "chainId": 27, - "networkId": 27, - "explorers": [ - { - "name": "Shiba Explorer", - "url": "https://exp.shibachain.net", - "standard": "none" - } - ] - }, - { - "name": "Boba Network Rinkeby Testnet", - "chain": "ETH", - "rpc": [ - "https://rinkeby.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Boba Rinkeby", - "chainId": 28, - "networkId": 28, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.rinkeby.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://gateway.rinkeby.boba.network" - } - ] - } - }, - { - "name": "Genesis L1", - "chain": "genesis", - "rpc": [ - "https://rpc.genesisl1.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "L1 coin", - "symbol": "L1", - "decimals": 18 - }, - "infoURL": "https://www.genesisl1.com", - "shortName": "L1", - "chainId": 29, - "networkId": 29, - "explorers": [ - { - "name": "Genesis L1 blockchain explorer", - "url": "https://explorer.genesisl1.org", - "standard": "none" - } - ] - }, - { - "name": "GoodData Testnet", - "chain": "GooD", - "rpc": [ - "https://test2.goodata.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoodData Testnet Ether", - "symbol": "GooD", - "decimals": 18 - }, - "infoURL": "https://www.goodata.org", - "shortName": "GooDT", - "chainId": 32, - "networkId": 32 - }, - { - "name": "Dithereum Testnet", - "chain": "DTH", - "icon": "dithereum", - "rpc": [ - "https://node-testnet.dithereum.io" - ], - "faucets": [ - "https://faucet.dithereum.org" - ], - "nativeCurrency": { - "name": "Dither", - "symbol": "DTH", - "decimals": 18 - }, - "infoURL": "https://dithereum.org", - "shortName": "dth", - "chainId": 34, - "networkId": 34 - }, - { - "name": "Darwinia Crab Network", - "chain": "crab", - "rpc": [ - "http://crab-rpc.darwinia.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crab Network Native Token", - "symbol": "CRAB", - "decimals": 18 - }, - "infoURL": "https://crab.network/", - "shortName": "crab", - "chainId": 44, - "networkId": 44, - "explorers": [ - { - "name": "subscan", - "url": "https://crab.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Darwinia Pangoro Testnet", - "chain": "pangoro", - "rpc": [ - "http://pangoro-rpc.darwinia.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pangoro Network Native Token”", - "symbol": "ORING", - "decimals": 18 - }, - "infoURL": "https://darwinia.network/", - "shortName": "pangoro", - "chainId": 45, - "networkId": 45, - "explorers": [ - { - "name": "subscan", - "url": "https://pangoro.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Zyx Mainnet", - "chain": "ZYX", - "rpc": [ - "https://rpc-1.zyx.network/", - "https://rpc-2.zyx.network/", - "https://rpc-3.zyx.network/", - "https://rpc-4.zyx.network/", - "https://rpc-5.zyx.network/", - "https://rpc-6.zyx.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zyx", - "symbol": "ZYX", - "decimals": 18 - }, - "infoURL": "https://zyx.network/", - "shortName": "ZYX", - "chainId": 55, - "networkId": 55, - "explorers": [ - { - "name": "zyxscan", - "url": "https://zyxscan.com", - "standard": "none" - } - ] - }, - { - "name": "Syscoin Mainnet", - "chain": "SYS", - "rpc": [ - "https://rpc.syscoin.org", - "wss://rpc.syscoin.org/wss" - ], - "faucets": [ - "https://faucet.syscoin.org" - ], - "nativeCurrency": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 - }, - "infoURL": "https://www.syscoin.org", - "shortName": "sys", - "chainId": 57, - "networkId": 57, - "explorers": [ - { - "name": "Syscoin Block Explorer", - "url": "https://explorer.syscoin.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ontology Mainnet", - "chain": "Ontology", - "rpc": [ - "https://dappnode1.ont.io:20339", - "https://dappnode2.ont.io:20339", - "https://dappnode3.ont.io:20339", - "https://dappnode4.ont.io:20339" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONG", - "symbol": "ONG", - "decimals": 9 - }, - "infoURL": "https://ont.io/", - "shortName": "Ontology Mainnet", - "chainId": 58, - "networkId": 58, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.ont.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "EOS Mainnet", - "chain": "EOS", - "rpc": [ - "https://api.eosargentina.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eoscommunity.org/", - "shortName": "EOS Mainnet", - "chainId": 59, - "networkId": 59, - "explorers": [ - { - "name": "bloks", - "url": "https://bloks.eosargentina.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Conflux eSpace (Testnet)", - "chain": "Conflux", - "network": "testnet", - "rpc": [ - "https://evmtestnet.confluxrpc.com" - ], - "faucets": [ - "https://faucet.confluxnetwork.org" - ], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfxtest", - "chainId": 71, - "networkId": 71, - "icon": "conflux", - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evmtestnet.confluxscan.net", - "standard": "none" - } - ] - }, - { - "name": "IDChain Mainnet", - "chain": "IDChain", - "network": "mainnet", - "rpc": [ - "https://idchain.one/rpc/", - "wss://idchain.one/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EIDI", - "symbol": "EIDI", - "decimals": 18 - }, - "infoURL": "https://idchain.one/begin/", - "shortName": "idchain", - "chainId": 74, - "networkId": 74, - "icon": "idchain", - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.idchain.one", - "icon": "etherscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "GeneChain", - "chain": "GeneChain", - "rpc": [ - "https://rpc.genechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "RNA", - "symbol": "RNA", - "decimals": 18 - }, - "infoURL": "https://scan.genechain.io/", - "shortName": "GeneChain", - "chainId": 80, - "networkId": 80, - "explorers": [ - { - "name": "GeneChain Scan", - "url": "https://scan.genechain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Meter Testnet", - "chain": "METER Testnet", - "rpc": [ - "https://rpctest.meter.io" - ], - "faucets": [ - "https://faucet-warringstakes.meter.io" - ], - "nativeCurrency": { - "name": "Meter", - "symbol": "MTR", - "decimals": 18 - }, - "infoURL": "https://www.meter.io", - "shortName": "MeterTest", - "chainId": 83, - "networkId": 83, - "explorers": [ - { - "name": "Meter Testnet Scan", - "url": "https://scan-warringstakes.meter.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "GateChain Testnet", - "chainId": 85, - "shortName": "gttest", - "chain": "GTTEST", - "networkId": 85, - "nativeCurrency": { - "name": "GateToken", - "symbol": "GT", - "decimals": 18 - }, - "rpc": [ - "https://testnet.gatenode.cc" - ], - "faucets": [ - "https://www.gatescan.org/testnet/faucet" - ], - "explorers": [ - { - "name": "GateScan", - "url": "https://www.gatescan.org/testnet", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.gatechain.io" - }, - { - "name": "Nova Network", - "chain": "NNW", - "icon": "novanetwork", - "rpc": [ - "https://rpc.novanetwork.io:9070", - "http://nova.genyrpc.info:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Supernova", - "symbol": "SNT", - "decimals": 18 - }, - "infoURL": "https://novanetwork.io", - "shortName": "nnw", - "chainId": 87, - "networkId": 87, - "explorers": [ - { - "name": "novanetwork", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "TomoChain Testnet", - "chain": "TOMO", - "rpc": [ - "https://rpc.testnet.tomochain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "TomoChain", - "symbol": "TOMO", - "decimals": 18 - }, - "infoURL": "https://tomochain.com", - "shortName": "tomot", - "chainId": 89, - "networkId": 89, - "slip44": 889 - }, - { - "name": "Garizon Stage0", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s0.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s0", - "chainId": 90, - "networkId": 90, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Garizon Stage1", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s1.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s1", - "chainId": 91, - "networkId": 91, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-90", - "type": "shard" - } - }, - { - "name": "Garizon Stage2", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s2.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s2", - "chainId": 92, - "networkId": 92, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-90", - "type": "shard" - } - }, - { - "name": "Garizon Stage3", - "chain": "GAR", - "network": "mainnet", - "icon": "garizon", - "rpc": [ - "https://s3.garizon.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-s3", - "chainId": 93, - "networkId": 93, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-90", - "type": "shard" - } - }, - { - "name": "CryptoKylin Testnet", - "chain": "EOS", - "rpc": [ - "https://kylin.eosargentina.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://www.cryptokylin.io/", - "shortName": "Kylin Testnet", - "chainId": 95, - "networkId": 95, - "explorers": [ - { - "name": "eosq", - "url": "https://kylin.eosargentina.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "NEXT Smart Chain", - "chain": "NSC", - "rpc": [ - "https://rpc.nextsmartchain.com" - ], - "faucets": [ - "https://faucet.nextsmartchain.com" - ], - "nativeCurrency": { - "name": "NEXT", - "symbol": "NEXT", - "decimals": 18 - }, - "infoURL": "https://www.nextsmartchain.com/", - "shortName": "nsc", - "chainId": 96, - "networkId": 96, - "explorers": [ - { - "name": "Next Smart Chain Explorer", - "url": "https://explorer.nextsmartchain.com", - "standard": "none" - } - ] - }, - { - "name": "Velas EVM Mainnet", - "chain": "Velas", - "icon": "velas", - "rpc": [ - "https://evmexplorer.velas.com/rpc", - "https://explorer.velas.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Velas", - "symbol": "VLX", - "decimals": 18 - }, - "infoURL": "https://velas.com", - "shortName": "vlx", - "chainId": 106, - "networkId": 106, - "explorers": [ - { - "name": "Velas Explorer", - "url": "https://evmexplorer.velas.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nebula Testnet", - "chain": "NTN", - "icon": "nebulatestnet", - "rpc": [ - "https://testnet.rpc.novanetwork.io:9070", - "http://testnet.rpc.novanetwork.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nebula X", - "symbol": "NBX", - "decimals": 18 - }, - "infoURL": "https://novanetwork.io", - "shortName": "ntn", - "chainId": 107, - "networkId": 107, - "explorers": [ - { - "name": "nebulatestnet", - "url": "https://explorer.novanetwork.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proton Testnet", - "chain": "XPR", - "rpc": [ - "https://protontestnet.greymass.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Proton", - "symbol": "XPR", - "decimals": 4 - }, - "infoURL": "https://protonchain.com", - "shortName": "xpr", - "chainId": 110, - "networkId": 110 - }, - { - "name": "Fuse Sparknet", - "chain": "fuse", - "rpc": [ - "https://rpc.fusespark.io" - ], - "faucets": [ - "https://get.fusespark.io" - ], - "nativeCurrency": { - "name": "Spark", - "symbol": "SPARK", - "decimals": 18 - }, - "infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet", - "shortName": "spark", - "chainId": 123, - "networkId": 123 - }, - { - "name": "Decentralized Web Mainnet", - "shortName": "dwu", - "chain": "DWU", - "chainId": 124, - "networkId": 124, - "rpc": [ - "https://decentralized-web.tech/dw_rpc.php" - ], - "faucets": [], - "infoURL": "https://decentralized-web.tech/dw_chain.php", - "nativeCurrency": { - "name": "Decentralized Web Utility", - "symbol": "DWU", - "decimals": 18 - } - }, - { - "name": "OYchain Testnet", - "chain": "OYchain", - "rpc": [ - "https://rpc.testnet.oychain.io" - ], - "faucets": [ - "https://faucet.oychain.io" - ], - "nativeCurrency": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 - }, - "infoURL": "https://www.oychain.io", - "shortName": "oychain testnet", - "chainId": 125, - "networkId": 125, - "slip44": 125, - "explorers": [ - { - "name": "OYchain Testnet Explorer", - "url": "https://explorer.testnet.oychain.io", - "standard": "none" - } - ] - }, - { - "name": "OYchain Mainnet", - "chain": "OYchain", - "icon": "oychain", - "rpc": [ - "https://rpc.mainnet.oychain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OYchain Token", - "symbol": "OY", - "decimals": 18 - }, - "infoURL": "https://www.oychain.io", - "shortName": "oychain mainnet", - "chainId": 126, - "networkId": 126, - "slip44": 126, - "explorers": [ - { - "name": "OYchain Mainnet Explorer", - "url": "https://explorer.oychain.io", - "standard": "none" - } - ] - }, - { - "name": "Factory 127 Mainnet", - "chain": "FETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 - }, - "infoURL": "https://www.factory127.com", - "shortName": "feth", - "chainId": 127, - "networkId": 127, - "slip44": 127 - }, - { - "name": "DAX CHAIN", - "chain": "DAX", - "rpc": [ - "https://rpc.prodax.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Prodax", - "symbol": "DAX", - "decimals": 18 - }, - "infoURL": "https://prodax.io/", - "shortName": "dax", - "chainId": 142, - "networkId": 142 - }, - { - "name": "Latam-Blockchain Resil Testnet", - "chain": "Resil", - "rpc": [ - "https://rpc.latam-blockchain.com", - "wss://ws.latam-blockchain.com" - ], - "faucets": [ - "https://faucet.latam-blockchain.com" - ], - "nativeCurrency": { - "name": "Latam-Blockchain Resil Test Native Token", - "symbol": "usd", - "decimals": 18 - }, - "infoURL": "https://latam-blockchain.com", - "shortName": "resil", - "chainId": 172, - "networkId": 172 - }, - { - "name": "Seele Mainnet", - "chain": "Seele", - "rpc": [ - "https://rpc.seelen.pro/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Seele", - "symbol": "Seele", - "decimals": 18 - }, - "infoURL": "https://seelen.pro/", - "shortName": "Seele", - "chainId": 186, - "networkId": 186, - "explorers": [ - { - "name": "seeleview", - "url": "https://seeleview.net", - "standard": "none" - } - ] - }, - { - "name": "BMC Mainnet", - "chain": "BMC", - "rpc": [ - "https://mainnet.bmcchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 - }, - "infoURL": "https://bmc.bytom.io/", - "shortName": "BMC", - "chainId": 188, - "networkId": 188, - "explorers": [ - { - "name": "Blockmeta", - "url": "https://bmc.blockmeta.com", - "standard": "none" - } - ] - }, - { - "name": "BMC Testnet", - "chain": "BMC", - "rpc": [ - "https://testnet.bmcchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTM", - "symbol": "BTM", - "decimals": 18 - }, - "infoURL": "https://bmc.bytom.io/", - "shortName": "BMCT", - "chainId": 189, - "networkId": 189, - "explorers": [ - { - "name": "Blockmeta", - "url": "https://bmctestnet.blockmeta.com", - "standard": "none" - } - ] - }, - { - "name": "BitTorrent Chain Mainnet", - "chain": "BTTC", - "rpc": [ - "https://rpc.bittorrentchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 - }, - "infoURL": "https://bittorrentchain.io/", - "shortName": "BTT", - "chainId": 199, - "networkId": 199, - "explorers": [ - { - "name": "bttcscan", - "url": "https://scan.bittorrentchain.io", - "standard": "none" - } - ] - }, - { - "name": "Arbitrum on xDai", - "chain": "AOX", - "rpc": [ - "https://arbitrum.xdaichain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://xdaichain.com", - "shortName": "aox", - "chainId": 200, - "networkId": 200, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/xdai/arbitrum", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-100", - "type": "L2" - } - }, - { - "name": "Permission", - "chain": "ASK", - "rpc": [ - "https://blockchain-api-mainnet.permission.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "ASK", - "symbol": "ASK", - "decimals": 18 - }, - "infoURL": "https://permission.io/", - "shortName": "ASK", - "chainId": 222, - "networkId": 2221, - "slip44": 2221 - }, - { - "name": "SUR Blockchain Network", - "chain": "SUR", - "rpc": [ - "https://sur.nilin.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Suren", - "symbol": "SRN", - "decimals": 18 - }, - "infoURL": "https://surnet.org", - "shortName": "SUR", - "chainId": 262, - "networkId": 1, - "icon": "SUR", - "explorers": [ - { - "name": "Surnet Explorer", - "url": "https://explorer.surnet.org", - "icon": "SUR", - "standard": "EIP3091" - } - ] - }, - { - "name": "Boba Network", - "chain": "ETH", - "rpc": [ - "https://mainnet.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Boba", - "chainId": 288, - "networkId": 288, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.boba.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - } - }, - { - "name": "KCC Testnet", - "chain": "KCC", - "rpc": [ - "https://rpc-testnet.kcc.network", - "wss://rpc-ws-testnet.kcc.network" - ], - "faucets": [ - "https://faucet-testnet.kcc.network" - ], - "nativeCurrency": { - "name": "KuCoin Testnet Token", - "symbol": "tKCS", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.kcc.network", - "shortName": "kcst", - "chainId": 322, - "networkId": 322, - "explorers": [ - { - "name": "kcc-scan", - "url": "https://scan-testnet.kcc.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Web3Q Mainnet", - "chain": "Web3Q", - "rpc": [ - "https://mainnet.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://web3q.io/home.w3q/", - "shortName": "w3q", - "chainId": 333, - "networkId": 333, - "explorers": [ - { - "name": "w3q-mainnet", - "url": "https://explorer.mainnet.web3q.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shiden", - "chain": "SDN", - "rpc": [ - "https://rpc.shiden.astar.network:8545", - "wss://shiden.api.onfinality.io/public-ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shiden", - "symbol": "SDN", - "decimals": 18 - }, - "infoURL": "https://shiden.astar.network/", - "shortName": "sdn", - "chainId": 336, - "networkId": 336, - "explorers": [ - { - "name": "subscan", - "url": "https://shiden.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Cronos Testnet", - "chain": "CRO", - "rpc": [ - "https://cronos-testnet-3.crypto.org:8545", - "wss://cronos-testnet-3.crypto.org:8546" - ], - "faucets": [ - "https://cronos.crypto.org/faucet" - ], - "nativeCurrency": { - "name": "Crypto.org Test Coin", - "symbol": "TCRO", - "decimals": 18 - }, - "infoURL": "https://cronos.crypto.org", - "shortName": "tcro", - "chainId": 338, - "networkId": 338, - "explorers": [ - { - "name": "Cronos Testnet Explorer", - "url": "https://cronos.crypto.org/explorer/testnet3", - "standard": "none" - } - ] - }, - { - "name": "Theta Mainnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-mainnet", - "chainId": 361, - "networkId": 361, - "explorers": [ - { - "name": "Theta Mainnet Explorer", - "url": "https://explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Theta Sapphire Testnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-sapphire.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-sapphire", - "chainId": 363, - "networkId": 363, - "explorers": [ - { - "name": "Theta Sapphire Testnet Explorer", - "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Theta Amber Testnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-amber.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-amber", - "chainId": 364, - "networkId": 364, - "explorers": [ - { - "name": "Theta Amber Testnet Explorer", - "url": "https://guardian-testnet-amber-explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Theta Testnet", - "chain": "Theta", - "rpc": [ - "https://eth-rpc-api-testnet.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Theta Fuel", - "symbol": "TFUEL", - "decimals": 18 - }, - "infoURL": "https://www.thetatoken.org/", - "shortName": "theta-testnet", - "chainId": 365, - "networkId": 365, - "explorers": [ - { - "name": "Theta Testnet Explorer", - "url": "https://testnet-explorer.thetatoken.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vela1 Chain Mainnet", - "chain": "VELA1", - "rpc": [ - "https://rpc.velaverse.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "CLASS COIN", - "symbol": "CLASS", - "decimals": 18 - }, - "infoURL": "https://velaverse.io", - "shortName": "CLASS", - "chainId": 555, - "networkId": 555, - "explorers": [ - { - "name": "Vela1 Chain Mainnet Explorer", - "url": "https://exp.velaverse.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metis Stardust Testnet", - "chain": "ETH", - "rpc": [ - "https://stardust.metis.io/?owner=588" - ], - "faucets": [], - "nativeCurrency": { - "name": "tMetis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-stardust", - "chainId": 588, - "networkId": 588, - "explorers": [ - { - "name": "blockscout", - "url": "https://stardust-explorer.metis.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://bridge.metis.io" - } - ] - } - }, - { - "name": "Meshnyan testnet", - "chain": "MeshTestChain", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Meshnyan Testnet Native Token", - "symbol": "MESHT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mesh-chain-testnet", - "chainId": 600, - "networkId": 600 - }, - { - "name": "Pixie Chain Testnet", - "chain": "PixieChain", - "rpc": [ - "https://http-testnet.chain.pixie.xyz", - "wss://ws-testnet.chain.pixie.xyz" - ], - "faucets": [ - "https://chain.pixie.xyz/faucet" - ], - "nativeCurrency": { - "name": "Pixie Chain Testnet Native Token", - "symbol": "PCTT", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.chain.pixie.xyz", - "shortName": "pixie-chain-testnet", - "chainId": 666, - "networkId": 666 - }, - { - "name": "BlockChain Station Mainnet", - "chain": "BCS", - "rpc": [ - "https://rpc-mainnet.bcsdev.io", - "wss://rpc-ws-mainnet.bcsdev.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BCS Token", - "symbol": "BCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "bcs", - "chainId": 707, - "networkId": 707, - "explorers": [ - { - "name": "BlockChain Station Explorer", - "url": "https://explorer.bcsdev.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "BlockChain Station Testnet", - "chain": "BCS", - "rpc": [ - "https://rpc-testnet.bcsdev.io", - "wss://rpc-ws-testnet.bcsdev.io" - ], - "faucets": [ - "https://faucet.bcsdev.io" - ], - "nativeCurrency": { - "name": "BCS Testnet Token", - "symbol": "tBCS", - "decimals": 18 - }, - "infoURL": "https://blockchainstation.io", - "shortName": "tbcs", - "chainId": 708, - "networkId": 708, - "explorers": [ - { - "name": "BlockChain Station Explorer", - "url": "https://testnet.bcsdev.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Factory 127 Testnet", - "chain": "FETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Factory 127 Token", - "symbol": "FETH", - "decimals": 18 - }, - "infoURL": "https://www.factory127.com", - "shortName": "tfeth", - "chainId": 721, - "networkId": 721, - "slip44": 721 - }, - { - "name": "Haic", - "chain": "Haic", - "rpc": [ - "https://orig.haichain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Haicoin", - "symbol": "HAIC", - "decimals": 18 - }, - "infoURL": "https://www.haichain.io/", - "shortName": "haic", - "chainId": 803, - "networkId": 803 - }, - { - "name": "Ambros Chain Mainnet", - "chain": "ambroschain", - "rpc": [ - "https://mainnet.ambroschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBR", - "decimals": 18 - }, - "infoURL": "https://bcmhunt.com/", - "shortName": "ambros", - "chainId": 880, - "networkId": 880, - "explorers": [ - { - "name": "Ambros Chain Explorer", - "url": "https://explorer.ambroschain.com", - "standard": "none" - } - ] - }, - { - "name": "Garizon Testnet Stage0", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s0-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s0", - "chainId": 900, - "networkId": 900, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Garizon Testnet Stage1", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s1-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s1", - "chainId": 901, - "networkId": 901, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - } - }, - { - "name": "Garizon Testnet Stage2", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s2-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s2", - "chainId": 902, - "networkId": 902, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - } - }, - { - "name": "Garizon Testnet Stage3", - "chain": "GAR", - "network": "testnet", - "icon": "garizon", - "rpc": [ - "https://s3-testnet.garizon.net/rpc" - ], - "faucets": [ - "https://faucet-testnet.garizon.com" - ], - "nativeCurrency": { - "name": "Garizon", - "symbol": "GAR", - "decimals": 18 - }, - "infoURL": "https://garizon.com", - "shortName": "gar-test-s3", - "chainId": 903, - "networkId": 903, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer-testnet.garizon.com", - "icon": "garizon", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-900", - "type": "shard" - } - }, - { - "name": "PulseChain Testnet", - "shortName": "tpls", - "chain": "tPLS", - "chainId": 940, - "networkId": 940, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}", - "wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "Lucky Network", - "chain": "LN", - "rpc": [ - "https://rpc.luckynetwork.org", - "wss://ws.lnscan.org", - "https://rpc.lnscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lucky", - "symbol": "L99", - "decimals": 18 - }, - "infoURL": "https://luckynetwork.org", - "shortName": "ln", - "chainId": 998, - "networkId": 998, - "icon": "lucky", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.luckynetwork.org", - "standard": "none" - }, - { - "name": "expedition", - "url": "https://lnscan.org", - "standard": "none" - } - ] - }, - { - "name": "Sakura", - "chain": "Sakura", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sakura", - "symbol": "SKU", - "decimals": 18 - }, - "infoURL": "https://clover.finance/sakura", - "shortName": "sku", - "chainId": 1022, - "networkId": 1022 - }, - { - "name": "BitTorrent Chain Testnet", - "chain": "BTTC", - "rpc": [ - "https://testrpc.bittorrentchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitTorrent", - "symbol": "BTT", - "decimals": 18 - }, - "infoURL": "https://bittorrentchain.io/", - "shortName": "tbtt", - "chainId": 1028, - "networkId": 1028, - "explorers": [ - { - "name": "testbttcscan", - "url": "https://testscan.bittorrentchain.io", - "standard": "none" - } - ] - }, - { - "name": "Conflux eSpace", - "chain": "Conflux", - "network": "mainnet", - "rpc": [ - "https://evm.confluxrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CFX", - "symbol": "CFX", - "decimals": 18 - }, - "infoURL": "https://confluxnetwork.org", - "shortName": "cfx", - "chainId": 1030, - "networkId": 1030, - "icon": "conflux", - "explorers": [ - { - "name": "Conflux Scan", - "url": "https://evm.confluxscan.net", - "standard": "none" - } - ] - }, - { - "name": "Metis Andromeda Mainnet", - "chain": "ETH", - "rpc": [ - "https://andromeda.metis.io/?owner=1088" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-andromeda", - "chainId": 1088, - "networkId": 1088, - "explorers": [ - { - "name": "blockscout", - "url": "https://andromeda-explorer.metis.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.metis.io" - } - ] - } - }, - { - "name": "Iora Chain", - "chain": "IORA", - "network": "iorachain", - "icon": "iorachain", - "rpc": [ - "https://dataseed.iorachain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Iora", - "symbol": "IORA", - "decimals": 18 - }, - "infoURL": "https://iorachain.com", - "shortName": "iora", - "chainId": 1197, - "networkId": 1197, - "explorers": [ - { - "name": "ioraexplorer", - "url": "https://explorer.iorachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Evanesco Testnet", - "chain": "Evanesco Testnet", - "network": "avis", - "rpc": [ - "https://seed5.evanesco.org:8547" - ], - "faucets": [], - "nativeCurrency": { - "name": "AVIS", - "symbol": "AVIS", - "decimals": 18 - }, - "infoURL": "https://evanesco.org/", - "shortName": "avis", - "chainId": 1201, - "networkId": 1201 - }, - { - "name": "World Trade Technical Chain Mainnet", - "chain": "WTT", - "rpc": [ - "https://rpc.cadaut.com", - "wss://rpc.cadaut.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "World Trade Token", - "symbol": "WTT", - "decimals": 18 - }, - "infoURL": "http://www.cadaut.com", - "shortName": "wtt", - "chainId": 1202, - "networkId": 2048, - "explorers": [ - { - "name": "WTTScout", - "url": "https://explorer.cadaut.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Popcateum Mainnet", - "chain": "POPCATEUM", - "rpc": [ - "https://dataseed.popcateum.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Popcat", - "symbol": "POP", - "decimals": 18 - }, - "infoURL": "https://popcateum.org", - "shortName": "popcat", - "chainId": 1213, - "networkId": 1213, - "explorers": [ - { - "name": "popcateum explorer", - "url": "https://explorer.popcateum.org", - "standard": "none" - } - ] - }, - { - "name": "EnterChain Mainnet", - "chain": "ENTER", - "network": "mainnet", - "rpc": [ - "https://tapi.entercoin.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "EnterCoin", - "symbol": "ENTER", - "decimals": 18 - }, - "infoURL": "https://entercoin.net", - "shortName": "enter", - "chainId": 1214, - "networkId": 1214, - "icon": "enter", - "explorers": [ - { - "name": "Enter Explorer - Expenter", - "url": "https://explorer.entercoin.net", - "icon": "enter", - "standard": "EIP3091" - } - ] - }, - { - "name": "Moonrock", - "chain": "MOON", - "rpc": [ - "https://rpc.api.moonrock.moonbeam.network", - "wss://wss.api.moonrock.moonbeam.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rocs", - "symbol": "ROC", - "decimals": 18 - }, - "infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/", - "shortName": "mrock", - "chainId": 1288, - "networkId": 1288 - }, - { - "name": "Rangers Protocol Mainnet", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://mainnet.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "RPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "rpg", - "chainId": 2025, - "networkId": 2025, - "slip44": 1008, - "explorers": [ - { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "Ecoball Mainnet", - "chain": "ECO", - "rpc": [ - "https://api.ecoball.org/ecoball/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ecoball Coin", - "symbol": "ECO", - "decimals": 18 - }, - "infoURL": "https://ecoball.org", - "shortName": "eco", - "chainId": 2100, - "networkId": 2100, - "explorers": [ - { - "name": "Ecoball Explorer", - "url": "https://scan.ecoball.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ecoball Testnet Espuma", - "chain": "ECO", - "rpc": [ - "https://api.ecoball.org/espuma/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Espuma Coin", - "symbol": "ECO", - "decimals": 18 - }, - "infoURL": "https://ecoball.org", - "shortName": "esp", - "chainId": 2101, - "networkId": 2101, - "explorers": [ - { - "name": "Ecoball Testnet Explorer", - "url": "https://espuma-scan.ecoball.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Evanesco Mainnet", - "chain": "EVA", - "network": "mainnet", - "rpc": [ - "https://seed4.evanesco.org:8546" - ], - "faucets": [], - "nativeCurrency": { - "name": "EVA", - "symbol": "EVA", - "decimals": 18 - }, - "infoURL": "https://evanesco.org/", - "shortName": "evanesco", - "chainId": 2213, - "networkId": 2213, - "icon": "evanesco", - "explorers": [ - { - "name": "Evanesco Explorer", - "url": "https://explorer.evanesco.org", - "standard": "none" - } - ] - }, - { - "name": "ZCore Testnet", - "chain": "Beach", - "icon": "zcore", - "rpc": [ - "https://rpc-testnet.zcore.cash" - ], - "faucets": [ - "https://faucet.zcore.cash" - ], - "nativeCurrency": { - "name": "ZCore", - "symbol": "ZCR", - "decimals": 18 - }, - "infoURL": "https://zcore.cash", - "shortName": "zcrbeach", - "chainId": 3331, - "networkId": 3331 - }, - { - "name": "Web3Q Testnet", - "chain": "Web3Q", - "rpc": [ - "https://testnet.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://web3q.io/home.w3q/", - "shortName": "w3q-t", - "chainId": 3333, - "networkId": 3333, - "explorers": [ - { - "name": "w3q-testnet", - "url": "https://explorer.testnet.web3q.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bittex Mainnet", - "chain": "BTX", - "rpc": [ - "https://rpc1.bittexscan.info", - "https://rpc2.bittexscan.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bittex", - "symbol": "BTX", - "decimals": 18 - }, - "infoURL": "https://bittexscan.com", - "shortName": "btx", - "chainId": 3690, - "networkId": 3690, - "icon": "ethereum", - "explorers": [ - { - "name": "bittexscan", - "url": "https://bittexscan.com", - "icon": "etherscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fantom Testnet", - "chain": "FTM", - "rpc": [ - "https://rpc.testnet.fantom.network" - ], - "faucets": [ - "https://faucet.fantom.network" - ], - "nativeCurrency": { - "name": "Fantom", - "symbol": "FTM", - "decimals": 18 - }, - "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", - "shortName": "tftm", - "chainId": 4002, - "networkId": 4002, - "icon": "fantom", - "explorers": [ - { - "name": "ftmscan", - "url": "https://testnet.ftmscan.com", - "icon": "ftmscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "IoTeX Network Mainnet", - "chain": "iotex.io", - "rpc": [ - "https://babel-api.mainnet.iotex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 - }, - "infoURL": "https://iotex.io", - "shortName": "iotex-mainnet", - "chainId": 4689, - "networkId": 4689, - "explorers": [ - { - "name": "iotexscan", - "url": "https://iotexscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "IoTeX Network Testnet", - "chain": "iotex.io", - "rpc": [ - "https://babel-api.testnet.iotex.io" - ], - "faucets": [ - "https://faucet.iotex.io/" - ], - "nativeCurrency": { - "name": "IoTeX", - "symbol": "IOTX", - "decimals": 18 - }, - "infoURL": "https://iotex.io", - "shortName": "iotex-testnet", - "chainId": 4690, - "networkId": 4690, - "explorers": [ - { - "name": "testnet iotexscan", - "url": "https://testnet.iotexscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "EraSwap Mainnet", - "chain": "ESN", - "icon": "eraswap", - "rpc": [ - "https://mainnet.eraswap.network", - "https://rpc-mumbai.mainnet.eraswap.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "EraSwap", - "symbol": "ES", - "decimals": 18 - }, - "infoURL": "https://eraswap.info/", - "shortName": "es", - "chainId": 5197, - "networkId": 5197 - }, - { - "name": "Uzmi Network Mainnet", - "chain": "UZMI", - "rpc": [ - "https://network.uzmigames.com.br/" - ], - "faucets": [], - "nativeCurrency": { - "name": "UZMI", - "symbol": "UZMI", - "decimals": 18 - }, - "infoURL": "https://uzmigames.com.br/", - "shortName": "UZMI", - "chainId": 5315, - "networkId": 5315 - }, - { - "name": "Syscoin Tanenbaum Testnet", - "chain": "SYS", - "rpc": [ - "https://rpc.tanenbaum.io", - "wss://rpc.tanenbaum.io/wss" - ], - "faucets": [ - "https://faucet.tanenbaum.io" - ], - "nativeCurrency": { - "name": "Testnet Syscoin", - "symbol": "tSYS", - "decimals": 18 - }, - "infoURL": "https://syscoin.org", - "shortName": "tsys", - "chainId": 5700, - "networkId": 5700, - "explorers": [ - { - "name": "Syscoin Testnet Block Explorer", - "url": "https://tanenbaum.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ontology Testnet", - "chain": "Ontology", - "rpc": [ - "https://polaris1.ont.io:20339", - "https://polaris2.ont.io:20339", - "https://polaris3.ont.io:20339", - "https://polaris4.ont.io:20339" - ], - "faucets": [ - "https://developer.ont.io/" - ], - "nativeCurrency": { - "name": "ONG", - "symbol": "ONG", - "decimals": 9 - }, - "infoURL": "https://ont.io/", - "shortName": "Ontology Testnet", - "chainId": 5851, - "networkId": 5851, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.ont.io/testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Pixie Chain Mainnet", - "chain": "PixieChain", - "rpc": [ - "https://http-mainnet.chain.pixie.xyz", - "wss://ws-mainnet.chain.pixie.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pixie Chain Native Token", - "symbol": "PIX", - "decimals": 18 - }, - "infoURL": "https://chain.pixie.xyz", - "shortName": "pixie-chain", - "chainId": 6626, - "networkId": 6626, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.chain.pixie.xyz", - "standard": "none" - } - ] - }, - { - "name": "Shyft Mainnet", - "chain": "SHYFT", - "icon": "shyft", - "rpc": [ - "https://rpc.shyft.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shyft", - "symbol": "SHYFT", - "decimals": 18 - }, - "infoURL": "https://shyft.network", - "shortName": "shyft", - "chainId": 7341, - "networkId": 7341, - "slip44": 2147490989, - "explorers": [ - { - "name": "Shyft BX", - "url": "https://bx.shyft.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hazlor Testnet", - "chain": "SCAS", - "rpc": [ - "https://hatlas.rpc.hazlor.com:8545", - "wss://hatlas.rpc.hazlor.com:8546" - ], - "faucets": [ - "https://faucet.hazlor.com" - ], - "nativeCurrency": { - "name": "Hazlor Test Coin", - "symbol": "TSCAS", - "decimals": 18 - }, - "infoURL": "https://hazlor.com", - "shortName": "tscas", - "chainId": 7878, - "networkId": 7878, - "explorers": [ - { - "name": "Hazlor Testnet Explorer", - "url": "https://explorer.hazlor.com", - "standard": "none" - } - ] - }, - { - "name": "Teleport", - "chain": "Teleport", - "rpc": [ - "https://evm-rpc.teleport.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 - }, - "infoURL": "https://teleport.network", - "shortName": "teleport", - "chainId": 8000, - "networkId": 8000, - "icon": "teleport", - "explorers": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.teleport.network", - "standard": "none", - "icon": "teleport" - }, - { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.teleport.network", - "standard": "none", - "icon": "teleport" - } - ] - }, - { - "name": "Teleport Testnet", - "chain": "Teleport", - "rpc": [ - "https://evm-rpc.testnet.teleport.network" - ], - "faucets": [ - "https://chain-docs.teleport.network/testnet/faucet.html" - ], - "nativeCurrency": { - "name": "Tele", - "symbol": "TELE", - "decimals": 18 - }, - "infoURL": "https://teleport.network", - "shortName": "teleport-testnet", - "chainId": 8001, - "networkId": 8001, - "icon": "teleport", - "explorers": [ - { - "name": "Teleport EVM Explorer (Blockscout)", - "url": "https://evm-explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - }, - { - "name": "Teleport Cosmos Explorer (Big Dipper)", - "url": "https://explorer.testnet.teleport.network", - "standard": "none", - "icon": "teleport" - } - ] - }, - { - "name": "MDGL Testnet", - "chain": "MDGL", - "rpc": [ - "https://testnet.mdgl.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MDGL Token", - "symbol": "MDGLT", - "decimals": 18 - }, - "infoURL": "https://mdgl.io", - "shortName": "mdgl", - "chainId": 8029, - "networkId": 8029 - }, - { - "name": "GeneChain Adenine Testnet", - "chain": "GeneChain", - "rpc": [ - "https://rpc-testnet.genechain.io" - ], - "faucets": [ - "https://faucet.genechain.io" - ], - "nativeCurrency": { - "name": "Testnet RNA", - "symbol": "tRNA", - "decimals": 18 - }, - "infoURL": "https://scan-testnet.genechain.io/", - "shortName": "GeneChainAdn", - "chainId": 8080, - "networkId": 8080, - "explorers": [ - { - "name": "GeneChain Adenine Testnet Scan", - "url": "https://scan-testnet.genechain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "TOOL Global Mainnet", - "chain": "OLO", - "rpc": [ - "https://mainnet-web3.wolot.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 - }, - "infoURL": "https://ibdt.io", - "shortName": "olo", - "chainId": 8723, - "networkId": 8723, - "slip44": 479, - "explorers": [ - { - "name": "OLO Block Explorer", - "url": "https://www.olo.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "TOOL Global Testnet", - "chain": "OLO", - "rpc": [ - "https://testnet-web3.wolot.io" - ], - "faucets": [ - "https://testnet-explorer.wolot.io" - ], - "nativeCurrency": { - "name": "TOOL Global", - "symbol": "OLO", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.wolot.io", - "shortName": "tolo", - "chainId": 8724, - "networkId": 8724, - "slip44": 479 - }, - { - "name": "Ambros Chain Testnet", - "chain": "ambroschain", - "rpc": [ - "https://testnet.ambroschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "AMBROS", - "symbol": "AMBR", - "decimals": 18 - }, - "infoURL": "https://bcmhunt.com/", - "shortName": "ambrostestnet", - "chainId": 8888, - "networkId": 8888, - "explorers": [ - { - "name": "Ambros Chain Explorer", - "url": "https://testexplorer.ambroschain.com", - "standard": "none" - } - ] - }, - { - "name": "Genesis Coin", - "chain": "Genesis", - "rpc": [ - "https://genesis-gn.com", - "wss://genesis-gn.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GN Coin", - "symbol": "GNC", - "decimals": 18 - }, - "infoURL": "https://genesis-gn.com", - "shortName": "GENEC", - "chainId": 9100, - "networkId": 9100 - }, - { - "name": "Rangers Protocol Testnet Robin", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://robin.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [ - "https://robin-faucet.rangersprotocol.com" - ], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "tRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "trpg", - "chainId": 9527, - "networkId": 9527, - "explorers": [ - { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "myOwn Testnet", - "chain": "myOwn", - "rpc": [ - "https://geth.dev.bccloud.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "MYN", - "symbol": "MYN", - "decimals": 18 - }, - "infoURL": "https://docs.bccloud.net/", - "shortName": "myn", - "chainId": 9999, - "networkId": 9999 - }, - { - "name": "Blockchain Genesis Mainnet", - "chain": "GEN", - "rpc": [ - "https://eu.mainnet.xixoio.com", - "https://us.mainnet.xixoio.com", - "https://asia.mainnet.xixoio.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GEN", - "symbol": "GEN", - "decimals": 18 - }, - "infoURL": "https://www.xixoio.com/", - "shortName": "GEN", - "chainId": 10101, - "networkId": 10101 - }, - { - "name": "WAGMI", - "chain": "WAGMI", - "icon": "wagmi", - "rpc": [ - "https://api.trywagmi.xyz/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "WAGMI", - "symbol": "WGM", - "decimals": 18 - }, - "infoURL": "https://trywagmi.xyz", - "shortName": "WAGMI", - "chainId": 11111, - "networkId": 11111, - "explorers": [ - { - "name": "WAGMI Explorer", - "url": "https://trywagmi.xyz", - "standard": "none" - } - ] - }, - { - "name": "Shyft Testnet", - "chain": "SHYFTT", - "icon": "shyft", - "rpc": [ - "https://rpc.testnet.shyft.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shyft Test Token", - "symbol": "SHYFTT", - "decimals": 18 - }, - "infoURL": "https://shyft.network", - "shortName": "shyftt", - "chainId": 11437, - "networkId": 11437, - "explorers": [ - { - "name": "Shyft Testnet BX", - "url": "https://bx.testnet.shyft.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Singularity ZERO Testnet", - "chain": "ZERO", - "rpc": [ - "https://betaenv.singularity.gold:18545" - ], - "faucets": [ - "https://nft.singularity.gold" - ], - "nativeCurrency": { - "name": "ZERO", - "symbol": "tZERO", - "decimals": 18 - }, - "infoURL": "https://www.singularity.gold", - "shortName": "tZERO", - "chainId": 12051, - "networkId": 12051, - "explorers": [ - { - "name": "zeroscan", - "url": "https://betaenv.singularity.gold:18002", - "standard": "EIP3091" - } - ] - }, - { - "name": "Singularity ZERO Mainnet", - "chain": "ZERO", - "rpc": [ - "https://zerorpc.singularity.gold" - ], - "faucets": [ - "https://zeroscan.singularity.gold" - ], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://www.singularity.gold", - "shortName": "ZERO", - "chainId": 12052, - "networkId": 12052, - "slip44": 621, - "explorers": [ - { - "name": "zeroscan", - "url": "https://zeroscan.singularity.gold", - "standard": "EIP3091" - } - ] - }, - { - "name": "Phoenix Mainnet", - "chain": "Phoenix", - "network": "mainnet", - "rpc": [ - "https://rpc.phoenixplorer.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Phoenix", - "symbol": "PHX", - "decimals": 18 - }, - "infoURL": "https://cryptophoenix.org/phoenix", - "shortName": "Phoenix", - "chainId": 13381, - "networkId": 13381, - "icon": "phoenix", - "explorers": [ - { - "name": "phoenixplorer", - "url": "https://phoenixplorer.com", - "icon": "phoenixplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaDot Mainnet", - "chain": "MTT", - "rpc": [ - "https://mainnet.metadot.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "MetaDot Token", - "symbol": "MTT", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtt", - "chainId": 16000, - "networkId": 16000 - }, - { - "name": "MetaDot Testnet", - "chain": "MTTTest", - "rpc": [ - "https://testnet.metadot.network" - ], - "faucets": [ - "https://faucet.metadot.network/" - ], - "nativeCurrency": { - "name": "MetaDot Token TestNet", - "symbol": "MTT-test", - "decimals": 18 - }, - "infoURL": "https://metadot.network", - "shortName": "mtttest", - "chainId": 16001, - "networkId": 16001 - }, - { - "name": "BTCIX Network", - "chain": "BTCIX", - "rpc": [ - "https://seed.btcix.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTCIX Network", - "symbol": "BTCIX", - "decimals": 18 - }, - "infoURL": "https://bitcolojix.org", - "shortName": "btcix", - "chainId": 19845, - "networkId": 19845, - "explorers": [ - { - "name": "BTCIXScan", - "url": "https://btcixscan.com", - "standard": "none" - } - ] - }, - { - "name": "MintMe.com Coin", - "chain": "MINTME", - "rpc": [ - "https://node1.mintme.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MintMe.com Coin", - "symbol": "MINTME", - "decimals": 18 - }, - "infoURL": "https://www.mintme.com", - "shortName": "mintme", - "chainId": 24734, - "networkId": 37480 - }, - { - "name": "GoChain Testnet", - "chain": "GO", - "rpc": [ - "https://testnet-rpc.gochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoChain Coin", - "symbol": "GO", - "decimals": 18 - }, - "infoURL": "https://gochain.io", - "shortName": "got", - "chainId": 31337, - "networkId": 31337, - "slip44": 6060, - "explorers": [ - { - "name": "GoChain Testnet Explorer", - "url": "https://testnet-explorer.gochain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Emerald Paratime Testnet", - "chain": "Emerald", - "icon": "oasis", - "rpc": [ - "https://testnet.emerald.oasis.dev/", - "wss://testnet.emerald.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", - "shortName": "emerald", - "chainId": 42261, - "networkId": 42261, - "explorers": [ - { - "name": "Emerald Paratime Testnet Explorer", - "url": "https://testnet.explorer.emerald.oasis.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Emerald Paratime Mainnet", - "chain": "Emerald", - "icon": "oasis", - "rpc": [ - "https://emerald.oasis.dev", - "wss://emerald.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Emerald Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", - "shortName": "oasis", - "chainId": 42262, - "networkId": 42262, - "explorers": [ - { - "name": "Emerald Paratime Mainnet Explorer", - "url": "https://explorer.emerald.oasis.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "REI Network", - "chain": "REI", - "rpc": [ - "https://rpc.rei.network", - "wss://rpc.rei.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "REI", - "symbol": "REI", - "decimals": 18 - }, - "infoURL": "https://rei.network/", - "shortName": "REI", - "chainId": 47805, - "networkId": 47805, - "explorers": [ - { - "name": "rei-scan", - "url": "https://scan.rei.network", - "standard": "none" - } - ] - }, - { - "name": "REI Chain Mainnet", - "chain": "REI", - "icon": "reichain", - "rpc": [ - "https://rei-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55555" - ], - "nativeCurrency": { - "name": "Rei", - "symbol": "REI", - "decimals": 18 - }, - "infoURL": "https://reichain.io", - "shortName": "rei", - "chainId": 55555, - "networkId": 55555, - "explorers": [ - { - "name": "reiscan", - "url": "https://reiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "REI Chain Testnet", - "chain": "REI", - "icon": "reichain", - "rpc": [ - "https://rei-testnet-rpc.moonrhythm.io" - ], - "faucets": [ - "http://kururu.finance/faucet?chainId=55556" - ], - "nativeCurrency": { - "name": "tRei", - "symbol": "tREI", - "decimals": 18 - }, - "infoURL": "https://reichain.io", - "shortName": "trei", - "chainId": 55556, - "networkId": 55556, - "explorers": [ - { - "name": "reiscan", - "url": "https://testnet.reiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://test.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test0", - "chainId": 60000, - "networkId": 60000, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test0.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://test1.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test1", - "chainId": 60001, - "networkId": 60001, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test1.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://test2.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test2", - "chainId": 60002, - "networkId": 60002, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test2.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Testnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://test103.thinkiumrpc.net/" - ], - "faucets": [ - "https://www.thinkiumdev.net/faucet" - ], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM-test103", - "chainId": 60103, - "networkId": 60103, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://test103.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "eCredits Mainnet", - "chain": "ECS", - "network": "mainnet", - "rpc": [ - "https://rpc.ecredits.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 - }, - "infoURL": "https://ecredits.com", - "shortName": "ecs", - "chainId": 63000, - "networkId": 63000, - "explorers": [ - { - "name": "eCredits MainNet Explorer", - "url": "https://explorer.ecredits.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "eCredits Testnet", - "chain": "ECS", - "network": "testnet", - "rpc": [ - "https://rpc.tst.ecredits.com" - ], - "faucets": [ - "https://faucet.tst.ecredits.com" - ], - "nativeCurrency": { - "name": "eCredits", - "symbol": "ECS", - "decimals": 18 - }, - "infoURL": "https://ecredits.com", - "shortName": "ecs-testnet", - "chainId": 63001, - "networkId": 63001, - "explorers": [ - { - "name": "eCredits TestNet Explorer", - "url": "https://explorer.tst.ecredits.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 0", - "chain": "Thinkium", - "rpc": [ - "https://proxy.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM0", - "chainId": 70000, - "networkId": 70000, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain0.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 1", - "chain": "Thinkium", - "rpc": [ - "https://proxy1.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM1", - "chainId": 70001, - "networkId": 70001, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain1.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 2", - "chain": "Thinkium", - "rpc": [ - "https://proxy2.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM2", - "chainId": 70002, - "networkId": 70002, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain2.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Thinkium Mainnet Chain 103", - "chain": "Thinkium", - "rpc": [ - "https://proxy103.thinkiumrpc.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TKM", - "symbol": "TKM", - "decimals": 18 - }, - "infoURL": "https://thinkium.net/", - "shortName": "TKM103", - "chainId": 70103, - "networkId": 70103, - "explorers": [ - { - "name": "thinkiumscan", - "url": "https://chain103.thinkiumscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polyjuice Testnet", - "chain": "CKB", - "icon": "polyjuice", - "rpc": [ - "https://godwoken-testnet-web3-rpc.ckbapp.dev", - "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" - ], - "faucets": [ - "https://faucet.nervos.org/" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 - }, - "infoURL": "https://github.com/nervosnetwork/godwoken", - "shortName": "ckb", - "chainId": 71393, - "networkId": 1 - }, - { - "name": "UB Smart Chain(testnet)", - "chain": "USC", - "network": "testnet", - "rpc": [ - "https://testnet.rpc.uschain.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 - }, - "infoURL": "https://www.ubchain.site", - "shortName": "usctest", - "chainId": 99998, - "networkId": 99998 - }, - { - "name": "UB Smart Chain", - "chain": "USC", - "network": "mainnet", - "rpc": [ - "https://rpc.uschain.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "UBC", - "symbol": "UBC", - "decimals": 18 - }, - "infoURL": "https://www.ubchain.site/", - "shortName": "usc", - "chainId": 99999, - "networkId": 99999 - }, - { - "name": "QuarkChain Mainnet Root", - "chain": "QuarkChain", - "rpc": [ - "http://jrpc.mainnet.quarkchain.io:38391/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-r", - "chainId": 100000, - "networkId": 100000 - }, - { - "name": "QuarkChain Mainnet Shard 0", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s0-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39000/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s0", - "chainId": 100001, - "networkId": 100001, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/0", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 1", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s1-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39001/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s1", - "chainId": 100002, - "networkId": 100002, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/1", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 2", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s2-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39002/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s2", - "chainId": 100003, - "networkId": 100003, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/2", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 3", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s3-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39003/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s3", - "chainId": 100004, - "networkId": 100004, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/3", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 4", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s4-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39004/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s4", - "chainId": 100005, - "networkId": 100005, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/4", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 5", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s5-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39005/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s5", - "chainId": 100006, - "networkId": 100006, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/5", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 6", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s6-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39006/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s6", - "chainId": 100007, - "networkId": 100007, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/6", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Mainnet Shard 7", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-s7-ethapi.quarkchain.io", - "http://eth-jrpc.mainnet.quarkchain.io:39007/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-s7", - "chainId": 100008, - "networkId": 100008, - "parent": { - "chain": "eip155-100000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-mainnet", - "url": "https://mainnet.quarkchain.io/7", - "standard": "EIP3091" - } - ] - }, - { - "name": "BROChain Mainnet", - "chain": "BRO", - "network": "mainnet", - "rpc": [ - "https://rpc.brochain.org", - "http://rpc.brochain.org", - "https://rpc.brochain.org/mainnet", - "http://rpc.brochain.org/mainnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Brother", - "symbol": "BRO", - "decimals": 18 - }, - "infoURL": "https://brochain.org", - "shortName": "bro", - "chainId": 108801, - "networkId": 108801, - "explorers": [ - { - "name": "BROChain Explorer", - "url": "https://explorer.brochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Root", - "chain": "QuarkChain", - "rpc": [ - "http://jrpc.devnet.quarkchain.io:38391/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-r", - "chainId": 110000, - "networkId": 110000 - }, - { - "name": "QuarkChain Devnet Shard 0", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s0-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39900/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s0", - "chainId": 110001, - "networkId": 110001, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/0", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 1", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s1-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39901/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s1", - "chainId": 110002, - "networkId": 110002, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/1", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 2", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s2-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39902/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s2", - "chainId": 110003, - "networkId": 110003, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/2", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 3", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s3-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39903/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s3", - "chainId": 110004, - "networkId": 110004, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/3", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 4", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s4-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39904/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s4", - "chainId": 110005, - "networkId": 110005, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/4", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 5", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s5-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39905/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s5", - "chainId": 110006, - "networkId": 110006, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/5", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 6", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s6-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39906/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s6", - "chainId": 110007, - "networkId": 110007, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/6", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain Devnet Shard 7", - "chain": "QuarkChain", - "rpc": [ - "https://devnet-s7-ethapi.quarkchain.io", - "http://eth-jrpc.devnet.quarkchain.io:39907/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io/", - "shortName": "qkc-d-s7", - "chainId": 110008, - "networkId": 110008, - "parent": { - "chain": "eip155-110000", - "type": "shard" - }, - "explorers": [ - { - "name": "quarkchain-devnet", - "url": "https://devnet.quarkchain.io/7", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alaya Mainnet", - "chain": "Alaya", - "rpc": [ - "https://openapi.alaya.network/rpc", - "wss://openapi.alaya.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 - }, - "infoURL": "https://www.alaya.network/", - "shortName": "alaya", - "chainId": 201018, - "networkId": 1, - "icon": "alaya", - "explorers": [ - { - "name": "alaya explorer", - "url": "https://scan.alaya.network", - "standard": "none" - } - ] - }, - { - "name": "Alaya Dev Testnet", - "chain": "Alaya", - "rpc": [ - "https://devnetopenapi.alaya.network/rpc", - "wss://devnetopenapi.alaya.network/ws" - ], - "faucets": [ - "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" - ], - "nativeCurrency": { - "name": "ATP", - "symbol": "atp", - "decimals": 18 - }, - "infoURL": "https://www.alaya.network/", - "shortName": "alayadev", - "chainId": 201030, - "networkId": 1, - "icon": "alaya", - "explorers": [ - { - "name": "alaya explorer", - "url": "https://devnetscan.alaya.network", - "standard": "none" - } - ] - }, - { - "name": "PlatON Dev Testnet", - "chain": "PlatON", - "rpc": [ - "https://devnetopenapi.platon.network/rpc", - "wss://devnetopenapi.platon.network/ws" - ], - "faucets": [ - "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev", - "chainId": 210309, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnetscan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "PlatON Mainnet", - "chain": "PlatON", - "network": "mainnet", - "rpc": [ - "https://openapi2.platon.network/rpc", - "https://openapi.platon.network/rpc", - "wss://openapi.platon.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platon", - "chainId": 210425, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://scan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "Social Smart Chain Mainnet", - "chain": "SoChain", - "rpc": [ - "https://socialsmartchain.digitalnext.business" - ], - "faucets": [], - "nativeCurrency": { - "name": "SoChain", - "symbol": "$OC", - "decimals": 18 - }, - "infoURL": "https://digitalnext.business/SocialSmartChain", - "shortName": "SoChain", - "chainId": 281121, - "networkId": 281121, - "explorers": [] - }, - { - "name": "Polis Testnet", - "chain": "Sparta", - "icon": "polis", - "rpc": [ - "https://sparta-rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], - "nativeCurrency": { - "name": "tPolis", - "symbol": "tPOLIS", - "decimals": 18 - }, - "infoURL": "https://polis.tech", - "shortName": "sparta", - "chainId": 333888, - "networkId": 333888 - }, - { - "name": "Polis Mainnet", - "chain": "Olympus", - "icon": "polis", - "rpc": [ - "https://rpc.polis.tech" - ], - "faucets": [ - "https://faucet.polis.tech" - ], - "nativeCurrency": { - "name": "Polis", - "symbol": "POLIS", - "decimals": 18 - }, - "infoURL": "https://polis.tech", - "shortName": "olympus", - "chainId": 333999, - "networkId": 333999 - }, - { - "name": "Arbitrum Rinkeby", - "title": "Arbitrum Testnet Rinkeby", - "chainId": 421611, - "shortName": "arb-rinkeby", - "chain": "ETH", - "networkId": 421611, - "nativeCurrency": { - "name": "Arbitrum Rinkeby Ether", - "symbol": "ARETH", - "decimals": 18 - }, - "rpc": [ - "https://rinkeby.arbitrum.io/rpc", - "wss://rinkeby.arbitrum.io/ws" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" - ], - "infoURL": "https://arbitrum.io", - "explorers": [ - { - "name": "arbitrum-rinkeby", - "url": "https://rinkeby-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "Eluvio Content Fabric", - "chain": "Eluvio", - "rpc": [ - "https://host-76-74-28-226.contentfabric.io/eth/", - "https://host-76-74-28-232.contentfabric.io/eth/", - "https://host-76-74-29-2.contentfabric.io/eth/", - "https://host-76-74-29-8.contentfabric.io/eth/", - "https://host-76-74-29-34.contentfabric.io/eth/", - "https://host-76-74-29-35.contentfabric.io/eth/", - "https://host-154-14-211-98.contentfabric.io/eth/", - "https://host-154-14-192-66.contentfabric.io/eth/", - "https://host-60-240-133-202.contentfabric.io/eth/", - "https://host-64-235-250-98.contentfabric.io/eth/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ELV", - "symbol": "ELV", - "decimals": 18 - }, - "infoURL": "https://eluv.io", - "shortName": "elv", - "chainId": 955305, - "networkId": 955305, - "slip44": 1011, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.eluv.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kintsugi", - "title": "Kintsugi merge testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.kintsugi.themerge.dev" - ], - "faucets": [ - "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", - "https://faucet.kintsugi.themerge.dev" - ], - "nativeCurrency": { - "name": "kintsugi Ethere", - "symbol": "kiETH", - "decimals": 18 - }, - "infoURL": "https://kintsugi.themerge.dev/", - "shortName": "kintsugi", - "chainId": 1337702, - "networkId": 1337702, - "explorers": [ - { - "name": "kintsugi explorer", - "url": "https://explorer.kintsugi.themerge.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sepolia", - "title": "Ethereum Testnet Sepolia", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "SEP", - "decimals": 18 - }, - "infoURL": "https://sepolia.otterscan.io", - "shortName": "sep", - "chainId": 11155111, - "networkId": 11155111, - "explorers": [ - { - "name": "otterscan-sepolia", - "url": "https://sepolia.otterscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "quarkblockchain", - "chain": "QKI", - "rpc": [ - "https://hz.rpc.qkiscan.cn", - "https://rpc1.qkiscan.cn", - "https://rpc2.qkiscan.cn", - "https://rpc3.qkiscan.cn", - "https://rpc1.qkiscan.io", - "https://rpc2.qkiscan.io", - "https://rpc3.qkiscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "quarkblockchain Native Token", - "symbol": "QKI", - "decimals": 18 - }, - "infoURL": "https://qkiscan.io", - "shortName": "qki", - "chainId": 20181205, - "networkId": 20181205 - }, - { - "name": "Gather Mainnet Network", - "chain": "GTH", - "rpc": [ - "https://mainnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "GTH", - "chainId": 192837465, - "networkId": 192837465, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.gather.network", - "standard": "none" - } - ] - }, - { - "name": "Neon EVM DevNet", - "chain": "Solana", - "rpc": [ - "https://proxy.devnet.neonlabs.org/solana" - ], - "faucets": [ - "https://neonswap.live/#/get-tokens" - ], - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org/", - "shortName": "neonevm-devnet", - "chainId": 245022926, - "networkId": 245022926 - }, - { - "name": "Neon EVM MainNet", - "chain": "Solana", - "rpc": [ - "https://proxy.mainnet.neonlabs.org/solana" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org/", - "shortName": "neonevm-mainnet", - "chainId": 245022934, - "networkId": 245022934 - }, - { - "name": "Neon EVM TestNet", - "chain": "Solana", - "rpc": [ - "https://proxy.testnet.neonlabs.org/solana" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neon", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neon-labs.org/", - "shortName": "neonevm-testnet", - "chainId": 245022940, - "networkId": 245022940 - }, - { - "name": "OneLedger Mainnet", - "chain": "OLT", - "icon": "oneledger", - "rpc": [ - "https://mainnet-rpc.oneledger.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 - }, - "infoURL": "https://oneledger.io", - "shortName": "oneledger", - "chainId": 311752642, - "networkId": 311752642, - "explorers": [ - { - "name": "OneLedger Block Explorer", - "url": "https://mainnet-explorer.oneledger.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gather Tesnet Network", - "chain": "GTH", - "rpc": [ - "https://testnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "tGTH", - "chainId": 356256156, - "networkId": 356256156, - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-explorer.gather.network", - "standard": "none" - } - ] - }, - { - "name": "Gather Devnet Network", - "chain": "GTH", - "rpc": [ - "https://devnet.gather.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gather", - "symbol": "GTH", - "decimals": 18 - }, - "infoURL": "https://gather.network", - "shortName": "dGTH", - "chainId": 486217935, - "networkId": 486217935, - "explorers": [ - { - "name": "Blockscout", - "url": "https://devnet-explorer.gather.network", - "standard": "none" - } - ] - }, - { - "name": "Harmony Testnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://api.s0.b.hmny.io" - ], - "faucets": [ - "https://faucet.pops.one" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s0", - "chainId": 1666700000, - "networkId": 1666700000, - "explorers": [ - { - "name": "Harmony Testnet Block Explorer", - "url": "https://explorer.pops.one", - "standard": "EIP3091" - } - ] - }, - { - "name": "Harmony Testnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://api.s1.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s1", - "chainId": 1666700001, - "networkId": 1666700001 - }, - { - "name": "Harmony Testnet Shard 2", - "chain": "Harmony", - "rpc": [ - "https://api.s2.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s2", - "chainId": 1666700002, - "networkId": 1666700002 - }, - { - "name": "Harmony Testnet Shard 3", - "chain": "Harmony", - "rpc": [ - "https://api.s3.b.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-b-s3", - "chainId": 1666700003, - "networkId": 1666700003 - }, - { - "name": "DataHopper", - "chain": "HOP", - "rpc": [ - "https://23.92.21.121:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "DataHoppers", - "symbol": "HOP", - "decimals": 18 - }, - "infoURL": "https://www.DataHopper.com", - "shortName": "hop", - "chainId": 2021121117, - "networkId": 2021121117 - }, - { - "name": "OneLedger Testnet Frankenstein", - "chain": "OLT", - "icon": "oneledger", - "rpc": [ - "https://frankenstein-rpc.oneledger.network" - ], - "faucets": [ - "https://frankenstein-faucet.oneledger.network" - ], - "nativeCurrency": { - "name": "OLT", - "symbol": "OLT", - "decimals": 18 - }, - "infoURL": "https://oneledger.io", - "shortName": "frankenstein", - "chainId": 4216137055, - "networkId": 4216137055, - "explorers": [ - { - "name": "OneLedger Block Explorer", - "url": "https://frankenstein-explorer.oneledger.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Palm Testnet", - "chain": "Palm", - "icon": "palm", - "rpc": [ - "https://palm-testnet.infura.io/v3/{INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 - }, - "infoURL": "https://palm.io", - "shortName": "tpalm", - "chainId": 11297108099, - "networkId": 11297108099, - "explorers": [ - { - "name": "Palm Testnet Explorer", - "url": "https://explorer.palm-uat.xyz", - "standard": "EIP3091", - "icon": "palm" - } - ] - }, - { - "name": "Palm", - "chain": "Palm", - "icon": "palm", - "rpc": [ - "https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "PALM", - "symbol": "PALM", - "decimals": 18 - }, - "infoURL": "https://palm.io", - "shortName": "palm", - "chainId": 11297108109, - "networkId": 11297108109, - "explorers": [ - { - "name": "Palm Explorer", - "url": "https://explorer.palm.io", - "standard": "EIP3091", - "icon": "palm" - } - ] - }, - { - "name": "Ntity Mainnet", - "chain": "Ntity", - "rpc": [ - "https://rpc.ntity.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity", - "symbol": "NTT", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt", - "chainId": 197710212030, - "networkId": 197710212030, - "icon": "ntity", - "explorers": [ - { - "name": "Ntity Blockscout", - "url": "https://blockscout.ntity.io", - "icon": "ntity", - "standard": "EIP3091" - } - ] - }, - { - "name": "Haradev Testnet", - "chain": "Ntity", - "rpc": [ - "https://blockchain.haradev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ntity Haradev", - "symbol": "NTTH", - "decimals": 18 - }, - "infoURL": "https://ntity.io", - "shortName": "ntt-haradev", - "chainId": 197710212031, - "networkId": 197710212031, - "icon": "ntity", - "explorers": [ - { - "name": "Ntity Haradev Blockscout", - "url": "https://blockscout.haradev.com", - "icon": "ntity", - "standard": "EIP3091" - } - ] - }, - { - "name": "Molereum Network", - "chain": "ETH", - "rpc": [ - "https://molereum.jdubedition.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Molereum Ether", - "symbol": "MOLE", - "decimals": 18 - }, - "infoURL": "https://github.com/Jdubedition/molereum", - "shortName": "mole", - "chainId": 6022140761023, - "networkId": 6022140761023 - }, - { - "name": "Trust Network Testnet Preview", - "chainId": 15555, - "shortName": "Trust testnet", - "chain": "Trust testnet", - "network": "testnet", - "networkId": 15555, - "nativeCurrency": { - "name": "EVM", - "symbol": "EVM", - "decimals": 18 - }, - "rpc": [ - "https://api.testnet-dev.trust.one" - ], - "explorers": [ - { - "name": "TRUST Explorer", - "url": "https://trustscan.one", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaChain", - "chainId": 20028, - "shortName": "MTC", - "chain": "MetaChain", - "network": "mainnet", - "networkId": 20028, - "shortName": "meta", - "nativeCurrency": { - "name": "MTC", - "symbol": "MTC", - "decimals": 18 - }, - "rpc": [ - "https://seed1.metachain1.com", - "https://seed2.metachain1.com", - "https://seed3.metachain1.com" - ], - "faucets": [], - "infoURL": "http://www.metachain1.com/", - "app_resource": { - "ic_chain_select": "https://block.metachain1.com/tokenmetas/meta1.png", - "ic_chain_unselect": "https://block.metachain1.com/tokenmetas/meta0.png", - "color_chain_bg": "0xf3d275" - } - }, - { - "name": "Openpiece Mainnet", - "chain": "OPENPIECE", - "icon": "openpiece", - "network": "mainnet", - "rpc": [ - "https://mainnet.openpiece.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 - }, - "infoURL": "https://cryptopiece.online", - "shortName": "OP", - "chainId": 54, - "networkId": 54, - "explorers": [ - { - "name": "Belly Scan", - "url": "https://bellyscan.com", - "standard": "none" - } - ] - }, - { - "name": "Hoo Smart Chain", - "chain": "HSC", - "rpc": [ - "https://http-mainnet.hoosmartchain.com", - "https://http-mainnet2.hoosmartchain.com", - "wss://ws-mainnet.hoosmartchain.com", - "wss://ws-mainnet2.hoosmartchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hoo Smart Chain Native Token", - "symbol": "HOO", - "decimals": 18 - }, - "infoURL": "https://www.hoosmartchain.com", - "shortName": "hsc", - "chainId": 70, - "networkId": 70, - "slip44": 1170, - "explorers": [ - { - "name": "hooscan", - "url": "https://www.hooscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zenith Mainnet", - "chain": "Zenith", - "rpc": [ - "https://dataserver-us-1.zenithchain.co/", - "https://dataserver-asia-3.zenithchain.co/", - "https://dataserver-asia-4.zenithchain.co/", - "https://dataserver-asia-2.zenithchain.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ZENITH", - "symbol": "ZENITH", - "decimals": 18 - }, - "infoURL": "https://www.zenithchain.co/", - "chainId": 79, - "networkId": 79, - "shortName": "zenith", - "explorers": [ - { - "name": "zenith scan", - "url": "https://scan.zenithchain.co", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zenith Testnet (Vilnius)", - "chain": "Zenith", - "rpc": [ - "https://vilnius.zenithchain.co/http" - ], - "faucets": [ - "https://faucet.zenithchain.co/" - ], - "nativeCurrency": { - "name": "Vilnius", - "symbol": "VIL", - "decimals": 18 - }, - "infoURL": "https://www.zenithchain.co/", - "chainId": 81, - "networkId": 81, - "shortName": "VIL", - "explorers": [ - { - "name": "vilnius scan", - "url": "https://vilnius.scan.zenithchain.co", - "standard": "EIP3091" - } - ] - }, - { - "name": "Web3Games Devnet", - "chain": "Web3Games", - "icon": "web3games", - "rpc": [ - "https://devnet.web3games.org/evm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Games", - "symbol": "W3G", - "decimals": 18 - }, - "infoURL": "https://web3games.org/", - "shortName": "dw3g", - "chainId": 105, - "networkId": 105, - "explorers": [ - { - "name": "Web3Games Explorer", - "url": "https://explorer-devnet.web3games.org", - "standard": "none" - } - ] - }, - { - "name": "Openpiece Testnet", - "chain": "OPENPIECE", - "icon": "openpiece", - "network": "testnet", - "rpc": [ - "https://testnet.openpiece.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Belly", - "symbol": "BELLY", - "decimals": 18 - }, - "infoURL": "https://cryptopiece.online", - "shortName": "OPtest", - "chainId": 141, - "networkId": 141, - "explorers": [ - { - "name": "Belly Scan", - "url": "https://testnet.bellyscan.com", - "standard": "none" - } - ] - }, - { - "name": "AIOZ Network", - "chain": "AIOZ", - "network": "mainnet", - "icon": "aioz", - "rpc": [ - "https://eth-dataseed.aioz.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "AIOZ", - "symbol": "AIOZ", - "decimals": 18 - }, - "infoURL": "https://aioz.network", - "shortName": "aioz", - "chainId": 168, - "networkId": 168, - "slip44": 60, - "explorers": [ - { - "name": "AIOZ Network Explorer", - "url": "https://explorer.aioz.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "SoterOne Mainnet old", - "chain": "SOTER", - "rpc": [ - "https://rpc.soter.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "SoterOne Mainnet Ether", - "symbol": "SOTER", - "decimals": 18 - }, - "infoURL": "https://www.soterone.com", - "shortName": "SO1-old", - "chainId": 218, - "networkId": 218, - "status": "deprecated" - }, - { - "name": "LACHAIN Mainnet", - "chain": "LA", - "icon": "lachain", - "rpc": [ - "https://rpc-mainnet.lachain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "LA", - "symbol": "LA", - "decimals": 18 - }, - "infoURL": "https://lachain.io", - "shortName": "LA", - "chainId": 225, - "networkId": 225, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.lachain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "LACHAIN Testnet", - "chain": "TLA", - "icon": "lachain", - "rpc": [ - "https://rpc-testnet.lachain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TLA", - "symbol": "TLA", - "decimals": 18 - }, - "infoURL": "https://lachain.io", - "shortName": "TLA", - "chainId": 226, - "networkId": 226, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan-test.lachain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Setheum", - "chain": "Setheum", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Setheum", - "symbol": "SETM", - "decimals": 18 - }, - "infoURL": "https://setheum.xyz", - "shortName": "setm", - "chainId": 258, - "networkId": 258 - }, - { - "name": "Optimism on Gnosis Chain", - "chain": "OGC", - "rpc": [ - "https://optimism.gnosischain.com", - "wss://optimism.gnosischain.com/wss" - ], - "faucets": [ - "https://faucet.gimlu.com/gnosis" - ], - "nativeCurrency": { - "name": "xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc", - "shortName": "ogc", - "chainId": 300, - "networkId": 300, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/xdai/optimism", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "DFK Chain Test", - "chain": "DFK", - "icon": "dfk", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 - }, - "infoURL": "https://defikingdoms.com", - "shortName": "DFKTEST", - "chainId": 335, - "networkId": 335, - "explorers": [ - { - "name": "ethernal", - "url": "https://explorer-test.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } - ] - }, - { - "name": "Double-A Chain Mainnet", - "chain": "AAC", - "rpc": [ - "https://rpc.acuteangle.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aac", - "chainId": 512, - "networkId": 512, - "slip44": 1512, - "explorers": [ - { - "name": "aacscan", - "url": "https://scan.acuteangle.com", - "standard": "EIP3091" - } - ], - "icon": "aac" - }, - { - "name": "Double-A Chain Testnet", - "chain": "AAC", - "icon": "aac", - "rpc": [ - "https://rpc-testnet.acuteangle.com" - ], - "faucets": [ - "https://scan-testnet.acuteangle.com/faucet" - ], - "nativeCurrency": { - "name": "Acuteangle Native Token", - "symbol": "AAC", - "decimals": 18 - }, - "infoURL": "https://www.acuteangle.com/", - "shortName": "aact", - "chainId": 513, - "networkId": 513, - "explorers": [ - { - "name": "aacscan-testnet", - "url": "https://scan-testnet.acuteangle.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Candle Mainnet", - "chain": "Candle", - "rpc": [ - "https://candle-rpc.com/", - "https://rpc.cndlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "CANDLE", - "symbol": "CNDL", - "decimals": 18 - }, - "infoURL": "https://candlelabs.org/", - "shortName": "CNDL", - "chainId": 534, - "networkId": 534, - "slip44": 674, - "explorers": [ - { - "name": "candlescan", - "url": "https://cndlchain.com", - "standard": "none" - } - ] - }, - { - "name": "Astar", - "chain": "ASTR", - "rpc": [ - "https://rpc.astar.network:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Astar", - "symbol": "ASTR", - "decimals": 18 - }, - "infoURL": "https://astar.network/", - "shortName": "astr", - "chainId": 592, - "networkId": 592, - "icon": "astar", - "explorers": [ - { - "name": "subscan", - "url": "https://astar.subscan.io", - "standard": "none", - "icon": "subscan" - } - ] - }, - { - "name": "Karura Network Testnet", - "chain": "KAR", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Karura Token", - "symbol": "KAR", - "decimals": 18 - }, - "infoURL": "https://karura.network", - "shortName": "tkar", - "chainId": 596, - "networkId": 596, - "slip44": 596 - }, - { - "name": "Acala Network Testnet", - "chain": "ACA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Acala Token", - "symbol": "ACA", - "decimals": 18 - }, - "infoURL": "https://acala.network", - "shortName": "taca", - "chainId": 597, - "networkId": 597, - "slip44": 597 - }, - { - "name": "Star Social Testnet", - "chain": "SNS", - "rpc": [ - "https://avastar.cc/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Social", - "symbol": "SNS", - "decimals": 18 - }, - "infoURL": "https://info.avastar.cc", - "shortName": "SNS", - "chainId": 700, - "networkId": 700, - "explorers": [ - { - "name": "starscan", - "url": "https://avastar.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpenChain Testnet", - "chain": "OpenChain Testnet", - "rpc": [ - "http://mainnet.openchain.info:8545", - "https://mainnet1.openchain.info" - ], - "faucets": [ - "https://faucet.openchain.info/" - ], - "nativeCurrency": { - "name": "Openchain Testnet", - "symbol": "TOPC", - "decimals": 18 - }, - "infoURL": "https://testnet.openchain.info/", - "shortName": "opc", - "chainId": 776, - "networkId": 776, - "explorers": [ - { - "name": "OPEN CHAIN TESTNET", - "url": "https://testnet.openchain.info", - "standard": "none" - } - ] - }, - { - "name": "Aerochain Testnet", - "chain": "Aerochain", - "network": "testnet", - "rpc": [ - "https://testnet-rpc.aerochain.id/" - ], - "faucets": [ - "https://faucet.aerochain.id/" - ], - "nativeCurrency": { - "name": "Aerochain Testnet", - "symbol": "TAero", - "decimals": 18 - }, - "infoURL": "https://aerochaincoin.org/", - "shortName": "taero", - "chainId": 788, - "networkId": 788, - "explorers": [ - { - "name": "aeroscan", - "url": "https://testnet.aeroscan.id", - "standard": "EIP3091" - } - ] - }, - { - "name": "PulseChain Testnet v2b", - "shortName": "t2bpls", - "chain": "t2bPLS", - "network": "testnet-2b", - "chainId": 941, - "networkId": 941, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.v2b.testnet.pulsechain.com/", - "wss://rpc.v2b.testnet.pulsechain.com/" - ], - "faucets": [ - "https://faucet.v2b.testnet.pulsechain.com/" - ], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "PulseChain Testnet v3", - "shortName": "t3pls", - "chain": "t3PLS", - "network": "testnet-3", - "chainId": 942, - "networkId": 942, - "infoURL": "https://pulsechain.com/", - "rpc": [ - "https://rpc.v3.testnet.pulsechain.com/", - "wss://rpc.v3.testnet.pulsechain.com/" - ], - "faucets": [ - "https://faucet.v3.testnet.pulsechain.com/" - ], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "Eurus Mainnet", - "chain": "EUN", - "network": "eurus", - "rpc": [ - "https://mainnet.eurus.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 - }, - "infoURL": "https://eurus.network", - "shortName": "eun", - "chainId": 1008, - "networkId": 1008, - "icon": "eurus", - "explorers": [ - { - "name": "eurusexplorer", - "url": "https://explorer.eurus.network", - "icon": "eurus", - "standard": "none" - } - ] - }, - { - "name": "CENNZnet old", - "chain": "CENNZnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-old", - "chainId": 1337, - "networkId": 1337, - "status": "deprecated" - }, - { - "name": "Sherpax Mainnet", - "chain": "Sherpax Mainnet", - "rpc": [ - "https://mainnet.sherpax.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 - }, - "infoURL": "https://sherpax.io/", - "shortName": "Sherpax", - "chainId": 1506, - "networkId": 1506, - "explorers": [ - { - "name": "Sherpax Mainnet Explorer", - "url": "https://evm.sherpax.io", - "standard": "none" - } - ] - }, - { - "name": "Sherpax Testnet", - "chain": "Sherpax Testnet", - "rpc": [ - "https://sherpax-testnet.chainx.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KSX", - "symbol": "KSX", - "decimals": 18 - }, - "infoURL": "https://sherpax.io/", - "shortName": "Sherpax Testnet", - "chainId": 1507, - "networkId": 1507, - "explorers": [ - { - "name": "Sherpax Testnet Explorer", - "url": "https://evm-pre.sherpax.io", - "standard": "none" - } - ] - }, - { - "name": "LUDAN Mainnet", - "chain": "LUDAN", - "rpc": [ - "https://rpc.ludan.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "LUDAN", - "symbol": "LUDAN", - "decimals": 18 - }, - "infoURL": "https://www.ludan.org/", - "shortName": "LUDAN", - "icon": "ludan", - "chainId": 1688, - "networkId": 1688 - }, - { - "name": "BON Network", - "chain": "BON", - "network": "testnet", - "rpc": [ - "http://rpc.boyanet.org:8545", - "ws://rpc.boyanet.org:8546" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOYACoin", - "symbol": "BOY", - "decimals": 18 - }, - "infoURL": "https://boyanet.org", - "shortName": "boya", - "chainId": 1898, - "networkId": 1, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.boyanet.org:4001", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eurus Testnet", - "chain": "EUN", - "network": "eurus-testnet", - "rpc": [ - "https://testnet.eurus.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eurus", - "symbol": "EUN", - "decimals": 18 - }, - "infoURL": "https://eurus.network", - "shortName": "euntest", - "chainId": 1984, - "networkId": 1984, - "icon": "eurus", - "explorers": [ - { - "name": "testnetexplorer", - "url": "https://testnetexplorer.eurus.network", - "icon": "eurus", - "standard": "none" - } - ] - }, - { - "name": "Milkomeda C1 Mainnet", - "chain": "milkAda", - "icon": "milkomeda", - "network": "mainnet", - "rpc": [ - "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkAda", - "symbol": "mADA", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkAda", - "chainId": 2001, - "networkId": 2001, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "CloudWalk Testnet", - "chain": "CloudWalk Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 - }, - "infoURL": "https://cloudwalk.io", - "shortName": "cloudwalk_testnet", - "chainId": 2008, - "networkId": 2008, - "explorers": [ - { - "name": "CloudWalk Testnet Explorer", - "url": "https://explorer.testnet.cloudwalk.io", - "standard": "none" - } - ] - }, - { - "name": "CloudWalk Mainnet", - "chain": "CloudWalk Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "CloudWalk Native Token", - "symbol": "CWN", - "decimals": 18 - }, - "infoURL": "https://cloudwalk.io", - "shortName": "cloudwalk_mainnet", - "chainId": 2009, - "networkId": 2009, - "explorers": [ - { - "name": "CloudWalk Mainnet Explorer", - "url": "https://explorer.mainnet.cloudwalk.io", - "standard": "none" - } - ] - }, - { - "name": "Taycan Testnet", - "chain": "Taycan", - "rpc": [ - "https://test-taycan.hupayx.io" - ], - "faucets": [ - "https://ttaycan-faucet.hupayx.io/" - ], - "nativeCurrency": { - "name": "test-Shuffle", - "symbol": "tSFL", - "decimals": 18 - }, - "infoURL": "https://hupayx.io", - "shortName": "taycan-testnet", - "chainId": 2023, - "networkId": 2023, - "explorers": [ - { - "name": "Taycan Explorer(Blockscout)", - "url": "https://evmscan-test.hupayx.io", - "standard": "none" - }, - { - "name": "Taycan Cosmos Explorer", - "url": "https://cosmoscan-test.hupayx.io", - "standard": "none" - } - ] - }, - { - "name": "Findora Mainnet", - "chain": "Findora", - "network": "mainnet", - "rpc": [ - "https://prod-mainnet.prod.findora.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "fra", - "chainId": 2152, - "networkId": 2152, - "explorers": [ - { - "name": "findorascan", - "url": "https://evm.findorascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Findora Testnet", - "chain": "Testnet-anvil", - "network": "testnet", - "rpc": [ - "https://prod-testnet.prod.findora.org:8545/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "findora-testnet", - "chainId": 2153, - "networkId": 2153, - "explorers": [ - { - "name": "findorascan", - "url": "https://testnet-anvil.evm.findorascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kava EVM Testnet", - "chain": "KAVA", - "network": "testnet", - "rpc": [ - "https://evm.evm-alpha.kava.io", - "wss://evm-ws.evm-alpha.kava.io" - ], - "faucets": [ - "https://faucet.kava.io" - ], - "nativeCurrency": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 - }, - "infoURL": "https://www.kava.io", - "shortName": "kava", - "chainId": 2221, - "networkId": 2221, - "icon": "kava", - "explorers": [ - { - "name": "Kava Testnet Explorer", - "url": "https://explorer.evm-alpha.kava.io", - "standard": "EIP3091", - "icon": "kava" - } - ] - }, - { - "name": "VChain Mainnet", - "chain": "VChain", - "rpc": [ - "https://bc.vcex.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "VNDT", - "symbol": "VNDT", - "decimals": 18 - }, - "infoURL": "https://bo.vcex.xyz/", - "shortName": "VChain", - "chainId": 2223, - "networkId": 2223, - "explorers": [ - { - "name": "VChain Scan", - "url": "https://scan.vcex.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "TechPay Mainnet", - "chain": "TPC", - "network": "mainnet", - "rpc": [ - "https://api.techpay.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TechPay", - "symbol": "TPC", - "decimals": 18 - }, - "infoURL": "https://techpay.io/", - "shortName": "tpc", - "chainId": 2569, - "networkId": 2569, - "icon": "techpay", - "explorers": [ - { - "name": "tpcscan", - "url": "https://tpcscan.com", - "icon": "techpay", - "standard": "EIP3091" - } - ] - }, - { - "name": "EZChain C-Chain Mainnet", - "chain": "EZC", - "rpc": [ - "https://api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 - }, - "infoURL": "https://ezchain.com", - "shortName": "EZChain", - "chainId": 2612, - "networkId": 2612, - "icon": "ezchain", - "explorers": [ - { - "name": "ezchain", - "url": "https://cchain-explorer.ezchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "EZChain C-Chain Testnet", - "chain": "EZC", - "rpc": [ - "https://testnet-api.ezchain.com/ext/bc/C/rpc" - ], - "faucets": [ - "https://testnet-faucet.ezchain.com" - ], - "nativeCurrency": { - "name": "EZChain", - "symbol": "EZC", - "decimals": 18 - }, - "infoURL": "https://ezchain.com", - "shortName": "Fuji-EZChain", - "chainId": 2613, - "networkId": 2613, - "icon": "ezchain", - "explorers": [ - { - "name": "ezchain", - "url": "https://testnet-cchain-explorer.ezchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "CENNZnet Rata", - "chain": "CENNZnet", - "network": "rata", - "rpc": [ - "https://rata.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-r", - "chainId": 3000, - "networkId": 3000, - "icon": "cennz" - }, - { - "name": "CENNZnet Nikau", - "chain": "CENNZnet", - "network": "nikau", - "rpc": [ - "https://nikau.centrality.me/public" - ], - "faucets": [ - "https://app-faucet.centrality.me" - ], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-n", - "chainId": 3001, - "networkId": 3001, - "icon": "cennz", - "explorers": [ - { - "name": "UNcover", - "url": "https://www.uncoverexplorer.com/?network=Nikau", - "standard": "none" - } - ] - }, - { - "name": "Web3Q Galileo", - "chain": "Web3Q", - "rpc": [ - "https://galileo.web3q.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Web3Q", - "symbol": "W3Q", - "decimals": 18 - }, - "infoURL": "https://galileo.web3q.io/home.w3q/", - "shortName": "w3q-g", - "chainId": 3334, - "networkId": 3334, - "explorers": [ - { - "name": "w3q-galileo", - "url": "https://explorer.galileo.web3q.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Paribu Net Mainnet", - "chain": "PRB", - "network": "Paribu Net", - "rpc": [ - "https://rpc.paribu.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 - }, - "infoURL": "https://net.paribu.com", - "shortName": "prb", - "chainId": 3400, - "networkId": 3400, - "icon": "prb", - "explorers": [ - { - "name": "Paribu Net Explorer", - "url": "https://explorer.paribu.network", - "icon": "explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Paribu Net Testnet", - "chain": "PRB", - "network": "Paribu Net", - "rpc": [ - "https://rpc.testnet.paribuscan.com" - ], - "faucets": [ - "https://faucet.paribuscan.com" - ], - "nativeCurrency": { - "name": "PRB", - "symbol": "PRB", - "decimals": 18 - }, - "infoURL": "https://net.paribu.com", - "shortName": "prbtestnet", - "chainId": 3500, - "networkId": 3500, - "icon": "prb", - "explorers": [ - { - "name": "Paribu Net Testnet Explorer", - "url": "https://testnet.paribuscan.com", - "icon": "explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "DYNO Mainnet", - "chain": "DYNO", - "rpc": [ - "https://api.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], - "nativeCurrency": { - "name": "DYNO Token", - "symbol": "DYNO", - "decimals": 18 - }, - "infoURL": "https://dynoprotocol.com", - "shortName": "dyno", - "chainId": 3966, - "networkId": 3966, - "explorers": [ - { - "name": "DYNO Explorer", - "url": "https://dynoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DYNO Testnet", - "chain": "DYNO", - "rpc": [ - "https://tapi.dynoprotocol.com" - ], - "faucets": [ - "https://faucet.dynoscan.io" - ], - "nativeCurrency": { - "name": "DYNO Token", - "symbol": "tDYNO", - "decimals": 18 - }, - "infoURL": "https://dynoprotocol.com", - "shortName": "tdyno", - "chainId": 3967, - "networkId": 3967, - "explorers": [ - { - "name": "DYNO Explorer", - "url": "https://testnet.dynoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIOZ Network Testnet", - "chain": "AIOZ", - "network": "testnet", - "icon": "aioz", - "rpc": [ - "https://eth-ds.testnet.aioz.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "testAIOZ", - "symbol": "AIOZ", - "decimals": 18 - }, - "infoURL": "https://aioz.network", - "shortName": "aioz-testnet", - "chainId": 4102, - "networkId": 4102, - "slip44": 60, - "explorers": [ - { - "name": "AIOZ Network Testnet Explorer", - "url": "https://testnet.explorer.aioz.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "PHI Network", - "chain": "PHI", - "network": "mainnet", - "rpc": [ - "https://rpc1.phi.network", - "https://rpc2.phi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 - }, - "infoURL": "https://phi.network", - "shortName": "PHI", - "chainId": 4181, - "networkId": 4181, - "icon": "phi", - "explorers": [ - { - "name": "PHI Explorer", - "url": "https://explorer.phi.network", - "icon": "phi", - "standard": "none" - } - ] - }, - { - "name": "Venidium Testnet", - "chain": "XVM", - "rpc": [ - "https://rpc-evm-testnet.venidium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "xvm", - "chainId": 4918, - "networkId": 4918, - "explorers": [ - { - "name": "Venidium EVM Testnet Explorer", - "url": "https://evm-testnet.venidiumexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nahmii Mainnet", - "chain": "Nahmii", - "network": "mainnet", - "rpc": [ - "https://l2.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii", - "chainId": 5551, - "networkId": 5551, - "icon": "nahmii", - "explorers": [ - { - "name": "Nahmii mainnet explorer", - "url": "https://explorer.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - } - }, - { - "name": "Nahmii Testnet", - "chain": "Nahmii", - "network": "testnet", - "rpc": [ - "https://l2.testnet.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii testnet", - "chainId": 5553, - "networkId": 5553, - "icon": "nahmii", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.testnet.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - } - }, - { - "name": "Digest Swarm Chain", - "chain": "DSC", - "icon": "swarmchain", - "rpc": [ - "https://rpc.digestgroup.ltd" - ], - "faucets": [], - "nativeCurrency": { - "name": "DigestCoin", - "symbol": "DGCC", - "decimals": 18 - }, - "infoURL": "https://digestgroup.ltd", - "shortName": "dgcc", - "chainId": 5777, - "networkId": 5777, - "explorers": [ - { - "name": "swarmexplorer", - "url": "https://explorer.digestgroup.ltd", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mammoth Mainnet", - "title": "Mammoth Chain", - "chain": "MMT", - "rpc": [ - "https://dataseed.mmtscan.io", - "https://dataseed1.mmtscan.io", - "https://dataseed2.mmtscan.io" - ], - "faucets": [ - "https://faucet.mmtscan.io/" - ], - "nativeCurrency": { - "name": "Mammoth Token", - "symbol": "MMT", - "decimals": 18 - }, - "infoURL": "https://mmtchain.io/", - "shortName": "mmt", - "chainId": 8898, - "networkId": 8898, - "icon": "mmt", - "explorers": [ - { - "name": "mmtscan", - "url": "https://mmtscan.io", - "standard": "EIP3091", - "icon": "mmt" - } - ] - }, - { - "name": "CryptoCoinPay", - "chain": "CCP", - "rpc": [ - "http://node106.cryptocoinpay.info:8545", - "ws://node106.cryptocoinpay.info:8546" - ], - "faucets": [], - "icon": "ccp", - "nativeCurrency": { - "name": "CryptoCoinPay", - "symbol": "CCP", - "decimals": 18 - }, - "infoURL": "https://www.cryptocoinpay.co", - "shortName": "CCP", - "chainId": 10823, - "networkId": 10823, - "explorers": [ - { - "name": "CCP Explorer", - "url": "https://cryptocoinpay.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Quadrans Blockchain", - "chain": "QDC", - "network": "mainnet", - "icon": "quadrans", - "rpc": [ - "https://rpc.quadrans.io", - "https://rpcna.quadrans.io", - "https://explorer.quadrans.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quadrans Coin", - "symbol": "QDC", - "decimals": 18 - }, - "infoURL": "https://quadrans.io", - "shortName": "quadrans", - "chainId": 10946, - "networkId": 10946, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } - ] - }, - { - "name": "Quadrans Blockchain Testnet", - "chain": "tQDC", - "network": "testnet", - "icon": "quadrans", - "rpc": [ - "https://rpctest.quadrans.io", - "https://explorer.testnet.quadrans.io" - ], - "faucets": [ - "https://faucetpage.quadrans.io" - ], - "nativeCurrency": { - "name": "Quadrans Testnet Coin", - "symbol": "tQDC", - "decimals": 18 - }, - "infoURL": "https://quadrans.io", - "shortName": "quadranstestnet", - "chainId": 10947, - "networkId": 10947, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.testnet.quadrans.io", - "icon": "quadrans", - "standard": "EIP3091" - } - ] - }, - { - "name": "CENNZnet Azalea", - "chain": "CENNZnet", - "network": "azalea", - "rpc": [ - "https://cennznet.unfrastructure.io/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "CPAY", - "symbol": "CPAY", - "decimals": 18 - }, - "infoURL": "https://cennz.net", - "shortName": "cennz-a", - "chainId": 21337, - "networkId": 21337, - "icon": "cennz", - "explorers": [ - { - "name": "UNcover", - "url": "https://uncoverexplorer.com", - "standard": "none" - } - ] - }, - { - "name": "omChain Mainnet", - "chain": "OML", - "icon": "omlira", - "rpc": [ - "https://seed.omchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "omChain", - "symbol": "OMC", - "decimals": 18 - }, - "infoURL": "https://omchain.io", - "shortName": "omc", - "chainId": 21816, - "networkId": 21816, - "explorers": [ - { - "name": "omChain Explorer", - "url": "https://explorer.omchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taycan", - "chain": "Taycan", - "network": "mainnet", - "rpc": [ - "https://taycan-rpc.hupayx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "shuffle", - "symbol": "SFL", - "decimals": 18 - }, - "infoURL": "https://hupayx.io", - "shortName": "SFL", - "chainId": 22023, - "networkId": 22023, - "explorers": [ - { - "name": "Taycan Explorer(Blockscout)", - "url": "https://taycan-evmscan.hupayx.io", - "standard": "none" - }, - { - "name": "Taycan Cosmos Explorer(BigDipper)", - "url": "https://taycan-cosmoscan.hupayx.io", - "standard": "none" - } - ] - }, - { - "name": "OasisChain Mainnet", - "chain": "OasisChain", - "rpc": [ - "https://rpc1.oasischain.io", - "https://rpc2.oasischain.io", - "https://rpc3.oasischain.io" - ], - "faucets": [ - "http://faucet.oasischain.io" - ], - "nativeCurrency": { - "name": "OAC", - "symbol": "OAC", - "decimals": 18 - }, - "infoURL": "https://scan.oasischain.io", - "shortName": "OAC", - "chainId": 26863, - "networkId": 26863, - "explorers": [ - { - "name": "OasisChain Explorer", - "url": "https://scan.oasischain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Piece testnet", - "chain": "PieceNetwork", - "icon": "piecechain", - "rpc": [ - "https://testnet-rpc0.piecenetwork.com" - ], - "faucets": [ - "https://piecenetwork.com/faucet" - ], - "nativeCurrency": { - "name": "ECE", - "symbol": "ECE", - "decimals": 18 - }, - "infoURL": "https://piecenetwork.com", - "shortName": "Piece", - "chainId": 30067, - "networkId": 30067, - "explorers": [ - { - "name": "Piece Scan", - "url": "https://testnet-scan.piecenetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitgert Mainnet", - "chain": "Brise", - "rpc": [ - "https://mainnet-rpc.brisescan.com", - "https://chainrpc.com", - "https://serverrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitrise Token", - "symbol": "Brise", - "decimals": 18 - }, - "infoURL": "https://bitgert.com/", - "shortName": "Brise", - "chainId": 32520, - "networkId": 32520, - "icon": "brise", - "explorers": [ - { - "name": "Brise Scan", - "url": "https://brisescan.com", - "icon": "brise", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autobahn Network", - "chain": "TXL", - "network": "mainnet", - "rpc": [ - "https://rpc.autobahn.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "TXL", - "symbol": "TXL", - "decimals": 18 - }, - "infoURL": "https://autobahn.network", - "shortName": "Autobahn Network", - "chainId": 45000, - "networkId": 45000, - "icon": "autobahn", - "explorers": [ - { - "name": "autobahn explorer", - "url": "https://explorer.autobahn.network", - "icon": "autobahn", - "standard": "EIP3091" - } - ] - }, - { - "name": "DFK Chain", - "chain": "DFK", - "icon": "dfk", - "network": "mainnet", - "rpc": [ - "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jewel", - "symbol": "JEWEL", - "decimals": 18 - }, - "infoURL": "https://defikingdoms.com", - "shortName": "DFK", - "chainId": 53935, - "networkId": 53935, - "explorers": [ - { - "name": "ethernal", - "url": "https://explorer.dfkchain.com", - "icon": "ethereum", - "standard": "none" - } - ] - }, - { - "name": "MultiVAC Mainnet", - "chain": "MultiVAC", - "icon": "multivac", - "rpc": [ - "https://rpc.mtv.ac", - "https://rpc-eu.mtv.ac" - ], - "faucets": [], - "nativeCurrency": { - "name": "MultiVAC", - "symbol": "MTV", - "decimals": 18 - }, - "infoURL": "https://mtv.ac", - "shortName": "mtv", - "chainId": 62621, - "networkId": 62621, - "explorers": [ - { - "name": "MultiVAC Explorer", - "url": "https://e.mtv.ac", - "standard": "none" - } - ] - }, - { - "name": "Condrieu", - "title": "Ethereum Verkle Testnet Condrieu", - "chain": "ETH", - "rpc": [ - "https://rpc.condrieu.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.condrieu.ethdevops.io" - ], - "nativeCurrency": { - "name": "Condrieu Testnet Ether", - "symbol": "CTE", - "decimals": 18 - }, - "infoURL": "https://condrieu.ethdevops.io", - "shortName": "cndr", - "chainId": 69420, - "networkId": 69420, - "explorers": [ - { - "name": "Condrieu explorer", - "url": "https://explorer.condrieu.ethdevops.io", - "standard": "none" - } - ] - }, - { - "name": "Godwoken Testnet (V1.1)", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-v1.ckbapp.dev" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 18 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-testnet-v1", - "chainId": 71401, - "networkId": 71401, - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", - "standard": "none" - } - ] - }, - { - "name": "Godwoken Mainnet", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-v1.ckbapp.dev" - ], - "faucets": [ - "https://testnet.bridge.godwoken.io" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 18 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-mainnet-v1", - "chainId": 71402, - "networkId": 71402, - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", - "standard": "none" - } - ] - }, - { - "name": "Milkomeda C1 Testnet", - "chain": "milkTAda", - "icon": "milkomeda", - "network": "testnet", - "rpc": [ - "https://rpc-devnet-cardano-evm.c1.milkomeda.com", - "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkTAda", - "symbol": "mTAda", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkTAda", - "chainId": 200101, - "networkId": 200101, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "Haymo Testnet", - "chain": "tHYM", - "network": "testnet", - "rpc": [ - "https://testnet1.haymo.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAYMO", - "symbol": "HYM", - "decimals": 18 - }, - "infoURL": "https://haymoswap.web.app/", - "shortName": "hym", - "chainId": 234666, - "networkId": 234666 - }, - { - "name": "Dexalot Testnet", - "chain": "DEXALOT", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/dexalot/testnet/rpc" - ], - "faucets": [ - "https://sfaucet.dexalot-test.com" - ], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "Dexalot", - "chainId": 432201, - "networkId": 432201, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot/testnet/explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Weelink Testnet", - "chain": "WLK", - "rpc": [ - "https://weelinknode1c.gw002.oneitfarm.com" - ], - "faucets": [ - "https://faucet.weelink.gw002.oneitfarm.com" - ], - "nativeCurrency": { - "name": "Weelink Chain Token", - "symbol": "tWLK", - "decimals": 18 - }, - "infoURL": "https://weelink.cloud", - "shortName": "wlkt", - "chainId": 444900, - "networkId": 444900, - "explorers": [ - { - "name": "weelink-testnet", - "url": "https://weelink.cloud/#/blockView/overview", - "standard": "none" - } - ] - }, - { - "name": "OpenChain Mainnet", - "chain": "OpenChain", - "rpc": [ - "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" - ], - "faucets": [], - "nativeCurrency": { - "name": "OpenCoin", - "symbol": "OPC", - "decimals": 10 - }, - "infoURL": "https://www.openchain.live", - "shortName": "oc", - "chainId": 474142, - "networkId": 474142, - "explorers": [ - { - "name": "SIDE SCAN", - "url": "https://sidescan.luniverse.io/1641349324562974539", - "standard": "none" - } - ] - }, - { - "name": "CMP-Testnet", - "chain": "CMP", - "network": "testnet", - "rpc": [ - "https://galaxy.block.caduceus.foundation", - "wss://galaxy.block.caduceus.foundation" - ], - "faucets": [ - "https://dev.caduceus.foundation/testNetwork" - ], - "nativeCurrency": { - "name": "Caduceus Testnet Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp", - "chainId": 512512, - "networkId": 512512, - "explorers": [ - { - "name": "Galaxy Scan", - "url": "https://galaxy.scan.caduceus.foundation", - "standard": "none" - } - ] - }, - { - "name": "Kiln", - "chain": "ETH", - "network": "testnet", - "rpc": [ - "https://rpc.kiln.themerge.dev" - ], - "faucets": [ - "https://faucet.kiln.themerge.dev", - "https://kiln-faucet.pk910.de", - "https://kilnfaucet.com" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kiln.themerge.dev/", - "shortName": "kiln", - "chainId": 1337802, - "networkId": 1337802, - "icon": "ethereum", - "explorers": [ - { - "name": "Kiln Explorer", - "url": "https://explorer.kiln.themerge.dev", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "PlatON Dev Testnet", - "chain": "PlatON", - "rpc": [ - "https://devnetopenapi2.platon.network/rpc", - "wss://devnetopenapi2.platon.network/ws" - ], - "faucets": [ - "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev", - "chainId": 2203181, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnetscan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "SmartMesh Mainnet", - "chain": "Spectrum", - "rpc": [ - "https://jsonapi1.smartmesh.cn" - ], - "faucets": [], - "nativeCurrency": { - "name": "SmartMesh Native Token", - "symbol": "SMT", - "decimals": 18 - }, - "infoURL": "https://smartmesh.io", - "shortName": "spectrum", - "chainId": 20180430, - "networkId": 1, - "explorers": [ - { - "name": "spectrum", - "url": "https://spectrum.pub", - "standard": "none" - } - ] - }, - { - "name": "Cube Chain Mainnet", - "chain": "Cube", - "icon": "cube", - "rpc": [ - "https://http-mainnet.cube.network", - "wss://ws-mainnet.cube.network", - "https://http-mainnet-sg.cube.network", - "wss://ws-mainnet-sg.cube.network", - "https://http-mainnet-us.cube.network", - "wss://ws-mainnet-us.cube.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cube Chain Native Token", - "symbol": "CUBE", - "decimals": 18 - }, - "infoURL": "https://www.cube.network", - "shortName": "cube", - "chainId": 1818, - "networkId": 1818, - "slip44": 1818, - "explorers": [ - { - "name": "cube-scan", - "url": "https://cubescan.network", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/2.png", - "color_chain_bg": "0x3FC3C3" - } - }, - { - "name": "Cube Chain Testnet", - "chain": "Cube", - "rpc": [ - "https://http-testnet.cube.network", - "wss://ws-testnet.cube.network", - "https://http-testnet-sg.cube.network", - "wss://ws-testnet-sg.cube.network", - "https://http-testnet-jp.cube.network", - "wss://ws-testnet-jp.cube.network", - "https://http-testnet-us.cube.network", - "wss://ws-testnet-us.cube.network" - ], - "faucets": [ - "https://faucet.cube.network" - ], - "nativeCurrency": { - "name": "Cube Chain Test Native Token", - "symbol": "CUBET", - "decimals": 18 - }, - "infoURL": "https://www.cube.network", - "shortName": "cubet", - "chainId": 1819, - "networkId": 1819, - "slip44": 1819, - "explorers": [ - { - "name": "cubetest-scan", - "url": "https://testnet.cubescan.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Godwoken Testnet (V1)", - "chain": "GWT", - "rpc": [ - "https://godwoken-testnet-web3-v1-rpc.ckbapp.dev" - ], - "faucets": [ - "https://homura.github.io/light-godwoken" - ], - "nativeCurrency": { - "name": "CKB", - "symbol": "CKB", - "decimals": 8 - }, - "infoURL": "https://www.nervos.org", - "shortName": "gw-testnet-v1-deprecated", - "chainId": 868455272153094, - "networkId": 868455272153094, - "status": "deprecated", - "explorers": [ - { - "name": "GWScan Block Explorer", - "url": "https://v1.aggron.gwscan.com", - "standard": "none" - } - ] - }, - { - "name": "Dxchain Mainnet", - "chain": "Dxchain", - "rpc": [ - "https://mainnet.dxchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dxchain", - "symbol": "DX", - "decimals": 18 - }, - "infoURL": "https://www.dxchain.com/", - "shortName": "dx", - "chainId": 36, - "networkId": 36 - }, - { - "name": "Darwinia Network", - "chain": "darwinia", - "network": "darwinia network", - "rpc": [ - "https://darwinia-rpc.darwinia.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Darwinia Network Native Token", - "symbol": "RING", - "decimals": 18 - }, - "infoURL": "https://darwinia.network/", - "shortName": "darwinia", - "chainId": 46, - "networkId": 46, - "explorers": [ - { - "name": "subscan", - "url": "https://darwinia.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "DxChain Testnet", - "chain": "DxChain", - "rpc": [ - "https://testnet-http.dxchain.com" - ], - "faucets": [ - "https://faucet.dxscan.io" - ], - "nativeCurrency": { - "name": "DxChain Testnet", - "symbol": "DX", - "decimals": 18 - }, - "infoURL": "https://testnet.dxscan.io/", - "shortName": "dxc", - "chainId": 72, - "networkId": 72 - }, - { - "name": "Kaiba Lightning Chain Testnet", - "chain": "tKLC", - "network": "testnet", - "rpc": [ - "https://klc.live/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kaiba Testnet Token", - "symbol": "tKAIBA", - "decimals": 18 - }, - "infoURL": "https://kaibadefi.com", - "shortName": "tklc", - "chainId": 104, - "networkId": 104, - "icon": "kaiba", - "explorers": [ - { - "name": "kaibascan", - "url": "https://kaibascan.io", - "icon": "kaibascan", - "standard": "EIP3091" - } - ] - }, - { - "name": "AME Chain Mainnet", - "chain": "AME", - "rpc": [ - "https://node1.amechain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "AME", - "symbol": "AME", - "decimals": 18 - }, - "infoURL": "https://amechain.io/", - "shortName": "ame", - "chainId": 180, - "networkId": 180, - "explorers": [ - { - "name": "AME Scan", - "url": "https://amescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Crypto Emergency", - "chain": "CEM", - "rpc": [ - "https://cemchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crypto Emergency", - "symbol": "CEM", - "decimals": 18 - }, - "infoURL": "https://cemblockchain.com/", - "shortName": "cem", - "chainId": 193, - "networkId": 193, - "explorers": [ - { - "name": "cemscan", - "url": "https://cemscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SX Network Mainnet", - "chain": "SX", - "icon": "SX", - "network": "mainnet", - "rpc": [ - "https://rpc.sx.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 - }, - "infoURL": "https://www.sx.technology", - "shortName": "SX", - "chainId": 416, - "networkId": 416, - "explorers": [ - { - "name": "SX Network Explorer", - "url": "https://explorer.sx.technology", - "standard": "EIP3091" - } - ] - }, - { - "name": "XT Smart Chain Mainnet", - "chain": "XSC", - "icon": "xsc", - "rpc": [ - "https://datarpc1.xsc.pub", - "https://datarpc2.xsc.pub", - "https://datarpc3.xsc.pub" - ], - "faucets": [ - "https://xsc.pub/faucet" - ], - "nativeCurrency": { - "name": "XT Smart Chain Native Token", - "symbol": "XT", - "decimals": 18 - }, - "infoURL": "https://xsc.pub/", - "shortName": "xt", - "chainId": 520, - "networkId": 1024, - "explorers": [ - { - "name": "xscscan", - "url": "https://xscscan.pub", - "standard": "EIP3091" - } - ] - }, - { - "name": "F(x)Core Mainnet Network", - "chain": "Fxcore", - "network": "mainnet", - "rpc": [ - "https://fx-json-web3.functionx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 - }, - "infoURL": "https://functionx.io/", - "shortName": "f(x)Core", - "chainId": 530, - "networkId": 530, - "icon": "fxcore", - "explorers": [ - { - "name": "FunctionX Explorer", - "url": "https://fx-evm.functionx.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "SX Network Testnet", - "chain": "SX", - "icon": "SX", - "network": "testnet", - "rpc": [ - "https://rpc.toronto.sx.technology" - ], - "faucets": [ - "https://faucet.toronto.sx.technology" - ], - "nativeCurrency": { - "name": "SX Network", - "symbol": "SX", - "decimals": 18 - }, - "infoURL": "https://www.sx.technology", - "shortName": "SX-Testnet", - "chainId": 647, - "networkId": 647, - "explorers": [ - { - "name": "SX Network Toronto Explorer", - "url": "https://explorer.toronto.sx.technology", - "standard": "EIP3091" - } - ] - }, - { - "name": "Portal Fantasy Chain Test", - "chain": "PF", - "icon": "pf", - "network": "testnet", - "rpc": [ - "https://subnets.avax.network/portal-fantasy/testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 - }, - "infoURL": "https://portalfantasy.io", - "shortName": "PFTEST", - "chainId": 808, - "networkId": 808, - "explorers": [] - }, - { - "name": "Portal Fantasy Chain", - "chain": "PF", - "icon": "pf", - "network": "mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Portal Fantasy Token", - "symbol": "PFT", - "decimals": 18 - }, - "infoURL": "https://portalfantasy.io", - "shortName": "PF", - "chainId": 909, - "networkId": 909, - "explorers": [], - "status": "incubating" - }, - { - "name": "TOP Mainnet EVM", - "chain": "TOP", - "icon": "top", - "rpc": [ - "ethapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top_evm", - "chainId": 980, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ] - }, - { - "name": "TOP Mainnet", - "chain": "TOP", - "icon": "top", - "rpc": [ - "topapi.topnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "TOP", - "symbol": "TOP", - "decimals": 6 - }, - "infoURL": "https://www.topnetwork.org/", - "shortName": "top", - "chainId": 989, - "networkId": 0, - "explorers": [ - { - "name": "topscan.dev", - "url": "https://www.topscan.io", - "standard": "none" - } - ] - }, - { - "name": "GTON Mainnet", - "chain": "GTON", - "rpc": [ - "https://rpc.gton.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 - }, - "infoURL": "https://gton.capital", - "shortName": "gton", - "chainId": 1000, - "networkId": 1000, - "explorers": [ - { - "name": "GTON Network Explorer", - "url": "https://explorer.gton.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "OM Platform Mainnet", - "chain": "omplatform", - "network": "mainnet", - "rpc": [ - "https://rpc-cnx.omplatform.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OMCOIN", - "symbol": "OM", - "decimals": 18 - }, - "infoURL": "https://omplatform.com/", - "shortName": "om", - "chainId": 1246, - "networkId": 1246, - "explorers": [ - { - "name": "OMSCAN - Expenter", - "url": "https://omscan.omplatform.com", - "standard": "none" - } - ] - }, - { - "name": "Boba Network Bobabase", - "chain": "Bobabase", - "rpc": [ - "https://bobabase.boba.network", - "wss://wss.bobabase.boba.network", - "https://replica.bobabase.boba.network", - "wss://replica-wss.bobabase.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobabase", - "chainId": 1297, - "networkId": 1297, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.bobabase.boba.network", - "standard": "none" - } - ] - }, - { - "name": "AIA Mainnet", - "chainId": 1319, - "shortName": "aia", - "chain": "AIA Chain", - "network": "mainnet", - "networkId": 1319, - "nativeCurrency": { - "name": "AIA Mainnet", - "symbol": "AIA", - "decimals": 18 - }, - "rpc": [ - "https://aia-dataseed1.aiachain.org", - "https://aia-dataseed2.aiachain.org", - "https://aia-dataseed3.aiachain.org", - "https://aia-dataseed4.aiachain.org" - ], - "faucets": [], - "infoURL": "https://www.aiachain.org", - "app_resource": { - "ic_chain_select": "https://images.aiachain.org/AIA/AIA1.png", - "ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2.png", - "color_chain_bg": "0x080134" - }, - "explorers": [ - { - "name": "AIA Chain Explorer Mainnet", - "url": "https://aiascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIA Testnet", - "chainId": 1320, - "shortName": "aiatestnet", - "chain": "AIA Chain", - "network": "testnet", - "networkId": 1320, - "nativeCurrency": { - "name": "AIA Testnet", - "symbol": "AIA", - "decimals": 18 - }, - "rpc": [ - "https://aia-dataseed1-testnet.aiachain.org" - ], - "faucets": [ - "https://aia-faucet-testnet.aiachain.org" - ], - "infoURL": "https://www.aiachain.org", - "app_resource": { - "ic_chain_select": "https://images.aiachain.org/AIA/AIA1-test.png", - "ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2-test.png", - "color_chain_bg": "0xA1473B" - }, - "explorers": [ - { - "name": "AIA Chain Explorer Testnet", - "url": "https://testnet.aiascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kava EVM", - "chain": "KAVA", - "network": "mainnet", - "rpc": [ - "https://evm.kava.io", - "https://evm2.kava.io", - "wss://wevm.kava.io", - "wss://wevm2.kava.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kava", - "symbol": "KAVA", - "decimals": 18 - }, - "infoURL": "https://www.kava.io", - "shortName": "kava", - "chainId": 2222, - "networkId": 2222, - "icon": "kava", - "explorers": [ - { - "name": "Kava EVM Explorer", - "url": "https://explorer.kava.io", - "standard": "EIP3091", - "icon": "kava" - } - ] - }, - { - "name": "JFIN Chain", - "chain": "JFIN", - "rpc": [ - "https://rpc.jfinchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "JFIN Coin", - "symbol": "jfin", - "decimals": 18 - }, - "infoURL": "https://jfinchain.com", - "shortName": "jfin", - "chainId": 3501, - "networkId": 3501, - "explorers": [ - { - "name": "JFIN Chain Explorer", - "url": "https://exp.jfinchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Crossbell", - "chain": "Crossbell", - "network": "mainnet", - "rpc": [ - "https://rpc.crossbell.io" - ], - "faucets": [ - "https://faucet.crossbell.io" - ], - "nativeCurrency": { - "name": "Crossbell Token", - "symbol": "CSB", - "decimals": 18 - }, - "infoURL": "https://crossbell.io", - "shortName": "csb", - "chainId": 3737, - "networkId": 3737, - "icon": "crossbell", - "explorers": [ - { - "name": "Crossbell Explorer", - "url": "https://scan.crossbell.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "YuanChain Mainnet", - "chain": "YCC", - "network": "mainnet", - "rpc": [ - "https://mainnet.yuan.org/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "YCC", - "symbol": "YCC", - "decimals": 18 - }, - "infoURL": "https://www.yuan.org", - "shortName": "ycc", - "chainId": 3999, - "networkId": 3999, - "icon": "ycc", - "explorers": [ - { - "name": "YuanChain Explorer", - "url": "https://mainnet.yuan.org", - "standard": "none" - } - ] - }, - { - "name": "Boba Network Bobaopera Testnet", - "chain": "Bobaopera Testnet", - "rpc": [ - "https://testnet.bobaopera.boba.network", - "wss://wss.testnet.bobaopera.boba.network", - "https://replica.testnet.bobaopera.boba.network", - "wss://replica-wss.testnet.bobaopera.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobaopera Testnet", - "chainId": 4051, - "networkId": 4051, - "explorers": [ - { - "name": "Blockscout", - "url": "https://blockexplorer.testnet.bobaopera.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Venidium Mainnet", - "chain": "XVM", - "icon": "venidium", - "rpc": [ - "https://rpc.venidium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Venidium", - "symbol": "XVM", - "decimals": 18 - }, - "infoURL": "https://venidium.io", - "shortName": "xvm", - "chainId": 4919, - "networkId": 4919, - "explorers": [ - { - "name": "Venidium Explorer", - "url": "https://evm.venidiumexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "TLChain Network Mainnet", - "chain": "TLC", - "icon": "tlc", - "rpc": [ - "https://mainnet-rpc.tlxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TLChain Network", - "symbol": "TLC", - "decimals": 18 - }, - "infoURL": "https://tlchain.network/", - "shortName": "tlc", - "chainId": 5177, - "networkId": 5177, - "explorers": [ - { - "name": "TLChain Explorer", - "url": "https://explorer.tlchain.network", - "standard": "none" - } - ] - }, - { - "name": "Tomb Chain Mainnet", - "chain": "Tomb Chain", - "rpc": [ - "https://rpc.tombchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tomb", - "symbol": "TOMB", - "decimals": 18 - }, - "infoURL": "https://tombchain.com/", - "shortName": "tombchain", - "chainId": 6969, - "networkId": 6969, - "explorers": [ - { - "name": "tombscout", - "url": "https://tombscout.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-250", - "bridges": [ - { - "url": "https://beta-bridge.lif3.com/" - } - ] - } - }, - { - "name": "Ella the heart", - "chain": "ella", - "icon": "ella", - "rpc": [ - "https://rpc.ella.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ella", - "symbol": "ELLA", - "decimals": 18 - }, - "infoURL": "https://ella.network", - "shortName": "ELLA", - "chainId": 7027, - "networkId": 7027, - "explorers": [ - { - "name": "Ella", - "url": "https://ella.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rise of the Warbots Testnet", - "chain": "nmactest", - "rpc": [ - "https://testnet1.riseofthewarbots.com", - "https://testnet2.riseofthewarbots.com", - "https://testnet3.riseofthewarbots.com", - "https://testnet4.riseofthewarbots.com", - "https://testnet5.riseofthewarbots.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nano Machines", - "symbol": "NMAC", - "decimals": 18 - }, - "infoURL": "https://riseofthewarbots.com/", - "shortName": "Rise of the Warbots Testnet", - "chainId": 7777, - "networkId": 7777, - "explorers": [ - { - "name": "avascan", - "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", - "standard": "none" - } - ] - }, - { - "name": "BerylBit Mainnet", - "chain": "BRB", - "rpc": [ - "https://mainnet.berylbit.io" - ], - "faucets": [ - "https://t.me/BerylBit" - ], - "nativeCurrency": { - "name": "BerylBit Chain Native Token", - "symbol": "BRB", - "decimals": 18 - }, - "infoURL": "https://www.beryl-bit.com", - "shortName": "brb", - "chainId": 9012, - "networkId": 9012, - "icon": "berylbit", - "explorers": [ - { - "name": "berylbit-explorer", - "url": "https://explorer.berylbit.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "IVAR Chain Testnet", - "chain": "IVAR", - "icon": "ivar", - "rpc": [ - "https://testnet-rpc.ivarex.com" - ], - "faucets": [ - "https://tfaucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "tIvar", - "symbol": "tIVAR", - "decimals": 18 - }, - "infoURL": "https://ivarex.com", - "shortName": "tivar", - "chainId": 16888, - "networkId": 16888, - "explorers": [ - { - "name": "ivarscan", - "url": "https://testnet.ivarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Q Mainnet", - "chain": "Q", - "network": "mainnet", - "rpc": [ - "https://rpc.q.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "https://q.org", - "shortName": "q", - "chainId": 35441, - "networkId": 35441, - "icon": "q", - "explorers": [ - { - "name": "Q explorer", - "url": "https://explorer.q.org", - "icon": "q", - "standard": "EIP3091" - } - ] - }, - { - "name": "Q Testnet", - "chain": "Q", - "network": "testnet", - "rpc": [ - "https://rpc.qtestnet.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Q token", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "https://q.org/", - "shortName": "q-testnet", - "chainId": 35443, - "networkId": 35443, - "icon": "q", - "explorers": [ - { - "name": "Q explorer", - "url": "https://explorer.qtestnet.org", - "icon": "q", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arbitrum Nova", - "chainId": 42170, - "shortName": "arb-nova", - "chain": "ETH", - "networkId": 42170, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://nova.arbitrum.io/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Arbitrum Nova Chain Explorer", - "url": "https://nova-explorer.arbitrum.io", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "infoURL": "https://arbitrum.io", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "GTON Testnet", - "chain": "GTON Testnet", - "rpc": [ - "https://testnet.gton.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GCD", - "symbol": "GCD", - "decimals": 18 - }, - "infoURL": "https://gton.capital", - "shortName": "tgton", - "chainId": 50021, - "networkId": 50021, - "explorers": [ - { - "name": "GTON Testnet Network Explorer", - "url": "https://explorer.testnet.gton.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3" - } - }, - { - "name": "Mixin Virtual Machine", - "chain": "MVM", - "network": "mainnet", - "rpc": [ - "https://geth.mvm.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://mvm.dev", - "shortName": "mvm", - "chainId": 73927, - "networkId": 73927, - "icon": "mvm", - "explorers": [ - { - "name": "mvmscan", - "url": "https://scan.mvm.dev", - "icon": "mvm", - "standard": "EIP3091" - } - ] - }, - { - "name": "ResinCoin Mainnet", - "chain": "RESIN", - "rpc": [ - "https://mainnet.resincoin.ml" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "RESIN", - "decimals": 18 - }, - "infoURL": "https://resincoin.ml", - "shortName": "resin", - "chainId": 75000, - "networkId": 75000, - "explorers": [ - { - "name": "ResinScan", - "url": "https://explorer.resincoin.ml", - "standard": "none" - } - ] - }, - { - "name": "IVAR Chain Mainnet", - "chain": "IVAR", - "icon": "ivar", - "rpc": [ - "https://mainnet-rpc.ivarex.com" - ], - "faucets": [ - "https://faucet.ivarex.com/" - ], - "nativeCurrency": { - "name": "Ivar", - "symbol": "IVAR", - "decimals": 18 - }, - "infoURL": "https://ivarex.com", - "shortName": "ivar", - "chainId": 88888, - "networkId": 88888, - "explorers": [ - { - "name": "ivarscan", - "url": "https://ivarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Crystaleum", - "chain": "crystal", - "network": "mainnet", - "rpc": [ - "https://evm.cryptocurrencydevs.org", - "https://rpc.crystaleum.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "CRFI", - "symbol": "◈", - "decimals": 18 - }, - "infoURL": "https://crystaleum.org", - "shortName": "CRFI", - "chainId": 103090, - "networkId": 1, - "icon": "crystal", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.crystaleum.org", - "icon": "crystal", - "standard": "EIP3091" - } - ] - }, - { - "name": "ETND Chain Mainnets", - "chain": "ETND", - "network": "mainnet", - "rpc": [ - "https://rpc.node1.etnd.pro/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETND", - "symbol": "ETND", - "decimals": 18 - }, - "infoURL": "https://www.etnd.pro", - "shortName": "ETND", - "chainId": 131419, - "networkId": 131419, - "icon": "ETND", - "explorers": [ - { - "name": "etndscan", - "url": "https://scan.etnd.pro", - "icon": "ETND", - "standard": "none" - } - ] - }, - { - "name": "Arbitrum Görli", - "title": "Arbitrum Görli Rollup Testnet", - "chainId": 421613, - "shortName": "arb-goerli", - "chain": "ETH", - "networkId": 421613, - "nativeCurrency": { - "name": "Arbitrum Görli Ether", - "symbol": "AGOR", - "decimals": 18 - }, - "rpc": [ - "https://goerli-rollup.arbitrum.io/rpc/" - ], - "faucets": [], - "infoURL": "https://arbitrum.io/", - "explorers": [ - { - "name": "Arbitrum Görli Rollup Explorer", - "url": "https://goerli-rollup-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.arbitrum.io/" - } - ] - } - }, - { - "name": "4GoodNetwork", - "chain": "4GN", - "rpc": [ - "https://chain.deptofgood.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "APTA", - "symbol": "APTA", - "decimals": 18 - }, - "infoURL": "https://bloqs4good.com", - "shortName": "bloqs4good", - "chainId": 846000, - "networkId": 846000 - }, - { - "name": "PlatON Dev Testnet2", - "chain": "PlatON", - "rpc": [ - "https://devnet2openapi.platon.network/rpc", - "wss://devnet2openapi.platon.network/ws" - ], - "faucets": [ - "https://devnet2faucet.platon.network/faucet" - ], - "nativeCurrency": { - "name": "LAT", - "symbol": "lat", - "decimals": 18 - }, - "infoURL": "https://www.platon.network", - "shortName": "platondev2", - "chainId": 2206132, - "networkId": 1, - "icon": "platon", - "explorers": [ - { - "name": "PlatON explorer", - "url": "https://devnet2scan.platon.network", - "standard": "none" - } - ] - }, - { - "name": "CANTO", - "chain": "CANTO", - "rpc": [ - "https://canto.evm.chandrastation.com", - "https://canto.slingshot.finance", - "https://jsonrpc.canto.nodestake.top" - ], - "nativeCurrency": { - "name": "CANTO", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io/", - "shortName": "CANTO", - "chainId": 7700, - "networkId": 7700, - "icon": "CANTO", - "explorers": [ - { - "name": "CANTO explorer", - "url": "https://evm.explorer.canto.io", - "standard": "none" - } - ] - }, - { - "name": "EthereumFair ETHF", - "chainId": 513100, - "shortName": "ETHF", - "chain": "ETHF", - "network": "mainnet", - "networkId": 513100, - "nativeCurrency": { - "name": "ETHF", - "symbol": "ETHF", - "decimals": 18 - }, - "rpc": [ - "https://rpc.etherfair.org" - ], - "faucets": [], - "infoURL": "", - "explorers": [ - { - "name": "ETHF scan", - "url": "https://explorer.etherfair.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "ETHW Mainnet", - "chainId": 10001, - "shortName": "ETHW", - "chain": "ETHW", - "network": "mainnet", - "networkId": 10001, - "nativeCurrency": { - "name": "ETHW", - "symbol": "ETHW", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.ethereumpow.org" - ], - "faucets": [], - "infoURL": "https://ethereumpow.org/", - "explorers": [ - { - "name": "ETHW Scan", - "url": "https://mainnet.ethwscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Core Blockchain", - "chainId": 1116, - "shortName": "CORE", - "chain": "CORE", - "network": "mainnet", - "networkId": 1116, - "nativeCurrency": { - "name": "CORE", - "symbol": "CORE", - "decimals": 18 - }, - "rpc": [ - "https://rpc.coredao.org/" - ], - "faucets": [], - "explorers": [ - { - "name": "Core Scan", - "url": "https://scan.coredao.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "SeedCoin-Network", - "chain": "SeedCoin-Network", - "rpc": [ - "https://node.seedcoin.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "SeedCoin", - "symbol": "SEED", - "decimals": 18 - }, - "infoURL": "https://www.seedcoin.network/", - "shortName": "SEED", - "icon": "seedcoin", - "chainId": 37, - "networkId": 37 - }, - { - "name": "Unicorn Ultra Testnet", - "chain": "u2u", - "rpc": [ - "https://rpc-testnet.uniultra.xyz" - ], - "faucets": [ - "https://faucet.uniultra.xyz" - ], - "nativeCurrency": { - "name": "Unicorn Ultra", - "symbol": "U2U", - "decimals": 18 - }, - "infoURL": "https://uniultra.xyz", - "shortName": "u2u", - "chainId": 39, - "networkId": 39, - "icon": "u2u", - "explorers": [ - { - "icon": "u2u", - "name": "U2U Explorer", - "url": "https://testnet.uniultra.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ennothem Mainnet Proterozoic", - "chain": "ETMP", - "rpc": [ - "https://rpc.etm.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 - }, - "infoURL": "https://etm.network", - "shortName": "etmp", - "chainId": 48, - "networkId": 48, - "icon": "etmp", - "explorers": [ - { - "name": "etmpscan", - "url": "https://etmscan.network", - "icon": "etmp", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ennothem Testnet Pioneer", - "chain": "ETMP", - "rpc": [ - "https://rpc.pioneer.etm.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ennothem", - "symbol": "ETMP", - "decimals": 18 - }, - "infoURL": "https://etm.network", - "shortName": "etmpTest", - "chainId": 49, - "networkId": 49, - "icon": "etmp", - "explorers": [ - { - "name": "etmp", - "url": "https://pioneer.etmscan.network", - "icon": "etmpscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "FNCY", - "chain": "FNCY", - "rpc": [ - "https://fncy-seed1.fncy.world" - ], - "faucets": [ - "https://faucet-testnet.fncy.world" - ], - "nativeCurrency": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 - }, - "infoURL": "https://fncyscan.fncy.world", - "shortName": "FNCY", - "chainId": 73, - "networkId": 73, - "icon": "fncy", - "explorers": [ - { - "name": "fncy scan", - "url": "https://fncyscan.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } - ] - }, - { - "name": "Decimal Smart Chain Mainnet", - "chain": "DSC", - "rpc": [ - "https://node.decimalchain.com/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decimal", - "symbol": "DEL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://decimalchain.com", - "shortName": "DSC", - "chainId": 75, - "networkId": 75, - "icon": "dsc", - "explorers": [ - { - "name": "DSC Explorer Mainnet", - "url": "https://explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dehvo", - "chain": "Dehvo", - "rpc": [ - "https://connect.dehvo.com", - "https://rpc.dehvo.com", - "https://rpc1.dehvo.com", - "https://rpc2.dehvo.com" - ], - "faucets": [ - "https://buy.dehvo.com" - ], - "nativeCurrency": { - "name": "Dehvo", - "symbol": "Deh", - "decimals": 18 - }, - "infoURL": "https://dehvo.com", - "shortName": "deh", - "chainId": 113, - "networkId": 113, - "slip44": 714, - "explorers": [ - { - "name": "Dehvo Explorer", - "url": "https://explorer.dehvo.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Flare Testnet Coston2", - "chain": "FLR", - "icon": "coston2", - "rpc": [ - "https://coston2-api.flare.network/ext/bc/C/rpc" - ], - "faucets": [ - "https://coston2-faucet.towolabs.com" - ], - "nativeCurrency": { - "name": "Coston2 Flare", - "symbol": "C2FLR", - "decimals": 18 - }, - "infoURL": "https://flare.xyz", - "shortName": "c2flr", - "chainId": 114, - "networkId": 114, - "explorers": [ - { - "name": "blockscout", - "url": "https://coston2-explorer.flare.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeBank Testnet", - "chain": "DeBank", - "rpc": [], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "debank-testnet", - "chainId": 115, - "networkId": 115, - "explorers": [] - }, - { - "name": "DeBank Mainnet", - "chain": "DeBank", - "rpc": [], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "debank-mainnet", - "chainId": 116, - "networkId": 116, - "explorers": [] - }, - { - "name": "Arcology Testnet", - "chain": "Arcology", - "icon": "acolicon", - "rpc": [ - "https://testnet.arcology.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Arcology Coin", - "symbol": "Acol", - "decimals": 18 - }, - "infoURL": "https://arcology.network/", - "shortName": "arcology", - "chainId": 118, - "networkId": 118, - "explorers": [ - { - "name": "arcology", - "url": "https://testnet.arcology.network/explorer", - "standard": "none" - } - ] - }, - { - "name": "ENULS Mainnet", - "chain": "ENULS", - "rpc": [ - "https://evmapi.nuls.io", - "https://evmapi2.nuls.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 - }, - "infoURL": "https://nuls.io", - "shortName": "enuls", - "chainId": 119, - "networkId": 119, - "icon": "enuls", - "explorers": [ - { - "name": "enulsscan", - "url": "https://evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } - ] - }, - { - "name": "ENULS Testnet", - "chain": "ENULS", - "rpc": [ - "https://beta.evmapi.nuls.io", - "https://beta.evmapi2.nuls.io" - ], - "faucets": [ - "http://faucet.nuls.io" - ], - "nativeCurrency": { - "name": "NULS", - "symbol": "NULS", - "decimals": 18 - }, - "infoURL": "https://nuls.io", - "shortName": "enulst", - "chainId": 120, - "networkId": 120, - "icon": "enuls", - "explorers": [ - { - "name": "enulsscan", - "url": "https://beta.evmscan.nuls.io", - "icon": "enuls", - "standard": "EIP3091" - } - ] - }, - { - "name": "Realchain Mainnet", - "chain": "REAL", - "rpc": [ - "https://rcl-dataseed1.rclsidechain.com", - "https://rcl-dataseed2.rclsidechain.com", - "https://rcl-dataseed3.rclsidechain.com", - "https://rcl-dataseed4.rclsidechain.com", - "wss://rcl-dataseed1.rclsidechain.com/v1/", - "wss://rcl-dataseed2.rclsidechain.com/v1/", - "wss://rcl-dataseed3.rclsidechain.com/v1/", - "wss://rcl-dataseed4.rclsidechain.com/v1/" - ], - "faucets": [ - "https://faucet.rclsidechain.com" - ], - "nativeCurrency": { - "name": "Realchain", - "symbol": "REAL", - "decimals": 18 - }, - "infoURL": "https://www.rclsidechain.com/", - "shortName": "REAL", - "chainId": 121, - "networkId": 121, - "slip44": 714, - "explorers": [ - { - "name": "realscan", - "url": "https://rclscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alyx Chain Testnet", - "chain": "Alyx Chain Testnet", - "rpc": [ - "https://testnet-rpc.alyxchain.com" - ], - "faucets": [ - "https://faucet.alyxchain.com" - ], - "nativeCurrency": { - "name": "Alyx Testnet Native Token", - "symbol": "ALYX", - "decimals": 18 - }, - "infoURL": "https://www.alyxchain.com", - "shortName": "AlyxTestnet", - "chainId": 135, - "networkId": 135, - "explorers": [ - { - "name": "alyx testnet scan", - "url": "https://testnet.alyxscan.com", - "standard": "EIP3091" - } - ], - "icon": "alyx" - }, - { - "name": "PHI Network v2", - "chain": "PHI", - "rpc": [ - "https://connect.phi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PHI", - "symbol": "Φ", - "decimals": 18 - }, - "infoURL": "https://phi.network", - "shortName": "PHI", - "chainId": 144, - "networkId": 144, - "icon": "phi", - "explorers": [ - { - "name": "Phiscan", - "url": "https://phiscan.com", - "icon": "phi", - "standard": "none" - } - ] - }, - { - "name": "Armonia Eva Chain Mainnet", - "chain": "Eva", - "rpc": [ - "https://evascan.io/api/eth-rpc/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 - }, - "infoURL": "https://amax.network", - "shortName": "eva", - "chainId": 160, - "networkId": 160, - "status": "incubating" - }, - { - "name": "Armonia Eva Chain Testnet", - "chain": "Wall-e", - "rpc": [ - "https://testnet.evascan.io/api/eth-rpc/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Armonia Multichain Native Token", - "symbol": "AMAX", - "decimals": 18 - }, - "infoURL": "https://amax.network", - "shortName": "wall-e", - "chainId": 161, - "networkId": 161, - "explorers": [ - { - "name": "blockscout - evascan", - "url": "https://testnet.evascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Atoshi Testnet", - "chain": "ATOSHI", - "icon": "atoshi", - "rpc": [ - "https://node.atoshi.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATOSHI", - "symbol": "ATOS", - "decimals": 18 - }, - "infoURL": "https://atoshi.org", - "shortName": "atoshi", - "chainId": 167, - "networkId": 167, - "explorers": [ - { - "name": "atoshiscan", - "url": "https://scan.atoverse.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "MOAC testnet", - "chain": "MOAC", - "rpc": [ - "https://gateway.moac.io/testnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 - }, - "infoURL": "https://moac.io", - "shortName": "moactest", - "chainId": 201, - "networkId": 201, - "explorers": [ - { - "name": "moac testnet explorer", - "url": "https://testnet.moac.io", - "standard": "none" - } - ] - }, - { - "name": "MAPO Makalu", - "title": "MAPO Testnet Makalu", - "chain": "MAPO", - "rpc": [ - "https://testnet-rpc.maplabs.io" - ], - "faucets": [ - "https://faucet.mapprotocol.io" - ], - "nativeCurrency": { - "name": "Makalu MAPO", - "symbol": "MAPO", - "decimals": 18 - }, - "infoURL": "https://mapprotocol.io/", - "shortName": "makalu", - "chainId": 212, - "networkId": 212, - "explorers": [ - { - "name": "maposcan", - "url": "https://testnet.maposcan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "SiriusNet V2", - "chain": "SIN2", - "faucets": [], - "rpc": [ - "https://rpc2.siriusnet.io" - ], - "icon": "siriusnet", - "nativeCurrency": { - "name": "MCD", - "symbol": "MCD", - "decimals": 18 - }, - "infoURL": "https://siriusnet.io", - "shortName": "SIN2", - "chainId": 217, - "networkId": 217, - "explorers": [ - { - "name": "siriusnet explorer", - "url": "https://scan.siriusnet.io", - "standard": "none" - } - ] - }, - { - "name": "Oasys Mainnet", - "chain": "Oasys", - "icon": "oasys", - "rpc": [ - "https://rpc.mainnet.oasys.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://oasys.games", - "shortName": "OAS", - "chainId": 248, - "networkId": 248, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.oasys.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hedera Mainnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [ - "https://mainnet.hashio.io/api" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-mainnet", - "chainId": 295, - "networkId": 295, - "slip44": 3030, - "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/mainnet/dashboard", - "standard": "none" - }, - { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" - }, - { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" - }, - { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" - }, - { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" - } - ] - }, - { - "name": "Hedera Testnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [ - "https://testnet.hashio.io/api" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://portal.hedera.com" - ], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-testnet", - "chainId": 296, - "networkId": 296, - "slip44": 3030, - "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/testnet/dashboard", - "standard": "none" - }, - { - "name": "Arkhia Explorer", - "url": "https://explorer.arkhia.io", - "standard": "none" - }, - { - "name": "DragonGlass", - "url": "https://app.dragonglass.me", - "standard": "none" - }, - { - "name": "Hedera Explorer", - "url": "https://hederaexplorer.io", - "standard": "none" - }, - { - "name": "Ledger Works Explore", - "url": "https://explore.lworks.io", - "standard": "none" - } - ] - }, - { - "name": "Hedera Previewnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [ - "https://previewnet.hashio.io/api" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://portal.hedera.com" - ], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-previewnet", - "chainId": 297, - "networkId": 297, - "slip44": 3030, - "explorers": [ - { - "name": "HashScan", - "url": "https://hashscan.io/previewnet/dashboard", - "standard": "none" - } - ] - }, - { - "name": "Hedera Localnet", - "chain": "Hedera", - "icon": "hedera", - "rpc": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "hbar", - "symbol": "HBAR", - "decimals": 8 - }, - "infoURL": "https://hedera.com", - "shortName": "hedera-localnet", - "chainId": 298, - "networkId": 298, - "slip44": 3030, - "explorers": [] - }, - { - "name": "Bobaopera", - "chain": "Bobaopera", - "rpc": [ - "https://bobaopera.boba.network", - "wss://wss.bobaopera.boba.network", - "https://replica.bobaopera.boba.network", - "wss://replica-wss.bobaopera.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobaopera", - "chainId": 301, - "networkId": 301, - "explorers": [ - { - "name": "Bobaopera block explorer", - "url": "https://blockexplorer.bobaopera.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Omax Mainnet", - "chain": "OMAX Chain", - "rpc": [ - "https://mainapi.omaxray.com" - ], - "faucets": [ - "https://faucet.omaxray.com/" - ], - "nativeCurrency": { - "name": "OMAX COIN", - "symbol": "OMAX", - "decimals": 18 - }, - "infoURL": "https://www.omaxcoin.com/", - "shortName": "omax", - "chainId": 311, - "networkId": 311, - "icon": "omaxchain", - "explorers": [ - { - "name": "Omax Chain Explorer", - "url": "https://omaxray.com", - "icon": "omaxray", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Mainnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://api.node.glif.io/", - "https://rpc.ankr.com/filecoin" - ], - "faucets": [], - "nativeCurrency": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin", - "chainId": 314, - "networkId": 314, - "slip44": 461, - "explorers": [ - { - "name": "Filfox", - "url": "https://filfox.info/en", - "standard": "none" - }, - { - "name": "Filscan", - "url": "https://filscan.io", - "standard": "none" - }, - { - "name": "Filscout", - "url": "https://filscout.io/en", - "standard": "none" - } - ] - }, - { - "name": "Consta Testnet", - "chain": "tCNT", - "rpc": [ - "https://rpc-testnet.theconsta.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tCNT", - "symbol": "tCNT", - "decimals": 18 - }, - "infoURL": "http://theconsta.com", - "shortName": "tCNT", - "chainId": 371, - "networkId": 371, - "icon": "constachain", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer-testnet.theconsta.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "HyperonChain TestNet", - "chain": "HPN", - "icon": "hyperonchain", - "rpc": [ - "https://testnet-rpc.hyperonchain.com" - ], - "faucets": [ - "https://faucet.hyperonchain.com" - ], - "nativeCurrency": { - "name": "HyperonChain", - "symbol": "HPN", - "decimals": 18 - }, - "infoURL": "https://docs.hyperonchain.com", - "shortName": "hpn", - "chainId": 400, - "networkId": 400, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.hyperonchain.com", - "icon": "hyperonchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zeeth Chain", - "chain": "ZeethChain", - "rpc": [ - "https://rpc.zeeth.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "zeeth", - "chainId": 427, - "networkId": 427, - "explorers": [ - { - "name": "Zeeth Explorer", - "url": "https://explorer.zeeth.io", - "standard": "none" - } - ] - }, - { - "name": "Frenchain Testnet", - "chain": "tfren", - "rpc": [ - "https://rpc-01tn.frenchain.app" - ], - "faucets": [], - "nativeCurrency": { - "name": "tFREN", - "symbol": "FtREN", - "decimals": 18 - }, - "infoURL": "https://frenchain.app", - "shortName": "tFREN", - "chainId": 444, - "networkId": 444, - "icon": "fren", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.frenscan.io", - "icon": "fren", - "standard": "EIP3091" - } - ] - }, - { - "name": "Camino C-Chain", - "chain": "CAM", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 - }, - "infoURL": "https://camino.foundation/", - "shortName": "Camino", - "chainId": 500, - "networkId": 1000, - "icon": "camino", - "explorers": [ - { - "name": "blockexplorer", - "url": "https://explorer.camino.foundation/mainnet", - "standard": "none" - } - ] - }, - { - "name": "Columbus Test Network", - "chain": "CAM", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Camino", - "symbol": "CAM", - "decimals": 18 - }, - "infoURL": "https://camino.foundation/", - "shortName": "Columbus", - "chainId": 501, - "networkId": 1001, - "icon": "camino", - "explorers": [ - { - "name": "blockexplorer", - "url": "https://explorer.camino.foundation", - "standard": "none" - } - ] - }, - { - "name": "Gear Zero Network Mainnet", - "chain": "GearZero", - "rpc": [ - "https://gzn.linksme.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 - }, - "infoURL": "https://token.gearzero.ca/mainnet", - "shortName": "gz-mainnet", - "chainId": 516, - "networkId": 516, - "slip44": 516, - "explorers": [] - }, - { - "name": "Firechain Mainnet", - "chain": "FIRE", - "icon": "firechain", - "rpc": [ - "https://mainnet.rpc1.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "fire", - "chainId": 529, - "networkId": 529, - "explorers": [], - "status": "incubating" - }, - { - "name": "Dogechain Testnet", - "chain": "DC", - "icon": "dogechain", - "rpc": [ - "https://rpc-testnet.dogechain.dog" - ], - "faucets": [ - "https://faucet.dogechain.dog" - ], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogechain.dog", - "shortName": "dct", - "chainId": 568, - "networkId": 568, - "explorers": [ - { - "name": "dogechain testnet explorer", - "url": "https://explorer-testnet.dogechain.dog", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metis Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.gateway.metisdevops.link" - ], - "faucets": [ - "https://goerli.faucet.metisdevops.link" - ], - "nativeCurrency": { - "name": "Goerli Metis", - "symbol": "METIS", - "decimals": 18 - }, - "infoURL": "https://www.metis.io", - "shortName": "metis-goerli", - "chainId": 599, - "networkId": 599, - "explorers": [ - { - "name": "blockscout", - "url": "https://goerli.explorer.metisdevops.link", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-4", - "bridges": [ - { - "url": "https://testnet-bridge.metis.io" - } - ] - } - }, - { - "name": "Graphlinq Blockchain Mainnet", - "chain": "GLQ Blockchain", - "rpc": [ - "https://glq-dataseed.graphlinq.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GLQ", - "symbol": "GLQ", - "decimals": 18 - }, - "infoURL": "https://graphlinq.io", - "shortName": "glq", - "chainId": 614, - "networkId": 614, - "explorers": [ - { - "name": "GLQ Explorer", - "url": "https://explorer.graphlinq.io", - "standard": "none" - } - ] - }, - { - "name": "Canto Testnet", - "chain": "Canto Tesnet", - "rpc": [ - "https://eth.plexnode.wtf/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canto", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io", - "shortName": "tcanto", - "chainId": 740, - "networkId": 740, - "explorers": [ - { - "name": "Canto Tesnet Explorer (Neobase)", - "url": "http://testnet-explorer.canto.neobase.one", - "standard": "none" - } - ] - }, - { - "name": "Vention Smart Chain Testnet", - "chain": "VSCT", - "icon": "ventionTestnet", - "rpc": [ - "https://node-testnet.vention.network" - ], - "faucets": [ - "https://faucet.vention.network" - ], - "nativeCurrency": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 - }, - "infoURL": "https://testnet.ventionscan.io", - "shortName": "vsct", - "chainId": 741, - "networkId": 741, - "explorers": [ - { - "name": "ventionscan", - "url": "https://testnet.ventionscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "QL1", - "chain": "QOM", - "status": "incubating", - "rpc": [ - "https://rpc.qom.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 - }, - "infoURL": "https://qom.one", - "shortName": "qom", - "chainId": 766, - "networkId": 766, - "icon": "qom", - "explorers": [ - { - "name": "QL1 Mainnet Explorer", - "url": "https://mainnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lucid Blockchain", - "chain": "Lucid Blockchain", - "icon": "lucid", - "rpc": [ - "https://rpc.lucidcoin.io" - ], - "faucets": [ - "https://faucet.lucidcoin.io" - ], - "nativeCurrency": { - "name": "LUCID", - "symbol": "LUCID", - "decimals": 18 - }, - "infoURL": "https://lucidcoin.io", - "shortName": "LUCID", - "chainId": 800, - "networkId": 800, - "explorers": [ - { - "name": "Lucid Explorer", - "url": "https://explorer.lucidcoin.io", - "standard": "none" - } - ] - }, - { - "name": "Qitmeer", - "chain": "MEER", - "rpc": [ - "https://qng.rpc.qitmeer.io", - "https://rpc.woowow.io", - "https://mainnet.meerlabs.com", - "https://rpc.dimai.ai", - "https://evm-dataseed1.meerscan.io", - "https://evm-dataseed2.meerscan.io", - "https://evm-dataseed3.meerscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meer", - "chainId": 813, - "networkId": 813, - "slip44": 813, - "icon": "meer", - "explorers": [ - { - "name": "meerscan", - "url": "https://qng.meerscan.io", - "standard": "none" - }, - { - "name": "QNG Mainnet Qitmeer Explorer", - "url": "https://qng.qitmneer.io", - "standard": "none" - } - ] - }, - { - "name": "Taraxa Mainnet", - "chain": "Tara", - "icon": "taraxa", - "rpc": [ - "https://rpc.mainnet.taraxa.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 - }, - "infoURL": "https://taraxa.io", - "shortName": "tara", - "chainId": 841, - "networkId": 841, - "explorers": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.mainnet.taraxa.io", - "standard": "none" - } - ] - }, - { - "name": "Taraxa Testnet", - "chain": "Tara", - "icon": "taraxa", - "rpc": [ - "https://rpc.testnet.taraxa.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tara", - "symbol": "TARA", - "decimals": 18 - }, - "infoURL": "https://taraxa.io", - "shortName": "taratest", - "chainId": 842, - "networkId": 842, - "explorers": [ - { - "name": "Taraxa Explorer", - "url": "https://explorer.testnet.taraxa.io", - "standard": "none" - } - ] - }, - { - "name": "Zeeth Chain Dev", - "chain": "ZeethChainDev", - "rpc": [ - "https://rpc.dev.zeeth.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeeth Token", - "symbol": "ZTH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "zeethdev", - "chainId": 859, - "networkId": 859, - "explorers": [ - { - "name": "Zeeth Explorer Dev", - "url": "https://explorer.dev.zeeth.io", - "standard": "none" - } - ] - }, - { - "name": "Fantasia Chain Mainnet", - "chain": "FSC", - "rpc": [ - "https://mainnet-data1.fantasiachain.com/", - "https://mainnet-data2.fantasiachain.com/", - "https://mainnet-data3.fantasiachain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FST", - "symbol": "FST", - "decimals": 18 - }, - "infoURL": "https://fantasia.technology/", - "shortName": "FSCMainnet", - "chainId": 868, - "networkId": 868, - "explorers": [ - { - "name": "FSCScan", - "url": "https://explorer.fantasiachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bandai Namco Research Verse Mainnet", - "chain": "Bandai Namco Research Verse", - "icon": "bnken", - "rpc": [ - "https://rpc.main.oasvrs.bnken.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.bandainamco-mirai.com/en/", - "shortName": "BNKEN", - "chainId": 876, - "networkId": 876, - "explorers": [ - { - "name": "Bandai Namco Research Verse Explorer", - "url": "https://explorer.main.oasvrs.bnken.net", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Dexit Network", - "chain": "DXT", - "rpc": [ - "https://dxt.dexit.network" - ], - "faucets": [ - "https://faucet.dexit.network" - ], - "nativeCurrency": { - "name": "Dexit network", - "symbol": "DXT", - "decimals": 18 - }, - "infoURL": "https://dexit.network", - "shortName": "DXT", - "chainId": 877, - "networkId": 877, - "explorers": [ - { - "name": "dxtscan", - "url": "https://dxtscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rinia Testnet", - "chain": "FIRE", - "icon": "rinia", - "rpc": [ - "https://rinia.rpc1.thefirechain.com" - ], - "faucets": [ - "https://faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "tfire", - "chainId": 917, - "networkId": 917, - "explorers": [], - "status": "incubating" - }, - { - "name": "muNode Testnet", - "chain": "munode", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://munode.dev/", - "shortName": "munode", - "chainId": 956, - "networkId": 956 - }, - { - "name": "Oort Mainnet", - "chain": "Oort Mainnet", - "rpc": [ - "https://rpc.oortech.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "ccn", - "chainId": 970, - "networkId": 970, - "icon": "ccn" - }, - { - "name": "Oort Huygens", - "chain": "Huygens", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "Huygens", - "chainId": 971, - "networkId": 971, - "icon": "ccn" - }, - { - "name": "Oort Ascraeus", - "title": "Oort Ascraeus", - "chain": "Ascraeus", - "rpc": [ - "https://ascraeus-rpc.oortech.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCNA", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "Ascraeus", - "chainId": 972, - "networkId": 972, - "icon": "ccn" - }, - { - "name": "Memo Smart Chain Mainnet", - "chain": "MEMO", - "rpc": [ - "https://chain.metamemo.one:8501", - "wss://chain.metamemo.one:16801" - ], - "faucets": [ - "https://faucet.metamemo.one/" - ], - "nativeCurrency": { - "name": "Memo", - "symbol": "CMEMO", - "decimals": 18 - }, - "infoURL": "www.memolabs.org", - "shortName": "memochain", - "chainId": 985, - "networkId": 985, - "icon": "memo", - "explorers": [ - { - "name": "Memo Mainnet Explorer", - "url": "https://scan.metamemo.one:8080", - "icon": "memoscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "T-EKTA", - "title": "EKTA Testnet T-EKTA", - "chain": "T-EKTA", - "rpc": [ - "https://test.ekta.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "T-EKTA", - "symbol": "T-EKTA", - "decimals": 18 - }, - "infoURL": "https://www.ekta.io", - "shortName": "t-ekta", - "chainId": 1004, - "networkId": 1004, - "icon": "ekta", - "explorers": [ - { - "name": "test-ektascan", - "url": "https://test.ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proxy Network Testnet", - "chain": "Proxy Network", - "rpc": [ - "http://128.199.94.183:8041" - ], - "faucets": [], - "nativeCurrency": { - "name": "PRX", - "symbol": "PRX", - "decimals": 18 - }, - "infoURL": "https://theproxy.network", - "shortName": "prx", - "chainId": 1031, - "networkId": 1031, - "explorers": [ - { - "name": "proxy network testnet", - "url": "http://testnet-explorer.theproxy.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bronos Testnet", - "chain": "Bronos", - "rpc": [ - "https://evm-testnet.bronos.org" - ], - "faucets": [ - "https://faucet.bronos.org" - ], - "nativeCurrency": { - "name": "tBRO", - "symbol": "tBRO", - "decimals": 18 - }, - "infoURL": "https://bronos.org", - "shortName": "bronos-testnet", - "chainId": 1038, - "networkId": 1038, - "icon": "bronos", - "explorers": [ - { - "name": "Bronos Testnet Explorer", - "url": "https://tbroscan.bronos.org", - "standard": "none", - "icon": "bronos" - } - ] - }, - { - "name": "Bronos Mainnet", - "chain": "Bronos", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "BRO", - "symbol": "BRO", - "decimals": 18 - }, - "infoURL": "https://bronos.org", - "shortName": "bronos-mainnet", - "chainId": 1039, - "networkId": 1039, - "icon": "bronos", - "explorers": [ - { - "name": "Bronos Explorer", - "url": "https://broscan.bronos.org", - "standard": "none", - "icon": "bronos" - } - ] - }, - { - "name": "MOAC mainnet", - "chain": "MOAC", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "MOAC", - "symbol": "mc", - "decimals": 18 - }, - "infoURL": "https://moac.io", - "shortName": "moac", - "chainId": 1099, - "networkId": 1099, - "slip44": 314, - "explorers": [ - { - "name": "moac explorer", - "url": "https://explorer.moac.io", - "standard": "none" - } - ] - }, - { - "name": "WEMIX3.0 Mainnet", - "chain": "WEMIX", - "rpc": [ - "https://api.wemix.com", - "wss://ws.wemix.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "WEMIX", - "symbol": "WEMIX", - "decimals": 18 - }, - "infoURL": "https://wemix.com", - "shortName": "wemix", - "chainId": 1111, - "networkId": 1111, - "explorers": [ - { - "name": "WEMIX Block Explorer", - "url": "https://explorer.wemix.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "WEMIX3.0 Testnet", - "chain": "TWEMIX", - "rpc": [ - "https://api.test.wemix.com", - "wss://ws.test.wemix.com" - ], - "faucets": [ - "https://wallet.test.wemix.com/faucet" - ], - "nativeCurrency": { - "name": "TestnetWEMIX", - "symbol": "tWEMIX", - "decimals": 18 - }, - "infoURL": "https://wemix.com", - "shortName": "twemix", - "chainId": 1112, - "networkId": 1112, - "explorers": [ - { - "name": "WEMIX Testnet Microscope", - "url": "https://microscope.test.wemix.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Core Blockchain Testnet", - "chain": "Core", - "icon": "core", - "rpc": [ - "https://rpc.test.btcs.network/" - ], - "faucets": [ - "https://scan.test.btcs.network/faucet" - ], - "nativeCurrency": { - "name": "Core Blockchain Testnet Native Token", - "symbol": "tCORE", - "decimals": 18 - }, - "infoURL": "https://www.coredao.org", - "shortName": "tcore", - "chainId": 1115, - "networkId": 1115, - "explorers": [ - { - "name": "Core Scan Testnet", - "url": "https://scan.test.btcs.network", - "icon": "core", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogcoin Mainnet", - "chain": "DOGS", - "icon": "dogs", - "rpc": [ - "https://mainnet-rpc.dogcoin.network" - ], - "faucets": [ - "https://faucet.dogcoin.network" - ], - "nativeCurrency": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 - }, - "infoURL": "https://dogcoin.network", - "shortName": "DOGSm", - "chainId": 1117, - "networkId": 1117, - "explorers": [ - { - "name": "Dogcoin", - "url": "https://explorer.dogcoin.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeFiChain EVM Network Mainnet", - "chain": "defichain-evm", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://meta.defichain.com/", - "shortName": "DFI", - "chainId": 1130, - "networkId": 1130, - "slip44": 1130, - "icon": "defichain-network", - "explorers": [] - }, - { - "name": "DeFiChain EVM Network Testnet", - "chain": "defichain-evm-testnet", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "DeFiChain", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://meta.defichain.com/", - "shortName": "DFI-T", - "chainId": 1131, - "networkId": 1131, - "icon": "defichain-network", - "explorers": [] - }, - { - "name": "AmStar Testnet", - "chain": "AmStar", - "icon": "amstar", - "rpc": [ - "https://testnet-rpc.amstarscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 - }, - "infoURL": "https://sinso.io", - "shortName": "ASARt", - "chainId": 1138, - "networkId": 1138, - "explorers": [ - { - "name": "amstarscan-testnet", - "url": "https://testnet.amstarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Smart Host Teknoloji TESTNET", - "chain": "SHT", - "rpc": [ - "https://s2.tl.web.tr:4041" - ], - "faucets": [], - "nativeCurrency": { - "name": "Smart Host Teknoloji TESTNET", - "symbol": "tSHT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://smart-host.com.tr", - "shortName": "sht", - "chainId": 1177, - "networkId": 1177, - "icon": "smarthost", - "explorers": [ - { - "name": "Smart Host Teknoloji TESTNET Explorer", - "url": "https://s2.tl.web.tr:4000", - "icon": "smarthost", - "standard": "EIP3091" - } - ] - }, - { - "name": "Exzo Network Mainnet", - "chain": "EXZO", - "icon": "exzo", - "rpc": [ - "https://mainnet.exzo.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Exzo", - "symbol": "XZO", - "decimals": 18 - }, - "infoURL": "https://exzo.network", - "shortName": "xzo", - "chainId": 1229, - "networkId": 1229, - "explorers": [ - { - "name": "blockscout", - "url": "https://exzoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ultron Testnet", - "chain": "Ultron", - "icon": "ultron", - "rpc": [ - "https://ultron-dev.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 - }, - "infoURL": "https://ultron.foundation", - "shortName": "UltronTestnet", - "chainId": 1230, - "networkId": 1230, - "explorers": [ - { - "name": "Ultron Testnet Explorer", - "url": "https://explorer.ultron-dev.io", - "icon": "ultron", - "standard": "none" - } - ] - }, - { - "name": "Ultron Mainnet", - "chain": "Ultron", - "icon": "ultron", - "rpc": [ - "https://ultron-rpc.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultron", - "symbol": "ULX", - "decimals": 18 - }, - "infoURL": "https://ultron.foundation", - "shortName": "UtronMainnet", - "chainId": 1231, - "networkId": 1231, - "explorers": [ - { - "name": "Ultron Explorer", - "url": "https://ulxscan.com", - "icon": "ultron", - "standard": "none" - } - ] - }, - { - "name": "Step Network", - "title": "Step Main Network", - "chain": "STEP", - "icon": "step", - "rpc": [ - "https://rpc.step.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 - }, - "infoURL": "https://step.network", - "shortName": "step", - "chainId": 1234, - "networkId": 1234, - "explorers": [ - { - "name": "StepScan", - "url": "https://stepscan.io", - "icon": "step", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-43114", - "bridges": [ - { - "url": "https://bridge.step.network" - } - ] - } - }, - { - "name": "CIC Chain Testnet", - "chain": "CICT", - "rpc": [ - "https://testapi.cicscan.com" - ], - "faucets": [ - "https://cicfaucet.com" - ], - "nativeCurrency": { - "name": "Crazy Internet Coin", - "symbol": "CICT", - "decimals": 18 - }, - "infoURL": "https://www.cicchain.net", - "shortName": "CICT", - "chainId": 1252, - "networkId": 1252, - "icon": "cicchain", - "explorers": [ - { - "name": "CICscan", - "url": "https://testnet.cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bobabeam", - "chain": "Bobabeam", - "rpc": [ - "https://bobabeam.boba.network", - "wss://wss.bobabeam.boba.network", - "https://replica.bobabeam.boba.network", - "wss://replica-wss.bobabeam.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobabeam", - "chainId": 1294, - "networkId": 1294, - "explorers": [ - { - "name": "Bobabeam block explorer", - "url": "https://blockexplorer.bobabeam.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Dos Fuji Subnet", - "chain": "DOS", - "rpc": [ - "https://test.doschain.com/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dos Native Token", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "http://doschain.io/", - "shortName": "DOS", - "chainId": 1311, - "networkId": 1311, - "explorers": [ - { - "name": "dos-testnet", - "url": "https://test.doscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alyx Mainnet", - "chain": "ALYX", - "rpc": [ - "https://rpc.alyxchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alyx Chain Native Token", - "symbol": "ALYX", - "decimals": 18 - }, - "infoURL": "https://www.alyxchain.com", - "shortName": "alyx", - "chainId": 1314, - "networkId": 1314, - "explorers": [ - { - "name": "alyxscan", - "url": "https://www.alyxscan.com", - "standard": "EIP3091" - } - ], - "icon": "alyx" - }, - { - "name": "Elysium Testnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": [ - "https://elysium-test-rpc.vulcanforged.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 - }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELST", - "chainId": 1338, - "networkId": 1338, - "explorers": [ - { - "name": "Elysium testnet explorer", - "url": "https://elysium-explorer.vulcanforged.com", - "standard": "none" - } - ] - }, - { - "name": "Elysium Mainnet", - "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", - "chain": "Elysium", - "rpc": [ - "https://elysium-rpc.vulcanforged.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAVA", - "symbol": "LAVA", - "decimals": 18 - }, - "infoURL": "https://elysiumscan.vulcanforged.com", - "shortName": "ELSM", - "chainId": 1339, - "networkId": 1339, - "explorers": [ - { - "name": "Elysium mainnet explorer", - "url": "https://explorer.elysiumchain.tech", - "standard": "none" - } - ] - }, - { - "name": "CIC Chain Mainnet", - "chain": "CIC", - "rpc": [ - "https://xapi.cicscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Crazy Internet Coin", - "symbol": "CIC", - "decimals": 18 - }, - "infoURL": "https://www.cicchain.net", - "shortName": "CIC", - "chainId": 1353, - "networkId": 1353, - "icon": "cicchain", - "explorers": [ - { - "name": "CICscan", - "url": "https://cicscan.com", - "icon": "cicchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "AmStar Mainnet", - "chain": "AmStar", - "icon": "amstar", - "rpc": [ - "https://mainnet-rpc.amstarscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SINSO", - "symbol": "SINSO", - "decimals": 18 - }, - "infoURL": "https://sinso.io", - "shortName": "ASAR", - "chainId": 1388, - "networkId": 1388, - "explorers": [ - { - "name": "amstarscan", - "url": "https://mainnet.amstarscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polygon zkEVM Testnet old", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "zkevmtest", - "chainId": 1402, - "networkId": 1402, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ], - "status": "deprecated" - }, - { - "name": "Polygon zkEVM Testnet", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [ - "https://rpc.public.zkevm-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "testnet-zkEVM-mango", - "chainId": 1422, - "networkId": 1422, - "explorers": [ - { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ctex Scan Blockchain", - "chain": "Ctex Scan Blockchain", - "icon": "ctex", - "rpc": [ - "https://mainnet-rpc.ctexscan.com/" - ], - "faucets": [ - "https://faucet.ctexscan.com" - ], - "nativeCurrency": { - "name": "CTEX", - "symbol": "CTEX", - "decimals": 18 - }, - "infoURL": "https://ctextoken.io", - "shortName": "CTEX", - "chainId": 1455, - "networkId": 1455, - "explorers": [ - { - "name": "Ctex Scan Explorer", - "url": "https://ctexscan.com", - "standard": "none" - } - ] - }, - { - "name": "Beagle Messaging Chain", - "chain": "BMC", - "rpc": [ - "https://beagle.chat/eth" - ], - "faucets": [ - "https://faucet.beagle.chat/" - ], - "nativeCurrency": { - "name": "Beagle", - "symbol": "BG", - "decimals": 18 - }, - "infoURL": "https://beagle.chat/", - "shortName": "beagle", - "chainId": 1515, - "networkId": 1515, - "explorers": [ - { - "name": "Beagle Messaging Chain Explorer", - "url": "https://eth.beagle.chat", - "standard": "EIP3091" - } - ] - }, - { - "name": "Horizen Yuma Testnet", - "shortName": "Yuma", - "chain": "Yuma", - "icon": "eon", - "rpc": [ - "https://yuma-testnet.horizenlabs.io/ethv1" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://yuma-testnet-faucet.horizen.io" - ], - "nativeCurrency": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 1662, - "networkId": 1662, - "slip44": 121, - "explorers": [ - { - "name": "Yuma Testnet Block Explorer", - "url": "https://yuma-explorer.horizen.io", - "icon": "eon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Anytype EVM Chain", - "chain": "ETH", - "icon": "any", - "rpc": [ - "https://geth.anytype.io" - ], - "faucets": [ - "https://evm.anytype.io/faucet" - ], - "nativeCurrency": { - "name": "ANY", - "symbol": "ANY", - "decimals": 18 - }, - "infoURL": "https://evm.anytype.io", - "shortName": "AnytypeChain", - "chainId": 1701, - "networkId": 1701, - "explorers": [ - { - "name": "Anytype Explorer", - "url": "https://explorer.anytype.io", - "icon": "any", - "standard": "EIP3091" - } - ] - }, - { - "name": "TBSI Mainnet", - "title": "Thai Blockchain Service Infrastructure Mainnet", - "chain": "TBSI", - "rpc": [ - "https://rpc.blockchain.or.th" - ], - "faucets": [], - "nativeCurrency": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 - }, - "infoURL": "https://blockchain.or.th", - "shortName": "TBSI", - "chainId": 1707, - "networkId": 1707 - }, - { - "name": "TBSI Testnet", - "title": "Thai Blockchain Service Infrastructure Testnet", - "chain": "TBSI", - "rpc": [ - "https://rpc.testnet.blockchain.or.th" - ], - "faucets": [ - "https://faucet.blockchain.or.th" - ], - "nativeCurrency": { - "name": "Jinda", - "symbol": "JINDA", - "decimals": 18 - }, - "infoURL": "https://blockchain.or.th", - "shortName": "tTBSI", - "chainId": 1708, - "networkId": 1708 - }, - { - "name": "Kerleano", - "title": "Proof of Carbon Reduction testnet", - "chain": "CRC", - "status": "active", - "rpc": [ - "https://cacib-saturn-test.francecentral.cloudapp.azure.com", - "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" - ], - "faucets": [ - "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" - ], - "nativeCurrency": { - "name": "Carbon Reduction Coin", - "symbol": "CRC", - "decimals": 18 - }, - "infoURL": "https://github.com/ethereum-pocr/kerleano", - "shortName": "kerleano", - "chainId": 1804, - "networkId": 1804, - "explorers": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/kerleano", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rabbit Analog Testnet Chain", - "chain": "rAna", - "icon": "rabbit", - "rpc": [ - "https://rabbit.analog-rpc.com" - ], - "faucets": [ - "https://analogfaucet.com" - ], - "nativeCurrency": { - "name": "Rabbit Analog Test Chain Native Token ", - "symbol": "rAna", - "decimals": 18 - }, - "infoURL": "https://rabbit.analogscan.com", - "shortName": "rAna", - "chainId": 1807, - "networkId": 1807, - "explorers": [ - { - "name": "blockscout", - "url": "https://rabbit.analogscan.com", - "standard": "none" - } - ] - }, - { - "name": "Gitshock Cartenz Testnet", - "chain": "Gitshock Cartenz", - "icon": "gitshockchain", - "rpc": [ - "https://rpc.cartenz.works" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Gitshock Cartenz", - "symbol": "tGTFX", - "decimals": 18 - }, - "infoURL": "https://gitshock.com", - "shortName": "gitshockchain", - "chainId": 1881, - "networkId": 1881, - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.cartenz.works", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitcichain Mainnet", - "chain": "BITCI", - "icon": "bitci", - "rpc": [ - "https://rpc.bitci.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitci", - "symbol": "BITCI", - "decimals": 18 - }, - "infoURL": "https://www.bitcichain.com", - "shortName": "bitci", - "chainId": 1907, - "networkId": 1907, - "explorers": [ - { - "name": "Bitci Explorer", - "url": "https://bitciexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitcichain Testnet", - "chain": "TBITCI", - "icon": "bitci", - "rpc": [ - "https://testnet.bitcichain.com" - ], - "faucets": [ - "https://faucet.bitcichain.com" - ], - "nativeCurrency": { - "name": "Test Bitci", - "symbol": "TBITCI", - "decimals": 18 - }, - "infoURL": "https://www.bitcichain.com", - "shortName": "tbitci", - "chainId": 1908, - "networkId": 1908, - "explorers": [ - { - "name": "Bitci Explorer Testnet", - "url": "https://testnet.bitciexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "ONUS Chain Testnet", - "title": "ONUS Chain Testnet", - "chain": "onus", - "rpc": [ - "https://rpc-testnet.onuschain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 - }, - "infoURL": "https://onuschain.io", - "shortName": "onus-testnet", - "chainId": 1945, - "networkId": 1945, - "explorers": [ - { - "name": "Onus explorer testnet", - "url": "https://explorer-testnet.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } - ] - }, - { - "name": "D-Chain Mainnet", - "chain": "D-Chain", - "rpc": [ - "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" - ], - "nativeCurrency": { - "name": "DOINX", - "symbol": "DOINX", - "decimals": 18 - }, - "shortName": "dchain-mainnet", - "chainId": 1951, - "networkId": 1951, - "icon": "dchain", - "faucets": [], - "infoURL": "" - }, - { - "name": "Atelier", - "title": "Atelier Test Network", - "chain": "ALTR", - "rpc": [ - "https://1971.network/atlr", - "wss://1971.network/atlr" - ], - "faucets": [], - "nativeCurrency": { - "name": "ATLR", - "symbol": "ATLR", - "decimals": 18 - }, - "infoURL": "https://1971.network/", - "shortName": "atlr", - "chainId": 1971, - "networkId": 1971, - "icon": "atlr" - }, - { - "name": "ONUS Chain Mainnet", - "title": "ONUS Chain Mainnet", - "chain": "onus", - "rpc": [ - "https://rpc.onuschain.io", - "wss://ws.onuschain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONUS", - "symbol": "ONUS", - "decimals": 18 - }, - "infoURL": "https://onuschain.io", - "shortName": "onus-mainnet", - "chainId": 1975, - "networkId": 1975, - "explorers": [ - { - "name": "Onus explorer mainnet", - "url": "https://explorer.onuschain.io", - "icon": "onus", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ekta", - "chain": "EKTA", - "rpc": [ - "https://main.ekta.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "EKTA", - "symbol": "EKTA", - "decimals": 18 - }, - "infoURL": "https://www.ekta.io", - "shortName": "ekta", - "chainId": 1994, - "networkId": 1994, - "icon": "ekta", - "explorers": [ - { - "name": "ektascan", - "url": "https://ektascan.io", - "icon": "ekta", - "standard": "EIP3091" - } - ] - }, - { - "name": "edeXa Testnet", - "chain": "edeXa TestNetwork", - "rpc": [ - "https://testnet.edexa.com/rpc", - "https://io-dataseed1.testnet.edexa.io-market.com/rpc" - ], - "faucets": [ - "https://faucet.edexa.com/" - ], - "nativeCurrency": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 - }, - "infoURL": "https://edexa.com/", - "shortName": "edx", - "chainId": 1995, - "networkId": 1995, - "icon": "edexa", - "explorers": [ - { - "name": "edexa-testnet", - "url": "https://explorer.edexa.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogechain Mainnet", - "chain": "DC", - "icon": "dogechain", - "rpc": [ - "https://rpc.dogechain.dog", - "https://rpc-us.dogechain.dog", - "https://rpc01.dogechain.dog" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogechain.dog", - "shortName": "dc", - "chainId": 2000, - "networkId": 2000, - "explorers": [ - { - "name": "dogechain explorer", - "url": "https://explorer.dogechain.dog", - "standard": "EIP3091" - } - ] - }, - { - "name": "Milkomeda A1 Mainnet", - "chain": "milkALGO", - "icon": "milkomeda", - "rpc": [ - "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", - "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkALGO", - "symbol": "mALGO", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkALGO", - "chainId": 2002, - "networkId": 2002, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "MainnetZ Mainnet", - "chain": "NetZ", - "icon": "mainnetz", - "rpc": [ - "https://mainnet-rpc.mainnetz.io" - ], - "faucets": [ - "https://faucet.mainnetz.io" - ], - "nativeCurrency": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 - }, - "infoURL": "https://mainnetz.io", - "shortName": "NetZm", - "chainId": 2016, - "networkId": 2016, - "explorers": [ - { - "name": "MainnetZ", - "url": "https://explorer.mainnetz.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "PublicMint Devnet", - "title": "Public Mint Devnet", - "chain": "PublicMint", - "rpc": [ - "https://rpc.dev.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint_dev", - "chainId": 2018, - "networkId": 2018, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.dev.publicmint.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "PublicMint Testnet", - "title": "Public Mint Testnet", - "chain": "PublicMint", - "rpc": [ - "https://rpc.tst.publicmint.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://publicmint.com", - "shortName": "pmint_test", - "chainId": 2019, - "networkId": 2019, - "slip44": 60, - "explorers": [ - { - "name": "PublicMint Explorer", - "url": "https://explorer.tst.publicmint.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "OriginTrail Parachain", - "chain": "OTP", - "rpc": [ - "https://astrosat.origintrail.network", - "wss://parachain-rpc.origin-trail.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OriginTrail Parachain Token", - "symbol": "OTP", - "decimals": 12 - }, - "infoURL": "https://parachain.origintrail.io", - "shortName": "otp", - "chainId": 2043, - "networkId": 2043 - }, - { - "name": "Stratos Testnet", - "chain": "STOS", - "rpc": [ - "https://web3-testnet-rpc.thestratos.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 - }, - "infoURL": "https://www.thestratos.org", - "shortName": "stos-testnet", - "chainId": 2047, - "networkId": 2047, - "explorers": [ - { - "name": "Stratos EVM Explorer (Blockscout)", - "url": "https://web3-testnet-explorer.thestratos.org", - "standard": "none" - }, - { - "name": "Stratos Cosmos Explorer (BigDipper)", - "url": "https://big-dipper-dev.thestratos.org", - "standard": "none" - } - ] - }, - { - "name": "Stratos Mainnet", - "chain": "STOS", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "STOS", - "symbol": "STOS", - "decimals": 18 - }, - "infoURL": "https://www.thestratos.org", - "shortName": "stos-mainnet", - "chainId": 2048, - "networkId": 2048, - "status": "incubating" - }, - { - "name": "Quokkacoin Mainnet", - "chain": "Qkacoin", - "rpc": [ - "https://rpc.qkacoin.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Qkacoin", - "symbol": "QKA", - "decimals": 18 - }, - "infoURL": "https://qkacoin.org", - "shortName": "QKA", - "chainId": 2077, - "networkId": 2077, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.qkacoin.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Exosama Network", - "chain": "EXN", - "rpc": [ - "https://rpc.exosama.com", - "wss://rpc.exosama.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 - }, - "infoURL": "https://moonsama.com", - "shortName": "exn", - "chainId": 2109, - "networkId": 2109, - "slip44": 2109, - "icon": "exn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.exosama.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metaplayerone Mainnet", - "chain": "METAD", - "icon": "metad", - "rpc": [ - "https://rpc.metaplayer.one/" - ], - "faucets": [], - "nativeCurrency": { - "name": "METAD", - "symbol": "METAD", - "decimals": 18 - }, - "infoURL": "https://docs.metaplayer.one/", - "shortName": "Metad", - "chainId": 2122, - "networkId": 2122, - "explorers": [ - { - "name": "Metad Scan", - "url": "https://scan.metaplayer.one", - "icon": "metad", - "standard": "EIP3091" - } - ] - }, - { - "name": "BOSagora Mainnet", - "chain": "ETH", - "rpc": [ - "https://mainnet.bosagora.org", - "https://rpc.bosagora.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOSAGORA", - "symbol": "BOA", - "decimals": 18 - }, - "infoURL": "https://docs.bosagora.org", - "shortName": "boa", - "chainId": 2151, - "networkId": 2151, - "icon": "agora", - "explorers": [ - { - "name": "BOASCAN", - "url": "https://boascan.io", - "icon": "agora", - "standard": "EIP3091" - } - ] - }, - { - "name": "Findora Forge", - "chain": "Testnet-forge", - "rpc": [ - "https://prod-forge.prod.findora.org:8545/" - ], - "faucets": [], - "nativeCurrency": { - "name": "FRA", - "symbol": "FRA", - "decimals": 18 - }, - "infoURL": "https://findora.org/", - "shortName": "findora-forge", - "chainId": 2154, - "networkId": 2154, - "explorers": [ - { - "name": "findorascan", - "url": "https://testnet-forge.evm.findorascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitcoin EVM", - "chain": "Bitcoin EVM", - "rpc": [ - "https://connect.bitcoinevm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "eBTC", - "decimals": 18 - }, - "infoURL": "https://bitcoinevm.com", - "shortName": "eBTC", - "chainId": 2203, - "networkId": 2203, - "icon": "ebtc", - "explorers": [ - { - "name": "Explorer", - "url": "https://explorer.bitcoinevm.com", - "icon": "ebtc", - "standard": "none" - } - ] - }, - { - "name": "BOMB Chain", - "chain": "BOMB", - "rpc": [ - "https://rpc.bombchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BOMB Token", - "symbol": "BOMB", - "decimals": 18 - }, - "infoURL": "https://www.bombchain.com", - "shortName": "bomb", - "chainId": 2300, - "networkId": 2300, - "icon": "bomb", - "explorers": [ - { - "name": "bombscan", - "icon": "bomb", - "url": "https://bombscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arevia", - "chain": "Arevia", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Arev", - "symbol": "ARÉV", - "decimals": 18 - }, - "infoURL": "", - "shortName": "arevia", - "chainId": 2309, - "networkId": 2309, - "explorers": [], - "status": "incubating" - }, - { - "name": "Altcoinchain", - "chain": "mainnet", - "rpc": [ - "https://rpc0.altcoinchain.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Altcoin", - "symbol": "ALT", - "decimals": 18 - }, - "infoURL": "https://altcoinchain.org", - "shortName": "alt", - "chainId": 2330, - "networkId": 2330, - "icon": "altcoinchain", - "status": "active", - "explorers": [ - { - "name": "expedition", - "url": "http://expedition.altcoinchain.org", - "icon": "altcoinchain", - "standard": "none" - } - ] - }, - { - "name": "BOMB Chain Testnet", - "chain": "BOMB", - "rpc": [ - "https://bombchain-testnet.ankr.com/bas_full_rpc_1" - ], - "faucets": [ - "https://faucet.bombchain-testnet.ankr.com/" - ], - "nativeCurrency": { - "name": "BOMB Token", - "symbol": "tBOMB", - "decimals": 18 - }, - "infoURL": "https://www.bombmoney.com", - "shortName": "bombt", - "chainId": 2399, - "networkId": 2399, - "icon": "bomb", - "explorers": [ - { - "name": "bombscan-testnet", - "icon": "bomb", - "url": "https://explorer.bombchain-testnet.ankr.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "TCG Verse Mainnet", - "chain": "TCG Verse", - "icon": "tcg_verse", - "rpc": [ - "https://rpc.tcgverse.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://tcgverse.xyz/", - "shortName": "TCGV", - "chainId": 2400, - "networkId": 2400, - "explorers": [ - { - "name": "TCG Verse Explorer", - "url": "https://explorer.tcgverse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "XODEX", - "chain": "XODEX", - "rpc": [ - "https://mainnet.xo-dex.com/rpc", - "https://xo-dex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "XODEX Native Token", - "symbol": "XODEX", - "decimals": 18 - }, - "infoURL": "https://xo-dex.com", - "shortName": "xodex", - "chainId": 2415, - "networkId": 10, - "icon": "xodex", - "explorers": [ - { - "name": "XODEX Explorer", - "url": "https://explorer.xo-dex.com", - "standard": "EIP3091", - "icon": "xodex" - } - ] - }, - { - "name": "PoCRNet", - "title": "Proof of Carbon Reduction mainnet", - "chain": "CRC", - "status": "active", - "rpc": [ - "https://pocrnet.westeurope.cloudapp.azure.com/http", - "wss://pocrnet.westeurope.cloudapp.azure.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Carbon Reduction Coin", - "symbol": "CRC", - "decimals": 18 - }, - "infoURL": "https://github.com/ethereum-pocr/pocrnet", - "shortName": "pocrnet", - "chainId": 2606, - "networkId": 2606, - "explorers": [ - { - "name": "Lite Explorer", - "url": "https://ethereum-pocr.github.io/explorer/pocrnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redlight Chain Mainnet", - "chain": "REDLC", - "rpc": [ - "https://dataseed2.redlightscan.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "Redlight Coin", - "symbol": "REDLC", - "decimals": 18 - }, - "infoURL": "https://redlight.finance/", - "shortName": "REDLC", - "chainId": 2611, - "networkId": 2611, - "explorers": [ - { - "name": "REDLC Explorer", - "url": "https://redlightscan.finance", - "standard": "EIP3091" - } - ] - }, - { - "name": "Boba Network Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.boba.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "Bobagoerli", - "chainId": 2888, - "networkId": 2888, - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet.bobascan.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://gateway.goerli.boba.network" - } - ] - } - }, - { - "name": "BitYuan Mainnet", - "chain": "BTY", - "rpc": [ - "https://mainnet.bityuan.com/eth" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTY", - "symbol": "BTY", - "decimals": 18 - }, - "infoURL": "https://www.bityuan.com", - "shortName": "bty", - "chainId": 2999, - "networkId": 2999, - "icon": "bty", - "explorers": [ - { - "name": "BitYuan Block Chain Explorer", - "url": "https://mainnet.bityuan.com", - "standard": "none" - } - ] - }, - { - "name": "Orlando Chain", - "chain": "ORL", - "rpc": [ - "https://rpc-testnet.orlchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Orlando", - "symbol": "ORL", - "decimals": 18 - }, - "infoURL": "https://orlchain.com", - "shortName": "ORL", - "chainId": 3031, - "networkId": 3031, - "icon": "orl", - "explorers": [ - { - "name": "Orlando (ORL) Explorer", - "url": "https://orlscan.com", - "icon": "orl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bifrost Mainnet", - "title": "The Bifrost Mainnet network", - "chain": "BFC", - "rpc": [ - "https://public-01.mainnet.thebifrost.io/rpc", - "https://public-02.mainnet.thebifrost.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 - }, - "infoURL": "https://thebifrost.io", - "shortName": "bfc", - "chainId": 3068, - "networkId": 3068, - "icon": "bifrost", - "explorers": [ - { - "name": "explorer-thebifrost", - "url": "https://explorer.mainnet.thebifrost.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Hyperspace testnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://api.hyperspace.node.glif.io/rpc/v1", - "https://filecoin-hyperspace.chainstacklabs.com/rpc/v1" - ], - "faucets": [ - "https://hyperspace.yoga/#faucet" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-hyperspace", - "chainId": 3141, - "networkId": 3141, - "slip44": 1, - "explorers": [ - { - "name": "Filfox - Hyperspace", - "url": "https://hyperspace.filfox.info/en", - "standard": "none" - }, - { - "name": "Glif Explorer - Hyperspace", - "url": "https://explorer.glif.io/?network=hyperspace", - "standard": "none" - }, - { - "name": "Beryx", - "url": "https://beryx.zondax.ch", - "standard": "none" - }, - { - "name": "Filmine", - "url": "https://explorer.filmine.io", - "standard": "none" - }, - { - "name": "Filscan - Hyperspace", - "url": "https://hyperspace.filscan.io", - "standard": "none" - } - ] - }, - { - "name": "Debounce Subnet Testnet", - "chain": "Debounce Network", - "icon": "debounce", - "rpc": [ - "https://dev-rpc.debounce.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Debounce Network", - "symbol": "DB", - "decimals": 18 - }, - "infoURL": "https://debounce.network", - "shortName": "debounce-devnet", - "chainId": 3306, - "networkId": 3306, - "explorers": [ - { - "name": "Debounce Devnet Explorer", - "url": "https://explorer.debounce.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "PandoProject Mainnet", - "chain": "PandoProject", - "icon": "pando", - "rpc": [ - "https://eth-rpc-api.pandoproject.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 - }, - "infoURL": "https://www.pandoproject.org/", - "shortName": "pando-mainnet", - "chainId": 3601, - "networkId": 3601, - "explorers": [ - { - "name": "Pando Mainnet Explorer", - "url": "https://explorer.pandoproject.org", - "standard": "none" - } - ] - }, - { - "name": "PandoProject Testnet", - "chain": "PandoProject", - "icon": "pando", - "rpc": [ - "https://testnet.ethrpc.pandoproject.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "pando-token", - "symbol": "PTX", - "decimals": 18 - }, - "infoURL": "https://www.pandoproject.org/", - "shortName": "pando-testnet", - "chainId": 3602, - "networkId": 3602, - "explorers": [ - { - "name": "Pando Testnet Explorer", - "url": "https://testnet.explorer.pandoproject.org", - "standard": "none" - } - ] - }, - { - "name": "Metacodechain", - "chain": "metacode", - "rpc": [ - "https://j.blockcoach.com:8503" - ], - "faucets": [], - "nativeCurrency": { - "name": "J", - "symbol": "J", - "decimals": 18 - }, - "infoURL": "https://j.blockcoach.com:8089", - "shortName": "metacode", - "chainId": 3666, - "networkId": 3666, - "explorers": [ - { - "name": "meta", - "url": "https://j.blockcoach.com:8089", - "standard": "EIP3091" - } - ] - }, - { - "name": "Empire Network", - "chain": "EMPIRE", - "rpc": [ - "https://rpc.empirenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Empire", - "symbol": "EMPIRE", - "decimals": 18 - }, - "infoURL": "https://www.empirenetwork.io/", - "shortName": "empire", - "chainId": 3693, - "networkId": 3693, - "explorers": [ - { - "name": "Empire Explorer", - "url": "https://explorer.empirenetwork.io", - "standard": "none" - } - ] - }, - { - "name": "DRAC Network", - "chain": "DRAC", - "rpc": [ - "https://www.dracscan.com/rpc" - ], - "faucets": [ - "https://www.dracscan.io/faucet" - ], - "nativeCurrency": { - "name": "DRAC", - "symbol": "DRAC", - "decimals": 18 - }, - "infoURL": "https://drac.io/", - "shortName": "drac", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "chainId": 3912, - "networkId": 3912, - "icon": "drac", - "explorers": [ - { - "name": "DRAC_Network Scan", - "url": "https://www.dracscan.io", - "icon": "DRAC", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitindi Testnet", - "chain": "BNI", - "icon": "bitindiTestnet", - "rpc": [ - "https://testnet-rpc.bitindi.org" - ], - "faucets": [ - "https://faucet.bitindi.org" - ], - "nativeCurrency": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 - }, - "infoURL": "https://bitindi.org", - "shortName": "BNIt", - "chainId": 4096, - "networkId": 4096, - "explorers": [ - { - "name": "Bitindi", - "url": "https://testnet.bitindiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitindi Mainnet", - "chain": "BNI", - "icon": "bitindi", - "rpc": [ - "https://mainnet-rpc.bitindi.org" - ], - "faucets": [ - "https://faucet.bitindi.org" - ], - "nativeCurrency": { - "name": "BNI", - "symbol": "$BNI", - "decimals": 18 - }, - "infoURL": "https://bitindi.org", - "shortName": "BNIm", - "chainId": 4099, - "networkId": 4099, - "explorers": [ - { - "name": "Bitindi", - "url": "https://bitindiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bobafuji Testnet", - "chain": "Bobafuji Testnet", - "rpc": [ - "https://testnet.avax.boba.network", - "wss://wss.testnet.avax.boba.network", - "https://replica.testnet.avax.boba.network", - "wss://replica-wss.testnet.avax.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaFujiTestnet", - "chainId": 4328, - "networkId": 4328, - "explorers": [ - { - "name": "Bobafuji Testnet block explorer", - "url": "https://blockexplorer.testnet.avax.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Htmlcoin Mainnet", - "chain": "mainnet", - "rpc": [ - "https://janus.htmlcoin.com/api/" - ], - "faucets": [ - "https://gruvin.me/htmlcoin" - ], - "nativeCurrency": { - "name": "Htmlcoin", - "symbol": "HTML", - "decimals": 8 - }, - "infoURL": "https://htmlcoin.com", - "shortName": "html", - "chainId": 4444, - "networkId": 4444, - "icon": "htmlcoin", - "status": "active", - "explorers": [ - { - "name": "htmlcoin", - "url": "https://explorer.htmlcoin.com", - "icon": "htmlcoin", - "standard": "none" - } - ] - }, - { - "name": "BlackFort Exchange Network Testnet", - "chain": "TBXN", - "rpc": [ - "https://testnet.blackfort.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlackFort Testnet Token", - "symbol": "TBXN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://blackfort.exchange", - "shortName": "TBXN", - "chainId": 4777, - "networkId": 4777, - "icon": "bxn", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.blackfort.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "BlackFort Exchange Network", - "chain": "BXN", - "rpc": [ - "https://mainnet.blackfort.network/rpc", - "https://mainnet-1.blackfort.network/rpc", - "https://mainnet-2.blackfort.network/rpc", - "https://mainnet-3.blackfort.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlackFort Token", - "symbol": "BXN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://blackfort.exchange", - "shortName": "BXN", - "chainId": 4999, - "networkId": 4999, - "icon": "bxn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.blackfort.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mantle", - "chain": "ETH", - "rpc": [ - "https://rpc.mantle.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitDAO", - "symbol": "BIT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mantle", - "chainId": 5000, - "networkId": 5000, - "explorers": [ - { - "name": "Mantle Explorer", - "url": "https://explorer.mantle.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mantle Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.testnet.mantle.xyz" - ], - "faucets": [ - "https://faucet.testnet.mantle.xyz" - ], - "nativeCurrency": { - "name": "Testnet BitDAO", - "symbol": "BIT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mantle-testnet", - "chainId": 5001, - "networkId": 5001, - "explorers": [ - { - "name": "Mantle Testnet Explorer", - "url": "https://explorer.testnet.mantle.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Humanode Mainnet", - "chain": "HMND", - "rpc": [ - "https://explorer-rpc-http.mainnet.stages.humanode.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "HMND", - "symbol": "HMND", - "decimals": 18 - }, - "infoURL": "https://humanode.io", - "shortName": "hmnd", - "chainId": 5234, - "networkId": 5234, - "explorers": [] - }, - { - "name": "Firechain Mainnet Old", - "chain": "FIRE", - "icon": "firechain", - "rpc": [ - "https://mainnet.rpc1.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "_old_fire", - "chainId": 5290, - "networkId": 5290, - "explorers": [], - "status": "deprecated" - }, - { - "name": "Chain Verse Mainnet", - "chain": "CVERSE", - "icon": "chain_verse", - "rpc": [ - "https://rpc.chainverse.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://chainverse.info", - "shortName": "cverse", - "chainId": 5555, - "networkId": 5555, - "explorers": [ - { - "name": "Chain Verse Explorer", - "url": "https://explorer.chainverse.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hika Network Testnet", - "title": "Hika Network Testnet", - "chain": "HIK", - "icon": "hik", - "rpc": [ - "https://rpc-testnet.hika.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hik Token", - "symbol": "HIK", - "decimals": 18 - }, - "infoURL": "https://hika.network/", - "shortName": "hik", - "chainId": 5729, - "networkId": 5729, - "explorers": [ - { - "name": "Hika Network Testnet Explorer", - "url": "https://scan-testnet.hika.network", - "standard": "none" - } - ] - }, - { - "name": "Tres Testnet", - "chain": "TresLeches", - "rpc": [ - "https://rpc-test.tresleches.finance/" - ], - "faucets": [ - "http://faucet.tresleches.finance:8080" - ], - "nativeCurrency": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 - }, - "infoURL": "https://treschain.com", - "shortName": "TRESTEST", - "chainId": 6065, - "networkId": 6065, - "icon": "tresleches", - "explorers": [ - { - "name": "treslechesexplorer", - "url": "https://explorer-test.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tres Mainnet", - "chain": "TresLeches", - "rpc": [ - "https://rpc.tresleches.finance/", - "https://rpc.treschain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "TRES", - "symbol": "TRES", - "decimals": 18 - }, - "infoURL": "https://treschain.com", - "shortName": "TRESMAIN", - "chainId": 6066, - "networkId": 6066, - "icon": "tresleches", - "explorers": [ - { - "name": "treslechesexplorer", - "url": "https://explorer.tresleches.finance", - "icon": "treslechesexplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gold Smart Chain Mainnet", - "chain": "STAND", - "icon": "stand", - "rpc": [ - "https://rpc-mainnet.goldsmartchain.com" - ], - "faucets": [ - "https://faucet.goldsmartchain.com" - ], - "nativeCurrency": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 - }, - "infoURL": "https://goldsmartchain.com", - "shortName": "STANDm", - "chainId": 6789, - "networkId": 6789, - "explorers": [ - { - "name": "Gold Smart Chain", - "url": "https://mainnet.goldsmartchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "PolySmartChain", - "chain": "PSC", - "rpc": [ - "https://seed0.polysmartchain.com/", - "https://seed1.polysmartchain.com/", - "https://seed2.polysmartchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PSC", - "symbol": "PSC", - "decimals": 18 - }, - "infoURL": "https://www.polysmartchain.com/", - "shortName": "psc", - "chainId": 6999, - "networkId": 6999 - }, - { - "name": "ZetaChain Mainnet", - "chain": "ZetaChain", - "icon": "zetachain", - "rpc": [ - "https://api.mainnet.zetachain.com/evm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zeta", - "symbol": "ZETA", - "decimals": 18 - }, - "infoURL": "https://docs.zetachain.com/", - "shortName": "zetachain-mainnet", - "chainId": 7000, - "networkId": 7000, - "status": "incubating", - "explorers": [ - { - "name": "ZetaChain Mainnet Explorer", - "url": "https://explorer.mainnet.zetachain.com", - "standard": "none" - } - ] - }, - { - "name": "ZetaChain Athens Testnet", - "chain": "ZetaChain", - "icon": "zetachain", - "rpc": [ - "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", - "https://rpc.ankr.com/zetachain_evm_athens_testnet" - ], - "faucets": [ - "https://labs.zetachain.com/get-zeta" - ], - "nativeCurrency": { - "name": "ZETA", - "symbol": "tZETA", - "decimals": 18 - }, - "infoURL": "https://zetachain.com/docs", - "shortName": "zetachain-athens", - "chainId": 7001, - "networkId": 7001, - "status": "active", - "explorers": [ - { - "name": "ZetaChain Athens Testnet Explorer", - "url": "https://explorer.zetachain.com", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1695111759609.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1695111789559.png", - "color_chain_bg": "0x005741", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1695181451439.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1695181482445.png" - } - }, - { - "name": "Planq Mainnet", - "chain": "Planq", - "icon": "planq", - "rpc": [ - "https://evm-rpc.planq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Planq", - "symbol": "PLQ", - "decimals": 18 - }, - "infoURL": "https://planq.network", - "shortName": "planq", - "chainId": 7070, - "networkId": 7070, - "explorers": [ - { - "name": "Planq EVM Explorer (Blockscout)", - "url": "https://evm.planq.network", - "standard": "none" - }, - { - "name": "Planq Cosmos Explorer (BigDipper)", - "url": "https://explorer.planq.network", - "standard": "none" - } - ] - }, - { - "name": "Shardeum Liberty 2.X", - "chain": "Shardeum", - "icon": "shardeum", - "rpc": [ - "https://liberty20.shardeum.org/" - ], - "faucets": [ - "https://faucet.liberty20.shardeum.org" - ], - "nativeCurrency": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 - }, - "infoURL": "https://docs.shardeum.org/", - "shortName": "Liberty20", - "chainId": 8081, - "networkId": 8081, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-liberty20.shardeum.org", - "standard": "none" - } - ], - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "Shardeum Sphinx 1.X", - "chain": "Shardeum", - "icon": "shardeum", - "rpc": [ - "https://sphinx.shardeum.org/" - ], - "faucets": [ - "https://faucet-sphinx.shardeum.org/" - ], - "nativeCurrency": { - "name": "Shardeum SHM", - "symbol": "SHM", - "decimals": 18 - }, - "infoURL": "https://docs.shardeum.org/", - "shortName": "Sphinx10", - "chainId": 8082, - "networkId": 8082, - "explorers": [ - { - "name": "Shardeum Scan", - "url": "https://explorer-sphinx.shardeum.org", - "standard": "none" - } - ], - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "StreamuX Blockchain", - "chain": "StreamuX", - "rpc": [ - "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "StreamuX", - "symbol": "SmuX", - "decimals": 18 - }, - "infoURL": "https://www.streamux.cloud", - "shortName": "StreamuX", - "chainId": 8098, - "networkId": 8098 - }, - { - "name": "Qitmeer Network Testnet", - "chain": "MEER", - "rpc": [ - "https://testnet-qng.rpc.qitmeer.io", - "https://testnet.meerlabs.com", - "https://meer.testnet.meerfans.club" - ], - "faucets": [ - "https://faucet.qitmeer.io" - ], - "nativeCurrency": { - "name": "Qitmeer Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meertest", - "chainId": 8131, - "networkId": 8131, - "icon": "meer", - "explorers": [ - { - "name": "meerscan testnet", - "url": "https://testnet.qng.meerscan.io", - "standard": "none" - } - ] - }, - { - "name": "BeOne Chain Testnet", - "chain": "BOC", - "rpc": [ - "https://pre-boc1.beonechain.com", - "https://pre-boc2.beonechain.com", - "https://pre-boc3.beonechain.com" - ], - "faucets": [ - "https://testnet.beonescan.com/faucet" - ], - "nativeCurrency": { - "name": "BeOne Chain Testnet", - "symbol": "BOC", - "decimals": 18 - }, - "infoURL": "https://testnet.beonescan.com", - "shortName": "tBOC", - "chainId": 8181, - "networkId": 8181, - "icon": "beonechain", - "explorers": [ - { - "name": "BeOne Chain Testnet", - "url": "https://testnet.beonescan.com", - "icon": "beonechain", - "standard": "none" - } - ] - }, - { - "name": "Blockton Blockchain", - "chain": "Blockton Blockchain", - "icon": "bton", - "rpc": [ - "https://rpc.blocktonscan.com/" - ], - "faucets": [ - "https://faucet.blocktonscan.com/" - ], - "nativeCurrency": { - "name": "BLOCKTON", - "symbol": "BTON", - "decimals": 18 - }, - "infoURL": "https://blocktoncoin.com", - "shortName": "BTON", - "chainId": 8272, - "networkId": 8272, - "explorers": [ - { - "name": "Blockton Explorer", - "url": "https://blocktonscan.com", - "standard": "none" - } - ] - }, - { - "name": "KorthoTest", - "chain": "Kortho", - "rpc": [ - "https://www.krotho-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kortho Test", - "symbol": "KTO", - "decimals": 11 - }, - "infoURL": "https://www.kortho.io/", - "shortName": "Kortho", - "chainId": 8285, - "networkId": 8285 - }, - { - "name": "Base", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "base", - "chainId": 8453, - "networkId": 8453, - "status": "incubating" - }, - { - "name": "Toki Network", - "chain": "TOKI", - "rpc": [ - "https://mainnet.buildwithtoki.com/v0/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 - }, - "infoURL": "https://www.buildwithtoki.com", - "shortName": "toki", - "chainId": 8654, - "networkId": 8654, - "icon": "toki", - "explorers": [] - }, - { - "name": "Toki Testnet", - "chain": "TOKI", - "rpc": [ - "https://testnet.buildwithtoki.com/v0/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toki", - "symbol": "TOKI", - "decimals": 18 - }, - "infoURL": "https://www.buildwithtoki.com", - "shortName": "toki-testnet", - "chainId": 8655, - "networkId": 8655, - "icon": "toki", - "explorers": [] - }, - { - "name": "Alph Network", - "chain": "ALPH", - "rpc": [ - "https://rpc.alph.network", - "wss://rpc.alph.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alph Network", - "symbol": "ALPH", - "decimals": 18 - }, - "infoURL": "https://alph.network", - "shortName": "alph", - "chainId": 8738, - "networkId": 8738, - "explorers": [ - { - "name": "alphscan", - "url": "https://explorer.alph.network", - "icon": "alphscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "TMY Chain", - "chain": "TMY", - "icon": "ethereum", - "rpc": [ - "https://node1.tmyblockchain.org/rpc" - ], - "faucets": [ - "https://faucet.tmychain.org/" - ], - "nativeCurrency": { - "name": "TMY", - "symbol": "TMY", - "decimals": 18 - }, - "infoURL": "https://tmychain.org/", - "shortName": "tmy", - "chainId": 8768, - "networkId": 8768 - }, - { - "name": "MARO Blockchain Mainnet", - "chain": "MARO Blockchain", - "icon": "MARO", - "rpc": [ - "https://rpc-mainnet.ma.ro" - ], - "faucets": [], - "nativeCurrency": { - "name": "MARO", - "symbol": "MARO", - "decimals": 18 - }, - "infoURL": "https://ma.ro/", - "shortName": "maro", - "chainId": 8848, - "networkId": 8848, - "explorers": [ - { - "name": "MARO Scan", - "url": "https://scan.ma.ro/#", - "standard": "none" - } - ] - }, - { - "name": "Unique", - "icon": "unique", - "chain": "UNQ", - "rpc": [ - "https://rpc.unique.network", - "https://eu-rpc.unique.network", - "https://asia-rpc.unique.network", - "https://us-rpc.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Unique", - "symbol": "UNQ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "unq", - "chainId": 8880, - "networkId": 8880, - "explorers": [ - { - "name": "Unique Scan", - "url": "https://uniquescan.io/unique", - "standard": "none" - } - ] - }, - { - "name": "Quartz by Unique", - "icon": "quartz", - "chain": "UNQ", - "rpc": [ - "https://rpc-quartz.unique.network", - "https://quartz.api.onfinality.io/public-ws", - "https://eu-rpc-quartz.unique.network", - "https://asia-rpc-quartz.unique.network", - "https://us-rpc-quartz.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "qtz", - "chainId": 8881, - "networkId": 8881, - "explorers": [ - { - "name": "Unique Scan / Quartz", - "url": "https://uniquescan.io/quartz", - "standard": "none" - } - ] - }, - { - "name": "Opal testnet by Unique", - "icon": "opal", - "chain": "UNQ", - "rpc": [ - "https://rpc-opal.unique.network", - "https://us-rpc-opal.unique.network", - "https://eu-rpc-opal.unique.network", - "https://asia-rpc-opal.unique.network" - ], - "faucets": [ - "https://t.me/unique2faucet_opal_bot" - ], - "nativeCurrency": { - "name": "Opal", - "symbol": "UNQ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "opl", - "chainId": 8882, - "networkId": 8882, - "explorers": [ - { - "name": "Unique Scan / Opal", - "url": "https://uniquescan.io/opal", - "standard": "none" - } - ] - }, - { - "name": "Sapphire by Unique", - "icon": "sapphire", - "chain": "UNQ", - "rpc": [ - "https://rpc-sapphire.unique.network", - "https://us-rpc-sapphire.unique.network", - "https://eu-rpc-sapphire.unique.network", - "https://asia-rpc-sapphire.unique.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quartz", - "symbol": "QTZ", - "decimals": 18 - }, - "infoURL": "https://unique.network", - "shortName": "sph", - "chainId": 8883, - "networkId": 8883, - "explorers": [ - { - "name": "Unique Scan / Sapphire", - "url": "https://uniquescan.io/sapphire", - "standard": "none" - } - ] - }, - { - "name": "Vyvo Smart Chain", - "chain": "VSC", - "rpc": [ - "https://vsc-dataseed.vyvo.org:8889" - ], - "faucets": [], - "nativeCurrency": { - "name": "VSC", - "symbol": "VSC", - "decimals": 18 - }, - "infoURL": "https://vsc-dataseed.vyvo.org", - "shortName": "vsc", - "chainId": 8889, - "networkId": 8889 - }, - { - "name": "JIBCHAIN L1", - "chain": "JBC", - "rpc": [ - "https://rpc-l1.jibchain.net" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "JIBCOIN", - "symbol": "JBC", - "decimals": 18 - }, - "infoURL": "https://jibchain.net", - "shortName": "jbc", - "chainId": 8899, - "networkId": 8899, - "explorers": [ - { - "name": "JIBCHAIN Explorer", - "url": "https://exp-l1.jibchain.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Giant Mammoth Mainnet", - "title": "Giant Mammoth Chain", - "chain": "GMMT", - "rpc": [ - "https://rpc-asia.gmmtchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Giant Mammoth Coin", - "symbol": "GMMT", - "decimals": 18 - }, - "infoURL": "https://gmmtchain.io/", - "shortName": "gmmt", - "chainId": 8989, - "networkId": 8989, - "icon": "gmmt", - "explorers": [ - { - "name": "gmmtscan", - "url": "https://scan.gmmtchain.io", - "standard": "EIP3091", - "icon": "gmmt" - } - ] - }, - { - "name": "Rinia Testnet Old", - "chain": "FIRE", - "icon": "rinia", - "rpc": [], - "faucets": [ - "https://faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Firechain", - "symbol": "FIRE", - "decimals": 18 - }, - "infoURL": "https://thefirechain.com", - "shortName": "_old_tfire", - "chainId": 9170, - "networkId": 9170, - "explorers": [], - "status": "deprecated" - }, - { - "name": "Dogcoin Testnet", - "chain": "DOGS", - "icon": "dogs", - "rpc": [ - "https://testnet-rpc.dogcoin.network" - ], - "faucets": [ - "https://faucet.dogcoin.network" - ], - "nativeCurrency": { - "name": "Dogcoin", - "symbol": "DOGS", - "decimals": 18 - }, - "infoURL": "https://dogcoin.network", - "shortName": "DOGSt", - "chainId": 9339, - "networkId": 9339, - "explorers": [ - { - "name": "Dogcoin", - "url": "https://testnet.dogcoin.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "QEasyWeb3 Testnet", - "chain": "QET", - "rpc": [ - "https://qeasyweb3.com" - ], - "faucets": [ - "http://faucet.qeasyweb3.com" - ], - "nativeCurrency": { - "name": "QET", - "symbol": "QET", - "decimals": 18 - }, - "infoURL": "https://www.qeasyweb3.com", - "shortName": "QETTest", - "chainId": 9528, - "networkId": 9528, - "explorers": [ - { - "name": "QEasyWeb3 Explorer", - "url": "https://www.qeasyweb3.com", - "icon": "qetscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oort MainnetDev", - "title": "Oort MainnetDev", - "chain": "MainnetDev", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Oort", - "symbol": "CCN", - "decimals": 18 - }, - "infoURL": "https://oortech.com", - "shortName": "MainnetDev", - "chainId": 9700, - "networkId": 9700, - "icon": "ccn" - }, - { - "name": "Boba BNB Testnet", - "chain": "Boba BNB Testnet", - "rpc": [ - "https://testnet.bnb.boba.network", - "wss://wss.testnet.bnb.boba.network", - "https://replica.testnet.bnb.boba.network", - "wss://replica-wss.testnet.bnb.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnbTestnet", - "chainId": 9728, - "networkId": 9728, - "explorers": [ - { - "name": "Boba BNB Testnet block explorer", - "url": "https://blockexplorer.testnet.bnb.boba.network", - "standard": "none" - } - ] - }, - { - "name": "MainnetZ Testnet", - "chain": "NetZ", - "icon": "mainnetzTestnet", - "rpc": [ - "https://testnet-rpc.mainnetz.io" - ], - "faucets": [ - "https://faucet.mainnetz.io" - ], - "nativeCurrency": { - "name": "MainnetZ", - "symbol": "NetZ", - "decimals": 18 - }, - "infoURL": "https://testnet.mainnetz.io", - "shortName": "NetZt", - "chainId": 9768, - "networkId": 9768, - "explorers": [ - { - "name": "MainnetZ", - "url": "https://testnet.mainnetz.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gon Chain", - "chain": "GonChain", - "icon": "gonchain", - "rpc": [ - "https://node1.testnet.gaiaopen.network", - "http://database1.gaiaopen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gon Token", - "symbol": "GT", - "decimals": 18 - }, - "infoURL": "", - "shortName": "gon", - "chainId": 10024, - "networkId": 10024, - "explorers": [ - { - "name": "Gon Explorer", - "url": "https://gonscan.com", - "standard": "none" - } - ] - }, - { - "name": "SJATSH", - "chain": "ETH", - "rpc": [ - "http://geth.free.idcfengye.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://sjis.me", - "shortName": "SJ", - "chainId": 10086, - "networkId": 10086 - }, - { - "name": "Chiado Testnet", - "chain": "CHI", - "icon": "gnosis", - "rpc": [ - "https://rpc.chiadochain.net", - "https://rpc.eu-central-2.gateway.fm/v3/gnosis/archival/chiado" - ], - "faucets": [ - "https://gnosisfaucet.com" - ], - "nativeCurrency": { - "name": "Chiado xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "chi", - "chainId": 10200, - "networkId": 10200, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.chiadochain.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "0XTade", - "chain": "0XTade Chain", - "rpc": [ - "https://node.0xtchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "0XT", - "symbol": "0XT", - "decimals": 18 - }, - "infoURL": "https://www.0xtrade.finance/", - "shortName": "0xt", - "chainId": 10248, - "networkId": 10248, - "explorers": [ - { - "name": "0xtrade Scan", - "url": "https://www.0xtscan.com", - "standard": "none" - } - ] - }, - { - "name": "Numbers Mainnet", - "chain": "NUM", - "icon": "num", - "rpc": [ - "https://mainnetrpc.num.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 - }, - "infoURL": "https://numbersprotocol.io", - "shortName": "Jade", - "chainId": 10507, - "networkId": 10507, - "explorers": [ - { - "name": "ethernal", - "url": "https://mainnet.num.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Numbers Testnet", - "chain": "NUM", - "icon": "num", - "rpc": [ - "https://testnetrpc.num.network" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=num", - "https://faucet.num.network" - ], - "nativeCurrency": { - "name": "NUM Token", - "symbol": "NUM", - "decimals": 18 - }, - "infoURL": "https://numbersprotocol.io", - "shortName": "Snow", - "chainId": 10508, - "networkId": 10508, - "explorers": [ - { - "name": "ethernal", - "url": "https://testnet.num.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Astra", - "chain": "Astra", - "rpc": [ - "https://rpc.astranaut.io", - "https://rpc1.astranaut.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Astra", - "symbol": "ASA", - "decimals": 18 - }, - "infoURL": "https://astranaut.io", - "shortName": "astra", - "chainId": 11110, - "networkId": 11110, - "icon": "astra", - "explorers": [ - { - "name": "Astra EVM Explorer (Blockscout)", - "url": "https://explorer.astranaut.io", - "standard": "none", - "icon": "astra" - }, - { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.io/astra", - "standard": "none", - "icon": "astra" - } - ] - }, - { - "name": "Astra Testnet", - "chain": "Astra", - "rpc": [ - "https://rpc.astranaut.dev" - ], - "faucets": [ - "https://faucet.astranaut.dev" - ], - "nativeCurrency": { - "name": "test-Astra", - "symbol": "tASA", - "decimals": 18 - }, - "infoURL": "https://astranaut.io", - "shortName": "astra-testnet", - "chainId": 11115, - "networkId": 11115, - "icon": "astra", - "explorers": [ - { - "name": "Astra EVM Explorer", - "url": "https://explorer.astranaut.dev", - "standard": "EIP3091", - "icon": "astra" - }, - { - "name": "Astra PingPub Explorer", - "url": "https://ping.astranaut.dev/astra", - "standard": "none", - "icon": "astra" - } - ] - }, - { - "name": "Haqq Network", - "chain": "Haqq", - "rpc": [ - "https://rpc.eth.haqq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Islamic Coin", - "symbol": "ISLM", - "decimals": 18 - }, - "infoURL": "https://islamiccoin.net", - "shortName": "ISLM", - "chainId": 11235, - "networkId": 11235, - "explorers": [ - { - "name": "Mainnet HAQQ Explorer", - "url": "https://explorer.haqq.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sardis Testnet", - "chain": "SRDX", - "icon": "sardisTestnet", - "rpc": [ - "https://testnet-rpc.sardisnetwork.com" - ], - "faucets": [ - "https://faucet.sardisnetwork.com" - ], - "nativeCurrency": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 - }, - "infoURL": "https://mysardis.com", - "shortName": "SRDXt", - "chainId": 11612, - "networkId": 11612, - "explorers": [ - { - "name": "Sardis", - "url": "https://testnet.sardisnetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SanR Chain", - "chain": "SanRChain", - "rpc": [ - "https://sanrchain-node.santiment.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "nSAN", - "symbol": "nSAN", - "decimals": 18 - }, - "infoURL": "https://sanr.app", - "shortName": "SAN", - "chainId": 11888, - "networkId": 11888, - "icon": "sanrchain", - "parent": { - "chain": "eip155-1", - "type": "L2", - "bridges": [ - { - "url": "https://sanr.app" - } - ] - }, - "explorers": [ - { - "name": "SanR Chain Explorer", - "url": "https://sanrchain-explorer.santiment.net", - "standard": "none" - } - ] - }, - { - "name": "BLG Testnet", - "chain": "BLG", - "icon": "blg", - "rpc": [ - "https://rpc.blgchain.com" - ], - "faucets": [ - "https://faucet.blgchain.com" - ], - "nativeCurrency": { - "name": "Blg", - "symbol": "BLG", - "decimals": 18 - }, - "infoURL": "https://blgchain.com", - "shortName": "blgchain", - "chainId": 12321, - "networkId": 12321 - }, - { - "name": "Step Testnet", - "title": "Step Test Network", - "chain": "STEP", - "icon": "step", - "rpc": [ - "https://rpc.testnet.step.network" - ], - "faucets": [ - "https://faucet.step.network" - ], - "nativeCurrency": { - "name": "FITFI", - "symbol": "FITFI", - "decimals": 18 - }, - "infoURL": "https://step.network", - "shortName": "steptest", - "chainId": 12345, - "networkId": 12345, - "explorers": [ - { - "name": "StepScan", - "url": "https://testnet.stepscan.io", - "icon": "step", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-43113" - } - }, - { - "name": "SPS", - "chain": "SPS", - "rpc": [ - "https://rpc.ssquad.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 - }, - "infoURL": "https://ssquad.games/", - "shortName": "SPS", - "chainId": 13000, - "networkId": 13000, - "explorers": [ - { - "name": "SPS Explorer", - "url": "http://spsscan.ssquad.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "Credit Smartchain Mainnet", - "chain": "CREDIT", - "rpc": [ - "https://mainnet-rpc.cscscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://creditsmartchain.com", - "shortName": "Credit", - "chainId": 13308, - "networkId": 1, - "icon": "credit", - "explorers": [ - { - "name": "CSC Scan", - "url": "https://explorer.cscscan.io", - "icon": "credit", - "standard": "EIP3091" - } - ] - }, - { - "name": "Susono", - "chain": "SUS", - "rpc": [ - "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Susono", - "symbol": "OPN", - "decimals": 18 - }, - "infoURL": "", - "shortName": "sus", - "chainId": 13812, - "networkId": 13812, - "explorers": [ - { - "name": "Susono", - "url": "http://explorer.opn.network", - "standard": "none" - } - ] - }, - { - "name": "SPS Testnet", - "chain": "SPS-Testnet", - "rpc": [ - "https://www.3sps.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECG", - "symbol": "ECG", - "decimals": 18 - }, - "infoURL": "https://ssquad.games/", - "shortName": "SPS-Test", - "chainId": 14000, - "networkId": 14000, - "explorers": [ - { - "name": "SPS Test Explorer", - "url": "https://explorer.3sps.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "AirDAO Mainnet", - "chain": "ambnet", - "icon": "airdao", - "rpc": [ - "https://network.ambrosus.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 - }, - "infoURL": "https://airdao.io", - "shortName": "airdao", - "chainId": 16718, - "networkId": 16718, - "explorers": [ - { - "name": "AirDAO Network Explorer", - "url": "https://airdao.io/explorer", - "standard": "none" - } - ] - }, - { - "name": "Frontier of Dreams Testnet", - "chain": "Game Network", - "rpc": [ - "https://rpc.fod.games/" - ], - "nativeCurrency": { - "name": "ZKST", - "symbol": "ZKST", - "decimals": 18 - }, - "faucets": [], - "shortName": "ZKST", - "chainId": 18000, - "networkId": 18000, - "infoURL": "https://goexosphere.com", - "explorers": [ - { - "name": "Game Network", - "url": "https://explorer.fod.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proof Of Memes", - "title": "Proof Of Memes Mainnet", - "chain": "POM", - "icon": "pom", - "rpc": [ - "https://mainnet-rpc.memescan.io", - "https://mainnet-rpc2.memescan.io", - "https://mainnet-rpc3.memescan.io", - "https://mainnet-rpc4.memescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Proof Of Memes", - "symbol": "POM", - "decimals": 18 - }, - "infoURL": "https://proofofmemes.org", - "shortName": "pom", - "chainId": 18159, - "networkId": 18159, - "explorers": [ - { - "name": "explorer-proofofmemes", - "url": "https://memescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "HOME Verse Mainnet", - "chain": "HOME Verse", - "icon": "home_verse", - "rpc": [ - "https://rpc.mainnet.oasys.homeverse.games/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.homeverse.games/", - "shortName": "HMV", - "chainId": 19011, - "networkId": 19011, - "explorers": [ - { - "name": "HOME Verse Explorer", - "url": "https://explorer.oasys.homeverse.games", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Callisto Testnet", - "chain": "CLO", - "rpc": [ - "https://testnet-rpc.callisto.network/" - ], - "faucets": [ - "https://faucet.callisto.network/" - ], - "nativeCurrency": { - "name": "Callisto", - "symbol": "CLO", - "decimals": 18 - }, - "infoURL": "https://callisto.network", - "shortName": "CLOTestnet", - "chainId": 20729, - "networkId": 79 - }, - { - "name": "P12 Chain", - "chain": "P12", - "icon": "p12", - "rpc": [ - "https://rpc-chain.p12.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hooked P2", - "symbol": "hP2", - "decimals": 18 - }, - "infoURL": "https://p12.network", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "shortName": "p12", - "chainId": 20736, - "networkId": 20736, - "explorers": [ - { - "name": "P12 Chain Explorer", - "url": "https://explorer.p12.games", - "standard": "EIP3091" - } - ] - }, - { - "name": "AirDAO Testnet", - "chain": "ambnet-test", - "icon": "airdao", - "rpc": [ - "https://network.ambrosus-test.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Amber", - "symbol": "AMB", - "decimals": 18 - }, - "infoURL": "https://testnet.airdao.io", - "shortName": "airdao-test", - "chainId": 22040, - "networkId": 22040, - "explorers": [ - { - "name": "AirDAO Network Explorer", - "url": "https://testnet.airdao.io/explorer", - "standard": "none" - } - ] - }, - { - "name": "MAP Protocol", - "chain": "MAPO", - "icon": "map", - "rpc": [ - "https://rpc.maplabs.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MAPO", - "symbol": "MAPO", - "decimals": 18 - }, - "infoURL": "https://mapprotocol.io/", - "shortName": "mapo", - "chainId": 22776, - "networkId": 22776, - "slip44": 60, - "explorers": [ - { - "name": "maposcan", - "url": "https://maposcan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Opside Testnet", - "chain": "Opside", - "rpc": [ - "https://testrpc.opside.network" - ], - "faucets": [ - "https://faucet.opside.network" - ], - "nativeCurrency": { - "name": "IDE", - "symbol": "IDE", - "decimals": 18 - }, - "infoURL": "https://opside.network", - "shortName": "opside", - "chainId": 23118, - "networkId": 23118, - "icon": "opside", - "explorers": [ - { - "name": "opsideInfo", - "url": "https://opside.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oasis Sapphire", - "chain": "Sapphire", - "icon": "oasis", - "rpc": [ - "https://sapphire.oasis.io", - "wss://sapphire.oasis.io/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sapphire Rose", - "symbol": "ROSE", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/sapphire", - "shortName": "sapphire", - "chainId": 23294, - "networkId": 23294, - "explorers": [ - { - "name": "Oasis Sapphire Explorer", - "url": "https://explorer.sapphire.oasis.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oasis Sapphire Testnet", - "chain": "Sapphire", - "icon": "oasis", - "rpc": [ - "https://testnet.sapphire.oasis.dev", - "wss://testnet.sapphire.oasis.dev/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sapphire Test Rose", - "symbol": "TEST", - "decimals": 18 - }, - "infoURL": "https://docs.oasis.io/dapp/sapphire", - "shortName": "sapphire-testnet", - "chainId": 23295, - "networkId": 23295, - "explorers": [ - { - "name": "Oasis Sapphire Testnet Explorer", - "url": "https://testnet.explorer.sapphire.oasis.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hammer Chain Mainnet", - "chain": "HammerChain", - "rpc": [ - "https://www.hammerchain.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "GOLDT", - "symbol": "GOLDT", - "decimals": 18 - }, - "infoURL": "https://www.hammerchain.io", - "shortName": "GOLDT", - "chainId": 25888, - "networkId": 25888, - "explorers": [ - { - "name": "Hammer Chain Explorer", - "url": "https://www.hammerchain.io", - "standard": "none" - } - ] - }, - { - "name": "Bitkub Chain Testnet", - "chain": "BKC", - "icon": "bkc", - "rpc": [ - "https://rpc-testnet.bitkubchain.io", - "wss://wss-testnet.bitkubchain.io" - ], - "faucets": [ - "https://faucet.bitkubchain.com" - ], - "nativeCurrency": { - "name": "Bitkub Coin", - "symbol": "tKUB", - "decimals": 18 - }, - "infoURL": "https://www.bitkubchain.com/", - "shortName": "bkct", - "chainId": 25925, - "networkId": 25925, - "explorers": [ - { - "name": "bkcscan-testnet", - "url": "https://testnet.bkcscan.com", - "standard": "none", - "icon": "bkc" - } - ] - }, - { - "name": "Hertz Network Mainnet", - "chain": "HTZ", - "rpc": [ - "https://mainnet-rpc.hertzscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hertz", - "symbol": "HTZ", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.hertz-network.com", - "shortName": "HTZ", - "chainId": 26600, - "networkId": 26600, - "icon": "hertz-network", - "explorers": [ - { - "name": "Hertz Scan", - "url": "https://hertzscan.com", - "icon": "hertz-network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Optimism Bedrock (Goerli Alpha Testnet)", - "chain": "ETH", - "rpc": [ - "https://alpha-1-replica-0.bedrock-goerli.optimism.io", - "https://alpha-1-replica-1.bedrock-goerli.optimism.io", - "https://alpha-1-replica-2.bedrock-goerli.optimism.io", - "https://alpha-1-replica-2.bedrock-goerli.optimism.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://community.optimism.io/docs/developers/bedrock", - "shortName": "obgor", - "chainId": 28528, - "networkId": 28528, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.com/optimism/bedrock-alpha", - "standard": "EIP3091" - } - ] - }, - { - "name": "CloudTx Mainnet", - "chain": "CLD", - "icon": "cloudtx", - "rpc": [ - "https://mainnet-rpc.cloudtx.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 - }, - "infoURL": "https://cloudtx.finance", - "shortName": "CLDTX", - "chainId": 31223, - "networkId": 31223, - "explorers": [ - { - "name": "cloudtxscan", - "url": "https://scan.cloudtx.finance", - "standard": "EIP3091" - } - ] - }, - { - "name": "CloudTx Testnet", - "chain": "CloudTx", - "icon": "cloudtx", - "rpc": [ - "https://testnet-rpc.cloudtx.finance" - ], - "faucets": [ - "https://faucet.cloudtx.finance" - ], - "nativeCurrency": { - "name": "CloudTx", - "symbol": "CLD", - "decimals": 18 - }, - "infoURL": "https://cloudtx.finance/", - "shortName": "CLD", - "chainId": 31224, - "networkId": 31224, - "explorers": [ - { - "name": "cloudtxexplorer", - "url": "https://explorer.cloudtx.finance", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Wallaby testnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://wallaby.node.glif.io/rpc/v1" - ], - "faucets": [ - "https://wallaby.yoga/#faucet" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-wallaby", - "chainId": 31415, - "networkId": 31415, - "slip44": 1, - "explorers": [] - }, - { - "name": "Aves Mainnet", - "chain": "AVS", - "rpc": [ - "https://rpc.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aves", - "symbol": "AVS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://avescoin.io", - "shortName": "avs", - "chainId": 33333, - "networkId": 33333, - "icon": "aves", - "explorers": [ - { - "name": "avescan", - "url": "https://avescan.io", - "icon": "avescan", - "standard": "EIP3091" - } - ] - }, - { - "name": "J2O Taro", - "chain": "TARO", - "rpc": [ - "https://rpc.j2o.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "TARO Coin", - "symbol": "taro", - "decimals": 18 - }, - "infoURL": "https://j2o.io", - "shortName": "j2o", - "chainId": 35011, - "networkId": 35011, - "explorers": [ - { - "name": "J2O Taro Explorer", - "url": "https://exp.j2o.io", - "icon": "j2otaro", - "standard": "EIP3091" - } - ] - }, - { - "name": "OHO Mainnet", - "chain": "OHO", - "rpc": [ - "https://mainnet.oho.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "OHO", - "symbol": "OHO", - "decimals": 18 - }, - "infoURL": "https://oho.ai", - "shortName": "oho", - "chainId": 39815, - "networkId": 39815, - "icon": "oho", - "explorers": [ - { - "name": "ohoscan", - "url": "https://ohoscan.com", - "icon": "ohoscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Opulent-X BETA", - "chainId": 41500, - "shortName": "ox-beta", - "chain": "Opulent-X", - "networkId": 41500, - "nativeCurrency": { - "name": "Oxyn Gas", - "symbol": "OXYN", - "decimals": 18 - }, - "rpc": [ - "https://connect.opulent-x.com" - ], - "faucets": [], - "infoURL": "https://beta.opulent-x.com", - "explorers": [ - { - "name": "Opulent-X BETA Explorer", - "url": "https://explorer.opulent-x.com", - "standard": "none" - } - ] - }, - { - "name": "Boba Avax", - "chain": "Boba Avax", - "rpc": [ - "https://avax.boba.network", - "wss://wss.avax.boba.network", - "https://replica.avax.boba.network", - "wss://replica-wss.avax.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://docs.boba.network/for-developers/network-avalanche", - "shortName": "bobaavax", - "chainId": 43288, - "networkId": 43288, - "explorers": [ - { - "name": "Boba Avax Explorer", - "url": "https://blockexplorer.avax.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Frenchain", - "chain": "fren", - "rpc": [ - "https://rpc-02.frenscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "FREN", - "symbol": "FREN", - "decimals": 18 - }, - "infoURL": "https://frenchain.app", - "shortName": "FREN", - "chainId": 44444, - "networkId": 44444, - "icon": "fren", - "explorers": [ - { - "name": "blockscout", - "url": "https://frenscan.io", - "icon": "fren", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fusion Testnet", - "chain": "FSN", - "icon": "fusion", - "rpc": [ - "https://testnet.fusionnetwork.io", - "wss://testnet.fusionnetwork.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet Fusion", - "symbol": "T-FSN", - "decimals": 18 - }, - "infoURL": "https://fusion.org", - "shortName": "tfsn", - "chainId": 46688, - "networkId": 46688, - "slip44": 288, - "explorers": [ - { - "name": "fsnscan", - "url": "https://testnet.fsnscan.com", - "icon": "fsnscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Floripa", - "title": "Wireshape Testnet Floripa", - "chain": "Wireshape", - "rpc": [ - "https://rpc-floripa.wireshape.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "WIRE", - "symbol": "WIRE", - "decimals": 18 - }, - "infoURL": "https://wireshape.org", - "shortName": "floripa", - "chainId": 49049, - "networkId": 49049, - "explorers": [ - { - "name": "Wire Explorer", - "url": "https://floripa-explorer.wireshape.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bifrost Testnet", - "title": "The Bifrost Testnet network", - "chain": "BFC", - "rpc": [ - "https://public-01.testnet.thebifrost.io/rpc", - "https://public-02.testnet.thebifrost.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bifrost", - "symbol": "BFC", - "decimals": 18 - }, - "infoURL": "https://thebifrost.io", - "shortName": "tbfc", - "chainId": 49088, - "networkId": 49088, - "icon": "bifrost", - "explorers": [ - { - "name": "explorer-thebifrost", - "url": "https://explorer.testnet.thebifrost.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Liveplex OracleEVM", - "chain": "Liveplex OracleEVM Network", - "rpc": [ - "https://rpc.oracle.liveplex.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "LOE", - "chainId": 50001, - "networkId": 50001, - "explorers": [] - }, - { - "name": "Sardis Mainnet", - "chain": "SRDX", - "icon": "sardis", - "rpc": [ - "https://mainnet-rpc.sardisnetwork.com" - ], - "faucets": [ - "https://faucet.sardisnetwork.com" - ], - "nativeCurrency": { - "name": "Sardis", - "symbol": "SRDX", - "decimals": 18 - }, - "infoURL": "https://mysardis.com", - "shortName": "SRDXm", - "chainId": 51712, - "networkId": 51712, - "explorers": [ - { - "name": "Sardis", - "url": "https://contract-mainnet.sardisnetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Haqq Chain Testnet", - "chain": "TestEdge2", - "rpc": [ - "https://rpc.eth.testedge2.haqq.network" - ], - "faucets": [ - "https://testedge2.haqq.network" - ], - "nativeCurrency": { - "name": "Islamic Coin", - "symbol": "ISLMT", - "decimals": 18 - }, - "infoURL": "https://islamiccoin.net", - "shortName": "ISLMT", - "chainId": 54211, - "networkId": 54211, - "explorers": [ - { - "name": "TestEdge HAQQ Explorer", - "url": "https://explorer.testedge2.haqq.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Boba BNB Mainnet", - "chain": "Boba BNB Mainnet", - "rpc": [ - "https://bnb.boba.network", - "wss://wss.bnb.boba.network", - "https://replica.bnb.boba.network", - "wss://replica-wss.bnb.boba.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnb", - "chainId": 56288, - "networkId": 56288, - "explorers": [ - { - "name": "Boba BNB block explorer", - "url": "https://blockexplorer.bnb.boba.network", - "standard": "none" - } - ] - }, - { - "name": "Etica Mainnet", - "chain": "Etica Protocol (ETI/EGAZ)", - "icon": "etica", - "rpc": [ - "https://eticamainnet.eticascan.org", - "https://eticamainnet.eticaprotocol.org" - ], - "faucets": [ - "http://faucet.etica-stats.org/" - ], - "nativeCurrency": { - "name": "EGAZ", - "symbol": "EGAZ", - "decimals": 18 - }, - "infoURL": "https://eticaprotocol.org", - "shortName": "Etica", - "chainId": 61803, - "networkId": 61803, - "explorers": [ - { - "name": "eticascan", - "url": "https://eticascan.org", - "standard": "EIP3091" - }, - { - "name": "eticastats", - "url": "http://explorer.etica-stats.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "DoKEN Super Chain Mainnet", - "chain": "DoKEN Super Chain", - "rpc": [ - "https://sgrpc.doken.dev", - "https://nyrpc.doken.dev", - "https://ukrpc.doken.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "DoKEN", - "symbol": "DKN", - "decimals": 18 - }, - "infoURL": "https://doken.dev/", - "shortName": "DoKEN", - "chainId": 61916, - "networkId": 61916, - "icon": "doken", - "explorers": [ - { - "name": "DSC Scan", - "url": "https://explore.doken.dev", - "icon": "doken", - "standard": "EIP3091" - } - ] - }, - { - "name": "SiriusNet", - "chain": "SIN", - "status": "deprecated", - "rpc": [ - "https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MCD", - "symbol": "MCD", - "decimals": 18 - }, - "infoURL": "https://macaucasinolisboa.xyz", - "shortName": "mcl", - "chainId": 67390, - "networkId": 67390, - "explorers": [ - { - "name": "siriusnetscan", - "url": "https://siriusnet.tryethernal.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vention Smart Chain Mainnet", - "chain": "VSC", - "icon": "vention", - "rpc": [ - "https://mainnet-rpc.vention.network" - ], - "faucets": [ - "https://faucet.vention.network" - ], - "nativeCurrency": { - "name": "VNT", - "symbol": "VNT", - "decimals": 18 - }, - "infoURL": "https://ventionscan.io", - "shortName": "vscm", - "chainId": 77612, - "networkId": 77612, - "explorers": [ - { - "name": "ventionscan", - "url": "https://ventionscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gold Smart Chain Testnet", - "chain": "STAND", - "icon": "standTestnet", - "rpc": [ - "https://rpc-testnet.goldsmartchain.com" - ], - "faucets": [ - "https://faucet.goldsmartchain.com" - ], - "nativeCurrency": { - "name": "Standard in Gold", - "symbol": "STAND", - "decimals": 18 - }, - "infoURL": "https://goldsmartchain.com", - "shortName": "STANDt", - "chainId": 79879, - "networkId": 79879, - "explorers": [ - { - "name": "Gold Smart Chain", - "url": "https://testnet.goldsmartchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Base Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.base.org" - ], - "faucets": [ - "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" - ], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "basegor", - "chainId": 84531, - "networkId": 84531, - "explorers": [ - { - "name": "basescan", - "url": "https://goerli.basescan.org", - "standard": "none" - }, - { - "name": "basescout", - "url": "https://base-goerli.blockscout.com", - "standard": "none" - } - ] - }, - { - "name": "Chiliz Scoville Testnet", - "chain": "CHZ", - "rpc": [ - "https://scoville-rpc.chiliz.com" - ], - "faucets": [ - "https://scoville-faucet.chiliz.com" - ], - "nativeCurrency": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 - }, - "icon": "chiliz", - "infoURL": "https://www.chiliz.com/en/chain", - "shortName": "chz", - "chainId": 88880, - "networkId": 88880, - "explorers": [ - { - "name": "scoville-explorer", - "url": "https://scoville-explorer.chiliz.com", - "standard": "none" - } - ] - }, - { - "name": "Beverly Hills", - "title": "Ethereum multi-client Verkle Testnet Beverly Hills", - "chain": "ETH", - "rpc": [ - "https://rpc.beverlyhills.ethdevops.io:8545" - ], - "faucets": [ - "https://faucet.beverlyhills.ethdevops.io" - ], - "nativeCurrency": { - "name": "Beverly Hills Testnet Ether", - "symbol": "BVE", - "decimals": 18 - }, - "infoURL": "https://beverlyhills.ethdevops.io", - "shortName": "bvhl", - "chainId": 90210, - "networkId": 90210, - "status": "incubating", - "explorers": [ - { - "name": "Beverly Hills explorer", - "url": "https://explorer.beverlyhills.ethdevops.io", - "standard": "none" - } - ] - }, - { - "name": "Lambda Testnet", - "chain": "Lambda", - "rpc": [ - "https://evm.lambda.top/" - ], - "faucets": [ - "https://faucet.lambda.top" - ], - "nativeCurrency": { - "name": "test-Lamb", - "symbol": "LAMB", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "lambda-testnet", - "chainId": 92001, - "networkId": 92001, - "icon": "lambda", - "explorers": [ - { - "name": "Lambda EVM Explorer", - "url": "https://explorer.lambda.top", - "standard": "EIP3091", - "icon": "lambda" - } - ] - }, - { - "name": "Boba BNB Mainnet Old", - "chain": "Boba BNB Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Boba Token", - "symbol": "BOBA", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaBnbOld", - "chainId": 97288, - "networkId": 97288, - "explorers": [ - { - "name": "Boba BNB block explorer", - "url": "https://blockexplorer.bnb.boba.network", - "standard": "none" - } - ], - "status": "deprecated" - }, - { - "name": "VeChain", - "chain": "VeChain", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 - }, - "infoURL": "https://vechain.org", - "shortName": "vechain", - "chainId": 100009, - "networkId": 100009, - "explorers": [ - { - "name": "VeChain Stats", - "url": "https://vechainstats.com", - "standard": "none" - }, - { - "name": "VeChain Explorer", - "url": "https://explore.vechain.org", - "standard": "none" - } - ] - }, - { - "name": "VeChain Testnet", - "chain": "VeChain", - "rpc": [], - "faucets": [ - "https://faucet.vecha.in" - ], - "nativeCurrency": { - "name": "VeChain", - "symbol": "VET", - "decimals": 18 - }, - "infoURL": "https://vechain.org", - "shortName": "vechain-testnet", - "chainId": 100010, - "networkId": 100010, - "explorers": [ - { - "name": "VeChain Explorer", - "url": "https://explore-testnet.vechain.org", - "standard": "none" - } - ] - }, - { - "name": "Deprecated Chiado Testnet", - "chain": "CHI1", - "icon": "gnosis", - "rpc": [ - "https://rpc-chiado.gnosistestnet.com" - ], - "faucets": [ - "https://gnosisfaucet.com" - ], - "nativeCurrency": { - "name": "Chiado xDAI", - "symbol": "xDAI", - "decimals": 18 - }, - "infoURL": "https://docs.gnosischain.com", - "shortName": "chi1", - "chainId": 100100, - "networkId": 100100, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout-chiado.gnosistestnet.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "status": "deprecated" - }, - { - "name": "Soverun Testnet", - "chain": "SVRN", - "icon": "soverunTestnet", - "rpc": [ - "https://testnet-rpc.soverun.com" - ], - "faucets": [ - "https://faucet.soverun.com" - ], - "nativeCurrency": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 - }, - "infoURL": "https://soverun.com", - "shortName": "SVRNt", - "chainId": 101010, - "networkId": 101010, - "explorers": [ - { - "name": "Soverun", - "url": "https://testnet.soverun.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Condor Test Network", - "chain": "CONDOR", - "icon": "condor", - "rpc": [ - "https://testnet.condor.systems/rpc" - ], - "faucets": [ - "https://faucet.condor.systems" - ], - "nativeCurrency": { - "name": "Condor Native Token", - "symbol": "CONDOR", - "decimals": 18 - }, - "infoURL": "https://condor.systems", - "shortName": "condor", - "chainId": 188881, - "networkId": 188881, - "explorers": [ - { - "name": "CondorScan", - "url": "https://explorer.condor.systems", - "standard": "none" - } - ] - }, - { - "name": "Milkomeda A1 Testnet", - "chain": "milkTAlgo", - "icon": "milkomeda", - "rpc": [ - "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "milkTAlgo", - "symbol": "mTAlgo", - "decimals": 18 - }, - "infoURL": "https://milkomeda.com", - "shortName": "milkTAlgo", - "chainId": 200202, - "networkId": 200202, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", - "standard": "none" - } - ] - }, - { - "name": "Mythical Chain", - "chain": "MYTH", - "rpc": [ - "https://chain-rpc.mythicalgames.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Mythos", - "symbol": "MYTH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://mythicalgames.com/", - "shortName": "myth", - "chainId": 201804, - "networkId": 201804, - "icon": "mythical", - "explorers": [ - { - "name": "Mythical Chain Explorer", - "url": "https://explorer.mythicalgames.com", - "icon": "mythical", - "standard": "EIP3091" - } - ] - }, - { - "name": "Decimal Smart Chain Testnet", - "chain": "tDSC", - "rpc": [ - "https://testnet-val.decimalchain.com/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decimal", - "symbol": "tDEL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://decimalchain.com", - "shortName": "tDSC", - "chainId": 202020, - "networkId": 202020, - "icon": "dsc", - "explorers": [ - { - "name": "DSC Explorer Testnet", - "url": "https://testnet.explorer.decimalchain.com", - "icon": "dsc", - "standard": "EIP3091" - } - ] - }, - { - "name": "Jellie", - "title": "Twala Testnet Jellie", - "shortName": "twl-jellie", - "chain": "ETH", - "chainId": 202624, - "networkId": 202624, - "icon": "twala", - "nativeCurrency": { - "name": "Twala Coin", - "symbol": "TWL", - "decimals": 18 - }, - "rpc": [ - "https://jellie-rpc.twala.io/", - "wss://jellie-rpc-wss.twala.io/" - ], - "faucets": [], - "infoURL": "https://twala.io/", - "explorers": [ - { - "name": "Jellie Blockchain Explorer", - "url": "https://jellie.twala.io", - "standard": "EIP3091", - "icon": "twala" - } - ] - }, - { - "name": "Mas Mainnet", - "chain": "MAS", - "rpc": [ - "http://node.masnet.ai:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Master Bank", - "symbol": "MAS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://masterbank.org", - "shortName": "mas", - "chainId": 220315, - "networkId": 220315, - "icon": "mas", - "explorers": [ - { - "name": "explorer masnet", - "url": "https://explorer.masnet.ai", - "icon": "explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Saakuru Testnet", - "chain": "Saakuru", - "icon": "saakuru", - "rpc": [ - "https://rpc-testnet.saakuru.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://saakuru.network", - "shortName": "saakuru-testnet", - "chainId": 247253, - "networkId": 247253, - "explorers": [ - { - "name": "saakuru-explorer-testnet", - "url": "https://explorer-testnet.saakuru.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "CMP-Mainnet", - "chain": "CMP", - "rpc": [ - "https://mainnet.block.caduceus.foundation", - "wss://mainnet.block.caduceus.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Caduceus Token", - "symbol": "CMP", - "decimals": 18 - }, - "infoURL": "https://caduceus.foundation/", - "shortName": "cmp-mainnet", - "chainId": 256256, - "networkId": 256256, - "explorers": [ - { - "name": "Mainnet Scan", - "url": "https://mainnet.scan.caduceus.foundation", - "standard": "none" - } - ] - }, - { - "name": "Gear Zero Network Testnet", - "chain": "GearZero", - "rpc": [ - "https://gzn-test.linksme.info" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gear Zero Network Native Token", - "symbol": "GZN", - "decimals": 18 - }, - "infoURL": "https://token.gearzero.ca/testnet", - "shortName": "gz-testnet", - "chainId": 266256, - "networkId": 266256, - "slip44": 266256, - "explorers": [] - }, - { - "name": "Filecoin - Calibration testnet", - "chain": "FIL", - "icon": "filecoin", - "rpc": [ - "https://api.calibration.node.glif.io/rpc/v1" - ], - "faucets": [ - "https://faucet.calibration.fildev.network/" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-calibration", - "chainId": 314159, - "networkId": 314159, - "slip44": 1, - "explorers": [ - { - "name": "Filscan - Calibration", - "url": "https://calibration.filscan.io", - "standard": "none" - }, - { - "name": "Filscout - Calibration", - "url": "https://calibration.filscout.com/en", - "standard": "none" - } - ] - }, - { - "name": "Oone Chain Testnet", - "chain": "OONE", - "rpc": [ - "https://blockchain-test.adigium.world" - ], - "faucets": [ - "https://apps-test.adigium.com/faucet" - ], - "nativeCurrency": { - "name": "Oone", - "symbol": "tOONE", - "decimals": 18 - }, - "infoURL": "https://oone.world", - "shortName": "oonetest", - "chainId": 333777, - "networkId": 333777, - "explorers": [ - { - "name": "expedition", - "url": "https://explorer-test.adigium.world", - "standard": "none" - } - ] - }, - { - "name": "Metal C-Chain", - "chain": "Metal", - "rpc": [ - "https://api.metalblockchain.org/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 - }, - "infoURL": "https://www.metalblockchain.org/", - "shortName": "metal", - "chainId": 381931, - "networkId": 381931, - "slip44": 9005, - "explorers": [ - { - "name": "metalscan", - "url": "https://metalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metal Tahoe C-Chain", - "chain": "Metal", - "rpc": [ - "https://tahoe.metalblockchain.org/ext/bc/C/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metal", - "symbol": "METAL", - "decimals": 18 - }, - "infoURL": "https://www.metalblockchain.org/", - "shortName": "Tahoe", - "chainId": 381932, - "networkId": 381932, - "slip44": 9005, - "explorers": [ - { - "name": "metalscan", - "url": "https://tahoe.metalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kekchain", - "chain": "kek", - "rpc": [ - "https://mainnet.kekchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "KEK", - "symbol": "KEK", - "decimals": 18 - }, - "infoURL": "https://kekchain.com", - "shortName": "KEK", - "chainId": 420420, - "networkId": 103090, - "icon": "kek", - "explorers": [ - { - "name": "blockscout", - "url": "https://mainnet-explorer.kekchain.com", - "icon": "kek", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kekchain (kektest)", - "chain": "kek", - "rpc": [ - "https://testnet.kekchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tKEK", - "symbol": "tKEK", - "decimals": 18 - }, - "infoURL": "https://kekchain.com", - "shortName": "tKEK", - "chainId": 420666, - "networkId": 1, - "icon": "kek", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.kekchain.com", - "icon": "kek", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fastex Chain testnet", - "chain": "FTN", - "title": "Fastex Chain testnet", - "rpc": [ - "https://rpc.testnet.fastexchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "infoURL": "https://fastex.com", - "shortName": "ftn", - "chainId": 424242, - "networkId": 424242, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.ftnscan.com", - "standard": "none" - } - ] - }, - { - "name": "Dexalot Subnet", - "chain": "DEXALOT", - "icon": "dexalot", - "rpc": [ - "https://subnets.avax.network/dexalot/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dexalot", - "symbol": "ALOT", - "decimals": 18 - }, - "infoURL": "https://dexalot.com", - "shortName": "dexalot", - "chainId": 432204, - "networkId": 432204, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets.avax.network/dexalot", - "standard": "EIP3091" - } - ] - }, - { - "name": "Scroll", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr", - "chainId": 534352, - "networkId": 534352, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - } - }, - { - "name": "Scroll Alpha Testnet", - "chain": "ETH", - "status": "incubating", - "rpc": [ - "https://alpha-rpc.scroll.io/l2" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-alpha", - "chainId": 534353, - "networkId": 534353, - "explorers": [ - { - "name": "Scroll Alpha Testnet Block Explorer", - "url": "https://blockscout.scroll.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [] - } - }, - { - "name": "Scroll Pre-Alpha Testnet", - "chain": "ETH", - "rpc": [ - "https://prealpha-rpc.scroll.io/l2" - ], - "faucets": [ - "https://prealpha.scroll.io/faucet" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "TSETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-prealpha", - "chainId": 534354, - "networkId": 534354, - "explorers": [ - { - "name": "Scroll L2 Block Explorer", - "url": "https://l2scan.scroll.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bear Network Chain Mainnet", - "chain": "BRNKC", - "icon": "brnkc", - "rpc": [ - "https://brnkc-mainnet.bearnetwork.net", - "https://brnkc-mainnet1.bearnetwork.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bear Network Chain Native Token", - "symbol": "BRNKC", - "decimals": 18 - }, - "infoURL": "https://bearnetwork.net", - "shortName": "BRNKC", - "chainId": 641230, - "networkId": 641230, - "explorers": [ - { - "name": "brnkscan", - "url": "https://brnkscan.bearnetwork.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bear Network Chain Testnet", - "chain": "BRNKCTEST", - "icon": "brnkc", - "rpc": [ - "https://brnkc-test.bearnetwork.net" - ], - "faucets": [ - "https://faucet.bearnetwork.net" - ], - "nativeCurrency": { - "name": "Bear Network Chain Testnet Token", - "symbol": "tBRNKC", - "decimals": 18 - }, - "infoURL": "https://bearnetwork.net", - "shortName": "BRNKCTEST", - "chainId": 751230, - "networkId": 751230, - "explorers": [ - { - "name": "brnktestscan", - "url": "https://brnktest-scan.bearnetwork.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "OctaSpace", - "chain": "OCTA", - "rpc": [ - "https://rpc.octa.space", - "wss://rpc.octa.space" - ], - "faucets": [], - "nativeCurrency": { - "name": "OctaSpace", - "symbol": "OCTA", - "decimals": 18 - }, - "infoURL": "https://octa.space", - "shortName": "octa", - "chainId": 800001, - "networkId": 800001, - "icon": "octaspace", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.octa.space", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Mainnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://api.posichain.org", - "https://api.s0.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-s0", - "chainId": 900000, - "networkId": 900000, - "explorers": [ - { - "name": "Posichain Explorer", - "url": "https://explorer.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Testnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://api.s0.t.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-t-s0", - "chainId": 910000, - "networkId": 910000, - "explorers": [ - { - "name": "Posichain Explorer Testnet", - "url": "https://explorer-testnet.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Devnet Shard 0", - "chain": "PSC", - "rpc": [ - "https://api.s0.d.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-d-s0", - "chainId": 920000, - "networkId": 920000, - "explorers": [ - { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Posichain Devnet Shard 1", - "chain": "PSC", - "rpc": [ - "https://api.s1.d.posichain.org" - ], - "faucets": [ - "https://faucet.posichain.org/" - ], - "nativeCurrency": { - "name": "Posichain Native Token", - "symbol": "POSI", - "decimals": 18 - }, - "infoURL": "https://posichain.org", - "shortName": "psc-d-s1", - "chainId": 920001, - "networkId": 920001, - "explorers": [ - { - "name": "Posichain Explorer Devnet", - "url": "https://explorer-devnet.posichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "FNCY Testnet", - "chain": "FNCY", - "rpc": [ - "https://fncy-testnet-seed.fncy.world" - ], - "faucets": [ - "https://faucet-testnet.fncy.world" - ], - "nativeCurrency": { - "name": "FNCY", - "symbol": "FNCY", - "decimals": 18 - }, - "infoURL": "https://fncyscan-testnet.fncy.world", - "shortName": "tFNCY", - "chainId": 923018, - "networkId": 923018, - "icon": "fncy", - "explorers": [ - { - "name": "fncy scan testnet", - "url": "https://fncyscan-testnet.fncy.world", - "icon": "fncy", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zhejiang", - "chain": "ETH", - "rpc": [ - "https://rpc.zhejiang.ethpandaops.io" - ], - "faucets": [ - "https://faucet.zhejiang.ethpandaops.io", - "https://zhejiang-faucet.pk910.de" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zhejiang.ethpandaops.io", - "shortName": "zhejiang", - "chainId": 1337803, - "networkId": 1337803, - "icon": "ethereum", - "explorers": [ - { - "name": "Zhejiang Explorer", - "url": "https://zhejiang.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "Plian Mainnet Main", - "chain": "Plian", - "rpc": [ - "https://mainnet.plian.io/pchain" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 - }, - "infoURL": "https://plian.org/", - "shortName": "plian-mainnet", - "chainId": 2099156, - "networkId": 2099156, - "explorers": [ - { - "name": "piscan", - "url": "https://piscan.plian.org/pchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Butterfly testnet", - "chain": "FIL", - "status": "incubating", - "rpc": [], - "faucets": [ - "https://faucet.butterfly.fildev.network" - ], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-butterfly", - "icon": "filecoin", - "chainId": 3141592, - "networkId": 3141592, - "slip44": 1, - "explorers": [] - }, - { - "name": "Imversed Mainnet", - "chain": "Imversed", - "rpc": [ - "https://jsonrpc.imversed.network", - "https://ws-jsonrpc.imversed.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 - }, - "infoURL": "https://imversed.com", - "shortName": "imversed", - "chainId": 5555555, - "networkId": 5555555, - "icon": "imversed", - "explorers": [ - { - "name": "Imversed EVM explorer (Blockscout)", - "url": "https://txe.imversed.network", - "icon": "imversed", - "standard": "EIP3091" - }, - { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-c.imversed.com", - "icon": "imversed", - "standard": "none" - } - ] - }, - { - "name": "Imversed Testnet", - "chain": "Imversed", - "rpc": [ - "https://jsonrpc-test.imversed.network", - "https://ws-jsonrpc-test.imversed.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Imversed Token", - "symbol": "IMV", - "decimals": 18 - }, - "infoURL": "https://imversed.com", - "shortName": "imversed-testnet", - "chainId": 5555558, - "networkId": 5555558, - "icon": "imversed", - "explorers": [ - { - "name": "Imversed EVM Explorer (Blockscout)", - "url": "https://txe-test.imversed.network", - "icon": "imversed", - "standard": "EIP3091" - }, - { - "name": "Imversed Cosmos Explorer (Big Dipper)", - "url": "https://tex-t.imversed.com", - "icon": "imversed", - "standard": "none" - } - ] - }, - { - "name": "Saakuru Mainnet", - "chain": "Saakuru", - "icon": "saakuru", - "rpc": [ - "https://rpc.saakuru.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://saakuru.network", - "shortName": "saakuru", - "chainId": 7225878, - "networkId": 7225878, - "explorers": [ - { - "name": "saakuru-explorer", - "url": "https://explorer.saakuru.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpenVessel", - "chain": "VSL", - "icon": "vsl", - "rpc": [ - "https://mainnet-external.openvessel.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Vessel ETH", - "symbol": "VETH", - "decimals": 18 - }, - "infoURL": "https://www.openvessel.io", - "shortName": "vsl", - "chainId": 7355310, - "networkId": 7355310, - "explorers": [ - { - "name": "openvessel-mainnet", - "url": "https://mainnet-explorer.openvessel.io", - "standard": "none" - } - ] - }, - { - "name": "QL1 Testnet", - "chain": "QOM", - "status": "incubating", - "rpc": [ - "https://rpc.testnet.qom.one" - ], - "faucets": [ - "https://faucet.qom.one" - ], - "nativeCurrency": { - "name": "Shiba Predator", - "symbol": "QOM", - "decimals": 18 - }, - "infoURL": "https://qom.one", - "shortName": "tqom", - "chainId": 7668378, - "networkId": 7668378, - "icon": "qom", - "explorers": [ - { - "name": "QL1 Testnet Explorer", - "url": "https://testnet.qom.one", - "icon": "qom", - "standard": "EIP3091" - } - ] - }, - { - "name": "Plian Mainnet Subchain 1", - "chain": "Plian", - "rpc": [ - "https://mainnet.plian.io/child_0" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "PI", - "decimals": 18 - }, - "infoURL": "https://plian.org", - "shortName": "plian-mainnet-l2", - "chainId": 8007736, - "networkId": 8007736, - "explorers": [ - { - "name": "piscan", - "url": "https://piscan.plian.org/child_0", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-2099156", - "type": "L2" - } - }, - { - "name": "Plian Testnet Subchain 1", - "chain": "Plian", - "rpc": [ - "https://testnet.plian.io/child_test" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Token", - "symbol": "TPI", - "decimals": 18 - }, - "infoURL": "https://plian.org/", - "shortName": "plian-testnet-l2", - "chainId": 10067275, - "networkId": 10067275, - "explorers": [ - { - "name": "piscan", - "url": "https://testnet.plian.org/child_test", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-16658437", - "type": "L2" - } - }, - { - "name": "Soverun Mainnet", - "chain": "SVRN", - "icon": "soverun", - "rpc": [ - "https://mainnet-rpc.soverun.com" - ], - "faucets": [ - "https://faucet.soverun.com" - ], - "nativeCurrency": { - "name": "Soverun", - "symbol": "SVRN", - "decimals": 18 - }, - "infoURL": "https://soverun.com", - "shortName": "SVRNm", - "chainId": 10101010, - "networkId": 10101010, - "explorers": [ - { - "name": "Soverun", - "url": "https://explorer.soverun.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Anduschain Mainnet", - "chain": "anduschain", - "rpc": [ - "https://rpc.anduschain.io/rpc", - "wss://rpc.anduschain.io/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "DAON", - "symbol": "DEB", - "decimals": 18 - }, - "infoURL": "https://anduschain.io/", - "shortName": "anduschain-mainnet", - "chainId": 14288640, - "networkId": 14288640, - "explorers": [ - { - "name": "anduschain explorer", - "url": "https://explorer.anduschain.io", - "icon": "daon", - "standard": "none" - } - ] - }, - { - "name": "Plian Testnet Main", - "chain": "Plian", - "rpc": [ - "https://testnet.plian.io/testnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plian Testnet Token", - "symbol": "TPI", - "decimals": 18 - }, - "infoURL": "https://plian.org", - "shortName": "plian-testnet", - "chainId": 16658437, - "networkId": 16658437, - "explorers": [ - { - "name": "piscan", - "url": "https://testnet.plian.org/testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Excelon Mainnet", - "chain": "XLON", - "icon": "xlon", - "rpc": [ - "https://edgewallet1.xlon.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Excelon", - "symbol": "xlon", - "decimals": 18 - }, - "infoURL": "https://xlon.org", - "shortName": "xlon", - "chainId": 22052002, - "networkId": 22052002, - "explorers": [ - { - "name": "Excelon explorer", - "url": "https://explorer.excelon.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Excoincial Chain Volta-Testnet", - "chain": "TEXL", - "icon": "exl", - "rpc": [ - "https://testnet-rpc.exlscan.com" - ], - "faucets": [ - "https://faucet.exlscan.com" - ], - "nativeCurrency": { - "name": "TExlcoin", - "symbol": "TEXL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "exlvolta", - "chainId": 27082017, - "networkId": 27082017, - "explorers": [ - { - "name": "exlscan", - "url": "https://testnet-explorer.exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Excoincial Chain Mainnet", - "chain": "EXL", - "icon": "exl", - "rpc": [ - "https://rpc.exlscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Exlcoin", - "symbol": "EXL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "exl", - "chainId": 27082022, - "networkId": 27082022, - "explorers": [ - { - "name": "exlscan", - "url": "https://exlscan.com", - "icon": "exl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Flachain Mainnet", - "chain": "FLX", - "icon": "flacoin", - "rpc": [ - "https://flachain.flaexchange.top/" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Flacoin", - "symbol": "FLA", - "decimals": 18 - }, - "infoURL": "https://www.flaexchange.top", - "shortName": "fla", - "chainId": 29032022, - "networkId": 29032022, - "explorers": [ - { - "name": "FLXExplorer", - "url": "https://explorer.flaexchange.top", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filecoin - Local testnet", - "chain": "FIL", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "testnet filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filecoin.io", - "shortName": "filecoin-local", - "icon": "filecoin", - "chainId": 31415926, - "networkId": 31415926, - "slip44": 1, - "explorers": [] - }, - { - "name": "maistestsubnet", - "chain": "MAI", - "rpc": [ - "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "maistestsubnet", - "symbol": "MAI", - "decimals": 18 - }, - "infoURL": "", - "shortName": "mais", - "chainId": 43214913, - "networkId": 43214913, - "explorers": [ - { - "name": "maistesntet", - "url": "http://174.138.9.169:3006/?network=maistesntet", - "standard": "none" - } - ] - }, - { - "name": "Autonity Bakerloo (Thames) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-0", - "chainId": 65010000, - "networkId": 65010000, - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Piccadilly (Thames) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-0", - "chainId": 65100000, - "networkId": 65100000, - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Calypso NFT Hub (SKALE Testnet)", - "title": "Calypso NFT Hub Testnet", - "chain": "staging-utter-unripe-menkar", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-testnet", - "chainId": 344106930, - "networkId": 344106930, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com", - "icon": "calypso", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nebula Staging", - "chain": "staging-faint-slimy-achird", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird", - "wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird" - ], - "faucets": [], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-staging", - "chainId": 503129905, - "networkId": 503129905, - "explorers": [ - { - "name": "nebula", - "url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com", - "icon": "nebula", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nebula Mainnet", - "chain": "green-giddy-denebola", - "rpc": [ - "https://mainnet.skalenodes.com/v1/green-giddy-denebola", - "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" - ], - "faucets": [], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-mainnet", - "chainId": 1482601649, - "networkId": 1482601649, - "explorers": [ - { - "name": "nebula", - "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", - "icon": "nebula", - "standard": "EIP3091" - } - ] - }, - { - "name": "Calypso NFT Hub (SKALE)", - "title": "Calypso NFT Hub Mainnet", - "chain": "honorable-steel-rasalhague", - "rpc": [ - "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" - ], - "faucets": [ - "https://sfuel.dirtroad.dev" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-mainnet", - "chainId": 1564830818, - "networkId": 1564830818, - "explorers": [ - { - "name": "Blockscout", - "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", - "icon": "calypso", - "standard": "EIP3091" - } - ] - }, - { - "name": "Harmony Devnet Shard 0", - "chain": "Harmony", - "rpc": [ - "https://api.s1.ps.hmny.io", - "https://api.s1.ps.hmny.io" - ], - "faucets": [ - "http://dev.faucet.easynode.one/" - ], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-ps-s0", - "chainId": 1666900000, - "networkId": 1666900000, - "explorers": [ - { - "name": "Harmony Block Explorer", - "url": "https://explorer.ps.hmny.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Europa SKALE Chain", - "chain": "europa", - "icon": "europa", - "rpc": [ - "https://mainnet.skalenodes.com/v1/elated-tan-skat", - "wss://mainnet.skalenodes.com/v1/elated-tan-skat" - ], - "faucets": [ - "https://ruby.exchange/faucet.html", - "https://sfuel.mylilius.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa", - "chainId": 2046399126, - "networkId": 2046399126, - "explorers": [ - { - "name": "Blockscout", - "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://ruby.exchange/bridge.html" - } - ] - } - }, - { - "name": "Zeniq", - "chain": "ZENIQ", - "rpc": [ - "https://smart.zeniq.network:9545" - ], - "faucets": [ - "https://faucet.zeniq.net/" - ], - "nativeCurrency": { - "name": "Zeniq", - "symbol": "ZENIQ", - "decimals": 18 - }, - "infoURL": "https://www.zeniq.dev/", - "shortName": "zeniq", - "chainId": 383414847825, - "networkId": 383414847825, - "explorers": [ - { - "name": "zeniq-smart-chain-explorer", - "url": "https://smart.zeniq.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "PDC Mainnet", - "chain": "IPDC", - "rpc": [ - "https://mainnet.ipdc.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PDC", - "symbol": "PDC", - "decimals": 18 - }, - "infoURL": "https://ipdc.io", - "shortName": "ipdc", - "chainId": 666301171999, - "networkId": 666301171999, - "explorers": [ - { - "name": "ipdcscan", - "url": "https://scan.ipdc.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "AlveyChain Mainnet", - "chain": "ALV", - "rpc": [ - "https://elves-core1.alvey.io", - "https://elves-core2.alvey.io", - "https://elves-core3.alvey.io" - ], - "nativeCurrency": { - "name": "AlveyCoin", - "symbol": "ALV", - "decimals": 18 - }, - "infoURL": "https://www.alveychain.com/", - "shortName": "ALV", - "chainId": 3797, - "networkId": 3797, - "explorers": [ - { - "name": "AlveyScan", - "url": "https://alveyscan.com", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1685016287246.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1685016249560.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1685016218214.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1685016276305.png" - } - }, - { - "name": "PEGO Mainnet", - "chainId": 20201022, - "shortName": "PEGO", - "chain": "PEGO", - "network": "mainnet", - "networkId": 20201022, - "nativeCurrency": { - "name": "PEGO", - "symbol": "PG", - "decimals": 18 - }, - "rpc": [ - "https://pegorpc.com", - "https://node1.pegorpc.com", - " https://node2.pegorpc.com" - ], - "faucets": [], - "infoURL": "https://pego.network", - "app_resource": { - "ic_chain_select": "https://drive.google.com/file/d/1eoxLbi4CIXW_St3fkoctRwPrdD4-Nyb8/view?usp=drive_link", - "ic_chain_unselect": "https://drive.google.com/file/d/1_UgiAXINqJhMWloRz2W5dkBxmTtmugvM/view?usp=drive_link", - "color_chain_bg": "0xFF9D00" - } - }, - { - "name": "Acria IntelliChain", - "chain": "AIC", - "rpc": [ - "https://aic.acria.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "ACRIA", - "symbol": "ACRIA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://acria.ai", - "shortName": "aic", - "chainId": 47, - "networkId": 47, - "explorers": [ - { - "name": "Acria IntelliChain-Explorer", - "url": "https://explorer.acria.ai", - "standard": "EIP3091" - } - ] - }, - { - "name": "Linqto Devnet", - "chain": "LNQ", - "rpc": [ - "https://linqto-dev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 18 - }, - "infoURL": "https://linqto.com", - "shortName": "linqto-devnet", - "chainId": 84, - "networkId": 84, - "explorers": [ - { - "name": "Linqto Devnet Explorer", - "url": "https://explorer.linqto-dev.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SwissDLT", - "chain": "SDLT", - "rpc": [ - "https://rpc.swissdlt.ch" - ], - "faucets": [], - "nativeCurrency": { - "name": "BCTS", - "symbol": "BCTS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://bcts.ch", - "shortName": "sdlt", - "chainId": 94, - "networkId": 94, - "icon": "bcts", - "explorers": [ - { - "name": "SwissDLT Explorer", - "url": "https://explorer.swissdlt.ch", - "icon": "bcts", - "standard": "EIP3091" - } - ] - }, - { - "name": "Six Protocol", - "chain": "SIXNET", - "icon": "six", - "rpc": [ - "https://sixnet-rpc-evm.sixprotocol.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "SIX evm token", - "symbol": "SIX", - "decimals": 18 - }, - "infoURL": "https://six.network/", - "shortName": "six", - "chainId": 98, - "networkId": 98, - "explorers": [ - { - "name": "SIX Scan", - "url": "https://sixscan.io/sixnet", - "standard": "none", - "icon": "six" - } - ] - }, - { - "name": "Coinbit Mainnet", - "chain": "Coinbit", - "rpc": [ - "https://coinbit-rpc-mainnet.chain.sbcrypto.app" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gas IDR", - "symbol": "GIDR", - "decimals": 18 - }, - "infoURL": "https://crypto.stockbit.com/", - "shortName": "coinbit", - "chainId": 112, - "networkId": 112, - "icon": "coinbit", - "explorers": [ - { - "name": "blockscout", - "url": "https://coinbit-explorer.chain.sbcrypto.app", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Uptick Mainnet", - "chain": "Uptick", - "rpc": [ - "https://json-rpc.uptick.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Uptick", - "symbol": "UPTICK", - "decimals": 18 - }, - "infoURL": "https://www.uptick.network", - "shortName": "auptick", - "chainId": 117, - "networkId": 117, - "icon": "uptick", - "explorers": [ - { - "name": "Uptick Explorer", - "url": "https://evm-explorer.uptick.network", - "icon": "uptick", - "standard": "none" - } - ] - }, - { - "name": "iExec Sidechain", - "chain": "Bellecour", - "icon": "rlc", - "rpc": [ - "https://bellecour.iex.ec" - ], - "faucets": [], - "nativeCurrency": { - "name": "xRLC", - "symbol": "xRLC", - "decimals": 18 - }, - "infoURL": "https://iex.ec", - "shortName": "rlc", - "chainId": 134, - "networkId": 134, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.bellecour.iex.ec", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Deamchain Mainnet", - "chain": "Deamchain", - "icon": "deam", - "rpc": [ - "https://mainnet.deamchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 - }, - "infoURL": "https://deamchain.com", - "shortName": "deam", - "chainId": 136, - "networkId": 136, - "explorers": [ - { - "name": "Deamchain Block Explorer", - "url": "https://scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } - ] - }, - { - "name": "Defi Oracle Meta Mainnet", - "chain": "dfiometa", - "icon": "defioraclemeta", - "rpc": [ - "https://rpc.public-0138.defi-oracle.io", - "wss://rpc.public-0138.defi-oracle.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://defi-oracle.io/", - "shortName": "dfio-meta-main", - "chainId": 138, - "networkId": 1, - "slip44": 60, - "ens": { - "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" - }, - "explorers": [ - { - "name": "Quorum Explorer", - "url": "https://public-0138.defi-oracle.io", - "standard": "none" - } - ] - }, - { - "name": "WoopChain Mainnet", - "chain": "WOOP", - "icon": "woopchain", - "rpc": [ - "https://rpc.woop.ai/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "WoopCoin", - "symbol": "WOOC", - "decimals": 18 - }, - "infoURL": "https://wikiwoop.com", - "shortName": "woop", - "chainId": 139, - "networkId": 139, - "explorers": [ - { - "name": "wikiwoop", - "url": "https://explorer.wikiwoop.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Six Protocol Testnet", - "chain": "FIVENET", - "icon": "six", - "rpc": [ - "https://rpc-evm.fivenet.sixprotocol.net" - ], - "faucets": [ - "https://faucet.sixprotocol.net" - ], - "nativeCurrency": { - "name": "SIX testnet evm token", - "symbol": "tSIX", - "decimals": 18 - }, - "infoURL": "https://six.network/", - "shortName": "sixt", - "chainId": 150, - "networkId": 150, - "explorers": [ - { - "name": "SIX Scan fivenet", - "url": "https://sixscan.io/fivenet", - "standard": "none", - "icon": "six" - } - ] - }, - { - "name": "Tenet Testnet", - "title": "Tenet Testnet", - "chain": "TENET", - "icon": "tenet", - "rpc": [ - "https://rpc.testnet.tenet.org" - ], - "faucets": [ - "https://faucet.testnet.tenet.org" - ], - "nativeCurrency": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 - }, - "infoURL": "https://tenet.org/", - "shortName": "tenet-testnet", - "chainId": 155, - "networkId": 155, - "explorers": [ - { - "name": "TenetScan Testnet", - "url": "https://testnet.tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } - ] - }, - { - "name": "OEBlock Testnet", - "chain": "OEBt", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://testnet-rpc.oeblock.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "OEBlock", - "symbol": "OEB", - "decimals": 18 - }, - "infoURL": "https://www.oeblock.com/", - "shortName": "obe", - "chainId": 156, - "networkId": 156, - "icon": "oescan", - "explorers": [ - { - "name": "OEScan explorer", - "url": "https://testnet.oescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Omni Testnet 1", - "chain": "Omni", - "rpc": [ - "https://testnet-1.omni.network" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 - }, - "infoURL": "https://docs.omni.network/", - "shortName": "omni_testnet", - "chainId": 165, - "networkId": 165, - "explorers": [ - { - "name": "Omni Explorer", - "url": "https://testnet-1.explorer.omni.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "OKBChain Testnet", - "chain": "okbchain", - "rpc": [ - "https://okbtestrpc.okbchain.org" - ], - "faucets": [ - "https://www.oklink.com/okbc-test" - ], - "nativeCurrency": { - "name": "OKBChain Global Utility Token in testnet", - "symbol": "OKB", - "decimals": 18 - }, - "features": [], - "infoURL": "https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain", - "shortName": "tokb", - "chainId": 195, - "networkId": 195, - "explorers": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/okbc-test", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "Neutrinos TestNet", - "chain": "NEUTR", - "rpc": [ - "https://testnet-rpc.neutrinoschain.com" - ], - "faucets": [ - "https://neutrinoschain.com/faucet" - ], - "nativeCurrency": { - "name": "Neutrinos", - "symbol": "NEUTR", - "decimals": 18 - }, - "infoURL": "https://docs.neutrinoschain.com", - "shortName": "NEUTR", - "chainId": 197, - "networkId": 197, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.neutrinoschain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Structx Mainnet", - "chain": "utx", - "rpc": [ - "https://mainnet.structx.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Notes", - "symbol": "utx", - "decimals": 18 - }, - "infoURL": "https://structx.io", - "shortName": "utx", - "chainId": 208, - "networkId": 208 - }, - { - "name": "SwapDEX", - "chain": "SDX", - "rpc": [ - "https://rpc.swapdex.network", - "wss://ss.swapdex.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "SwapDEX", - "symbol": "SDX", - "decimals": 18 - }, - "infoURL": "https://swapdex.network/", - "shortName": "SDX", - "chainId": 230, - "networkId": 230, - "explorers": [ - { - "name": "SwapDEX", - "url": "https://evm.swapdex.network", - "standard": "none" - } - ] - }, - { - "name": "Deamchain Testnet", - "chain": "Deamchain", - "icon": "deam", - "rpc": [ - "https://testnet.deamchain.com" - ], - "faucets": [ - "https://faucet.deamchain.com" - ], - "nativeCurrency": { - "name": "Deamchain Native Token", - "symbol": "DEAM", - "decimals": 18 - }, - "infoURL": "https://deamchain.com", - "shortName": "deamtest", - "chainId": 236, - "networkId": 236, - "explorers": [ - { - "name": "Deamchain Testnet Explorer", - "url": "https://testnet-scan.deamchain.com", - "standard": "EIP3091", - "icon": "deam" - } - ] - }, - { - "name": "Plinga Mainnet", - "chain": "Plinga", - "icon": "plinga", - "rpc": [ - "https://rpcurl.mainnet.plgchain.com", - "https://rpcurl.plgchain.blockchain.evmnode.online", - "https://rpcurl.mainnet.plgchain.plinga.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plinga", - "symbol": "PLINGA", - "decimals": 18 - }, - "infoURL": "https://www.plinga.technology/", - "shortName": "plgchain", - "chainId": 242, - "networkId": 242, - "explorers": [ - { - "name": "plgscan", - "url": "https://www.plgscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neonlink Mainnet", - "chain": "Neonlink", - "rpc": [ - "https://mainnet.neonlink.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neonlink Native Token", - "symbol": "NEON", - "decimals": 18 - }, - "infoURL": "https://neonlink.io", - "shortName": "neon", - "chainId": 259, - "networkId": 259, - "icon": "neonlink", - "explorers": [ - { - "name": "Neon Blockchain Explorer", - "url": "https://scan.neonlink.io", - "standard": "EIP3091", - "icon": "neonlink" - } - ] - }, - { - "name": "EgonCoin Mainnet", - "chain": "EGON", - "icon": "egonicon", - "rpc": [ - "https://rpc.egcscan.com" - ], - "faucets": [ - "https://faucet.egcscan.com" - ], - "nativeCurrency": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 - }, - "infoURL": "https://egcscan.com", - "shortName": "EGONm", - "chainId": 271, - "networkId": 271, - "explorers": [ - { - "name": "EgonCoin Mainnet", - "url": "https://egcscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "LaChain", - "chain": "LaChain", - "icon": "LaChain", - "rpc": [ - "https://rpc1.mainnet.lachain.network", - "https://rpc2.mainnet.lachain.network", - "https://lachain.rpc-nodes.cedalio.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "LaCoin", - "symbol": "LAC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "", - "shortName": "lachain", - "chainId": 274, - "networkId": 274, - "explorers": [ - { - "name": "LaChain Explorer", - "url": "https://explorer.lachain.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neurochain Testnet", - "chain": "NCN", - "rpc": [ - "https://nc-rpc-test1.neurochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neurochain", - "symbol": "tNCN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.neurochain.ai", - "shortName": "ncnt", - "chainId": 303, - "networkId": 303, - "explorers": [ - { - "name": "neuroscan", - "url": "https://testnet.ncnscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neurochain Mainnet", - "chain": "NCN", - "rpc": [ - "https://nc-rpc-prd1.neurochain.io", - "https://nc-rpc-prd2.neurochain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Neurochain", - "symbol": "NCN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.neurochain.ai", - "shortName": "ncn", - "chainId": 313, - "networkId": 313, - "explorers": [ - { - "name": "neuroscan", - "url": "https://ncnscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ozone Chain Testnet", - "chain": "OZONE", - "rpc": [ - "https://node1.testnet.ozonechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 - }, - "infoURL": "https://ozonechain.io", - "shortName": "ozo_tst", - "chainId": 401, - "networkId": 401, - "icon": "ozonechain", - "explorers": [ - { - "name": "OZONE Scan", - "url": "https://testnet.ozonescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "LaTestnet", - "chain": "LaTestnet", - "icon": "LaChain", - "rpc": [ - "https://rpc.testnet.lachain.network", - "https://lachain-testnet.rpc-nodes.cedalio.dev" - ], - "faucets": [ - "https://faucet.lachain.network" - ], - "nativeCurrency": { - "name": "Test LaCoin", - "symbol": "TLA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "", - "shortName": "latestnet", - "chainId": 418, - "networkId": 418, - "explorers": [ - { - "name": "LaTestnet Explorer", - "url": "https://testexplorer.lachain.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "PGN (Public Goods Network)", - "chain": "ETH", - "rpc": [ - "https://rpc.publicgoods.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://publicgoods.network/", - "shortName": "PGN", - "chainId": 424, - "networkId": 424, - "icon": "publicGoodsNetwork", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.publicgoods.network" - } - ] - } - }, - { - "name": "ARZIO Chain", - "chain": "ARZIO", - "icon": "arzio", - "rpc": [ - "https://chain-rpc.arzio.co" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARZIO", - "symbol": "AZO", - "decimals": 18 - }, - "infoURL": "https://chain.arzio.co", - "shortName": "arzio", - "chainId": 456, - "networkId": 456, - "explorers": [ - { - "name": "ARZIO Scan", - "url": "https://scan.arzio.co", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rollux Mainnet", - "chain": "SYS", - "rpc": [ - "https://rpc.rollux.com", - "https://rollux.public-rpc.com", - "wss://rpc.rollux.com/wss", - "https://rpc.ankr.com/rollux/${ANKR_API_KEY}" - ], - "faucets": [ - "https://rollux.id/faucetapp" - ], - "nativeCurrency": { - "name": "Syscoin", - "symbol": "SYS", - "decimals": 18 - }, - "infoURL": "https://rollux.com", - "shortName": "sys-rollux", - "chainId": 570, - "networkId": 570, - "explorers": [ - { - "name": "Rollux Explorer", - "url": "https://explorer.rollux.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Avocado", - "chain": "Avocado", - "rpc": [ - "https://rpc.avocado.instadapp.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://avocado.instadapp.io", - "shortName": "avocado", - "chainId": 634, - "networkId": 634, - "icon": "avocado", - "explorers": [ - { - "name": "avoscan", - "url": "https://avoscan.co", - "icon": "avocado", - "standard": "none" - } - ] - }, - { - "name": "Shibarium Beta", - "chain": "Shibarium", - "icon": "shibarium", - "rpc": [ - "https://puppynet.shibrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://beta.shibariumtech.com", - "shortName": "shibarium", - "chainId": 719, - "networkId": 719, - "explorers": [ - { - "name": "shibscan", - "url": "https://puppyscan.shib.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "MAAL Sharia Chain", - "chain": "MAAL", - "icon": "maal", - "rpc": [ - "https://node1-mainnet.maalscan.io/", - "https://node2-mainnet.maalscan.io/", - "https://node3-mainnet.maalscan.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 - }, - "infoURL": "https://www.maalblockchain.com/", - "shortName": "maal", - "chainId": 786, - "networkId": 786, - "explorers": [ - { - "name": "maalscan", - "url": "https://maalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Patex", - "chain": "ETH", - "icon": "patex", - "rpc": [ - "https://rpc.patex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://patex.io/", - "shortName": "peth", - "chainId": 789, - "networkId": 789, - "explorers": [ - { - "name": "patexscan", - "url": "https://patexscan.io", - "icon": "patex", - "standard": "EIP3091" - } - ] - }, - { - "name": "BeOne Chain Mainnet", - "chain": "BOC", - "icon": "beonechain", - "rpc": [ - "https://dataseed1.beonechain.com", - "https://dataseed2.beonechain.com", - "https://dataseed-us1.beonechain.com", - "https://dataseed-us2.beonechain.com", - "https://dataseed-uk1.beonechain.com", - "https://dataseed-uk2.beonechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BeOne Chain Mainnet", - "symbol": "BOC", - "decimals": 18 - }, - "infoURL": "https://beonechain.com", - "shortName": "BOC", - "chainId": 818, - "networkId": 818, - "slip44": 8181, - "explorers": [ - { - "name": "BeOne Chain Mainnet", - "url": "https://beonescan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DecentraBone Layer1 Testnet", - "chain": "DBONE", - "rpc": [ - "https://layer1test.decentrabone.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DecentraBone", - "symbol": "DBONE", - "decimals": 18 - }, - "infoURL": "https://decentrabone.com", - "shortName": "DBONE", - "chainId": 910, - "networkId": 910 - }, - { - "name": "PulseChain Testnet v4", - "shortName": "t4pls", - "chain": "t4PLS", - "chainId": 943, - "networkId": 943, - "icon": "pulsechain", - "infoURL": "https://pulsechain.com", - "rpc": [ - "https://rpc.v4.testnet.pulsechain.com/", - "wss://rpc.v4.testnet.pulsechain.com/" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.v4.testnet.pulsechain.com/" - ], - "ens": { - "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" - }, - "status": "incubating", - "explorers": [], - "nativeCurrency": { - "name": "Test Pulse", - "symbol": "tPLS", - "decimals": 18 - } - }, - { - "name": "5ireChain Thunder", - "chain": "5ireChain", - "rpc": [ - "https://rpc-testnet.5ire.network" - ], - "faucets": [ - "https://explorer.5ire.network/faucet" - ], - "nativeCurrency": { - "name": "5ire Token", - "symbol": "5ire", - "decimals": 18 - }, - "infoURL": "https://5ire.org", - "shortName": "5ire", - "chainId": 997, - "networkId": 997, - "icon": "5ireChain", - "explorers": [ - { - "name": "5ireChain Explorer", - "url": "https://explorer.5ire.network", - "standard": "none", - "icon": "5ireChain" - } - ] - }, - { - "name": "ShimmerEVM Testnet Deprecated", - "title": "ShimmerEVM Testnet Deprecated", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet-deprecated", - "chainId": 1071, - "networkId": 1071, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ], - "status": "deprecated" - }, - { - "name": "ShimmerEVM Testnet", - "title": "ShimmerEVM Testnet", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [ - "https://json-rpc.evm.testnet.shimmer.network" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 6 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet", - "chainId": 1072, - "networkId": 1072, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mintara Testnet", - "title": "Mintara Testnet", - "chain": "Mintara", - "icon": "mintara", - "rpc": [ - "https://subnets.avax.network/mintara/testnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 - }, - "infoURL": "https://playthink.co.jp", - "shortName": "mintara-testnet", - "chainId": 1079, - "networkId": 1079, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/mintara", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polygon zkEVM", - "title": "Polygon zkEVM", - "chain": "Polygon", - "rpc": [ - "https://zkevm-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/polygon-zkevm", - "shortName": "zkevm", - "chainId": 1101, - "networkId": 1101, - "icon": "zkevm", - "explorers": [ - { - "name": "blockscout", - "url": "https://zkevm.polygonscan.com", - "icon": "zkevm", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.zkevm-rpc.com" - } - ] - } - }, - { - "name": "Symplexia Smart Chain", - "chain": "Plexchain", - "rpc": [ - "https://plex-rpc.plexfinance.us" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plex Native Token", - "symbol": "PLEX", - "decimals": 18 - }, - "infoURL": "https://plexfinance.us/", - "shortName": "Plexchain", - "chainId": 1149, - "networkId": 1149, - "icon": "plexchain", - "explorers": [ - { - "name": "Plexchain Explorer", - "url": "https://explorer.plexfinance.us", - "icon": "plexchain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Origin Testnet", - "chain": "Origin", - "rpc": [ - "https://json-rpc.origin.uptick.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Origin", - "symbol": "UOC", - "decimals": 18 - }, - "infoURL": "https://www.uptick.network", - "shortName": "auoc", - "chainId": 1170, - "networkId": 1170, - "icon": "origin", - "explorers": [ - { - "name": "Origin Explorer", - "url": "https://evm-explorer.origin.uptick.network", - "icon": "origin", - "standard": "none" - } - ] - }, - { - "name": "ARC Mainnet", - "chain": "ARC", - "icon": "arc", - "rpc": [ - "https://rpc-main-1.archiechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 - }, - "infoURL": "https://archiechain.io/", - "shortName": "ARC", - "chainId": 1243, - "networkId": 1243, - "explorers": [ - { - "name": "archiescan", - "url": "https://app.archiescan.io", - "standard": "none" - } - ] - }, - { - "name": "ARC Testnet", - "chain": "ARC", - "icon": "arc", - "rpc": [ - "https://rpc-test-1.archiechain.io" - ], - "faucets": [ - "https://faucet.archiechain.io" - ], - "nativeCurrency": { - "name": "ARC", - "symbol": "ARC", - "decimals": 18 - }, - "infoURL": "https://archiechain.io/", - "shortName": "TARC", - "chainId": 1244, - "networkId": 1244, - "explorers": [ - { - "name": "archiescan", - "url": "https://testnet.archiescan.io", - "standard": "none" - } - ] - }, - { - "name": "Zafirium Mainnet", - "chain": "ZAFIC", - "icon": "zafirium", - "rpc": [ - "https://mainnet.zakumi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zakumi Chain Native Token", - "symbol": "ZAFIC", - "decimals": 18 - }, - "infoURL": "https://www.zakumi.io", - "shortName": "zafic", - "chainId": 1369, - "networkId": 1369, - "explorers": [ - { - "name": "zafirium-explorer", - "url": "https://explorer.zakumi.io", - "standard": "none" - } - ] - }, - { - "name": "Joseon Mainnet", - "chain": "Joseon", - "icon": "joseon", - "rpc": [ - "https://rpc.modchain.net/blockchain.joseon.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Joseon Mun", - "symbol": "JSM", - "decimals": 18 - }, - "infoURL": "https://www.joseon.com/", - "shortName": "mun", - "chainId": 1392, - "networkId": 1392, - "explorers": [ - { - "name": "BlockExplorer", - "url": "https://www.blockexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rikeza Network Mainnet", - "title": "Rikeza Network Mainnet", - "chain": "Rikeza", - "icon": "rikeza", - "rpc": [ - "https://rpc.rikscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 - }, - "infoURL": "https://rikeza.io", - "shortName": "RIK", - "chainId": 1433, - "networkId": 1433, - "explorers": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://rikscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Living Assets Mainnet", - "chain": "LAS", - "icon": "livingassets", - "rpc": [ - "https://beta.mainnet.livingassets.io/rpc", - "https://gamma.mainnet.livingassets.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAS", - "symbol": "LAS", - "decimals": 18 - }, - "infoURL": "https://dev.livingassets.io/", - "shortName": "LAS", - "chainId": 1440, - "networkId": 1440 - }, - { - "name": "Polygon zkEVM Testnet", - "title": "Polygon zkEVM Testnet", - "chain": "Polygon", - "rpc": [ - "https://rpc.public.zkevm-test.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", - "shortName": "testnet-zkEVM-mango", - "chainId": 1442, - "networkId": 1442, - "explorers": [ - { - "name": "Polygon zkEVM explorer", - "url": "https://explorer.public.zkevm-test.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "GIL Testnet", - "chain": "GIL", - "icon": "gauss", - "rpc": [ - "https://rpc.giltestnet.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 - }, - "infoURL": "https://gaussgang.com/", - "shortName": "gil", - "chainId": 1452, - "networkId": 1452, - "explorers": [ - { - "name": "GIL Explorer", - "url": "https://explorer.giltestnet.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BEVM", - "chain": "ChainX", - "rpc": [ - "https://mainnet.chainx.org/rpc", - "https://mainnet2.chainx.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://chainx.org", - "shortName": "chainx", - "chainId": 1501, - "networkId": 1501, - "explorers": [ - { - "name": "bevm scan", - "url": "https://evm.chainx.org", - "standard": "none" - } - ] - }, - { - "name": "Tenet", - "title": "Tenet Mainnet", - "chain": "TENET", - "icon": "tenet", - "rpc": [ - "https://rpc.tenet.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "TENET", - "symbol": "TENET", - "decimals": 18 - }, - "infoURL": "https://tenet.org/", - "shortName": "tenet", - "chainId": 1559, - "networkId": 1559, - "explorers": [ - { - "name": "TenetScan Mainnet", - "url": "https://tenetscan.io", - "icon": "tenet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Horizen Gobi Testnet", - "shortName": "Gobi", - "chain": "Gobi", - "icon": "eon", - "rpc": [ - "https://gobi-testnet.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_testnet_evm" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.horizen.io" - ], - "nativeCurrency": { - "name": "Testnet Zen", - "symbol": "tZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 1663, - "networkId": 1663, - "slip44": 121, - "explorers": [ - { - "name": "Gobi Testnet Block Explorer", - "url": "https://gobi-explorer.horizen.io", - "icon": "eon", - "standard": "EIP3091" - } - ] - }, - { - "name": "Palette Chain Mainnet", - "chain": "PLT", - "rpc": [ - "https://palette-rpc.com:22000" - ], - "faucets": [], - "nativeCurrency": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 - }, - "features": [], - "infoURL": "https://hashpalette.com/", - "shortName": "PCM", - "chainId": 1718, - "networkId": 1718, - "icon": "PLT", - "explorers": [ - { - "name": "Palettescan", - "url": "https://palettescan.com", - "icon": "PLT", - "standard": "none" - } - ] - }, - { - "name": "PartyChain", - "chain": "mainnet", - "rpc": [ - "https://tea.mining4people.com/rpc", - "http://172.104.194.36:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Grams", - "symbol": "GRAMS", - "decimals": 18 - }, - "infoURL": "TeaPartyCrypto.com", - "shortName": "TeaParty", - "chainId": 1773, - "networkId": 1773, - "icon": "grams", - "status": "incubating", - "explorers": [ - { - "name": "PartyExplorer", - "url": "https://partyexplorer.co", - "icon": "grams", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gauss Mainnet", - "chain": "Gauss", - "icon": "gauss", - "rpc": [ - "https://rpc.gaussgang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "GANG", - "symbol": "GANG", - "decimals": 18 - }, - "infoURL": "https://gaussgang.com/", - "shortName": "gauss", - "chainId": 1777, - "networkId": 1777, - "explorers": [ - { - "name": "Gauss Explorer", - "url": "https://explorer.gaussgang.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lightlink Phoenix Mainnet", - "chain": "Lightlink Phoenix Mainnet", - "icon": "lightlink", - "rpc": [ - "https://endpoints.omniatech.io/v1/lightlink/phoenix/public", - "https://replicator-01.phoenix.lightlink.io/rpc/v1", - "https://replicator-02.phoenix.lightlink.io/rpc/v1", - "https://replicator.phoenix.lightlink.io/rpc/v1" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lightlink.io", - "shortName": "lightlink_phoenix", - "chainId": 1890, - "networkId": 1890, - "explorers": [ - { - "name": "phoenix", - "url": "https://phoenix.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1714378866804.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1714378840768.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1714378852669.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1714379070381.png" - } - }, - { - "name": "Lightlink Pegasus Testnet", - "chain": "Lightlink Pegasus Testnet", - "icon": "lightlink", - "rpc": [ - "https://replicator-01.pegasus.lightlink.io/rpc/v1", - "https://replicator-02.pegasus.lightlink.io/rpc/v1" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [ - "https://pegasus-faucet-react.vercel.app" - ], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lightlink.io", - "shortName": "lightlink_pegasus", - "chainId": 1891, - "networkId": 1891, - "explorers": [ - { - "name": "pegasus", - "url": "https://pegasus.lightlink.io", - "icon": "lightlink", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dexilla Testnet", - "chain": "Dexilla", - "rpc": [ - "https://rpc.dexilla.com" - ], - "faucets": [], - "icon": "dxz", - "nativeCurrency": { - "name": "Dexilla Native Token", - "symbol": "DXZ", - "decimals": 18 - }, - "infoURL": "https://dexilla.com", - "shortName": "Dexilla", - "chainId": 1954, - "networkId": 1954, - "explorers": [ - { - "name": "dos-mainnet", - "url": "https://exp.dexilla.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.dexilla.com" - } - ] - } - }, - { - "name": "Eleanor", - "title": "Metatime Testnet Eleanor", - "chain": "MTC", - "rpc": [ - "https://rpc.metatime.com/eleanor", - "wss://ws.metatime.com/eleanor" - ], - "faucets": [ - "https://faucet.metatime.com/eleanor" - ], - "nativeCurrency": { - "name": "Eleanor Metacoin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://eleanor.metatime.com", - "shortName": "mtc", - "chainId": 1967, - "networkId": 1967, - "explorers": [ - { - "name": "metaexplorer-eleanor", - "url": "https://explorer.metatime.com/eleanor", - "standard": "EIP3091" - } - ] - }, - { - "name": "Super Smart Chain Testnet", - "chain": "TSCS", - "rpc": [ - "https://testnetrpc.scschain.com" - ], - "faucets": [ - "https://testnet.scschain.com" - ], - "nativeCurrency": { - "name": "Super Chain Native Token", - "symbol": "TSCS", - "decimals": 18 - }, - "infoURL": "https://testnet.scschain.com", - "shortName": "tscs", - "chainId": 1969, - "networkId": 1969, - "icon": "super", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnetscan.scschain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Super Smart Chain Mainnet", - "chain": "SCS", - "rpc": [ - "https://rpc.scschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Super Chain Native Token", - "symbol": "SCS", - "decimals": 18 - }, - "infoURL": "https://scschain.com", - "shortName": "scs", - "chainId": 1970, - "networkId": 1970, - "icon": "super", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.scschain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shrapnel Subnet", - "chain": "shrapnel", - "rpc": [ - "https://subnets.avax.network/shrapnel/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shrapnel Gas Token", - "symbol": "SHRAPG", - "decimals": 18 - }, - "infoURL": "https://www.shrapnel.com/", - "shortName": "Shrapnel", - "chainId": 2044, - "networkId": 2044 - }, - { - "name": "Metaplayerone Dubai Testnet", - "chain": "MP1 Dubai-Testnet", - "rpc": [ - "https://rpc-dubai.mp1network.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metaunit", - "symbol": "MEU", - "decimals": 18 - }, - "infoURL": "https://docs.metaplayer.one/", - "shortName": "MEU", - "chainId": 2124, - "networkId": 2124, - "explorers": [ - { - "name": "MP1Scan", - "url": "https://dubai.mp1scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Defi Oracle Meta Testnet", - "chain": "dfiometatest", - "icon": "defioraclemeta", - "rpc": [ - "https://rpc.public-2138.defi-oracle.io", - "wss://rpc.public-2138.defi-oracle.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "testEther", - "symbol": "tETH", - "decimals": 18 - }, - "infoURL": "https://defi-oracle.io/", - "shortName": "dfio-meta-test", - "chainId": 2138, - "networkId": 21, - "slip44": 60, - "ens": { - "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" - }, - "explorers": [ - { - "name": "Quorum Explorer", - "url": "https://public-2138.defi-oracle.io", - "standard": "none" - } - ] - }, - { - "name": "Moonsama Network", - "chain": "MSN", - "rpc": [ - "https://rpc.moonsama.com", - "wss://rpc.moonsama.com/ws" - ], - "faucets": [ - "https://multiverse.moonsama.com/faucet" - ], - "nativeCurrency": { - "name": "Sama Token", - "symbol": "SAMA", - "decimals": 18 - }, - "infoURL": "https://moonsama.com", - "shortName": "msn", - "chainId": 2199, - "networkId": 2199, - "slip44": 2199, - "icon": "msn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.moonsama.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Antofy Mainnet", - "chain": "ABN", - "icon": "antofy", - "rpc": [ - "https://rpc.antofy.io" - ], - "faucets": [ - "https://faucet.antofy.io" - ], - "nativeCurrency": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 - }, - "infoURL": "https://antofy.io", - "shortName": "ABNm", - "chainId": 2202, - "networkId": 2202, - "explorers": [ - { - "name": "Antofy Mainnet", - "url": "https://antofyscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SOMA Network Testnet", - "chain": "SOMA", - "rpc": [ - "https://data-testnet-v1.somanetwork.io/" - ], - "faucets": [ - "https://faucet.somanetwork.io" - ], - "nativeCurrency": { - "name": "SMA", - "symbol": "tSMA", - "decimals": 18 - }, - "infoURL": "https://somanetwork.io", - "shortName": "sma", - "chainId": 2323, - "networkId": 2323, - "icon": "soma", - "explorers": [ - { - "name": "SOMA Testnet Explorer", - "icon": "soma", - "url": "https://testnet.somascan.io", - "standard": "none" - } - ] - }, - { - "name": "SOMA Network Mainnet", - "chain": "SOMA", - "rpc": [ - "https://data-mainnet-v1.somanetwork.io/" - ], - "faucets": [ - "https://airdrop.somanetwork.io" - ], - "nativeCurrency": { - "name": "Soma Native Token", - "symbol": "SMA", - "decimals": 18 - }, - "infoURL": "https://somanetwork.io", - "shortName": "smam", - "chainId": 2332, - "networkId": 2332, - "icon": "soma", - "status": "incubating", - "explorers": [ - { - "name": "SOMA Explorer Mainnet", - "icon": "soma", - "url": "https://somascan.io", - "standard": "none" - } - ] - }, - { - "name": "(deprecated) Kroma Sepolia", - "title": "(deprecated) Kroma Testnet Sepolia", - "chainId": 2357, - "shortName": "deprecated-kroma-sepolia", - "chain": "ETH", - "networkId": 2357, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://api.sepolia-deprecated.kroma.network" - ], - "faucets": [], - "infoURL": "https://kroma.network", - "icon": "kroma", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.sepolia-deprecated.kroma.network", - "icon": "kroma", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - }, - "status": "deprecated" - }, - { - "name": "Kroma Sepolia", - "title": "Kroma Testnet Sepolia", - "chainId": 2358, - "shortName": "kroma-sepolia", - "chain": "ETH", - "networkId": 2358, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://api.sepolia.kroma.network" - ], - "faucets": [], - "infoURL": "https://kroma.network", - "icon": "kroma", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.sepolia.kroma.network", - "icon": "kroma", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - } - }, - { - "name": "WhiteBIT Network Testnet", - "chain": "WBT", - "rpc": [ - "https://rpc-testnet.whitebit.network" - ], - "faucets": [ - "https://explorer.whitebit.network/testnet/faucet" - ], - "nativeCurrency": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 - }, - "infoURL": "https://whitebit.com/wbt", - "shortName": "twbt", - "chainId": 2625, - "networkId": 2625, - "icon": "whitebit-testnet", - "explorers": [ - { - "name": "wb-explorer-testnet", - "url": "https://explorer.whitebit.network/testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Canxium Mainnet", - "chain": "CAU", - "rpc": [ - "https://rpc.canxium.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 - }, - "infoURL": "https://canxium.org", - "shortName": "cau", - "chainId": 3003, - "networkId": 3003, - "explorers": [ - { - "name": "canxium explorer", - "url": "https://explorer.canxium.org", - "standard": "none" - } - ] - }, - { - "name": "PLAYA3ULL GAMES", - "chain": "3ULL", - "rpc": [ - "https://api.mainnet.playa3ull.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "3ULL", - "symbol": "3ULL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://playa3ull.games", - "shortName": "3ULL", - "chainId": 3011, - "networkId": 3011, - "icon": "playa3ull", - "explorers": [ - { - "name": "PLAYA3ULL GAMES Explorer", - "url": "https://3011.routescan.io", - "icon": "playa3ull", - "standard": "EIP3091" - } - ] - }, - { - "name": "SecureChain Testnet", - "chain": "SCAI", - "icon": "scaiIcon", - "rpc": [ - "https://testnet-rpc.securechain.ai" - ], - "faucets": [ - "https://faucet.securechain.ai" - ], - "nativeCurrency": { - "name": "SCAI", - "symbol": "SCAI", - "decimals": 18 - }, - "infoURL": "https://securechain.ai", - "shortName": "SCAIt", - "chainId": 3434, - "networkId": 3434, - "explorers": [ - { - "name": "SecureChain", - "url": "https://testnet.securechain.ai", - "standard": "EIP3091" - } - ] - }, - { - "name": "Botanix Testnet", - "chain": "BTC", - "icon": "botanix", - "rpc": [ - "https://testnet-rpc.btxtestchain.com" - ], - "faucets": [ - "https://faucet.btxtestchain.com" - ], - "nativeCurrency": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCt", - "chainId": 3636, - "networkId": 3636, - "explorers": [ - { - "name": "Botanix", - "url": "https://testnet.btxtestchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Botanix Mainnet", - "chain": "BTC", - "icon": "botanix", - "rpc": [ - "https://rpc.btxtestchain.com" - ], - "faucets": [ - "https://faucet.btxtestchain.com" - ], - "nativeCurrency": { - "name": "Botanix", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://btxtestchain.com", - "shortName": "BTCm", - "chainId": 3637, - "networkId": 3637, - "explorers": [ - { - "name": "Botanix", - "url": "https://btxtestchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SenjePowers Testnet", - "chain": "SPC", - "icon": "SenjePowers", - "rpc": [ - "https://testnet-rpc.senjepowersscan.com" - ], - "faucets": [ - "https://faucet.senjepowersscan.com" - ], - "nativeCurrency": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 - }, - "infoURL": "https://senjepowersscan.com", - "shortName": "SPCt", - "chainId": 3698, - "networkId": 3698, - "explorers": [ - { - "name": "SenjePowers", - "url": "https://testnet.senjepowersscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SenjePowers Mainnet", - "chain": "SPC", - "icon": "SenjePowers", - "rpc": [ - "https://rpc.senjepowersscan.com" - ], - "faucets": [ - "https://faucet.senjepowersscan.com" - ], - "nativeCurrency": { - "name": "SenjePowers", - "symbol": "SPC", - "decimals": 18 - }, - "infoURL": "https://senjepowersscan.com", - "shortName": "SPCm", - "chainId": 3699, - "networkId": 3699, - "explorers": [ - { - "name": "SenjePowers", - "url": "https://senjepowersscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DOS Tesnet", - "chain": "DOS", - "rpc": [ - "https://test.doschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "http://doschain.io/", - "shortName": "dost", - "chainId": 3939, - "networkId": 3939, - "icon": "doschain", - "explorers": [ - { - "name": "DOScan-Test", - "url": "https://test.doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ozone Chain Mainnet", - "chain": "OZONE", - "rpc": [ - "https://node1.ozonechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "OZONE", - "symbol": "OZO", - "decimals": 18 - }, - "infoURL": "https://ozonechain.io", - "shortName": "ozo", - "chainId": 4000, - "networkId": 4000, - "icon": "ozonechain", - "explorers": [ - { - "name": "OZONE Scan", - "url": "https://ozonescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Peperium Chain Testnet", - "chain": "PERIUM", - "rpc": [ - "https://rpc-testnet.peperium.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Peperium Chain Testnet", - "symbol": "PERIUM", - "decimals": 18 - }, - "infoURL": "https://peperium.io", - "shortName": "PERIUM", - "chainId": 4001, - "networkId": 4001, - "icon": "peperium", - "explorers": [ - { - "name": "Peperium Chain Explorer", - "url": "https://scan-testnet.peperium.io", - "icon": "peperium", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nahmii 3 Mainnet", - "chain": "Nahmii", - "rpc": [], - "status": "incubating", - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii3Mainnet", - "chainId": 4061, - "networkId": 4061, - "icon": "nahmii", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nahmii.io" - } - ] - } - }, - { - "name": "Nahmii 3 Testnet", - "chain": "Nahmii", - "rpc": [ - "https://ngeth.testnet.n3.nahmii.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Goerli Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://nahmii.io", - "shortName": "Nahmii3Testnet", - "chainId": 4062, - "networkId": 4062, - "icon": "nahmii", - "explorers": [ - { - "name": "Nahmii 3 Testnet Explorer", - "url": "https://explorer.testnet.n3.nahmii.io", - "icon": "nahmii", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-3", - "bridges": [ - { - "url": "https://bridge.testnet.n3.nahmii.io" - } - ] - } - }, - { - "name": "Fastex Chain (Bahamut) Oasis Testnet", - "title": "Bahamut testnet Oasis", - "icon": "bahamut", - "chain": "Fastex Chain (Bahamut)", - "rpc": [ - "https://rpc1.oasis.bahamutchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.oasis.fastexchain.com" - ], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "infoURL": "https://fastexchain.com", - "shortName": "Oasis", - "chainId": 4090, - "networkId": 4090, - "explorers": [ - { - "name": "blockscout", - "url": "https://oasis.ftnscan.com", - "standard": "none" - } - ] - }, - { - "name": "Tipboxcoin Testnet", - "chain": "TPBX", - "icon": "tipboxcoinIcon", - "rpc": [ - "https://testnet-rpc.tipboxcoin.net" - ], - "faucets": [ - "https://faucet.tipboxcoin.net" - ], - "nativeCurrency": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 - }, - "infoURL": "https://tipboxcoin.net", - "shortName": "TPBXt", - "chainId": 4141, - "networkId": 4141, - "explorers": [ - { - "name": "Tipboxcoin", - "url": "https://testnet.tipboxcoin.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "LUKSO Testnet", - "chain": "LUKSO Testnet", - "icon": "lukso", - "rpc": [ - "https://rpc.testnet.lukso.network", - "wss://ws-rpc.testnet.lukso.network" - ], - "faucets": [ - "https://faucet.testnet.lukso.network" - ], - "nativeCurrency": { - "name": "TestLYX", - "symbol": "LYXt", - "decimals": 18 - }, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.execution.testnet.lukso.network", - "standard": "none" - } - ], - "infoURL": "https://lukso.network", - "shortName": "lukso-testnet", - "chainId": 4201, - "networkId": 4201, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ] - }, - { - "name": "Nexi Mainnet", - "chain": "Nexi", - "icon": "nexi", - "rpc": [ - "https://rpc.chain.nexi.technology/", - "https://chain.nexilix.com", - "https://chain.nexi.evmnode.online" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nexi", - "symbol": "NEXI", - "decimals": 18 - }, - "infoURL": "https://www.nexi.technology/", - "shortName": "nexi", - "chainId": 4242, - "networkId": 4242, - "slip44": 2500, - "explorers": [ - { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MEVerse Chain Testnet", - "chain": "MEVerse", - "rpc": [ - "https://rpc.meversetestnet.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 - }, - "infoURL": "https://www.meverse.sg", - "shortName": "TESTMEV", - "chainId": 4759, - "networkId": 4759, - "icon": "meverse", - "explorers": [ - { - "name": "MEVerse Chain Testnet Explorer", - "url": "https://testnet.meversescan.io", - "standard": "none", - "icon": "meverse" - } - ] - }, - { - "name": "Fastex Chain (Bahamut)", - "title": "Bahamut mainnet Sahara", - "chain": "Fastex Chain (Bahamut)", - "icon": "bahamut", - "rpc": [ - "https://rpc1.sahara.bahamutchain.com", - "https://rpc2.sahara.bahamutchain.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FTN", - "symbol": "FTN", - "decimals": 18 - }, - "shortName": "ftn", - "infoURL": "https://fastexchain.com", - "chainId": 5165, - "networkId": 5165, - "explorers": [ - { - "name": "blockscout", - "url": "https://ftnscan.com", - "standard": "none" - } - ] - }, - { - "name": "SatoshiChain Testnet", - "chain": "SATS", - "icon": "satoshichain", - "rpc": [ - "https://testnet-rpc.satoshichain.io" - ], - "faucets": [ - "https://faucet.satoshichain.io" - ], - "nativeCurrency": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 - }, - "infoURL": "https://satoshichain.net", - "shortName": "satst", - "chainId": 5758, - "networkId": 5758, - "explorers": [ - { - "name": "SatoshiChain Testnet Explorer", - "url": "https://testnet.satoshiscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cascadia Testnet", - "chain": "Cascadia", - "rpc": [ - "https://testnet.cascadia.foundation" - ], - "faucets": [ - "https://www.cascadia.foundation/faucet" - ], - "nativeCurrency": { - "name": "CC", - "symbol": "tCC", - "decimals": 18 - }, - "infoURL": "https://www.cascadia.foundation", - "shortName": "cascadia", - "chainId": 6102, - "networkId": 6102, - "icon": "cascadia", - "explorers": [ - { - "name": "Cascadia EVM Explorer", - "url": "https://explorer.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - }, - { - "name": "Cascadia Cosmos Explorer", - "url": "https://validator.cascadia.foundation", - "standard": "none", - "icon": "cascadia" - } - ] - }, - { - "name": "UPTN Testnet", - "chain": "UPTN", - "icon": "uptn", - "rpc": [ - "https://node-api.alp.uptn.io/v1/ext/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 - }, - "infoURL": "https://uptn.io", - "shortName": "UPTN-TEST", - "chainId": 6118, - "networkId": 6118, - "explorers": [ - { - "name": "UPTN Testnet Explorer", - "url": "https://testnet.explorer.uptn.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "UPTN", - "chain": "UPTN", - "icon": "uptn", - "rpc": [ - "https://node-api.uptn.io/v1/ext/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UPTN", - "symbol": "UPTN", - "decimals": 18 - }, - "infoURL": "https://uptn.io", - "shortName": "UPTN", - "chainId": 6119, - "networkId": 6119, - "explorers": [ - { - "name": "UPTN Explorer", - "url": "https://explorer.uptn.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Peerpay", - "chain": "P2P", - "rpc": [ - "https://peerpay.su.gy/p2p" - ], - "faucets": [], - "nativeCurrency": { - "name": "Peerpay", - "symbol": "P2P", - "decimals": 18 - }, - "infoURL": "https://peerpay.su.gy", - "shortName": "Peerpay", - "chainId": 6502, - "networkId": 6502, - "explorers": [] - }, - { - "name": "Scolcoin WeiChain Testnet", - "chain": "SCOLWEI-testnet", - "rpc": [ - "https://testnet-rpc.scolcoin.com" - ], - "faucets": [ - "https://faucet.scolcoin.com" - ], - "nativeCurrency": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 - }, - "infoURL": "https://scolcoin.com", - "shortName": "SRC-test", - "chainId": 6552, - "networkId": 6552, - "icon": "scolcoin", - "explorers": [ - { - "name": "Scolscan Testnet Explorer", - "url": "https://testnet-explorer.scolcoin.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fox Testnet Network", - "chain": "FOX", - "rpc": [ - "https://rpc-testnet-v1.foxchain.app/", - "https://rpc2-testnet-v1.foxchain.app/", - "https://rpc3-testnet-v1.foxchain.app" - ], - "faucets": [ - "https://faucet.foxchain.app" - ], - "nativeCurrency": { - "name": "FOX Native Token", - "symbol": "tFOX", - "decimals": 18 - }, - "infoURL": "https://foxchain.app", - "shortName": "fox", - "chainId": 6565, - "networkId": 6565, - "icon": "fox", - "explorers": [ - { - "name": "FOX Testnet Explorer", - "icon": "fox", - "url": "https://testnet.foxscan.app", - "standard": "none" - } - ] - }, - { - "name": "IRIShub", - "chain": "IRIShub", - "rpc": [ - "https://evmrpc.irishub-1.irisnet.org" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 - }, - "infoURL": "https://www.irisnet.org", - "shortName": "iris", - "chainId": 6688, - "networkId": 6688, - "icon": "irishub", - "explorers": [ - { - "name": "IRISHub Cosmos Explorer (IOBScan)", - "url": "https://irishub.iobscan.io", - "standard": "none", - "icon": "irishub" - } - ] - }, - { - "name": "Bitrock Mainnet", - "chain": "Bitrock", - "icon": "bitrock", - "rpc": [ - "https://connect.bit-rock.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 - }, - "infoURL": "https://bit-rock.io", - "shortName": "bitrock", - "chainId": 7171, - "networkId": 7171, - "explorers": [ - { - "name": "Bitrock Explorer", - "url": "https://scan.bit-rock.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "KLYNTAR", - "chain": "KLY", - "rpc": [ - "https://evm.klyntar.org/kly_evm_rpc", - "https://evm.klyntarscan.org/kly_evm_rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLYNTAR", - "symbol": "KLY", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://klyntar.org", - "shortName": "kly", - "chainId": 7331, - "networkId": 7331, - "icon": "klyntar", - "explorers": [], - "status": "incubating" - }, - { - "name": "Raba Network Mainnet", - "chain": "Raba", - "icon": "raba", - "rpc": [ - "https://rpc.x.raba.app/", - "wss://rpc.x.raba.app/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Raba", - "symbol": "RABA", - "decimals": 18 - }, - "infoURL": "https://x.raba.app/", - "shortName": "raba", - "chainId": 7484, - "networkId": 7484, - "explorers": [ - { - "name": "raba", - "url": "https://x.raba.app/explorer", - "standard": "none" - } - ] - }, - { - "name": "MEVerse Chain Mainnet", - "chain": "MEVerse", - "rpc": [ - "https://rpc.meversemainnet.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "MEVerse", - "symbol": "MEV", - "decimals": 18 - }, - "infoURL": "https://www.meverse.sg", - "shortName": "MEV", - "chainId": 7518, - "networkId": 7518, - "icon": "meverse", - "explorers": [ - { - "name": "MEVerse Chain Explorer", - "url": "https://www.meversescan.io", - "standard": "none", - "icon": "meverse" - } - ] - }, - { - "name": "ADIL Testnet", - "chain": "ADIL", - "icon": "adil", - "rpc": [ - "https://testnet.adilchain-rpc.io" - ], - "faucets": [ - "https://testnet-faucet.adil-scan.io" - ], - "nativeCurrency": { - "name": "Testnet ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "tadil", - "chainId": 7575, - "networkId": 7575, - "explorers": [ - { - "name": "ADIL Testnet Explorer", - "url": "https://testnet.adilchain-scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Adil Chain V2 Mainnet", - "chain": "ADIL", - "icon": "adil", - "rpc": [ - "https://adilchain-rpc.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "adil", - "chainId": 7576, - "networkId": 7576, - "explorers": [ - { - "name": "ADIL Mainnet Explorer", - "url": "https://adilchain-scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "The Root Network - Mainnet", - "chain": "TRN", - "rpc": [ - "https://root.rootnet.live/archive", - "wss://root.rootnet.live/archive/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 - }, - "infoURL": "https://www.futureverse.com/technology/root", - "shortName": "trn-mainnet", - "chainId": 7668, - "networkId": 7668, - "explorers": [ - { - "name": "rootnet", - "url": "https://explorer.rootnet.live", - "standard": "EIP3091" - } - ] - }, - { - "name": "The Root Network - Porcini Testnet", - "chain": "TRN", - "rpc": [ - "https://porcini.rootnet.app/archive", - "wss://porcini.rootnet.app/archive/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "XRP", - "symbol": "XRP", - "decimals": 6 - }, - "infoURL": "https://www.futureverse.com/technology/root", - "shortName": "trn-porcini", - "chainId": 7672, - "networkId": 7672, - "explorers": [ - { - "name": "rootnet", - "url": "https://explorer.rootnet.cloud", - "standard": "EIP3091" - } - ] - }, - { - "name": "Canto Tesnet", - "chain": "Canto", - "rpc": [ - "https://testnet-archive.plexnode.wtf" - ], - "faucets": [], - "nativeCurrency": { - "name": "Testnet Canto", - "symbol": "CANTO", - "decimals": 18 - }, - "infoURL": "https://canto.io", - "shortName": "TestnetCanto", - "chainId": 7701, - "networkId": 7701, - "explorers": [ - { - "name": "Canto Testnet EVM Explorer (Blockscout)", - "url": "https://testnet.tuber.build", - "standard": "none" - } - ] - }, - { - "name": "Bitrock Testnet", - "chain": "Bitrock", - "icon": "bitrock", - "rpc": [ - "https://testnet.bit-rock.io" - ], - "faucets": [ - "https://faucet.bit-rock.io" - ], - "nativeCurrency": { - "name": "BITROCK", - "symbol": "BROCK", - "decimals": 18 - }, - "infoURL": "https://bit-rock.io", - "shortName": "tbitrock", - "chainId": 7771, - "networkId": 7771, - "explorers": [ - { - "name": "Bitrock Testnet Explorer", - "url": "https://testnetscan.bit-rock.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ARDENIUM Athena", - "chain": "ATHENA", - "rpc": [ - "https://rpc-athena.ardescan.com/" - ], - "faucets": [ - "https://faucet-athena.ardescan.com/" - ], - "nativeCurrency": { - "name": "ARD", - "symbol": "tARD", - "decimals": 18 - }, - "infoURL": "https://ardenium.org", - "shortName": "ard", - "chainId": 7895, - "networkId": 7895, - "icon": "ard", - "explorers": [ - { - "name": "ARDENIUM Athena Explorer", - "icon": "ard", - "url": "https://testnet.ardscan.com", - "standard": "none" - } - ] - }, - { - "name": "DOS Chain", - "chain": "DOS", - "rpc": [ - "https://main.doschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOS", - "symbol": "DOS", - "decimals": 18 - }, - "infoURL": "https://doschain.io", - "shortName": "dos", - "chainId": 7979, - "networkId": 7979, - "icon": "doschain", - "explorers": [ - { - "name": "DOScan", - "url": "https://doscan.io", - "icon": "doschain", - "standard": "EIP3091" - } - ] - }, - { - "name": "BitEth", - "chain": "BTE", - "rpc": [ - "https://rpc.biteth.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BitEth", - "symbol": "BTE", - "decimals": 18 - }, - "infoURL": "https://biteth.org", - "shortName": "BitEth", - "chainId": 8086, - "networkId": 8086, - "explorers": [] - }, - { - "name": "Qitmeer Network Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meermix", - "icon": "meer", - "chainId": 8132, - "networkId": 8132, - "status": "incubating" - }, - { - "name": "Qitmeer Network Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Qitmeer Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "meerpriv", - "icon": "meer", - "chainId": 8133, - "networkId": 8133, - "status": "incubating" - }, - { - "name": "Amana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amana", - "icon": "meer", - "chainId": 8134, - "networkId": 8134, - "status": "incubating" - }, - { - "name": "Flana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flana", - "icon": "meer", - "chainId": 8135, - "networkId": 8135, - "status": "incubating" - }, - { - "name": "Mizana", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Mainnet", - "symbol": "MEER", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizana", - "icon": "meer", - "chainId": 8136, - "networkId": 8136, - "status": "incubating" - }, - { - "name": "Dracones Financial Services", - "title": "The Dracones Mainnet", - "chain": "FUCK", - "rpc": [ - "https://api.dracones.net/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Functionally Universal Coin Kind", - "symbol": "FUCK", - "decimals": 18 - }, - "infoURL": "https://wolfery.com", - "shortName": "fuck", - "chainId": 8387, - "networkId": 8387, - "icon": "dracones", - "explorers": [] - }, - { - "name": "Neonlink Testnet", - "chain": "Neonlink", - "rpc": [ - "https://testnet.neonlink.io" - ], - "faucets": [ - "https://faucet.neonlink.io/" - ], - "nativeCurrency": { - "name": "Neonlink Native Token", - "symbol": "tNEON", - "decimals": 18 - }, - "infoURL": "https://neonlink.io", - "shortName": "testneon", - "chainId": 9559, - "networkId": 9559, - "icon": "neonlink", - "explorers": [ - { - "name": "Neon Blockchain Explorer", - "url": "https://testnet-scan.neonlink.io", - "standard": "EIP3091", - "icon": "neonlink" - } - ] - }, - { - "name": "PepeNetwork Mainnet", - "chain": "PepeNetwork", - "rpc": [ - "https://rpc-mainnet.pepenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pepe", - "symbol": "WPEPE", - "decimals": 18 - }, - "infoURL": "https://pepenetwork.io", - "shortName": "pn", - "chainId": 9779, - "networkId": 9779, - "icon": "pepenetwork", - "explorers": [ - { - "name": "Pepe Explorer", - "url": "https://explorer.pepenetwork.io", - "icon": "pepenetwork", - "standard": "none" - } - ] - }, - { - "name": "Carbon EVM", - "chain": "Carbon", - "icon": "carbon", - "rpc": [ - "https://evm-api.carbon.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 - }, - "infoURL": "https://carbon.network/", - "shortName": "carbon", - "chainId": 9790, - "networkId": 9790, - "explorers": [] - }, - { - "name": "Carbon EVM Testnet", - "chain": "Carbon", - "icon": "carbon", - "rpc": [ - "https://test-evm-api.carbon.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "swth", - "symbol": "SWTH", - "decimals": 18 - }, - "infoURL": "https://carbon.network/", - "shortName": "carbon-testnet", - "chainId": 9792, - "networkId": 9792, - "explorers": [] - }, - { - "name": "AltLayer Testnet", - "chain": "ETH", - "rpc": [ - "https://testnet-rollup-api.altlayer.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://altlayer.io", - "shortName": "alt-testnet", - "chainId": 9997, - "networkId": 9997, - "icon": "altlayer", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-rollup-explorer.altlayer.io", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "HashBit Mainnet", - "chain": "HBIT", - "rpc": [ - "https://mainnet-rpc.hashbit.org", - "https://rpc.hashbit.org" - ], - "faucets": [ - "https://free-online-app.com/faucet-for-eth-evm-chains/" - ], - "nativeCurrency": { - "name": "HashBit Native Token", - "symbol": "HBIT", - "decimals": 18 - }, - "infoURL": "https://hashbit.org", - "shortName": "hbit", - "chainId": 11119, - "networkId": 11119, - "explorers": [ - { - "name": "hashbitscan", - "url": "https://explorer.hashbit.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "SatoshiChain Mainnet", - "chain": "SATS", - "icon": "satoshichain", - "rpc": [ - "https://mainnet-rpc.satoshichain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SatoshiChain Coin", - "symbol": "SATS", - "decimals": 18 - }, - "infoURL": "https://satoshichain.net", - "shortName": "sats", - "chainId": 12009, - "networkId": 12009, - "explorers": [ - { - "name": "SatoshiChain Explorer", - "url": "https://satoshiscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "BRC Chain Mainnet", - "chain": "BRC", - "rpc": [ - "https://rpc.brcchain.io" - ], - "faucets": [ - "https://faucet.brcchain.io" - ], - "nativeCurrency": { - "name": "BRC Chain mainnet native token", - "symbol": "BRC", - "decimals": 18 - }, - "infoURL": "https://bridge.brcchain.io", - "shortName": "BRC", - "chainId": 12123, - "networkId": 12123, - "icon": "brcchain", - "explorers": [ - { - "name": "BRC Chain Explorer", - "url": "https://scan.brcchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fibonacci Mainnet", - "chain": "FIBO", - "icon": "fibonacci", - "rpc": [ - "https://node1.fibo-api.asia", - "https://node2.fibo-api.asia", - "https://node3.fibo-api.asia", - "https://node4.fibo-api.asia", - "https://node5.fibo-api.asia", - "https://node6.fibo-api.asia", - "https://node7.fibo-api.asia", - "https://node1.fibo-rpc.asia", - "https://node2.fibo-rpc.asia", - "https://node3.fibo-rpc.asia", - "https://node4.fibo-rpc.asia", - "https://node5.fibo-rpc.asia", - "https://node6.fibo-rpc.asia", - "https://node7.fibo-rpc.asia" - ], - "faucets": [ - "https://test.fibochain.org/faucets" - ], - "nativeCurrency": { - "name": "FIBONACCI UTILITY TOKEN", - "symbol": "FIBO", - "decimals": 18 - }, - "infoURL": "https://fibochain.org", - "shortName": "fibo", - "chainId": 12306, - "networkId": 1230, - "explorers": [ - { - "name": "fiboscan", - "url": "https://scan.fibochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rikeza Network Testnet", - "title": "Rikeza Network Testnet", - "chain": "Rikeza", - "icon": "rikeza", - "rpc": [ - "https://testnet-rpc.rikscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rikeza", - "symbol": "RIK", - "decimals": 18 - }, - "infoURL": "https://rikeza.io", - "shortName": "tRIK", - "chainId": 12715, - "networkId": 12715, - "explorers": [ - { - "name": "Rikeza Blockchain explorer", - "url": "https://testnet.rikscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "LoopNetwork Mainnet", - "chain": "LoopNetwork", - "rpc": [ - "https://api.mainnetloop.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "LOOP", - "symbol": "LOOP", - "decimals": 18 - }, - "infoURL": "http://theloopnetwork.org/", - "shortName": "loop", - "chainId": 15551, - "networkId": 15551, - "explorers": [ - { - "name": "loopscan", - "url": "http://explorer.mainnetloop.com", - "standard": "none" - } - ] - }, - { - "name": "EOS EVM Network Testnet", - "chain": "EOS", - "icon": "eos", - "rpc": [ - "https://api.testnet.evm.eosnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eosnetwork.com/eos-evm", - "shortName": "eos-testnet", - "chainId": 15557, - "networkId": 15557, - "explorers": [ - { - "name": "EOS EVM Explorer", - "url": "https://explorer.testnet.evm.eosnetwork.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.testnet.evm.eosnetwork.com" - } - ] - } - }, - { - "name": "Genesys Mainnet", - "chain": "Genesys", - "icon": "genesys", - "rpc": [ - "https://rpc.genesys.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Genesys", - "symbol": "GSYS", - "decimals": 18 - }, - "infoURL": "https://www.genesys.network/", - "shortName": "Genesys", - "chainId": 16507, - "networkId": 16507, - "explorers": [ - { - "name": "GchainExplorer", - "url": "https://gchainexplorer.genesys.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "IRIShub Testnet", - "chain": "IRIShub", - "rpc": [ - "https://evmrpc.nyancat.irisnet.org" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eris", - "symbol": "ERIS", - "decimals": 18 - }, - "infoURL": "https://www.irisnet.org", - "shortName": "nyancat", - "chainId": 16688, - "networkId": 16688, - "icon": "nyancat", - "explorers": [ - { - "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", - "url": "https://nyancat.iobscan.io", - "standard": "none", - "icon": "nyancat" - } - ] - }, - { - "name": "Palette Chain Testnet", - "chain": "PLT", - "rpc": [ - "https://palette-opennet.com:22000" - ], - "faucets": [], - "nativeCurrency": { - "name": "Palette Token", - "symbol": "PLT", - "decimals": 18 - }, - "features": [], - "infoURL": "https://hashpalette.com/", - "shortName": "PCT", - "chainId": 17180, - "networkId": 17180, - "icon": "PLT", - "explorers": [ - { - "name": "Palettescan", - "url": "https://testnet.palettescan.com", - "icon": "PLT", - "standard": "none" - } - ] - }, - { - "name": "EOS EVM Network", - "chain": "EOS", - "icon": "eos", - "rpc": [ - "https://api.evm.eosnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "EOS", - "symbol": "EOS", - "decimals": 18 - }, - "infoURL": "https://eosnetwork.com/eos-evm", - "shortName": "eos", - "chainId": 17777, - "networkId": 17777, - "explorers": [ - { - "name": "EOS EVM Explorer", - "url": "https://explorer.evm.eosnetwork.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.evm.eosnetwork.com" - }, - { - "url": "https://app.multichain.org" - } - ] - } - }, - { - "name": "MXC zkEVM Mainnet", - "chain": "MXC zkEVM", - "icon": "mxczkevm", - "rpc": [ - "https://rpc.mxc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MXC zkEVM Mainnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://doc.mxc.com/docs/intro", - "shortName": "MXCzkEVM", - "chainId": 18686, - "networkId": 18686, - "explorers": [ - { - "name": "MXC zkEVM Mainnet", - "url": "https://explorer.mxc.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Camelark Mainnet", - "chainId": 20001, - "shortName": "Camelark", - "chain": "ETHW", - "icon": "camelark", - "networkId": 20001, - "nativeCurrency": { - "name": "EthereumPoW", - "symbol": "ETHW", - "decimals": 18 - }, - "rpc": [ - "https://mainnet-http-rpc.camelark.com" - ], - "faucets": [], - "explorers": [ - { - "name": "CamelarkScan", - "url": "https://scan.camelark.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://www.camelark.com" - }, - { - "name": "Antofy Testnet", - "chain": "ABN", - "icon": "antofy", - "rpc": [ - "https://testnet-rpc.antofy.io" - ], - "faucets": [ - "https://faucet.antofy.io" - ], - "nativeCurrency": { - "name": "Antofy", - "symbol": "ABN", - "decimals": 18 - }, - "infoURL": "https://antofy.io", - "shortName": "ABNt", - "chainId": 23006, - "networkId": 23006, - "explorers": [ - { - "name": "Antofy Testnet", - "url": "https://test.antofyscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ferrum Testnet", - "chain": "tFRM", - "rpc": [ - "http://testnet.dev.svcs.ferrumnetwork.io:9933" - ], - "faucets": [ - "https://testnet.faucet.ferrumnetwork.io" - ], - "nativeCurrency": { - "name": "Ferrum", - "symbol": "tFRM", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://ferrum.network", - "shortName": "frm", - "chainId": 26026, - "networkId": 26026, - "explorers": [ - { - "name": "polkadotjs", - "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", - "standard": "none" - } - ] - }, - { - "name": "Zilliqa EVM", - "chain": "ZIL", - "rpc": [ - "https://api.zilliqa.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil", - "chainId": 32769, - "networkId": 32769, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } - ] - }, - { - "name": "Zilliqa EVM Testnet", - "chain": "ZIL", - "rpc": [ - "https://dev-api.zilliqa.com" - ], - "faucets": [ - "https://dev-wallet.zilliqa.com/faucet?network=testnet" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-testnet", - "chainId": 33101, - "networkId": 33101, - "explorers": [ - { - "name": "Zilliqa EVM Explorer", - "url": "https://evmx.zilliqa.com", - "standard": "none" - } - ] - }, - { - "name": "Opside Testnet Pre-Alpha", - "chain": "ETH", - "rpc": [ - "https://pre-alpha-us-http-geth.opside.network", - "https://pre-alpha-hk-http-geth.opside.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "IDE Test Token", - "symbol": "IDE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://opsi.de/", - "shortName": "Opside-Testnet", - "chainId": 51178, - "networkId": 51178, - "icon": "opside-new", - "explorers": [ - { - "name": "OpsideTestnetInfo", - "url": "https://pre-alpha.opside.info", - "icon": "opside-new", - "standard": "EIP3091" - } - ] - }, - { - "name": "Toronet Testnet", - "chain": "Toronet", - "icon": "toronet", - "rpc": [ - "http://testnet.toronet.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 - }, - "infoURL": "https://toronet.org", - "shortName": "ToronetTestnet", - "chainId": 54321, - "networkId": 54321, - "ens": { - "registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09" - }, - "explorers": [ - { - "name": "toronet_explorer", - "url": "https://testnet.toronet.org", - "standard": "none" - } - ] - }, - { - "name": "Titan", - "chain": "ETH", - "rpc": [ - "https://rpc.titan.tokamak.network", - "wss://rpc.titan.tokamak.network/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://tokamak.network", - "shortName": "teth", - "chainId": 55004, - "networkId": 55004, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.titan.tokamak.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rollux Testnet", - "chain": "SYS", - "rpc": [ - "https://rpc-tanenbaum.rollux.com", - "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", - "wss://rpc-tanenbaum.rollux.com/wss" - ], - "faucets": [ - "https://rollux.id/faucetapp" - ], - "nativeCurrency": { - "name": "Testnet Syscoin", - "symbol": "TSYS", - "decimals": 18 - }, - "infoURL": "https://rollux.com", - "shortName": "tsys-rollux", - "chainId": 57000, - "networkId": 57000, - "explorers": [ - { - "name": "Rollux Testnet Explorer", - "url": "https://rollux.tanenbaum.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sepolia PGN (Public Goods Network)", - "chain": "ETH", - "rpc": [ - "https://sepolia.publicgoods.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://publicgoods.network/", - "shortName": "sepPGN", - "chainId": 58008, - "networkId": 58008, - "icon": "publicGoodsNetwork", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sepolia.publicgoods.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://pgn-bridge.vercel.app/bridge" - } - ] - } - }, - { - "name": "Linea Testnet", - "title": "Linea Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.goerli.linea.build", - "wss://rpc.goerli.linea.build", - "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}" - ], - "faucets": [ - "https://faucetlink.to/goerli" - ], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea-testnet", - "chainId": 59140, - "networkId": 59140, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" - } - ] - }, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.goerli.linea.build", - "standard": "EIP3091", - "icon": "linea" - } - ], - "status": "active" - }, - { - "name": "AxelChain Dev-Net", - "chain": "AXEL", - "rpc": [ - "https://aium-rpc-dev.viacube.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Axelium", - "symbol": "AIUM", - "decimals": 18 - }, - "infoURL": "https://www.axel.org", - "shortName": "aium-dev", - "chainId": 61800, - "networkId": 61800, - "icon": "axelium", - "explorers": [ - { - "name": "AxelChain Dev-Net Explorer", - "url": "https://devexplorer2.viacube.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Scolcoin Mainnet", - "chain": "SCOLWEI", - "rpc": [ - "https://mainnet-rpc.scolcoin.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Scolcoin", - "symbol": "SCOL", - "decimals": 18 - }, - "infoURL": "https://scolcoin.com", - "shortName": "SRC", - "chainId": 65450, - "networkId": 65450, - "icon": "scolcoin", - "explorers": [ - { - "name": "Scolscan Explorer", - "url": "https://explorer.scolcoin.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cosmic Chain", - "chain": "COSMIC", - "rpc": [ - "http://testnet.cosmicchain.site:3344" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cosmic Chain", - "symbol": "COSMIC", - "decimals": 18 - }, - "infoURL": "https://cosmicchain.site", - "shortName": "Cosmic", - "chainId": 67588, - "networkId": 3344 - }, - { - "name": "GuapcoinX", - "chain": "GuapcoinX", - "rpc": [ - "https://rpc-mainnet.guapcoinx.com/", - "https://rpc-mainnet-1.guapcoinx.com/", - "https://rpc-mainnet-2.guapcoinx.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GuapcoinX", - "symbol": "GuapX", - "decimals": 18 - }, - "infoURL": "https://guapcoin.org/", - "shortName": "GuapX", - "chainId": 71111, - "networkId": 71111, - "icon": "guapcoinx", - "explorers": [ - { - "name": "GuapcoinX Explorer", - "url": "http://explorer.guapcoinx.com", - "standard": "none", - "icon": "guapcoinx" - } - ] - }, - { - "name": "Toronet Mainnet", - "chain": "Toronet", - "icon": "toronet", - "rpc": [ - "http://toronet.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Toro", - "symbol": "TORO", - "decimals": 18 - }, - "infoURL": "https://toronet.org", - "shortName": "Toronet", - "chainId": 77777, - "networkId": 77777, - "ens": { - "registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c" - }, - "explorers": [ - { - "name": "toronet_explorer", - "url": "https://toronet.org/explorer", - "standard": "none" - } - ] - }, - { - "name": "Dragonfly Mainnet (Hexapod)", - "chain": "Dragonfly", - "icon": "dragonfly", - "rpc": [ - "https://dragonfly-rpc.switch.ch", - "https://dragonfly-rpc.kore-technologies.ch", - "https://dragonfly-rpc.phoenix-systems.io", - "https://dragonfly-rpc.block-spirit.ch" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dragonfly", - "symbol": "DFLY", - "decimals": 18 - }, - "infoURL": "https://hexapod.network", - "shortName": "dfly", - "chainId": 78281, - "networkId": 78281, - "explorers": [ - { - "name": "Dragonfly Blockscout", - "url": "https://blockscout.dragonfly.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Amana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanatest", - "icon": "meer", - "chainId": 81341, - "networkId": 81341, - "status": "incubating" - }, - { - "name": "Amana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanamix", - "icon": "meer", - "chainId": 81342, - "networkId": 81342, - "status": "incubating" - }, - { - "name": "Amana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Amana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "amanapriv", - "icon": "meer", - "chainId": 81343, - "networkId": 81343, - "status": "incubating" - }, - { - "name": "Flana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanatest", - "icon": "meer", - "chainId": 81351, - "networkId": 81351, - "status": "incubating" - }, - { - "name": "Flana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanamix", - "icon": "meer", - "chainId": 81352, - "networkId": 81352, - "status": "incubating" - }, - { - "name": "Flana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Flana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "flanapriv", - "icon": "meer", - "chainId": 81353, - "networkId": 81353, - "status": "incubating" - }, - { - "name": "Mizana Testnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Testnet", - "symbol": "MEER-T", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanatest", - "icon": "meer", - "chainId": 81361, - "networkId": 81361, - "status": "incubating" - }, - { - "name": "Mizana Mixnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Mixnet", - "symbol": "MEER-M", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanamix", - "icon": "meer", - "chainId": 81362, - "networkId": 81362, - "status": "incubating" - }, - { - "name": "Mizana Privnet", - "chain": "MEER", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Mizana Privnet", - "symbol": "MEER-P", - "decimals": 18 - }, - "infoURL": "https://github.com/Qitmeer", - "shortName": "mizanapriv", - "icon": "meer", - "chainId": 81363, - "networkId": 81363, - "status": "incubating" - }, - { - "name": "CYBERTRUST", - "chain": "CYBER", - "rpc": [ - "http://testnet.cybertrust.space:48501" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cyber Trust", - "symbol": "CYBER", - "decimals": 18 - }, - "infoURL": "https://cybertrust.space", - "shortName": "Cyber", - "chainId": 85449, - "networkId": 48501 - }, - { - "name": "Nautilus Chain", - "title": "Nautilus Trition Testnet", - "chain": "ETH", - "icon": "nautilus", - "rpc": [ - "https://triton.api.nautchain.xyz" - ], - "faucets": [ - "https://faucet.eclipse.builders" - ], - "nativeCurrency": { - "name": "Nautilus Zebec Testnet Tokens", - "symbol": "tZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUT", - "chainId": 91002, - "networkId": 91002, - "explorers": [ - { - "name": "Nautscan", - "url": "https://triton.nautscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mantis Testnet (Hexapod)", - "chain": "Mantis", - "icon": "mantis", - "rpc": [ - "https://mantis-rpc.switch.ch", - "https://mantis-rpc.kore-technologies.ch", - "https://mantis-rpc.phoenix-systems.io" - ], - "faucets": [ - "https://mantis.switch.ch/faucet", - "https://mantis.kore-technologies.ch/faucet", - "https://mantis.phoenix-systems.io/faucet", - "https://mantis.block-spirit.ch/faucet" - ], - "nativeCurrency": { - "name": "Mantis", - "symbol": "MANTIS", - "decimals": 18 - }, - "infoURL": "https://hexapod.network", - "shortName": "mantis", - "chainId": 96970, - "networkId": 96970, - "explorers": [ - { - "name": "Mantis Blockscout", - "url": "https://blockscout.mantis.hexapod.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Siberium Test Network", - "chain": "SBR", - "rpc": [ - "https://rpc.test.siberium.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "TestSIBR", - "symbol": "SIBR", - "decimals": 18 - }, - "infoURL": "https://siberium.net", - "shortName": "testsbr", - "chainId": 111000, - "networkId": 111000, - "icon": "siberium", - "explorers": [ - { - "name": "Siberium Testnet Explorer - blockscout", - "url": "https://explorer.test.siberium.net", - "icon": "siberium", - "standard": "EIP3091" - } - ] - }, - { - "name": "Siberium Network", - "chain": "SBR", - "rpc": [ - "https://rpc.main.siberium.net", - "https://rpc.main.siberium.net.ru" - ], - "faucets": [], - "nativeCurrency": { - "name": "Siberium", - "symbol": "SIBR", - "decimals": 18 - }, - "infoURL": "https://siberium.net", - "shortName": "sbr", - "chainId": 111111, - "networkId": 111111, - "icon": "siberium", - "explorers": [ - { - "name": "Siberium Mainnet Explorer - blockscout - 1", - "url": "https://explorer.main.siberium.net", - "icon": "siberium", - "standard": "EIP3091" - }, - { - "name": "Siberium Mainnet Explorer - blockscout - 2", - "url": "https://explorer.main.siberium.net.ru", - "icon": "siberium", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metachain One Mainnet", - "chain": "METAO", - "icon": "metao", - "rpc": [ - "https://rpc.metachain.one", - "https://rpc2.metachain.one" - ], - "faucets": [], - "nativeCurrency": { - "name": "Metao", - "symbol": "METAO", - "decimals": 18 - }, - "infoURL": "https://metachain.one", - "shortName": "metao", - "chainId": 112358, - "networkId": 112358, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.metachain.one", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "ADIL Devnet", - "chain": "ADIL", - "icon": "adil", - "rpc": [ - "https://devnet.adilchain-rpc.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Devnet ADIL", - "symbol": "ADIL", - "decimals": 18 - }, - "infoURL": "https://adilchain.io", - "shortName": "dadil", - "chainId": 123456, - "networkId": 123456, - "explorers": [ - { - "name": "ADIL Devnet Explorer", - "url": "https://devnet.adilchain-scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ICPlaza Mainnet", - "chain": "ICPlaza", - "icon": "icplaza", - "rpc": [ - "https://rpcmainnet.ic-plaza.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ict", - "symbol": "ict", - "decimals": 18 - }, - "infoURL": "https://docs.ic-plaza.org/", - "shortName": "ICPlaza", - "chainId": 142857, - "networkId": 142857, - "explorers": [ - { - "name": "ICPlaza", - "url": "https://browsemainnet.ic-plaza.org/index", - "standard": "none" - } - ] - }, - { - "name": "Taf ECO Chain Mainnet", - "chain": "Taf ECO Chain", - "icon": "taf", - "rpc": [ - "https://mainnet.tafchain.com/v1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Taf ECO Chain Mainnet", - "symbol": "TAFECO", - "decimals": 18 - }, - "infoURL": "https://www.tafchain.com", - "shortName": "TAFECO", - "chainId": 224168, - "networkId": 224168, - "explorers": [ - { - "name": "Taf ECO Chain Mainnet", - "url": "https://ecoscan.tafchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "HashKey Chain Testnet", - "chain": "HashKey", - "rpc": [ - "https://testnet.hashkeychain/rpc" - ], - "faucets": [ - "https://testnet.hashkeychain/faucet" - ], - "nativeCurrency": { - "name": "HashKey Token", - "symbol": "tHSK", - "decimals": 18 - }, - "infoURL": "https://www.hashkey.com", - "shortName": "hsktest", - "chainId": 230315, - "networkId": 230315, - "icon": "hsk", - "explorers": [ - { - "name": "HashKey Chain Testnet Explorer", - "url": "https://testnet.hashkeyscan.io", - "standard": "none" - } - ] - }, - { - "name": "EgonCoin Testnet", - "chain": "EGON", - "icon": "egonicon", - "rpc": [ - "https://rpctest.egcscan.com" - ], - "faucets": [ - "https://faucet.egcscan.com" - ], - "nativeCurrency": { - "name": "EgonCoin", - "symbol": "EGON", - "decimals": 18 - }, - "infoURL": "https://egcscan.com", - "shortName": "EGONt", - "chainId": 271271, - "networkId": 271271, - "explorers": [ - { - "name": "EgonCoin Testnet", - "url": "https://testnet.egcscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "TTcoin Smart Chain Mainnet", - "chain": "TSC", - "icon": "tscscan", - "rpc": [ - "https://mainnet-rpc.tscscan.com" - ], - "faucets": [ - "https://faucet.tscscan.com" - ], - "nativeCurrency": { - "name": "TTcoin", - "symbol": "TC", - "decimals": 18 - }, - "infoURL": "https://ttcoin.info/", - "shortName": "tc", - "chainId": 330844, - "networkId": 330844, - "explorers": [ - { - "name": "TTcoin Smart Chain Explorer", - "url": "https://tscscan.com", - "standard": "EIP3091", - "icon": "tscscan" - } - ] - }, - { - "name": "Aves Testnet", - "chain": "AVST", - "rpc": [ - "https://test.rpc.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "AvesT", - "symbol": "AVST", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://ethereum.org", - "shortName": "avst", - "chainId": 333331, - "networkId": 333331, - "icon": "aves", - "explorers": [ - { - "name": "avescan", - "url": "https://testnet.avescoin.io", - "icon": "avescan", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitfinity Network Testnet", - "chain": "BFT", - "rpc": [ - "https://testnet.bitfinity.network" - ], - "faucets": [ - "https://bitfinity.network/faucet" - ], - "nativeCurrency": { - "name": "BITFINITY", - "symbol": "BFT", - "decimals": 18 - }, - "infoURL": "https://bitfinity.network", - "shortName": "Bitfinity", - "chainId": 355113, - "networkId": 355113, - "explorers": [ - { - "name": "Bitfinity Block Explorer", - "url": "https://explorer.bitfinity.network", - "icon": "bitfinity", - "standard": "EIP3091" - } - ] - }, - { - "name": "HAPchain Testnet", - "chain": "HAPchain", - "rpc": [ - "https://jsonrpc-test.hap.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 - }, - "infoURL": "https://hap.land", - "shortName": "hap-testnet", - "chainId": 373737, - "networkId": 373737, - "icon": "hap", - "explorers": [ - { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout-test.hap.land", - "standard": "none", - "icon": "hap" - } - ] - }, - { - "name": "Tipboxcoin Mainnet", - "chain": "TPBX", - "icon": "tipboxcoinIcon", - "rpc": [ - "https://mainnet-rpc.tipboxcoin.net" - ], - "faucets": [ - "https://faucet.tipboxcoin.net" - ], - "nativeCurrency": { - "name": "Tipboxcoin", - "symbol": "TPBX", - "decimals": 18 - }, - "infoURL": "https://tipboxcoin.net", - "shortName": "TPBXm", - "chainId": 404040, - "networkId": 404040, - "explorers": [ - { - "name": "Tipboxcoin", - "url": "https://tipboxcoin.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Markr Go", - "chain": "Unified", - "icon": "markrgo", - "rpc": [ - "https://rpc.markr.io/ext/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Avalanche", - "symbol": "AVAX", - "decimals": 18 - }, - "infoURL": "https://www.markr.io/", - "shortName": "markr-go", - "chainId": 431140, - "networkId": 431140, - "explorers": [], - "status": "incubating" - }, - { - "name": "Patex Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://test-rpc.patex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://patex.io/", - "shortName": "psep", - "chainId": 471100, - "networkId": 471100 - }, - { - "name": "Scroll Sepolia Testnet", - "chain": "ETH", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scroll.io", - "shortName": "scr-sepolia", - "chainId": 534351, - "networkId": 534351, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "Shinarium Beta", - "chain": "Shinarium", - "rpc": [ - "https://rpc.shinarium.org" - ], - "faucets": [ - "https://faucet.shinarium.org" - ], - "nativeCurrency": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 - }, - "infoURL": "https://shinarium.org", - "shortName": "shi", - "chainId": 534849, - "networkId": 534849, - "explorers": [ - { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "BeanEco SmartChain", - "title": "BESC Mainnet", - "chain": "BESC", - "rpc": [ - "https://mainnet-rpc.bescscan.io" - ], - "faucets": [ - "faucet.bescscan.ion" - ], - "nativeCurrency": { - "name": "BeanEco SmartChain", - "symbol": "BESC", - "decimals": 18 - }, - "infoURL": "besceco.finance", - "shortName": "BESC", - "chainId": 535037, - "networkId": 535037, - "explorers": [ - { - "name": "bescscan", - "url": "https://Bescscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ALL Mainnet", - "chain": "ALL", - "icon": "alltra", - "rpc": [ - "https://mainnet-rpc.alltra.global" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALL", - "symbol": "ALL", - "decimals": 18 - }, - "infoURL": "https://alltra.world", - "shortName": "ALL", - "chainId": 651940, - "networkId": 651940, - "explorers": [ - { - "name": "Alltra SmartChain Explorer", - "url": "https://alltra.global", - "standard": "EIP3091" - } - ] - }, - { - "name": "CURVE Mainnet", - "chain": "CURVE", - "icon": "curveIcon", - "rpc": [ - "https://mainnet-rpc.curvescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Curve", - "symbol": "CURVE", - "decimals": 18 - }, - "infoURL": "https://curvescan.io", - "shortName": "CURVEm", - "chainId": 827431, - "networkId": 827431, - "explorers": [ - { - "name": "CURVE Mainnet", - "url": "https://curvescan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "AltLayer Zero Gas Network", - "chain": "ETH", - "rpc": [ - "https://zero.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://altlayer.io", - "shortName": "alt-zerogas", - "chainId": 4000003, - "networkId": 4000003, - "icon": "altlayer", - "explorers": [ - { - "name": "blockscout", - "url": "https://zero-explorer.alt.technology", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Worlds Caldera", - "chain": "WCal", - "rpc": [ - "https://worlds-test.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://caldera.xyz/", - "shortName": "worldscal", - "chainId": 4281033, - "networkId": 4281033, - "icon": "ethereum", - "explorers": [] - }, - { - "name": "MXC Wannsee zkEVM Testnet", - "chain": "MXC zkEVM", - "icon": "mxc", - "rpc": [ - "https://wannsee-rpc.mxc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "MXC Wannsee zkEVM Testnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://wannsee.mxc.com/docs/intro", - "shortName": "MXC", - "chainId": 5167003, - "networkId": 5167003, - "explorers": [ - { - "name": "MXC Wannsee zkEVM Testnet", - "url": "https://wannsee-explorer.mxc.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "HAPchain", - "chain": "HAPchain", - "rpc": [ - "https://jsonrpc.hap.land" - ], - "faucets": [], - "nativeCurrency": { - "name": "HAP", - "symbol": "HAP", - "decimals": 18 - }, - "infoURL": "https://hap.land", - "shortName": "hap", - "chainId": 8794598, - "networkId": 8794598, - "icon": "hap", - "explorers": [ - { - "name": "HAP EVM Explorer (Blockscout)", - "url": "https://blockscout.hap.land", - "standard": "none", - "icon": "hap" - } - ] - }, - { - "name": "Quarix Testnet", - "chain": "Quarix", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Q", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "", - "shortName": "quarix-testnet", - "chainId": 8888881, - "networkId": 8888881, - "icon": "quarix", - "explorers": [] - }, - { - "name": "Quarix", - "chain": "Quarix", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Q", - "symbol": "Q", - "decimals": 18 - }, - "infoURL": "", - "shortName": "quarix", - "chainId": 8888888, - "networkId": 8888888, - "icon": "quarix", - "explorers": [] - }, - { - "name": "T.E.A.M Blockchain", - "chain": "TEAM", - "icon": "team", - "rpc": [ - "https://rpc.teamblockchain.team" - ], - "faucets": [], - "nativeCurrency": { - "name": "TEAM", - "symbol": "$TEAM", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://teamblockchain.team", - "shortName": "team", - "chainId": 88888888, - "networkId": 88888888, - "explorers": [ - { - "name": "teamscan", - "url": "https://teamblockchain.team", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kanazawa", - "title": "Meld Testnet Kanazawa", - "chain": "Kanazawa", - "rpc": [ - "https://subnets.avax.network/meld/testnet/rpc" - ], - "faucets": [], - "features": [], - "nativeCurrency": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 - }, - "icon": "meld", - "infoURL": "https://meld.com", - "shortName": "kanazawa", - "chainId": 222000222, - "networkId": 222000222, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets-test.avax.network/meld", - "icon": "meld", - "standard": "EIP3091" - } - ] - }, - { - "name": "Razor Skale Chain", - "chain": "Razor Schain", - "icon": "razornetwork", - "rpc": [ - "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" - ], - "faucets": [ - "https://faucet.razorscan.io/" - ], - "nativeCurrency": { - "name": "sFuel", - "symbol": "SFUEL", - "decimals": 18 - }, - "infoURL": "https://razor.network", - "shortName": "razor", - "chainId": 278611351, - "networkId": 278611351, - "explorers": [ - { - "name": "turbulent-unique-scheat", - "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Meld", - "title": "Meld Mainnet", - "chain": "MELD", - "rpc": [ - "https://subnets.avax.network/meld/mainnet/rpc" - ], - "faucets": [], - "features": [], - "nativeCurrency": { - "name": "gMeld", - "symbol": "gMELD", - "decimals": 18 - }, - "icon": "meld", - "infoURL": "https://meld.com", - "shortName": "meld", - "chainId": 333000333, - "networkId": 333000333, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets.avax.network/meld", - "icon": "meld", - "standard": "EIP3091" - } - ] - }, - { - "name": "CyberdeckNet", - "chain": "cyberdeck", - "rpc": [ - "http://cybeth1.cyberdeck.eu:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cyb", - "symbol": "CYB", - "decimals": 18 - }, - "infoURL": "https://cyberdeck.eu", - "shortName": "cyb", - "chainId": 1146703430, - "networkId": 1146703430, - "icon": "cyberdeck", - "status": "active", - "explorers": [ - { - "name": "CybEthExplorer", - "url": "http://cybeth1.cyberdeck.eu:8000", - "icon": "cyberdeck", - "standard": "none" - } - ] - }, - { - "name": "HUMAN Protocol", - "title": "HUMAN Protocol", - "chain": "wan-red-ain", - "rpc": [ - "https://mainnet.skalenodes.com/v1/wan-red-ain" - ], - "faucets": [ - "https://dashboard.humanprotocol.org/faucet" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://www.humanprotocol.org", - "shortName": "human-mainnet", - "chainId": 1273227453, - "networkId": 1273227453, - "explorers": [ - { - "name": "Blockscout", - "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", - "icon": "human", - "standard": "EIP3091" - } - ] - }, - { - "name": "Chaos (SKALE Testnet)", - "title": "Chaos Testnet", - "chain": "staging-fast-active-bellatrix", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" - ], - "faucets": [ - "https://sfuel.skale.network/staging/chaos" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://docs.skale.network/develop/", - "shortName": "chaos-tenet", - "chainId": 1351057110, - "networkId": 1351057110, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", - "icon": "chaos", - "standard": "EIP3091" - } - ] - }, - { - "name": "RaptorChain", - "chain": "RPTR", - "rpc": [ - "https://rpc.raptorchain.io/web3" - ], - "faucets": [], - "nativeCurrency": { - "name": "Raptor", - "symbol": "RPTR", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://raptorchain.io", - "shortName": "rptr", - "chainId": 1380996178, - "networkId": 1380996178, - "icon": "raptorchain", - "explorers": [ - { - "name": "RaptorChain Explorer", - "url": "https://explorer.raptorchain.io", - "icon": "raptorchain_explorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Alphabet Mainnet", - "chain": "Alphabet Network", - "icon": "alphabetnetwork", - "rpc": [ - "https://londonpublic.alphabetnetwork.org", - "wss://londonpublic.alphabetnetwork.org/ws/", - "https://main-rpc.com", - "wss://main-rpc.com/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALT", - "symbol": "ALT", - "decimals": 18 - }, - "infoURL": "https://alphabetnetwork.org", - "shortName": "alphabet", - "chainId": 111222333444, - "networkId": 111222333444, - "explorers": [ - { - "name": "Alphabet Explorer", - "url": "https://scan.alphabetnetwork.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ethereum Express", - "chainId": 8957, - "shortName": "ETE", - "chain": "ETE", - "network": "mainnet", - "networkId": 8957, - "nativeCurrency": { - "name": "ETE", - "symbol": "ETE", - "decimals": 18 - }, - "rpc": [ - "https://www.etescan.net/rpc", - "https://www.etelondon.com/rpc", - "https://test.uaechain.net/rpc", - "https://rpc.web3russia.org/ete", - "https://www.etecanada.com/rpc", - "https://node.brazildao.biz/ete", - "https://ete.indiaio.net/fast", - "https://ete.auhacker.xyz/data", - "https://service.saalliance.net/ete" - ], - "faucets": [], - "infoURL": "https://www.ethereumexpress.net", - "app_resource": { - "ic_chain_select": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/select.png", - "ic_chain_unselect": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/unselect.png", - "color_chain_bg": "0x013162" - } - }, - { - "name": "Pink Chain", - "chainId": 9801, - "shortName": "pink", - "chain": "Pink", - "network": "mainnet", - "networkId": 9801, - "nativeCurrency": { - "name": "Pink Coin", - "symbol": "PKB", - "decimals": 18 - }, - "rpc": [ - "https://pinkchain.co/", - "https://rpc1.pinkchain.co/", - "https://rpc2.pinkchain.co/" - ], - "faucets": [], - "infoURL": "https://pink-chain.com/", - "app_resource": { - "ic_chain_select": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275871180-28ecbadd98de7c6db5ea578a380e4468.png", - "ic_chain_unselect": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275894734-6f8825a9413b793fe9462b093fb3c906.png", - "color_chain_bg": "0xf95192" - } - }, - { - "name": "Worldland Mainnet", - "chain": "Worldland", - "icon": "worldland", - "rpc": [ - "https://seoul.worldland.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Worldland", - "symbol": "WL", - "decimals": 18 - }, - "infoURL": "https://worldland.foundation", - "shortName": "WLC", - "chainId": 103, - "networkId": 103, - "explorers": [ - { - "name": "Worldland Explorer", - "url": "https://scan.worldland.foundation", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shibarium", - "chain": "Shibarium", - "icon": "shibarium", - "rpc": [ - "https://www.shibrpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BONE Shibarium", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://shibariumecosystem.com", - "shortName": "shibariumecosystem", - "chainId": 109, - "networkId": 109, - "explorers": [ - { - "name": "shibariumscan", - "url": "https://www.shibariumscan.io", - "standard": "none" - } - ] - }, - { - "name": "ShimmerEVM Mainnet", - "title": "ShimmerEVM Mainnet", - "chain": "ShimmerEVM", - "rpc": [ - "https://json-rpc.evm.shimmer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 18 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-mainnet", - "chainId": 148, - "networkId": 148, - "icon": "shimmerevm", - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.shimmer.network", - "icon": "shimmerevm", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redbelly Network Mainnet", - "shortName": "rbn", - "chain": "RBN", - "chainId": 151, - "networkId": 151, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - }, - "status": "incubating" - }, - { - "name": "Redbelly Network Devnet", - "shortName": "rbn-devnet", - "chain": "RBN", - "chainId": 152, - "networkId": 152, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - }, - "status": "incubating" - }, - { - "name": "Redbelly Network Testnet", - "shortName": "rbn-testnet", - "chain": "RBN", - "chainId": 153, - "networkId": 153, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - }, - "status": "incubating" - }, - { - "name": "Redbelly Network TGE", - "shortName": "rbn-tge", - "chain": "RBN", - "chainId": 154, - "networkId": 154, - "rpc": [], - "faucets": [], - "infoURL": "https://redbelly.network", - "nativeCurrency": { - "name": "Redbelly Network Coin", - "symbol": "RBNT", - "decimals": 18 - } - }, - { - "name": "Manta Pacific Mainnet", - "chain": "Manta Pacific", - "rpc": [ - "https://pacific-rpc.manta.network/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://pacific-info.manta.network", - "shortName": "manta", - "chainId": 169, - "networkId": 169, - "icon": "manta", - "explorers": [ - { - "name": "manta-pacific Explorer", - "url": "https://pacific-explorer.manta.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitchain Mainnet", - "chain": "Bit", - "rpc": [ - "https://rpc.bitchain.biz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.bitchain.biz/", - "shortName": "bit", - "chainId": 198, - "networkId": 198, - "explorers": [ - { - "name": "Bitchain Scan", - "url": "https://explorer.bitchain.biz", - "standard": "EIP3091" - } - ] - }, - { - "name": "opBNB Mainnet", - "icon": "bnbchain", - "chain": "opBNB", - "rpc": [ - "https://opbnb-mainnet-rpc.bnbchain.org", - "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", - "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", - "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", - "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", - "https://opbnb.publicnode.com", - "wss://opbnb.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://opbnb.bnbchain.org/en", - "shortName": "obnb", - "chainId": 204, - "networkId": 204, - "slip44": 714, - "explorers": [ - { - "name": "opbnbscan", - "url": "https://mainnet.opbnbscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "VinuChain Testnet", - "chain": "VinuChain Testnet", - "rpc": [ - "https://vinufoundation-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VinuChain", - "symbol": "VС", - "decimals": 18 - }, - "infoURL": "https://vitainu.org", - "shortName": "VCTEST", - "chainId": 206, - "networkId": 206, - "icon": "vitainu-testnet", - "explorers": [ - { - "name": "VinuScan Testnet", - "url": "https://testnet.vinuscan.com", - "icon": "vinuscan-testnet", - "standard": "none" - } - ] - }, - { - "name": "VinuChain Network", - "chain": "VinuChain", - "rpc": [ - "https://vinuchain-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VinuChain", - "symbol": "VС", - "decimals": 18 - }, - "infoURL": "https://vitainu.org", - "shortName": "VC", - "chainId": 207, - "networkId": 207, - "icon": "vitainu", - "explorers": [ - { - "name": "VinuScan", - "url": "https://vinuscan.com", - "icon": "vinuscan", - "standard": "none" - } - ] - }, - { - "name": "Bitnet", - "chain": "BTN", - "icon": "bitnet", - "rpc": [ - "https://rpc.bitnet.money", - "https://rpc.btnscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitnet", - "symbol": "BTN", - "decimals": 18 - }, - "infoURL": "https://bitnet.money", - "shortName": "BTN", - "chainId": 210, - "networkId": 210, - "explorers": [ - { - "name": "Bitnet Explorer", - "url": "https://btnscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shinarium Mainnet", - "chain": "Shinarium", - "icon": "shinarium", - "rpc": [ - "https://mainnet.shinarium.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shina Inu", - "symbol": "SHI", - "decimals": 18 - }, - "infoURL": "https://shinarium.org", - "shortName": "shinarium", - "chainId": 214, - "networkId": 214, - "explorers": [ - { - "name": "shinascan", - "url": "https://shinascan.shinarium.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kroma", - "chain": "ETH", - "rpc": [ - "https://api.kroma.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kroma.network", - "icon": "kroma", - "shortName": "kroma", - "chainId": 255, - "networkId": 255, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.kroma.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://kroma.network/bridge" - } - ] - } - }, - { - "name": "Orderly Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.orderly.network", - "https://l2-orderly-mainnet-0.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "www.orderly.network", - "shortName": "orderly", - "chainId": 291, - "networkId": 291, - "icon": "orderly", - "explorers": [ - { - "name": "orderlyscout", - "url": "https://explorer.orderly.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Wyzth Testnet", - "chain": "WYZ", - "rpc": [ - "https://rpc-testnet3.wyzthchain.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Wyzth", - "symbol": "WYZ", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://wyzth.org/", - "shortName": "wyz", - "chainId": 309, - "networkId": 309, - "icon": "wyzth_icon", - "explorers": [ - { - "name": "wyzth", - "url": "http://24.199.108.65:4000", - "icon": "wyzth", - "standard": "EIP3091" - } - ] - }, - { - "name": "Yooldo Verse Mainnet", - "chain": "Yooldo Verse", - "icon": "yooldo_verse", - "rpc": [ - "https://rpc.yooldo-verse.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://yooldo.gg/", - "shortName": "YVM", - "chainId": 345, - "networkId": 345, - "explorers": [ - { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Nativ3 Mainnet", - "chainId": 399, - "shortName": "N3", - "chain": "Nativ3", - "icon": "nativ3", - "networkId": 399, - "nativeCurrency": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 - }, - "rpc": [ - "https://rpc.nativ3.network", - "wss://ws.nativ3.network" - ], - "faucets": [], - "explorers": [ - { - "name": "N3scan", - "url": "https://scan.nativ3.network", - "standard": "EIP3091" - } - ], - "infoURL": "https://nativ3.network", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.nativ3.network" - } - ] - } - }, - { - "name": "Pepe Chain Mainnet", - "chain": "PC", - "status": "active", - "icon": "pepechain", - "rpc": [ - "https://rpc.pepe-chain.vip" - ], - "faucets": [], - "nativeCurrency": { - "name": "Pepe", - "symbol": "PEPE", - "decimals": 18 - }, - "infoURL": "https://pepe-chain.vip", - "shortName": "pepe", - "chainId": 411, - "networkId": 411, - "explorers": [ - { - "name": "pepechain explorer", - "url": "https://explorer.pepe-chain.vip", - "standard": "EIP3091" - } - ] - }, - { - "name": "Geso Verse", - "chain": "Geso Verse", - "rpc": [ - "https://rpc.verse.gesoten.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://gesoten.com/", - "shortName": "GSV", - "icon": "gesoten", - "chainId": 428, - "networkId": 428, - "explorers": [ - { - "name": "Geso Verse Explorer", - "url": "https://explorer.verse.gesoten.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Obscuro Testnet", - "title": "Obscuro Sepolia Rollup Testnet", - "chainId": 443, - "shortName": "obs-testnet", - "chain": "ETH", - "networkId": 443, - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://testnet.obscu.ro" - ], - "faucets": [], - "infoURL": "https://obscu.ro", - "explorers": [ - { - "name": "Obscuro Sepolia Rollup Explorer", - "url": "https://testnet.obscuroscan.io", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.obscu.ro" - } - ] - } - }, - { - "name": "Areon Network Testnet", - "chain": "Areon", - "icon": "areon", - "rpc": [ - "https://testnet-rpc.areon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Areon", - "symbol": "TAREA", - "decimals": 18 - }, - "infoURL": "https://areon.network", - "shortName": "tarea", - "chainId": 462, - "networkId": 462, - "explorers": [ - { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } - ] - }, - { - "name": "Areon Network Mainnet", - "chain": "Areon", - "icon": "areon", - "rpc": [ - "https://mainnet-rpc.areon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Areon", - "symbol": "AREA", - "decimals": 18 - }, - "infoURL": "https://areon.network", - "shortName": "area", - "chainId": 463, - "networkId": 463, - "explorers": [ - { - "name": "AreonScan", - "url": "https://areonscan.com", - "standard": "none" - } - ] - }, - { - "name": "PAWCHAIN Testnet", - "chain": "PAW", - "rpc": [ - "https://pawchainx.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "PAW", - "symbol": "PAW", - "decimals": 18 - }, - "infoURL": "https://pawchainx.com/", - "shortName": "PAW", - "chainId": 542, - "networkId": 542, - "explorers": [ - { - "name": "PAWCHAIN Testnet", - "url": "https://pawscan.io", - "standard": "none" - } - ] - }, - { - "name": "PEER Testnet", - "chain": "PEER", - "rpc": [ - "http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com" - ], - "faucets": [ - "https://testnet.peer.inc" - ], - "nativeCurrency": { - "name": "PEER Token", - "symbol": "PEER", - "decimals": 18 - }, - "infoURL": "https://peer.inc", - "shortName": "PEER", - "chainId": 601, - "networkId": 601, - "icon": "peer", - "explorers": [ - { - "name": "PEER Explorer", - "url": "https://testnet.peer.inc", - "standard": "none", - "icon": "peer" - } - ] - }, - { - "name": "Kalichain Mainnet", - "chain": "Kalichain", - "rpc": [ - "https://rpc.kalichain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 - }, - "infoURL": "https://kalichain.com", - "shortName": "kalichain", - "chainId": 653, - "networkId": 653, - "explorers": [ - { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "LAOS Arrakis", - "title": "LAOS Testnet Arrakis", - "chain": "LAOS", - "icon": "laos", - "rpc": [ - "https://arrakis.gorengine.com/own", - "wss://arrakis.gorengine.com/own" - ], - "faucets": [], - "nativeCurrency": { - "name": "LAOS", - "symbol": "LAOS", - "decimals": 18 - }, - "infoURL": "https://www.laosfoundation.io/", - "shortName": "laos", - "chainId": 667, - "networkId": 667, - "explorers": [ - { - "name": "blockscout", - "url": "https://arrakis.gorengine.com", - "icon": "laos", - "standard": "EIP3091" - } - ] - }, - { - "name": "JuncaChain", - "chain": "JuncaChain", - "rpc": [ - "https://rpc.juncachain.com" - ], - "nativeCurrency": { - "name": "JuncaChain Native Token", - "symbol": "JGC", - "decimals": 18 - }, - "faucets": [], - "infoURL": "https://junca-cash.world", - "shortName": "junca", - "chainId": 668, - "networkId": 668, - "explorers": [ - { - "name": "JuncaScan", - "url": "https://scan.juncachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "JuncaChain testnet", - "chain": "JuncaChain testnet", - "rpc": [ - "https://rpc-testnet.juncachain.com", - "wss://ws-testnet.juncachain.com" - ], - "faucets": [ - "https://faucet-testnet.juncachain.com" - ], - "nativeCurrency": { - "name": "JuncaChain Testnet Native Token", - "symbol": "JGCT", - "decimals": 18 - }, - "infoURL": "https://junca-cash.world", - "shortName": "juncat", - "chainId": 669, - "networkId": 669, - "explorers": [ - { - "name": "JuncaScan", - "url": "https://scan-testnet.juncachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Highbury", - "chain": "HIGHBURY", - "rpc": [ - "https://highbury.furya.io", - "https://rest.furya.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Fury", - "symbol": "FURY", - "decimals": 18 - }, - "infoURL": "https://www.fury.black", - "shortName": "fury", - "chainId": 710, - "networkId": 710, - "icon": "highbury", - "explorers": [ - { - "name": "Furya EVM Explorer", - "url": "https://explorer.furya.io", - "standard": "EIP3091", - "icon": "highbury" - } - ] - }, - { - "name": "Blucrates", - "chain": "BLU", - "rpc": [ - "https://data.bluchain.pro" - ], - "faucets": [], - "nativeCurrency": { - "name": "Blucrates", - "symbol": "BLU", - "decimals": 18 - }, - "infoURL": "https://www.blucrates.com", - "shortName": "blu", - "chainId": 727, - "networkId": 727, - "slip44": 727 - }, - { - "name": "Script Testnet", - "chain": "SPAY", - "rpc": [ - "https://testeth-rpc-api.script.tv/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Script", - "symbol": "SPAY", - "decimals": 18 - }, - "infoURL": "https://token.script.tv", - "shortName": "SPAY", - "chainId": 742, - "networkId": 742, - "explorers": [ - { - "name": "Script Explorer", - "url": "https://explorer.script.tv", - "standard": "none" - } - ] - }, - { - "name": "Mode Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.mode.network" - ], - "faucets": [ - "https://sepoliafaucet.com/" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.mode.network/", - "shortName": "modesep", - "chainId": 919, - "networkId": 919, - "icon": "modeTestnet", - "explorers": [ - { - "name": "modescout", - "url": "https://sepolia.explorer.mode.network", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.mode.network/" - } - ] - } - }, - { - "name": "Yidark Chain Mainnet", - "chain": "Yidark", - "icon": "ydk", - "rpc": [ - "https://rpc.yidark.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Yidark", - "symbol": "YDK", - "decimals": 18 - }, - "infoURL": "https://yidarkscan.com", - "shortName": "ydk", - "chainId": 927, - "networkId": 927, - "explorers": [ - { - "name": "Yidarkscan", - "url": "https://yidarkscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BTC20 Smart Chain", - "chain": "BTC20", - "rpc": [ - "https://rpc.bitcoincode.technology/" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "BTCC", - "symbol": "BTCC", - "decimals": 18 - }, - "infoURL": "https://bitcoincode.technology", - "shortName": "btc20", - "chainId": 963, - "networkId": 963, - "icon": "btc20", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.bitcoincode.technology", - "standard": "EIP3091" - } - ] - }, - { - "name": "eLiberty Mainnet", - "chain": "$EL", - "icon": "eLiberty", - "rpc": [ - "https://rpc.eliberty.ngo" - ], - "faucets": [ - "https://faucet.eliberty.ngo" - ], - "nativeCurrency": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 - }, - "infoURL": "https://eliberty.ngo", - "shortName": "ELm", - "chainId": 990, - "networkId": 990, - "explorers": [ - { - "name": "eLiberty Mainnet", - "url": "https://explorer.eliberty.ngo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tectum Emission Token", - "chain": "TET", - "rpc": [ - "https://rpc.softnote.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tectum", - "symbol": "TET", - "decimals": 8 - }, - "infoURL": "https://softnote.com", - "shortName": "tet", - "chainId": 1003, - "networkId": 1003, - "explorers": [ - { - "name": "Tectum explorer", - "url": "https://explorer.tectum.io", - "icon": "Tettoken256", - "standard": "EIP3091" - } - ] - }, - { - "name": "ShimmerEVM Testnet", - "title": "ShimmerEVM Testnet", - "chain": "ShimmerEVM", - "icon": "shimmerevm", - "rpc": [ - "https://json-rpc.evm.testnet.shimmer.network" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.shimmer.network", - "https://evm-faucet.testnet.shimmer.network" - ], - "nativeCurrency": { - "name": "SMR", - "symbol": "SMR", - "decimals": 6 - }, - "infoURL": "https://shimmer.network", - "shortName": "shimmerevm-testnet", - "chainId": 1073, - "networkId": 1073, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.shimmer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mintara Mainnet", - "title": "Mintara Mainnet", - "chain": "Mintara", - "icon": "mintara", - "rpc": [ - "https://subnets.avax.network/mintara/mainnet/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "MINTARA", - "symbol": "MNTR", - "decimals": 18 - }, - "infoURL": "https://playthink.co.jp", - "shortName": "mintara", - "chainId": 1080, - "networkId": 1080, - "explorers": [ - { - "name": "explorer", - "url": "https://subnets.avax.network/mintara", - "standard": "EIP3091" - } - ] - }, - { - "name": "Humans.ai Mainnet", - "chain": "Humans", - "rpc": [ - "https://jsonrpc.humans.nodestake.top", - "https://humans-mainnet-evm.itrocket.net:443", - "https://humans-evm-rpc.staketab.org:443", - "https://evm.humans.stakepool.dev.br", - "https://mainnet-humans-evm.konsortech.xyz", - "https://evm-rpc.mainnet.humans.zone" - ], - "faucets": [], - "nativeCurrency": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://humans.ai", - "shortName": "humans", - "chainId": 1089, - "networkId": 1089, - "icon": "humans-dark", - "explorers": [ - { - "name": "explorer.guru", - "url": "https://humans.explorers.guru", - "icon": "humans", - "standard": "none" - } - ] - }, - { - "name": "BLXq Testnet", - "chain": "BLXQ", - "icon": "blxq", - "rpc": [ - "https://testnetq1.blx.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 - }, - "infoURL": "https://blx.org", - "shortName": "tblxq", - "chainId": 1107, - "networkId": 1107, - "explorers": [ - { - "name": "BLXq Explorer", - "url": "https://explorer.blx.org", - "icon": "blxq", - "standard": "none" - } - ] - }, - { - "name": "BLXq Mainnet", - "chain": "BLXQ", - "icon": "blxq", - "rpc": [ - "https://mainnet.blxq.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "BLXQ", - "symbol": "BLXQ", - "decimals": 18 - }, - "infoURL": "https://blx.org", - "shortName": "blxq", - "chainId": 1108, - "networkId": 1108, - "explorers": [ - { - "name": "BLXq Explorer", - "url": "https://explorer.blxq.org", - "icon": "blxq", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeFiMetaChain", - "icon": "changi", - "chain": "DFI", - "rpc": [ - "https://testnet-dmc.mydefichain.com:20551" - ], - "faucets": [ - "http://tc04.mydefichain.com/faucet" - ], - "nativeCurrency": { - "name": "DeFiChain Token", - "symbol": "DFI", - "decimals": 18 - }, - "infoURL": "https://defichain.com", - "shortName": "changi", - "chainId": 1133, - "networkId": 1133, - "explorers": [ - { - "name": "MetaScan", - "url": "https://meta.defiscan.live", - "standard": "EIP3091" - } - ] - }, - { - "name": "Swisstronik Testnet", - "chain": "SWTR", - "rpc": [ - "https://json-rpc.testnet.swisstronik.com" - ], - "faucets": [ - "https://faucet.testnet.swisstronik.com" - ], - "nativeCurrency": { - "name": "Swisstronik", - "symbol": "SWTR", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.swisstronik.com", - "shortName": "swtr", - "chainId": 1291, - "networkId": 1291, - "icon": "swisstronik", - "explorers": [ - { - "name": "Swisstronik Scout", - "url": "https://explorer-evm.testnet.swisstronik.com", - "standard": "none" - } - ] - }, - { - "name": "Blitz Subnet", - "chain": "BLITZ", - "rpc": [ - "https://subnets.avax.network/blitz/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "BLITZ GAS", - "symbol": "BGAS", - "decimals": 18 - }, - "infoURL": "https://blitz.gg", - "shortName": "blitz", - "chainId": 1343, - "networkId": 1343, - "explorers": [ - { - "name": "BLITZ Explorer", - "url": "https://subnets-test.avax.network/blitz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kalar Chain", - "chain": "KLC", - "icon": "kalarchain", - "rpc": [ - "https://rpc-api.kalarchain.tech" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kalar", - "symbol": "KLC", - "decimals": 18 - }, - "infoURL": "https://kalarchain.tech", - "shortName": "KLC", - "chainId": 1379, - "networkId": 1379, - "explorers": [ - { - "name": "kalarscan", - "url": "https://explorer.kalarchain.tech", - "icon": "kalarscan", - "standard": "EIP3091" - } - ] - }, - { - "name": "WhiteBIT Network", - "chain": "WBT", - "rpc": [ - "https://rpc.whitebit.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "WhiteBIT Coin", - "symbol": "WBT", - "decimals": 18 - }, - "infoURL": "https://whitebit.network", - "shortName": "wbt", - "chainId": 1875, - "networkId": 1875, - "icon": "whitebit", - "explorers": [ - { - "name": "wb-explorer", - "url": "https://explorer.whitebit.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sports Chain Network", - "chain": "SCN", - "rpc": [ - "https://rpc.sportschainnetwork.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "SCN", - "symbol": "SCN", - "decimals": 18 - }, - "infoURL": "https://sportschainnetwork.xyz", - "shortName": "SCN", - "chainId": 1904, - "networkId": 1904, - "icon": "scn", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sportschainnetwork.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Merkle Scan", - "chain": "MRK", - "icon": "merklescan", - "rpc": [ - "https://marklechain-rpc.merklescan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Merkle", - "symbol": "MRK", - "decimals": 18 - }, - "infoURL": "https://merklescan.com", - "shortName": "MRK", - "chainId": 1909, - "networkId": 1909, - "explorers": [ - { - "name": "blockscout", - "url": "https://merklescan.com", - "standard": "none" - } - ] - }, - { - "name": "SatoshIE", - "chain": "TUSHY", - "rpc": [ - "http://rpc.satosh.ie" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 - }, - "infoURL": "https://satosh.ie", - "shortName": "satoshie", - "chainId": 1985, - "networkId": 1985, - "icon": "satoshie", - "explorers": [ - { - "name": "mainnetexplorer", - "url": "http://explore.satosh.ie", - "icon": "satoshie", - "standard": "none" - } - ] - }, - { - "name": "SatoshIE Testnet", - "chain": "TUSHY", - "rpc": [ - "http://testnet.satosh.ie" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tushy Token", - "symbol": "TUSHY", - "decimals": 18 - }, - "infoURL": "https://satosh.ie", - "shortName": "satoshie_testnet", - "chainId": 1986, - "networkId": 1986, - "icon": "satoshie", - "explorers": [ - { - "name": "testnetexplorer", - "url": "http://explore-testnet.satosh.ie", - "icon": "satoshie", - "standard": "none" - } - ] - }, - { - "name": "Centrifuge", - "chain": "CFG", - "rpc": [ - "wss://fullnode.parachain.centrifuge.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Centrifuge", - "symbol": "CFG", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "cfg", - "chainId": 2031, - "networkId": 2031, - "explorers": [ - { - "name": "subscan", - "url": "https://centrifuge.subscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Catalyst", - "chain": "CFG", - "rpc": [ - "wss://fullnode.catalyst.cntrfg.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Catalyst CFG", - "symbol": "NCFG", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "ncfg", - "chainId": 2032, - "networkId": 2032 - }, - { - "name": "Kiwi Subnet", - "chain": "KIWI", - "rpc": [ - "https://subnets.avax.network/kiwi/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Shrapgas", - "symbol": "SHRAP", - "decimals": 18 - }, - "infoURL": "", - "shortName": "kiwi", - "chainId": 2037, - "networkId": 2037, - "explorers": [ - { - "name": "KIWI Explorer", - "url": "https://subnets-test.avax.network/kiwi", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shrapnel Testnet", - "chain": "SHRAPNEL", - "rpc": [ - "https://subnets.avax.network/shrapnel/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "SHRAPG", - "symbol": "SHRAPG", - "decimals": 18 - }, - "infoURL": "https://www.shrapnel.com/", - "shortName": "shraptest", - "chainId": 2038, - "networkId": 2038, - "explorers": [ - { - "name": "SHRAPNEL Explorer", - "url": "https://subnets-test.avax.network/shrapnel", - "standard": "EIP3091" - } - ] - }, - { - "name": "Movo Smart Chain Mainnet", - "chain": "MOVO", - "icon": "movo", - "rpc": [ - "https://msc-rpc.movoscan.com", - "https://msc-rpc.movochain.org", - "https://msc-rpc.movoswap.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Movo Smart Chain", - "symbol": "MOVO", - "decimals": 18 - }, - "infoURL": "https://movo.uk", - "shortName": "movo", - "chainId": 2049, - "networkId": 2049, - "slip44": 2050, - "explorers": [ - { - "name": "movoscan", - "url": "https://movoscan.com", - "icon": "movoscan", - "standard": "none" - } - ] - }, - { - "name": "Altair", - "chain": "AIR", - "rpc": [ - "wss://fullnode.altair.centrifuge.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Altair", - "symbol": "AIR", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "air", - "chainId": 2088, - "networkId": 2088 - }, - { - "name": "Algol", - "chain": "algol", - "rpc": [ - "wss://fullnode.algol.cntrfg.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Algol", - "symbol": "ALGL", - "decimals": 18 - }, - "infoURL": "https://centrifuge.io", - "shortName": "algl", - "chainId": 2089, - "networkId": 2089 - }, - { - "name": "BigShortBets", - "chain": "BIGSB", - "rpc": [ - "https://market.bigsb.io", - "wss://market.bigsb.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://bigshortbets.com/", - "shortName": "bigsb", - "chainId": 2137, - "networkId": 2137, - "explorers": [] - }, - { - "name": "Krest Network", - "chain": "Krest", - "icon": "krest", - "rpc": [ - "https://erpc-krest.peaq.network", - "https://krest.unitedbloc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Krest", - "symbol": "KRST", - "decimals": 18 - }, - "infoURL": "https://www.peaq.network", - "shortName": "KRST", - "chainId": 2241, - "networkId": 2241, - "explorers": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", - "standard": "none" - }, - { - "name": "Subscan", - "url": "https://krest.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Ebro Network", - "chain": "ebro", - "rpc": [ - "https://greendinoswap.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ebro", - "symbol": "ebro", - "decimals": 18 - }, - "infoURL": "https://www.ebrochain.com", - "shortName": "ebro", - "chainId": 2306, - "networkId": 2306 - }, - { - "name": "Unicorn Ultra Nebulas Testnet", - "chain": "u2u", - "rpc": [ - "https://rpc-nebulas-testnet.uniultra.xyz" - ], - "faucets": [ - "https://faucet.uniultra.xyz" - ], - "nativeCurrency": { - "name": "Unicorn Ultra Nebulas Testnet", - "symbol": "U2U", - "decimals": 18 - }, - "infoURL": "https://uniultra.xyz", - "shortName": "u2u_nebulas", - "chainId": 2484, - "networkId": 2484, - "icon": "u2u_nebulas", - "explorers": [ - { - "icon": "u2u_nebulas", - "name": "U2U Explorer", - "url": "https://testnet.u2uscan.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Fraxchain Testnet", - "chain": "FRAX", - "rpc": [ - "https://rpc.testnet.frax.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Frax Ether", - "symbol": "frxETH", - "decimals": 18 - }, - "infoURL": "https://testnet.frax.com", - "shortName": "fraxchain-testnet", - "chainId": 2522, - "networkId": 2522, - "explorers": [], - "status": "active" - }, - { - "name": "K-LAOS", - "title": "K-LAOS: LAOS on Kusama", - "chain": "K-LAOS", - "icon": "k-laos", - "rpc": [ - "https://rpc.klaos.laosfoundation.io", - "wss://rpc.klaos.laosfoundation.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 - }, - "infoURL": "https://www.laosfoundation.io/", - "shortName": "k-laos", - "chainId": 2718, - "networkId": 2718, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.klaos.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" - } - ] - }, - { - "name": "Immu3 EVM", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "IMMU", - "symbol": "IMMU", - "decimals": 18 - }, - "infoURL": "https://immu3.io", - "shortName": "Immu3", - "chainId": 3100, - "networkId": 3100, - "explorers": [] - }, - { - "name": "Vulture EVM Beta", - "chain": "VFIEVMCC", - "rpc": [ - "https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "VFI", - "symbol": "VFI", - "decimals": 18 - }, - "infoURL": "https://vulture.finance", - "shortName": "VFI", - "chainId": 3102, - "networkId": 3102, - "explorers": [] - }, - { - "name": "Dubxcoin network", - "chain": "DUBX", - "rpc": [ - "https://rpcmain.arabianchain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dubxcoin mainnet", - "symbol": "DUBX", - "decimals": 18 - }, - "infoURL": "https://arabianchain.org", - "shortName": "dubx", - "chainId": 3269, - "networkId": 3269 - }, - { - "name": "Dubxcoin testnet", - "chain": "TESTDUBX", - "rpc": [ - "https://rpctestnet.arabianchain.org" - ], - "faucets": [ - "https://faucet.arabianchain.org/" - ], - "nativeCurrency": { - "name": "Dubxcoin testnet", - "symbol": "TDUBX", - "decimals": 18 - }, - "infoURL": "https://arabianchain.org", - "shortName": "testdubx", - "chainId": 3270, - "networkId": 3270 - }, - { - "name": "iChain Network", - "chain": "iChain", - "rpc": [ - "https://rpc.ichainscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ISLAMICOIN", - "symbol": "ISLAMI", - "decimals": 18 - }, - "infoURL": "https://islamicoin.finance", - "shortName": "ISLAMI", - "chainId": 3639, - "networkId": 3639, - "explorers": [ - { - "name": "iChainscan", - "url": "https://ichainscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xpla Testnet", - "chain": "XPLATest", - "rpc": [ - "https://dimension-rpc.xpla.dev" - ], - "faucets": [ - "https://faucet.xpla.io" - ], - "nativeCurrency": { - "name": "XPLA", - "symbol": "XPLA", - "decimals": 18 - }, - "infoURL": "https://xpla.io", - "shortName": "xplatest", - "chainId": 3701, - "networkId": 3701, - "icon": "xpla", - "explorers": [ - { - "name": "XPLA Explorer", - "url": "https://explorer.xpla.io", - "standard": "none" - } - ], - "status": "deprecated" - }, - { - "name": "KalyChain Mainnet", - "chain": "KLC", - "icon": "kalychain", - "rpc": [ - "https://rpc.kalychain.io/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 - }, - "infoURL": "https://kalychain.io", - "shortName": "kalymainnet", - "chainId": 3888, - "networkId": 3888, - "explorers": [ - { - "name": "KalyScan", - "url": "https://kalyscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "KalyChain Testnet", - "chain": "KLC", - "icon": "kalychain", - "rpc": [ - "https://testnetrpc.kalychain.io/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "KalyCoin", - "symbol": "KLC", - "decimals": 18 - }, - "infoURL": "https://kalychain.io", - "shortName": "kalytestnet", - "chainId": 3889, - "networkId": 3889, - "explorers": [ - { - "name": "KalyScan", - "url": "https://testnet.kalyscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "X1 Fastnet", - "chain": "X1", - "rpc": [ - "https://x1-fastnet.xen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "XN", - "symbol": "XN", - "decimals": 18 - }, - "infoURL": "https://docs.xen.network/go-x1/", - "shortName": "x1-fastnet", - "chainId": 4003, - "networkId": 4003, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.x1-fastnet.xen.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Humans.ai Testnet", - "chain": "Humans Testnet", - "rpc": [ - "https://evm-rpc.testnet.humans.zone" - ], - "faucets": [], - "nativeCurrency": { - "name": "HEART", - "symbol": "HEART", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://humans.ai", - "shortName": "humans_testnet", - "chainId": 4139, - "networkId": 4139, - "icon": "humans-dark" - }, - { - "name": "Beam", - "chain": "BEAM", - "rpc": [ - "https://subnets.avax.network/beam/mainnet/rpc", - "wss://subnets.avax.network/beam/mainnet/ws" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.onbeam.com" - ], - "nativeCurrency": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 - }, - "infoURL": "https://www.onbeam.com", - "shortName": "beam", - "icon": "beam", - "chainId": 4337, - "networkId": 4337, - "explorers": [ - { - "name": "Beam Explorer", - "url": "https://subnets.avax.network/beam", - "standard": "EIP3091" - } - ] - }, - { - "name": "Credit Smart Chain Mainnet", - "chain": "CREDIT", - "rpc": [ - "https://rpc.creditsmartchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Credit", - "symbol": "CREDIT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://creditsmartchain.com", - "shortName": "CreditEdge", - "chainId": 4400, - "networkId": 4400, - "icon": "credit", - "explorers": [ - { - "name": "Creditscan", - "url": "https://scan.creditsmartchain.com", - "icon": "credit", - "standard": "EIP3091" - } - ] - }, - { - "name": "Orderly Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "www.orderly.network", - "shortName": "orderlyl2", - "chainId": 4460, - "networkId": 4460, - "icon": "orderlyTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Globel Chain", - "chain": "GC", - "icon": "globelchain", - "rpc": [ - "https://rpc.gcscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Globel Chain", - "symbol": "GC", - "decimals": 18 - }, - "infoURL": "https://gcscan.io", - "shortName": "GC", - "chainId": 4893, - "networkId": 4893, - "explorers": [ - { - "name": "blockscout", - "url": "https://gcscan.io", - "standard": "none" - } - ] - }, - { - "name": "Treasurenet Mainnet Alpha", - "chain": "Treasurenet Mainnet Alpha", - "icon": "treasurenet", - "rpc": [ - "https://node0.treasurenet.io", - "https://node1.treasurenet.io", - "https://node2.treasurenet.io", - "https://node3.treasurenet.io" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 - }, - "infoURL": "https://www.treasurenet.io", - "shortName": "treasurenet", - "chainId": 5002, - "networkId": 5002, - "explorers": [ - { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.treasurenet.io", - "icon": "treasurenet", - "standard": "none" - } - ] - }, - { - "name": "Mantle Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia.mantle.xyz" - ], - "faucets": [ - "https://faucet.sepolia.mantle.xyz" - ], - "nativeCurrency": { - "name": "Sepolia Mantle", - "symbol": "MNT", - "decimals": 18 - }, - "infoURL": "https://mantle.xyz", - "shortName": "mnt-sep", - "chainId": 5003, - "networkId": 5003, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sepolia.mantle.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Treasurenet Testnet", - "chain": "Treasurenet Testnet", - "icon": "treasurenet", - "rpc": [ - "https://node0.testnet.treasurenet.io", - "https://node1.testnet.treasurenet.io", - "https://node2.testnet.treasurenet.io", - "https://node3.testnet.treasurenet.io" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT", - "symbol": "UNIT", - "decimals": 18 - }, - "infoURL": "https://www.testnet.treasurenet.io", - "shortName": "tntest", - "chainId": 5005, - "networkId": 5005, - "explorers": [ - { - "name": "Treasurenet EVM BlockExplorer", - "url": "https://evmexplorer.testnet.treasurenet.io", - "icon": "treasurenet", - "standard": "none" - } - ] - }, - { - "name": "Tritanium Testnet", - "chain": "TRITANIUM", - "rpc": [ - "https://nodetestnet-station-one.tritanium.network/", - "https://nodetestnet-station-two.tritanium.network/" - ], - "faucets": [ - "https://faucet.tritanium.network" - ], - "nativeCurrency": { - "name": "Tritanium Native Token", - "symbol": "tTRN", - "decimals": 18 - }, - "infoURL": "https://tritanium.network", - "shortName": "ttrn", - "chainId": 5353, - "networkId": 5353, - "icon": "tritanium", - "explorers": [ - { - "name": "TRITANIUM Testnet Explorer", - "icon": "tritanium", - "url": "https://testnet.tritanium.network", - "standard": "none" - } - ] - }, - { - "name": "VEX EVM TESTNET", - "chain": "vex", - "icon": "vex", - "rpc": [ - "https://testnet.vexascan.com/evmapi" - ], - "faucets": [ - "https://t.me/vexfaucetbot" - ], - "nativeCurrency": { - "name": "VEX EVM TESTNET", - "symbol": "VEX", - "decimals": 18 - }, - "infoURL": "https://vexanium.com", - "shortName": "VEX", - "chainId": 5522, - "networkId": 5522, - "explorers": [ - { - "name": "Vexascan-EVM-TestNet", - "url": "https://testnet.vexascan.com/evmexplorer", - "standard": "EIP3091" - } - ] - }, - { - "name": "opBNB Testnet", - "chain": "opBNB", - "icon": "bnbchain", - "rpc": [ - "https://opbnb-testnet-rpc.bnbchain.org", - "https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", - "wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", - "https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", - "wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" - ], - "faucets": [ - "https://testnet.bnbchain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "tBNB", - "decimals": 18 - }, - "infoURL": "https://opbnb.bnbchain.org/en", - "shortName": "obnbt", - "chainId": 5611, - "networkId": 5611, - "explorers": [ - { - "name": "bscscan-opbnb-testnet", - "url": "https://opbnb-testnet.bscscan.com", - "standard": "EIP3091" - }, - { - "name": "opbnbscan", - "url": "https://opbnbscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arcturus Chain Testnet", - "chain": "ARCTURUS", - "rpc": [ - "http://185.99.196.3:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Test Arct", - "symbol": "tARCT", - "decimals": 18 - }, - "infoURL": "https://arcturuschain.io", - "shortName": "ARCT", - "chainId": 5616, - "networkId": 5616 - }, - { - "name": "Tanssi EVM ContainerChain", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Unit", - "symbol": "Unit", - "decimals": 18 - }, - "infoURL": "https://tanssi.network", - "shortName": "TanssiCC", - "chainId": 5678, - "networkId": 5678, - "explorers": [] - }, - { - "name": "Digit Soul Smart Chain", - "chain": "DGS", - "rpc": [ - "https://dsc-rpc.digitsoul.co.th" - ], - "faucets": [], - "icon": "pnet", - "nativeCurrency": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "DGS", - "chainId": 6363, - "networkId": 6363 - }, - { - "name": "Horizen EON Mainnet", - "shortName": "EON", - "chain": "EON", - "icon": "eon", - "rpc": [ - "https://eon-rpc.horizenlabs.io/ethv1", - "https://rpc.ankr.com/horizen_eon" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Zencash", - "symbol": "ZEN", - "decimals": 18 - }, - "infoURL": "https://horizen.io/", - "chainId": 7332, - "networkId": 7332, - "slip44": 121, - "explorers": [ - { - "name": "Horizen EON Block Explorer", - "url": "https://eon-explorer.horizenlabs.io", - "icon": "eon", - "standard": "EIP3091" - } - ] - }, - { - "name": "MaalChain Testnet", - "chain": "MaalChain Testnet", - "icon": "maal-test", - "rpc": [ - "https://node1.maalscan.io/", - "https://rpc-bntest.maalscan.io/" - ], - "faucets": [ - "https://faucet-testnet.maalscan.io/" - ], - "nativeCurrency": { - "name": "MAAL", - "symbol": "MAAL", - "decimals": 18 - }, - "infoURL": "https://www.maalchain.com/", - "shortName": "maal-test", - "chainId": 7860, - "networkId": 7860, - "explorers": [ - { - "name": "maalscan testnet", - "url": "https://testnet.maalscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Torus Mainnet", - "chain": "TQF", - "icon": "torus", - "rpc": [ - "https://rpc.toruschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "TQF", - "symbol": "TQF", - "decimals": 18 - }, - "infoURL": "https://docs.toruschain.com", - "shortName": "tqf", - "chainId": 8192, - "networkId": 8192, - "explorers": [ - { - "name": "blockscout", - "url": "https://toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Torus Testnet", - "chain": "TQF", - "icon": "torus", - "rpc": [ - "https://rpc.testnet.toruschain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "tTQF", - "symbol": "TTQF", - "decimals": 18 - }, - "infoURL": "https://docs.toruschain.com", - "shortName": "ttqf", - "chainId": 8194, - "networkId": 8194, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.toruscan.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hela Official Runtime Mainnet", - "chain": "Hela", - "icon": "hela", - "rpc": [ - "https://mainnet-rpc.helachain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 - }, - "infoURL": "https://helalabs.com", - "shortName": "hela", - "chainId": 8668, - "networkId": 8668, - "explorers": [ - { - "name": "Hela Official Runtime Mainnet Explorer", - "url": "https://mainnet-blockexplorer.helachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Codefin Mainnet", - "chain": "COF", - "icon": "codefin", - "rpc": [ - "https://chain-rpc.codefin.pro" - ], - "faucets": [], - "nativeCurrency": { - "name": "Codefin", - "symbol": "COF", - "decimals": 18 - }, - "infoURL": "https://network.codefin.pro", - "shortName": "COF", - "chainId": 9223, - "networkId": 9223, - "explorers": [ - { - "name": "Codefin Net Explorer", - "url": "https://explorer.codefin.pro", - "standard": "EIP3091" - } - ] - }, - { - "name": "IMPERIUM TESTNET", - "chain": "tIMP", - "rpc": [ - "https://data-aws-testnet.imperiumchain.com", - "https://data-aws2-testnet.imperiumchain.com" - ], - "faucets": [ - "https://faucet.imperiumchain.com/" - ], - "nativeCurrency": { - "name": "tIMP", - "symbol": "tIMP", - "decimals": 18 - }, - "infoURL": "https://imperiumchain.com", - "shortName": "tIMP", - "chainId": 9818, - "networkId": 9818, - "icon": "timp", - "explorers": [ - { - "name": "IMPERIUM TESTNET Explorer", - "icon": "timp", - "url": "https://network.impscan.com", - "standard": "none" - } - ] - }, - { - "name": "IMPERIUM MAINNET", - "chain": "IMP", - "rpc": [ - "https://data-aws-mainnet.imperiumchain.com", - "https://data-aws2-mainnet.imperiumchain.com" - ], - "faucets": [ - "https://faucet.imperiumchain.com/" - ], - "nativeCurrency": { - "name": "IMP", - "symbol": "IMP", - "decimals": 18 - }, - "infoURL": "https://imperiumchain.com", - "shortName": "IMP", - "chainId": 9819, - "networkId": 9819, - "icon": "imp", - "explorers": [ - { - "name": "IMPERIUM Explorer", - "icon": "imp", - "url": "https://impscan.com", - "standard": "none" - } - ] - }, - { - "name": "Mind Smart Chain Testnet", - "chain": "tMIND", - "icon": "mindchain", - "rpc": [ - "https://testnet-msc.mindchain.info/", - "wss://testnet-msc.mindchain.info/ws" - ], - "faucets": [ - "https://faucet.mindchain.info/" - ], - "nativeCurrency": { - "name": "MIND Coin", - "symbol": "tMIND", - "decimals": 18 - }, - "infoURL": "https://mindchain.info", - "shortName": "tMIND", - "chainId": 9977, - "networkId": 9977, - "explorers": [ - { - "name": "Mind Chain explorer", - "url": "https://testnet.mindscan.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Agung Network", - "chain": "Agung", - "icon": "agung", - "rpc": [ - "https://rpcpc1-qa.agung.peaq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Agung", - "symbol": "AGNG", - "decimals": 18 - }, - "infoURL": "https://www.peaq.network", - "shortName": "AGNG", - "chainId": 9990, - "networkId": 9990, - "explorers": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", - "standard": "none" - }, - { - "name": "Subscan", - "url": "https://agung.subscan.io", - "standard": "none" - } - ] - }, - { - "name": "Mind Smart Chain Mainnet", - "chain": "MIND", - "icon": "mindchain", - "rpc": [ - "https://rpc-msc.mindchain.info/", - "https://seednode.mindchain.info", - "https://archive.mindchain.info/", - "wss://archive.mindchain.info/ws", - "wss://seednode.mindchain.info/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "MIND Coin", - "symbol": "MIND", - "decimals": 18 - }, - "infoURL": "https://mindchain.info", - "shortName": "MIND", - "chainId": 9996, - "networkId": 9996, - "explorers": [ - { - "name": "Mind Chain explorer", - "url": "https://mainnet.mindscan.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Japan Open Chain Testnet", - "chain": "JOCT", - "rpc": [ - "https://rpc-1.testnet.japanopenchain.org:8545", - "https://rpc-2.testnet.japanopenchain.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Japan Open Chain Testnet Token", - "symbol": "JOCT", - "decimals": 18 - }, - "infoURL": "https://www.japanopenchain.org/", - "shortName": "joct", - "chainId": 10081, - "networkId": 10081, - "explorers": [ - { - "name": "Testnet Block Explorer", - "url": "https://explorer.testnet.japanopenchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "MaxxChain Mainnet", - "chain": "MaxxChain", - "rpc": [ - "https://rpc.maxxchain.org", - "https://rpc1.maxxchain.org", - "https://rpc2.maxxchain.org" - ], - "faucets": [ - "https://faucet.maxxchain.org" - ], - "nativeCurrency": { - "name": "Power", - "symbol": "PWR", - "decimals": 18 - }, - "icon": "pwr", - "infoURL": "https://www.maxxchain.org/", - "shortName": "PWR", - "chainId": 10201, - "networkId": 10201, - "explorers": [ - { - "name": "MaxxChain Block Explorer", - "url": "https://explorer.maxxchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arthera Testnet", - "chain": "AA", - "icon": "arthera", - "rpc": [ - "https://rpc-test.arthera.net" - ], - "faucets": [ - "https://faucet.arthera.net" - ], - "nativeCurrency": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 - }, - "infoURL": "https://docs.arthera.net", - "shortName": "aa", - "chainId": 10243, - "networkId": 10243, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer-test.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Worldland Testnet", - "chain": "Worldland", - "icon": "worldland", - "rpc": [ - "https://gwangju.worldland.foundation" - ], - "faucets": [], - "nativeCurrency": { - "name": "Worldland", - "symbol": "WL", - "decimals": 18 - }, - "infoURL": "https://worldland.foundation", - "shortName": "TWLC", - "chainId": 10395, - "networkId": 10395, - "explorers": [ - { - "name": "Worldland Explorer", - "url": "https://testscan.worldland.foundation", - "standard": "EIP3091" - } - ] - }, - { - "name": "Polygon Supernet Arianee", - "chain": "Arianee", - "rpc": [ - "https://rpc.polygonsupernet.public.arianee.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Arianee", - "symbol": "ARIA20", - "decimals": 18 - }, - "infoURL": "https://arianee.org", - "shortName": "Arianee", - "chainId": 11891, - "networkId": 11891, - "explorers": [ - { - "name": "Polygon Supernet Arianee Explorer", - "url": "https://polygonsupernet.explorer.arianee.net", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-1", - "type": "L2" - } - }, - { - "name": "Astar zkEVM", - "shortName": "astrzk", - "title": "Astar zkEVM Mainnet", - "chain": "ETH", - "icon": "astarzk", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 12611, - "networkId": 12611, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - }, - "status": "incubating" - }, - { - "name": "Quantum Chain Testnet", - "chain": "tQNET", - "icon": "qnet", - "rpc": [ - "https://testnet-rpc.quantumscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quantum Chain", - "symbol": "tQNET", - "decimals": 18 - }, - "infoURL": "https://quantumnetwork.gg", - "shortName": "tqnet", - "chainId": 12890, - "networkId": 12890, - "explorers": [ - { - "name": "Quantum Scan Testnet", - "url": "https://testnet.quantumscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Beam Testnet", - "chain": "BEAM", - "rpc": [ - "https://subnets.avax.network/beam/testnet/rpc", - "wss://subnets.avax.network/beam/testnet/ws" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://faucet.avax.network/?subnet=beam", - "https://faucet.onbeam.com" - ], - "nativeCurrency": { - "name": "Beam", - "symbol": "BEAM", - "decimals": 18 - }, - "infoURL": "https://www.onbeam.com", - "shortName": "beam-testnet", - "icon": "beam", - "chainId": 13337, - "networkId": 13337, - "explorers": [ - { - "name": "Beam Explorer", - "url": "https://subnets-test.avax.network/beam", - "standard": "EIP3091" - } - ] - }, - { - "name": "Immutable zkEVM Testnet", - "chain": "Immutable zkEVM", - "rpc": [ - "https://rpc.testnet.immutable.com" - ], - "faucets": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], - "nativeCurrency": { - "name": "Test IMX", - "symbol": "tIMX", - "decimals": 18 - }, - "infoURL": "https://www.immutable.com", - "shortName": "imx-testnet", - "chainId": 13473, - "networkId": 13473, - "icon": "immutable", - "explorers": [ - { - "name": "Immutable Testnet explorer", - "url": "https://explorer.testnet.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ] - }, - { - "name": "Humanode Testnet 5 Israfel", - "chain": "Humanode Testnet 5", - "rpc": [ - "https://explorer-rpc-http.testnet5.stages.humanode.io" - ], - "faucets": [ - "https://t.me/HumanodeTestnet5FaucetBot" - ], - "nativeCurrency": { - "name": "eHMND", - "symbol": "eHMND", - "decimals": 18 - }, - "infoURL": "https://humanode.io", - "shortName": "hmnd-t5", - "chainId": 14853, - "networkId": 14853, - "explorers": [] - }, - { - "name": "Immutable zkEVM Devnet", - "chain": "Immutable zkEVM", - "rpc": [ - "https://rpc.dev.immutable.com" - ], - "faucets": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], - "nativeCurrency": { - "name": "Dev IMX", - "symbol": "dIMX", - "decimals": 18 - }, - "infoURL": "https://www.immutable.com", - "shortName": "imx-devnet", - "chainId": 15003, - "networkId": 15003, - "icon": "immutable", - "explorers": [ - { - "name": "Immutable Devnet explorer", - "url": "https://explorer.dev.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ] - }, - { - "name": "Holesky", - "title": "Ethereum Testnet Holesky", - "chain": "ETH", - "rpc": [ - "https://rpc.holesky.ethpandaops.io", - "https://ethereum-holesky.publicnode.com", - "wss://ethereum-holesky.publicnode.com" - ], - "faucets": [ - "https://faucet.holesky.ethpandaops.io", - "https://holesky-faucet.pk910.de" - ], - "nativeCurrency": { - "name": "Testnet ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://holesky.ethpandaops.io", - "shortName": "holesky", - "chainId": 17000, - "networkId": 17000, - "icon": "ethereum", - "status": "incubating", - "explorers": [ - { - "name": "Holesky Explorer", - "url": "https://holesky.beaconcha.in", - "icon": "ethereum", - "standard": "EIP3091" - }, - { - "name": "otterscan-holesky", - "url": "https://holesky.otterscan.io", - "icon": "ethereum", - "standard": "EIP3091" - }, - { - "name": "Holesky Etherscan", - "url": "https://holesky.etherscan.io", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redstone Holesky Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.holesky.redstone.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Redstone Testnet Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://redstone.xyz/docs/network-info", - "shortName": "redstone", - "chainId": 17001, - "networkId": 17001, - "icon": "redstone", - "explorers": [ - { - "name": "Redstone Holesky Explorer", - "url": "https://explorer.holesky.redstone.xyz", - "icon": "ethereum", - "standard": "EIP3091" - } - ] - }, - { - "name": "G8Chain Mainnet", - "chain": "G8C", - "icon": "G8Chain", - "rpc": [ - "https://mainnet-rpc.oneg8.network" - ], - "faucets": [ - "https://faucet.oneg8.network" - ], - "nativeCurrency": { - "name": "G8Chain", - "symbol": "G8C", - "decimals": 18 - }, - "infoURL": "https://oneg8.one", - "shortName": "G8Cm", - "chainId": 17171, - "networkId": 17171, - "explorers": [ - { - "name": "G8Chain", - "url": "https://mainnet.oneg8.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Smart Trade Networks", - "chain": "Smart Trade Networks", - "rpc": [ - "https://beefledgerwallet.com:8544" - ], - "faucets": [], - "nativeCurrency": { - "name": "STN", - "symbol": "STN", - "decimals": 18 - }, - "infoURL": "https://www.smarttradenetworks.com", - "shortName": "STN", - "chainId": 18122, - "networkId": 18122, - "icon": "stn", - "explorers": [ - { - "name": "stnscan", - "url": "https://stnscan.com", - "icon": "stn", - "standard": "none" - } - ] - }, - { - "name": "G8Chain Testnet", - "chain": "G8C", - "icon": "G8Chain", - "rpc": [ - "https://testnet-rpc.oneg8.network" - ], - "faucets": [ - "https://faucet.oneg8.network" - ], - "nativeCurrency": { - "name": "G8Coin", - "symbol": "G8C", - "decimals": 18 - }, - "infoURL": "https://oneg8.one", - "shortName": "G8Ct", - "chainId": 18181, - "networkId": 18181, - "explorers": [ - { - "name": "G8Chain", - "url": "https://testnet.oneg8.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nautilus Mainnet", - "chain": "ETH", - "icon": "nautilus", - "rpc": [ - "https://api.nautilus.nautchain.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zebec", - "symbol": "ZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUTCHAIN", - "chainId": 22222, - "networkId": 22222, - "explorers": [ - { - "name": "Nautscan", - "url": "https://nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } - ] - }, - { - "name": "MCH Verse Mainnet", - "chain": "MCH Verse", - "icon": "mch_verse", - "rpc": [ - "https://rpc.oasys.mycryptoheroes.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.mycryptoheroes.net/verse", - "shortName": "MCHV", - "chainId": 29548, - "networkId": 29548, - "explorers": [ - { - "name": "MCH Verse Explorer", - "url": "https://explorer.oasys.mycryptoheroes.net", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Cerium Testnet", - "chain": "CAU", - "icon": "canxium", - "rpc": [ - "https://cerium-rpc.canxium.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Canxium", - "symbol": "CAU", - "decimals": 18 - }, - "infoURL": "https://canxium.org", - "shortName": "ceri", - "chainId": 30103, - "networkId": 30103, - "explorers": [ - { - "name": "canxium explorer", - "url": "https://cerium-explorer.canxium.net", - "standard": "none" - } - ] - }, - { - "name": "Zilliqa EVM Isolated Server", - "chain": "ZIL", - "rpc": [ - "https://zilliqa-isolated-server.zilliqa.com/" - ], - "faucets": [ - "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-isolated-server", - "chainId": 32990, - "networkId": 32990, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa EVM Isolated Server Explorer", - "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", - "standard": "none" - } - ] - }, - { - "name": "Cloudverse Subnet", - "chain": "CLOUDVERSE", - "rpc": [ - "https://subnets.avax.network/cloudverse/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "XCLOUD", - "symbol": "XCLOUD", - "decimals": 18 - }, - "infoURL": "https://muadao.build/", - "shortName": "cloudverse", - "chainId": 33210, - "networkId": 33210, - "explorers": [ - { - "name": "CLOUDVERSE Explorer", - "url": "https://subnets.avax.network/cloudverse", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zilliqa EVM Devnet", - "chain": "ZIL", - "rpc": [ - "https://api.devnet.zilliqa.com/" - ], - "faucets": [ - "https://faucet.devnet.zilliqa.com/" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zil-devnet", - "chainId": 33385, - "networkId": 33385, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa EVM Devnet Explorer", - "url": "https://otterscan.devnet.zilliqa.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zilliqa 2 EVM Devnet", - "chain": "ZIL", - "rpc": [ - "https://api.zq2-devnet.zilstg.dev" - ], - "faucets": [ - "https://faucet.zq2-devnet.zilstg.dev" - ], - "nativeCurrency": { - "name": "Zilliqa", - "symbol": "ZIL", - "decimals": 18 - }, - "infoURL": "https://www.zilliqa.com/", - "shortName": "zq2-devnet", - "chainId": 33469, - "networkId": 33469, - "icon": "zilliqa", - "explorers": [ - { - "name": "Zilliqa 2 EVM Devnet Explorer", - "url": "https://explorer.zq2-devnet.zilstg.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "ConnectorManager", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://cm.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "cmRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "cmrpg", - "chainId": 38400, - "networkId": 38400, - "explorers": [ - { - "name": "rangersscan", - "url": "https://scan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "ConnectorManager Robin", - "chain": "Rangers", - "icon": "rangers", - "rpc": [ - "https://robin-cm.rangersprotocol.com/api/jsonrpc" - ], - "faucets": [ - "https://robin-faucet.rangersprotocol.com" - ], - "nativeCurrency": { - "name": "Rangers Protocol Gas", - "symbol": "ttRPG", - "decimals": 18 - }, - "infoURL": "https://rangersprotocol.com", - "shortName": "ttrpg", - "chainId": 38401, - "networkId": 38401, - "explorers": [ - { - "name": "rangersscan-robin", - "url": "https://robin-rangersscan.rangersprotocol.com", - "standard": "none" - } - ] - }, - { - "name": "Gesoten Verse Testnet", - "chain": "Gesoten Verse", - "rpc": [ - "https://rpc.testnet.verse.gesoten.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://gesoten.com/", - "shortName": "GST", - "icon": "gesoten", - "chainId": 42801, - "networkId": 42801, - "explorers": [ - { - "name": "Gesoten Verse Testnet Explorer", - "url": "https://explorer.testnet.verse.gesoten.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kinto Testnet", - "title": "Kinto Testnet", - "chain": "ETH", - "rpc": [ - "http://35.215.120.180:8545" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ethereum.org", - "shortName": "keth", - "chainId": 42888, - "networkId": 42888, - "explorers": [ - { - "name": "kintoscan", - "url": "http://35.215.120.180:4000", - "standard": "EIP3091" - } - ] - }, - { - "name": "Electroneum Mainnet", - "chain": "Electroneum", - "rpc": [ - "https://api.electroneum.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://electroneum.com", - "shortName": "etn-mainnet", - "chainId": 52014, - "networkId": 52014, - "icon": "electroneum", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockexplorer.electroneum.com", - "icon": "electroneum", - "standard": "EIP3091" - } - ] - }, - { - "name": "VELO Labs Mainnet", - "chain": "NOVA chain", - "rpc": [ - "https://nova.velo.org" - ], - "faucets": [ - "https://nova-faucet.velo.org" - ], - "nativeCurrency": { - "name": "Nova", - "symbol": "NOVA", - "decimals": 18 - }, - "infoURL": "https://velo.org", - "shortName": "VELO", - "chainId": 56789, - "networkId": 56789, - "icon": "novachain", - "explorers": [ - { - "name": "novascan", - "url": "https://novascan.velo.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Linea", - "title": "Linea Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.linea.build", - "wss://rpc.linea.build", - "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea", - "chainId": 59144, - "networkId": 59144, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.linea.build" - } - ] - }, - "explorers": [ - { - "name": "Etherscan", - "url": "https://lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, - { - "name": "Blockscout", - "url": "https://explorer.linea.build", - "standard": "EIP3091", - "icon": "linea" - }, - { - "name": "L2scan", - "url": "https://linea.l2scan.co", - "standard": "EIP3091", - "icon": "linea" - } - ], - "status": "active" - }, - { - "name": "Genesys Code Mainnet", - "chain": "GCODE", - "rpc": [ - "https://mainnet.genesyscode.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GenesysCode", - "symbol": "GCODE", - "decimals": 18 - }, - "infoURL": "https://genesyscode.io", - "shortName": "gcode", - "chainId": 59971, - "networkId": 59971, - "icon": "genesyscode", - "explorers": [ - { - "name": "Genesys Scan", - "url": "https://genesysscan.io", - "icon": "genesyscode", - "standard": "none" - } - ] - }, - { - "name": "Janus Testnet", - "chain": "JanusNetwork", - "icon": "janusnetwork", - "rpc": [ - "https://rpc.test.janusnetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Janus", - "symbol": "JNS", - "decimals": 18 - }, - "infoURL": "https://janus-network.gitbook.io/janus", - "shortName": "janusnetwork-testnet", - "chainId": 66988, - "networkId": 66988, - "status": "active", - "explorers": [ - { - "name": "JanusNetwork Testnet Explorer", - "url": "https://beta.scan.janusnetwork.io", - "standard": "none" - } - ] - }, - { - "name": "DM2 Verse Mainnet", - "chain": "DM2 Verse", - "icon": "dm2verse", - "rpc": [ - "https://rpc.dm2verse.dmm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://seamoon.dmm.com", - "shortName": "dm2", - "chainId": 68770, - "networkId": 68770, - "explorers": [ - { - "name": "DM2Verse Explorer", - "url": "https://explorer.dm2verse.dmm.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Foundry Chain Testnet", - "chain": "tFNC", - "icon": "fnc", - "rpc": [ - "https://testnet-rpc.foundryscan.org/" - ], - "faucets": [ - "https://faucet.foundryscan.org" - ], - "nativeCurrency": { - "name": "Foundry Chain Testnet", - "symbol": "tFNC", - "decimals": 18 - }, - "infoURL": "https://foundrychain.org", - "shortName": "fnc", - "chainId": 77238, - "networkId": 77238, - "explorers": [ - { - "name": "Foundry Scan Testnet", - "url": "https://testnet-explorer.foundryscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Amplify Subnet", - "chain": "AMPLIFY", - "rpc": [ - "https://subnets.avax.network/amplify/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "AMP", - "symbol": "AMP", - "decimals": 18 - }, - "infoURL": "https://www.avax.network", - "shortName": "amplify", - "chainId": 78430, - "networkId": 78430, - "explorers": [ - { - "name": "AMPLIFY Explorer", - "url": "https://subnets-test.avax.network/amplify", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bulletin Subnet", - "chain": "BULLETIN", - "rpc": [ - "https://subnets.avax.network/bulletin/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "BLT", - "symbol": "BLT", - "decimals": 18 - }, - "infoURL": "https://www.avax.network", - "shortName": "bulletin", - "chainId": 78431, - "networkId": 78431, - "explorers": [ - { - "name": "BULLETIN Explorer", - "url": "https://subnets-test.avax.network/bulletin", - "standard": "EIP3091" - } - ] - }, - { - "name": "Conduit Subnet", - "chain": "CONDUIT", - "rpc": [ - "https://subnets.avax.network/conduit/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "CON", - "symbol": "CON", - "decimals": 18 - }, - "infoURL": "https://www.avax.network", - "shortName": "conduit", - "chainId": 78432, - "networkId": 78432, - "explorers": [ - { - "name": "CONDUIT Explorer", - "url": "https://subnets-test.avax.network/conduit", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nordek Mainnet", - "chain": "Nordek", - "rpc": [ - "https://mainnet-rpc.nordekscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "NRK", - "symbol": "NRK", - "decimals": 18 - }, - "infoURL": "https://nordekscan.com", - "shortName": "nordek", - "chainId": 81041, - "networkId": 81041, - "explorers": [ - { - "name": "nordek", - "url": "https://nordekscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Quantum Chain Mainnet", - "chain": "QNET", - "icon": "qnet", - "rpc": [ - "https://rpc.quantumscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quantum Chain", - "symbol": "QNET", - "decimals": 18 - }, - "infoURL": "https://quantumnetwork.gg", - "shortName": "qnet", - "chainId": 81720, - "networkId": 81720, - "explorers": [ - { - "name": "Quantum Scan Mainnet", - "url": "https://quantumscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Base Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.base.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://base.org", - "shortName": "basesep", - "chainId": 84532, - "networkId": 84532, - "icon": "baseTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://base-sepolia.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Aerie Network", - "chain": "Aerie", - "rpc": [ - "https://mainnet.aerielab.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aerie", - "symbol": "AER", - "decimals": 18 - }, - "infoURL": "https://aerielab.io/", - "shortName": "Aerie", - "chainId": 84886, - "networkId": 84886, - "icon": "aerie", - "explorers": [ - { - "name": "Aerie Explorer", - "url": "https://explorer.aerielab.io", - "icon": "aerie", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nautilus Proteus Testnet", - "chain": "ETH", - "icon": "nautilus", - "rpc": [ - "https://api.proteus.nautchain.xyz/solana" - ], - "faucets": [ - "https://proteusfaucet.nautchain.xyz" - ], - "nativeCurrency": { - "name": "Zebec Test Token", - "symbol": "tZBC", - "decimals": 18 - }, - "infoURL": "https://docs.nautchain.xyz", - "shortName": "NAUTTest", - "chainId": 88002, - "networkId": 88002, - "explorers": [ - { - "name": "Nautscan", - "url": "https://proteus.nautscan.com", - "standard": "EIP3091", - "icon": "nautilus" - } - ] - }, - { - "name": "eLiberty Testnet", - "chain": "$EL", - "icon": "eLiberty", - "rpc": [ - "https://testnet-rpc.eliberty.ngo" - ], - "faucets": [ - "https://faucet.eliberty.ngo" - ], - "nativeCurrency": { - "name": "eLiberty", - "symbol": "$EL", - "decimals": 18 - }, - "infoURL": "https://eliberty.ngo", - "shortName": "ELt", - "chainId": 99099, - "networkId": 99099, - "explorers": [ - { - "name": "eLiberty Testnet", - "url": "https://testnet.eliberty.ngo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Jolnir L2", - "chain": "ETH", - "status": "incubating", - "icon": "taiko", - "rpc": [ - "https://rpc.jolnir.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-jolnir", - "chainId": 167007, - "networkId": 167007, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.jolnir.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitica Chain Mainnet", - "chain": "BDCC", - "rpc": [ - "https://mainnet-rpc.biticablockchain.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitica Coin", - "symbol": "BDCC", - "decimals": 18 - }, - "infoURL": "https://biticablockchain.com/", - "shortName": "bdcc", - "chainId": 188710, - "networkId": 188710, - "explorers": [ - { - "name": "Bitica DPOS Blockchain Explorer", - "url": "https://biticablockchain.com", - "standard": "none" - } - ] - }, - { - "name": "X1 Devnet", - "chain": "X1", - "rpc": [ - "https://x1-devnet.xen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "XN", - "symbol": "XN", - "decimals": 18 - }, - "infoURL": "https://docs.xen.network/x1/", - "shortName": "x1-devnet", - "chainId": 202212, - "networkId": 202212, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.x1-devnet.xen.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "X1 Network", - "chain": "X1", - "rpc": [ - "https://x1-testnet.xen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "XN", - "symbol": "XN", - "decimals": 18 - }, - "infoURL": "https://docs.xen.network/go-x1/", - "shortName": "x1-testnet", - "chainId": 204005, - "networkId": 204005, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.x1-testnet.xen.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Reapchain Mainnet", - "chain": "REAP", - "rpc": [ - "https://eth.reapchain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Reap", - "symbol": "REAP", - "decimals": 18 - }, - "features": [], - "infoURL": "https://reapchain.com", - "shortName": "reap", - "chainId": 221230, - "networkId": 221230, - "icon": "reapchain", - "explorers": [ - { - "name": "Reapchain Dashboard", - "url": "https://dashboard.reapchain.org", - "icon": "reapchain", - "standard": "none" - } - ] - }, - { - "name": "Reapchain Testnet", - "chain": "REAP", - "rpc": [ - "https://test-eth.reapchain.org" - ], - "faucets": [ - "http://faucet.reapchain.com" - ], - "nativeCurrency": { - "name": "test-Reap", - "symbol": "tREAP", - "decimals": 18 - }, - "features": [], - "infoURL": "https://reapchain.com", - "shortName": "reap-testnet", - "chainId": 221231, - "networkId": 221231, - "icon": "reapchain", - "explorers": [ - { - "name": "Reapchain Testnet Dashboard", - "url": "https://test-dashboard.reapchain.org", - "icon": "reapchain", - "standard": "none" - } - ] - }, - { - "name": "Nativ3 Testnet", - "chainId": 333333, - "shortName": "N3-Test", - "chain": "N3-Test", - "icon": "nativ3", - "networkId": 333333, - "nativeCurrency": { - "name": "USNT", - "symbol": "USNT", - "decimals": 18 - }, - "rpc": [ - "https://rpctest.nativ3.network", - "wss://wstest.nativ3.network" - ], - "faucets": [], - "explorers": [ - { - "name": "Nativ3 Test Explorer", - "url": "https://scantest.nativ3.network", - "standard": "EIP3091" - } - ], - "infoURL": "https://nativ3.network", - "parent": { - "type": "L2", - "chain": "eip155-421613", - "bridges": [ - { - "url": "https://bridgetest.nativ3.network" - } - ] - } - }, - { - "name": "Oone Chain Testnet", - "chain": "OONE Testnet", - "rpc": [ - "https://rpc.testnet.oonechain.com" - ], - "faucets": [ - "https://apps-test.adigium.com/faucet" - ], - "nativeCurrency": { - "name": "tOONE", - "symbol": "tOONE", - "decimals": 18 - }, - "infoURL": "https://oonechain.com", - "shortName": "oonetest", - "chainId": 333666, - "networkId": 333666, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.oonescan.com", - "standard": "none" - } - ] - }, - { - "name": "Digit Soul Smart Chain 2", - "chain": "DS2", - "rpc": [ - "https://dgs-rpc.digitsoul.co.th" - ], - "faucets": [], - "icon": "pnet", - "nativeCurrency": { - "name": "Digit Coin", - "symbol": "DGC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "DS2", - "chainId": 363636, - "networkId": 363636 - }, - { - "name": "Alterium L2 Testnet", - "chain": "ALT", - "icon": "alterium", - "rpc": [ - "https://l2-testnet-rpc.altscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Alterium ETH", - "symbol": "AltETH", - "decimals": 18 - }, - "infoURL": "https://alteriumprotocol.org", - "shortName": "alterium", - "chainId": 420692, - "networkId": 420692, - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://testnet-bridge.alteriumprotocol.org" - } - ] - }, - "explorers": [ - { - "name": "Alterium L2 Testnet Explorer", - "url": "https://l2-testnet.altscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arbitrum Sepolia", - "title": "Arbitrum Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-rollup.arbitrum.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://arbitrum.io", - "shortName": "arb-sep", - "chainId": 421614, - "networkId": 421614, - "explorers": [ - { - "name": "Arbitrum Sepolia Rollup Testnet Explorer", - "url": "https://sepolia-explorer.arbitrum.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "Rethereum Mainnet", - "chain": "RTH", - "rpc": [ - "https://rpc.rethereum.org", - "https://rethereum.rpc.restratagem.com", - "https://rpc.rthcentral.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rethereum", - "symbol": "RTH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.rethereum.org", - "shortName": "rth", - "chainId": 622277, - "networkId": 622277, - "icon": "rethereum", - "explorers": [ - { - "name": "rethereum", - "url": "https://explorer.rethereum.org", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hela Official Runtime Testnet", - "chain": "Hela", - "icon": "hela", - "rpc": [ - "https://testnet-rpc.helachain.com" - ], - "faucets": [ - "https://testnet-faucet.helachain.com" - ], - "nativeCurrency": { - "name": "Hela HLUSD", - "symbol": "HLUSD", - "decimals": 18 - }, - "infoURL": "https://helalabs.com", - "shortName": "hela-testnet", - "chainId": 666888, - "networkId": 666888, - "explorers": [ - { - "name": "Hela Official Runtime Testnet Explorer", - "url": "https://testnet-blockexplorer.helachain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Miexs Smartchain", - "chain": "MiexsSmartchain", - "icon": "miexs", - "rpc": [ - "https://mainnet-rpc.miexs.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Miexs Coin", - "symbol": "MIX", - "decimals": 18 - }, - "infoURL": "https://miexs.com", - "shortName": "Miexs", - "chainId": 761412, - "networkId": 761412, - "explorers": [ - { - "name": "Miexs Smartchain Explorer", - "url": "https://miexs.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Modularium", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Modularium", - "symbol": "MDM", - "decimals": 18 - }, - "infoURL": "https://www.rmrk.app/", - "shortName": "mdlrm", - "chainId": 776877, - "networkId": 776877, - "explorers": [ - { - "name": "Tanssi Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", - "standard": "none" - } - ] - }, - { - "name": "Dodao", - "chain": "EVMCC", - "rpc": [ - "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dodao", - "symbol": "DODAO", - "decimals": 18 - }, - "infoURL": "https://dodao.dev/", - "shortName": "dodao", - "chainId": 855456, - "networkId": 855456, - "icon": "dodao", - "explorers": [ - { - "name": "Dodao Explorer", - "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", - "icon": "dodao", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ecrox Chain Mainnet", - "chain": "Ecrox Chain", - "rpc": [ - "https://mainnet-rpc.ecroxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ECROX COIN", - "symbol": "ECROX", - "decimals": 18 - }, - "infoURL": "https://ecroxcoin.io/", - "shortName": "ecrox", - "icon": "ecrox", - "chainId": 988207, - "networkId": 988207, - "explorers": [ - { - "name": "Ecrox Chain Explorer", - "url": "https://ecroxscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tiltyard Subnet", - "chain": "TILTYARD", - "rpc": [ - "https://subnets.avax.network/tiltyard/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Tiltyard Token", - "symbol": "TILTG", - "decimals": 18 - }, - "infoURL": "", - "shortName": "tiltyard", - "chainId": 1127469, - "networkId": 1127469, - "explorers": [ - { - "name": "TILTYARD Explorer", - "url": "http://testnet-explorer.tiltyard.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "zKatana", - "shortName": "azktn", - "title": "Astar zkEVM Testnet zKatana", - "chain": "ETH", - "icon": "astarzk", - "rpc": [ - "https://rpc.zkatana.gelato.digital", - "https://rpc.startale.com/zkatana" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 1261120, - "networkId": 1261120, - "explorers": [ - { - "name": "Blockscout zKatana chain explorer", - "url": "https://zkatana.blockscout.com", - "standard": "EIP3091" - }, - { - "name": "Startale zKatana chain explorer", - "url": "https://zkatana.explorer.startale.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://portal.astar.network" - }, - { - "url": "https://bridge.zkatana.gelato.digital" - } - ] - }, - "status": "active" - }, - { - "name": "DeBank Testnet", - "chain": "DeBank", - "rpc": [ - "http://rpc.testnet.debank.com" - ], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "dbk", - "chainId": 2021398, - "networkId": 2021398, - "explorers": [ - { - "name": "DeBank Chain Explorer", - "url": "https://explorer.testnet.debank.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DPU Chain", - "chain": "DPU", - "rpc": [ - "https://sc-rpc.dpu.ac.th" - ], - "faucets": [], - "nativeCurrency": { - "name": "DGC", - "symbol": "DGC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "DPU", - "chainId": 2611555, - "networkId": 2611555 - }, - { - "name": "Manta Pacific Testnet", - "chain": "Manta Pacific", - "rpc": [ - "https://manta-testnet.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Manta", - "symbol": "MANTA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://manta-testnet.caldera.dev/", - "shortName": "mantaTestnet", - "chainId": 3441005, - "networkId": 3441005, - "icon": "manta", - "explorers": [ - { - "name": "manta-testnet Explorer", - "url": "https://manta-testnet.calderaexplorer.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Electroneum Testnet", - "chain": "Electroneum", - "rpc": [ - "https://api.electroneum.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Electroneum", - "symbol": "ETN", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://electroneum.com", - "shortName": "etn-testnet", - "chainId": 5201420, - "networkId": 5201420, - "icon": "electroneum", - "explorers": [ - { - "name": "blockscout", - "url": "https://blockexplorer.thesecurityteam.rocks", - "icon": "electroneum", - "standard": "EIP3091" - } - ] - }, - { - "name": "XCAP", - "title": "XCAP Mainnet", - "chain": "XCAP", - "rpc": [ - "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 - }, - "infoURL": "https://xcap.network/", - "shortName": "xcap", - "chainId": 9322252, - "networkId": 9322252, - "icon": "xcap", - "explorers": [ - { - "name": "blockscout", - "url": "https://xcap-mainnet.explorer.xcap.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Milvine", - "title": "XCAP Testnet Milvine", - "chain": "XCAP", - "rpc": [ - "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gas", - "symbol": "GAS", - "decimals": 18 - }, - "infoURL": "https://xcap.network/", - "shortName": "milv", - "chainId": 9322253, - "networkId": 9322253, - "icon": "xcap", - "explorers": [ - { - "name": "blockscout", - "url": "https://xcap-milvine.explorer.xcap.network", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "OP Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.optimism.io" - ], - "faucets": [ - "https://app.optimism.io/faucet" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://optimism.io", - "shortName": "opsep", - "chainId": 11155420, - "networkId": 11155420, - "explorers": [ - { - "name": "opscout", - "url": "https://optimism-sepolia.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Bakerloo (Barada) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-01", - "chainId": 65010001, - "networkId": 65010001, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Frame Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.testnet.frame.xyz/http" - ], - "faucets": [ - "https://faucet.triangleplatform.com/frame/testnet" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "frameTestnet", - "infoURL": "https://www.frame.xyz/", - "shortName": "frametest", - "chainId": 68840142, - "networkId": 68840142, - "explorers": [ - { - "name": "Frame Testnet Explorer", - "url": "https://explorer.testnet.frame.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Europa Hub Testnet", - "title": "Europa Hub Testnet", - "chain": "staging-legal-crazy-castor", - "icon": "europa", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa-testnet", - "chainId": 476158412, - "networkId": 476158412, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zora Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.zora.energy" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "zoraSepoliaTestnet", - "infoURL": "https://zora.energy", - "shortName": "zsep", - "chainId": 999999999, - "networkId": 999999999, - "explorers": [ - { - "name": "Zora Sepolia Testnet Network Explorer", - "url": "https://sepolia.explorer.zora.energy", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Titan Hub", - "chain": "parallel-stormy-spica", - "icon": "titan", - "rpc": [ - "https://mainnet.skalenodes.com/v1/parallel-stormy-spica", - "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" - ], - "faucets": [ - "https://sfuel.skale.network/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "titan-mainnet", - "chainId": 1350216234, - "networkId": 1350216234, - "explorers": [ - { - "name": "Blockscout", - "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Titan Hub Testnet", - "chain": "staging-aware-chief-gianfar", - "icon": "titan", - "rpc": [ - "https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar", - "wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar" - ], - "faucets": [ - "https://sfuel.dirtroad.dev/staging" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "titan-testnet", - "chainId": 1517929550, - "networkId": 1517929550, - "explorers": [ - { - "name": "Blockscout", - "url": "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Harmony Devnet Shard 1", - "chain": "Harmony", - "rpc": [ - "https://api.s1.ps.hmny.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ONE", - "symbol": "ONE", - "decimals": 18 - }, - "infoURL": "https://www.harmony.one/", - "shortName": "hmy-ps-s1", - "chainId": 1666900001, - "networkId": 1666900001, - "explorers": [] - }, - { - "name": "Ancient8 Testnet", - "chain": "Ancient8", - "icon": "ancient8", - "rpc": [ - "https://rpc-testnet.ancient8.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ancient8.gg/", - "shortName": "a8", - "chainId": 2863311531, - "networkId": 2863311531, - "explorers": [ - { - "name": "a8scan-testnet", - "url": "https://testnet.a8scan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKFair Testnet", - "title": "ZKFair Testnet", - "chain": "ZKFair", - "rpc": [ - "https://testnet-rpc.zkfair.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://zkfair.io/", - "shortName": "zkfairtest", - "chainId": 43851, - "networkId": 43851, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-scan.zkfair.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Blast Sepolia", - "chain": "Blast Sepolia", - "icon": "Blast Sepolia", - "rpc": [ - "https://sepolia.blast.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "blastscan.io/", - "shortName": "Blast Sepolia", - "chainId": 168587773, - "networkId": 168587773, - "explorers": [ - { - "name": "Blast testnet", - "url": "https://testnet.blastscan.io/", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1706000813543.png", - "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1706000827437.png", - "color_chain_bg": "0xFDFE03", - "color_chain_text": "0x000000", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1706000856201.png", - "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1706000876568.png" - } - }, - { - "name": "ProtoJumbo Testnet", - "chain": "Jumbo", - "rpc": [ - "https://testnode.jumbochain.org" - ], - "faucets": [ - "https://protojumbo.jumbochain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://jumbochain.org", - "shortName": "ProtoJumbo", - "chainId": 129, - "networkId": 129, - "slip44": 1, - "explorers": [ - { - "name": "ProtoJumbo", - "url": "https://protojumbo.jumbochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Engram Testnet", - "chain": "tGRAM", - "icon": "engram", - "rpc": [ - "https://tokioswift.engram.tech", - "https://tokio-archive.engram.tech" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Engram Tokio Testnet", - "symbol": "tGRAM", - "decimals": 18 - }, - "infoURL": "https://engramnet.io", - "shortName": "tgram", - "chainId": 131, - "networkId": 131, - "explorers": [ - { - "name": "blockscout", - "url": "https://tokioscan-v2.engram.tech", - "icon": "engram", - "standard": "EIP3091" - } - ] - }, - { - "name": "Scalind Testnet", - "chain": "ETH", - "icon": "scalind", - "rpc": [ - "https://rpc-sepolia.scalind.com" - ], - "faucets": [ - "https://faucet.scalind.com" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scalind.com", - "shortName": "sepscal", - "chainId": 220, - "networkId": 220, - "explorers": [ - { - "name": "scalind", - "url": "https://explorer-sepolia.scalind.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaChain Mainnet", - "chain": "MTC", - "icon": "metachain", - "rpc": [ - "https://rpc.metatime.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://metatime.com/en", - "shortName": "metatime", - "chainId": 571, - "networkId": 571, - "slip44": 571, - "explorers": [ - { - "name": "MetaExplorer", - "url": "https://explorer.metatime.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kalichain", - "chain": "Kalichain", - "rpc": [ - "https://mainnet.kalichain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "kalis", - "symbol": "KALIS", - "decimals": 18 - }, - "infoURL": "https://kalichain.com", - "shortName": "kalichainMainnet", - "chainId": 654, - "networkId": 654, - "icon": "kalichain", - "explorers": [ - { - "name": "kalichain explorer", - "url": "https://explorer.kalichain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Haven1 Testnet", - "chain": "haven1", - "rpc": [ - "https://testnet-rpc.haven1.org" - ], - "faucets": [ - "https://www.haven1.org/faucet" - ], - "nativeCurrency": { - "name": "Haven1", - "symbol": "H1", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.haven1.org", - "shortName": "h1", - "chainId": 810, - "networkId": 810, - "icon": "haven1", - "explorers": [ - { - "name": "Haven1 Explorer", - "url": "https://testnet-explorer.haven1.org", - "icon": "haven1", - "standard": "EIP3091" - } - ] - }, - { - "name": "Firechain zkEVM", - "title": "Firechain zkEVM", - "chain": "Firechain", - "rpc": [ - "https://rpc.zkevm.thefirechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.thefirechain.com/", - "shortName": "firechan-zkEVM", - "chainId": 814, - "networkId": 814, - "icon": "firechain", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://zkevm.bridge.rpc.thefirechain.com" - } - ] - } - }, - { - "name": "Lyra Chain", - "chain": "Lyra", - "rpc": [ - "https://rpc.lyra.finance" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://lyra.finance", - "shortName": "lyra", - "chainId": 957, - "networkId": 957, - "icon": "lyra", - "explorers": [ - { - "name": "Lyra Explorer", - "url": "https://explorer.lyra.finance", - "icon": "lyra", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogether Mainnet", - "chain": "Dogether", - "rpc": [ - "https://rpc.dogether.dog/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogether", - "symbol": "dogeth", - "decimals": 18 - }, - "infoURL": "https://www.dogether.dog/", - "shortName": "Dogether", - "chainId": 1248, - "networkId": 1248, - "explorers": [ - { - "name": "DogetherExplorer", - "url": "https://explorer.dogether.dog", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ruby Smart Chain MAINNET", - "chain": "RUBY", - "rpc": [ - "https://mainnet-data.rubychain.io/", - "https://mainnet.rubychain.io/" - ], - "nativeCurrency": { - "name": "RUBY Smart Chain Native Token", - "symbol": "RUBY", - "decimals": 18 - }, - "infoURL": "https://rubychain.io", - "faucets": [], - "shortName": "RUBY", - "chainId": 1821, - "networkId": 1821, - "slip44": 1, - "icon": "ruby", - "explorers": [ - { - "name": "RUBY Smart Chain MAINNET Explorer", - "icon": "ruby", - "url": "https://rubyscan.net", - "standard": "none" - } - ] - }, - { - "name": "Scalind", - "chain": "ETH", - "icon": "scalind", - "rpc": [ - "https://rpc.scalind.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://scalind.com", - "shortName": "scal", - "chainId": 1911, - "networkId": 1911, - "explorers": [ - { - "name": "scalind", - "url": "https://explorer.scalind.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ruby Smart Chain Testnet", - "chain": "RUBY", - "rpc": [ - "https://testnet-rchain.rubychain.io/" - ], - "nativeCurrency": { - "name": "RUBY Smart Chain Native Token", - "symbol": "tRUBY", - "decimals": 18 - }, - "infoURL": "https://rubychain.io", - "faucets": [ - "https://claim-faucet.rubychain.io/" - ], - "shortName": "tRUBY", - "chainId": 1912, - "networkId": 1912, - "slip44": 1, - "icon": "ruby", - "explorers": [ - { - "name": "RUBY Smart Chain Testnet Explorer", - "icon": "ruby", - "url": "https://testnet.rubyscan.net", - "standard": "none" - } - ] - }, - { - "name": "RedeCoin", - "chain": "REDEV2", - "rpc": [ - "https://rpc2.redecoin.eu" - ], - "faucets": [], - "nativeCurrency": { - "name": "RedeCoin", - "symbol": "REDEV2", - "decimals": 18 - }, - "infoURL": "https://www.redecoin.eu", - "shortName": "rede", - "chainId": 1972, - "networkId": 1972, - "explorers": [ - { - "name": "RedeCoin Explorer", - "url": "https://explorer3.redecoin.eu", - "standard": "none" - } - ] - }, - { - "name": "Kyoto Testnet", - "chain": "KYOTO", - "rpc": [ - "https://rpc.testnet.kyotoprotocol.io:8545" - ], - "faucets": [ - "https://faucet.kyotoprotocol.io" - ], - "nativeCurrency": { - "name": "Kyoto", - "symbol": "KYOTO", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://kyotoprotocol.io", - "shortName": "kyoto-testnet", - "chainId": 1998, - "networkId": 1998, - "slip44": 1, - "explorers": [ - { - "name": "Kyotoscan", - "url": "https://testnet.kyotoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Phala Network", - "chain": "PHA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Phala", - "symbol": "PHA", - "decimals": 18 - }, - "infoURL": "https://phala.network", - "shortName": "pha", - "chainId": 2035, - "networkId": 2035 - }, - { - "name": "Hybrid Chain Network Testnet", - "chain": "HYBRID", - "rpc": [ - "https://rpc-testnet.hybridchain.ai/" - ], - "faucets": [ - "https://faucet-testnet.hybridchain.ai" - ], - "nativeCurrency": { - "name": "Hybrid Chain Native Token", - "symbol": "tHRC", - "decimals": 18 - }, - "infoURL": "https://hybridchain.ai", - "shortName": "thrc", - "chainId": 2458, - "networkId": 2458, - "slip44": 1, - "icon": "hybrid", - "explorers": [ - { - "name": "Hybrid Chain Explorer Testnet", - "icon": "hybrid", - "url": "https://testnet.hybridscan.ai", - "standard": "none" - } - ] - }, - { - "name": "Hybrid Chain Network Mainnet", - "chain": "HYBRID", - "rpc": [ - "https://coredata-mainnet.hybridchain.ai/", - "https://rpc-mainnet.hybridchain.ai" - ], - "faucets": [ - "https://faucet-testnet.hybridchain.ai" - ], - "nativeCurrency": { - "name": "Hybrid Chain Native Token", - "symbol": "HRC", - "decimals": 18 - }, - "infoURL": "https://hybridchain.ai", - "shortName": "hrc", - "chainId": 2468, - "networkId": 2468, - "icon": "hybrid", - "explorers": [ - { - "name": "Hybrid Chain Explorer Mainnet", - "icon": "hybrid", - "url": "https://hybridscan.ai", - "standard": "none" - } - ] - }, - { - "name": "Tangle Testnet", - "chain": "Tangle Testnet", - "icon": "tangle", - "rpc": [ - "https://testnet-rpc.tangle.tools", - "https://testnet-rpc-archive.tangle.tools", - "wss://testnet-rpc.tangle.tools", - "wss://testnet-rpc-archive.tangle.tools" - ], - "faucets": [ - "https://faucet.tangle.tools" - ], - "nativeCurrency": { - "name": "Testnet Tangle Network Token", - "symbol": "tTNT", - "decimals": 18 - }, - "infoURL": "https://docs.tangle.tools", - "shortName": "tTangle", - "chainId": 3799, - "networkId": 3799, - "explorers": [ - { - "name": "ttntscan", - "url": "https://testnet-explorer.tangle.tools", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Firechain zkEVM Ghostrider", - "title": "Firechain zkEVM Ghostrider", - "chain": "Firechain", - "rpc": [ - "https://rpc.zkevm.ghostrider.thefirechain.com" - ], - "faucets": [ - "zkevm-faucet.thefirechain.com" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.thefirechain.com/", - "shortName": "firechain-zkEVM-ghostrider", - "chainId": 3885, - "networkId": 3885, - "explorers": [] - }, - { - "name": "Muster Mainnet", - "chainId": 4078, - "shortName": "muster", - "chain": "Muster", - "icon": "muster", - "networkId": 4078, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://muster.alt.technology" - ], - "faucets": [], - "explorers": [ - { - "name": "Musterscan", - "url": "https://muster-explorer.alt.technology", - "standard": "EIP3091" - } - ], - "infoURL": "", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [] - } - }, - { - "name": "Nexi V2 Mainnet", - "chain": "Nexi V2", - "icon": "nexi", - "rpc": [ - "https://chain.nexiv2.nexilix.com", - "https://rpc.chainv1.nexi.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "NexiV2", - "symbol": "NEXI", - "decimals": 18 - }, - "infoURL": "https://www.nexi.technology/", - "shortName": "NexiV2", - "chainId": 4243, - "networkId": 4243, - "slip44": 2500, - "explorers": [ - { - "name": "nexiscan", - "url": "https://www.nexiscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Smart Layer Network", - "chain": "SLN", - "rpc": [ - "https://rpc.main.smartlayer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 - }, - "infoURL": "https://www.smartlayer.network/", - "shortName": "SLN", - "chainId": 5169, - "networkId": 5169, - "explorers": [ - { - "name": "SLN Mainnet Explorer", - "url": "https://explorer.main.smartlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Latest Chain Testnet", - "chain": "LATEST", - "icon": "latestChain", - "rpc": [ - "https://testnet-rpc.latestcoin.io" - ], - "faucets": [ - "http://faucet.latestchain.io" - ], - "nativeCurrency": { - "name": "Latest", - "symbol": "LATEST", - "decimals": 18 - }, - "infoURL": "https://latestcoin.io", - "shortName": "LATESTt", - "chainId": 6660, - "networkId": 6660, - "explorers": [ - { - "name": "Latest Chain", - "url": "http://testnet.latestchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cybria Mainnet", - "chain": "CYBA", - "rpc": [ - "https://rpc-mainnet.cybria.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://cybria.io", - "shortName": "cyba", - "chainId": 6661, - "networkId": 6661, - "icon": "cybria", - "explorers": [ - { - "name": "Cybria Explorer", - "url": "https://cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155420", - "bridges": [ - { - "url": "https://app.optimism.io/bridge" - } - ] - } - }, - { - "name": "Cybria Testnet", - "chain": "CYBA", - "rpc": [ - "https://l2-rpc.cybascan.io" - ], - "faucets": [ - "https://faucet.cybascan.io" - ], - "nativeCurrency": { - "name": "Cybria", - "symbol": "CYBA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://cybria.io", - "shortName": "tcyba", - "chainId": 6666, - "networkId": 6666, - "icon": "cybria", - "explorers": [ - { - "name": "Cybria Explorer", - "url": "https://explorer.cybascan.io", - "icon": "cybascan", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155420", - "bridges": [ - { - "url": "https://app.optimism.io/bridge" - } - ] - } - }, - { - "name": "PAXB Mainnet", - "chain": "PAXB", - "rpc": [ - "https://chain.paxb.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "PAXB", - "symbol": "PAXB", - "decimals": 18 - }, - "infoURL": "https://paxb.io/", - "shortName": "PAXB", - "chainId": 6701, - "networkId": 6701, - "icon": "paxb", - "explorers": [ - { - "name": "PAXB Explorer", - "url": "https://scan.paxb.io", - "icon": "paxb", - "standard": "EIP3091" - } - ] - }, - { - "name": "Compverse Mainnet", - "chain": "CPV", - "icon": "compverse", - "rpc": [ - "https://rpc.compverse.io/", - "https://rpc-useast1.compverse.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "compverse", - "symbol": "CPV", - "decimals": 18 - }, - "infoURL": "https://compverse.io", - "shortName": "compverse", - "chainId": 6779, - "networkId": 6779, - "slip44": 7779, - "explorers": [ - { - "name": "cpvscan", - "url": "https://scan.compverse.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nume", - "title": "Nume", - "chain": "Nume", - "rpc": [ - "https://rpc.numecrypto.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dai Stablecoin", - "symbol": "DAI", - "decimals": 18 - }, - "infoURL": "https://numecrypto.com", - "shortName": "nume", - "chainId": 7100, - "networkId": 7100, - "icon": "nume", - "explorers": [ - { - "name": "numeexplorer", - "url": "https://explorer.numecrypto.com", - "icon": "nume", - "standard": "none" - } - ] - }, - { - "name": "Help The Homeless", - "chain": "mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Help The Homeless Coin", - "symbol": "HTH", - "decimals": 18 - }, - "infoURL": "https://hth.world", - "shortName": "hth", - "chainId": 7118, - "networkId": 7118, - "icon": "hth", - "status": "incubating", - "explorers": [] - }, - { - "name": "E-Dollar", - "chain": "USD", - "rpc": [ - "https://rpc.e-dollar.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "E-Dollar", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://e-dollar.org", - "shortName": "E-Dollar", - "chainId": 8087, - "networkId": 8087, - "explorers": [] - }, - { - "name": "Storagechain Mainnet", - "chain": "Storagechain", - "rpc": [ - "https://mainnet-validator.storagechain.io" - ], - "icon": "storagechain", - "faucets": [], - "shortName": "stor", - "nativeCurrency": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 - }, - "infoURL": "https://storagechain.io/about-us", - "chainId": 8726, - "networkId": 8726, - "explorers": [ - { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", - "standard": "none" - } - ] - }, - { - "name": "Storagechain Testnet", - "chain": "Storagechain", - "rpc": [ - "https://testnet-validator.storagechain.io" - ], - "icon": "storagechain", - "faucets": [], - "nativeCurrency": { - "name": "Storagechain", - "symbol": "STOR", - "decimals": 18 - }, - "shortName": "tstor", - "infoURL": "https://storagechain.io/about-us", - "chainId": 8727, - "networkId": 8727, - "explorers": [ - { - "name": "Storscan", - "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", - "standard": "none" - } - ] - }, - { - "name": "Evoke Mainnet", - "chain": "MTHN", - "icon": "mthn", - "rpc": [ - "https://mainnet-rpc.evokescan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "MTHN", - "symbol": "MTHN", - "decimals": 18 - }, - "infoURL": "https://explorer.evokescan.org", - "shortName": "MTHN", - "chainId": 9395, - "networkId": 9395, - "explorers": [ - { - "name": "Evoke SmartChain Explorer", - "url": "https://explorer.evokescan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dogelayer Mainnet", - "chain": "Dogelayer", - "rpc": [ - "https://dl-rpc.dogelayer.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 18 - }, - "infoURL": "https://dogelayer.org", - "shortName": "Dogelayer", - "chainId": 9888, - "networkId": 9888, - "explorers": [ - { - "name": "Dogelayer mainnet explorer", - "url": "https://dl-explorer.dogelayer.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Combo Mainnet", - "chain": "Combo", - "icon": "combo", - "rpc": [ - "https://rpc.combonetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://combonetwork.io", - "shortName": "combo-mainnet", - "chainId": 9980, - "networkId": 9980, - "explorers": [ - { - "name": "combotrace explorer", - "url": "https://combotrace.nodereal.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arthera Mainnet", - "chain": "AA", - "icon": "arthera", - "rpc": [ - "https://rpc.arthera.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Arthera", - "symbol": "AA", - "decimals": 18 - }, - "infoURL": "https://docs.arthera.net/build/developing-sc/using-hardhat", - "shortName": "aa", - "chainId": 10242, - "networkId": 10242, - "slip44": 10242, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.arthera.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Immutable zkEVM", - "chain": "Immutable zkEVM", - "rpc": [ - "https://rpc.immutable.com" - ], - "faucets": [ - "https://docs.immutable.com/docs/zkEVM/guides/faucet" - ], - "nativeCurrency": { - "name": "IMX", - "symbol": "IMX", - "decimals": 18 - }, - "infoURL": "https://www.immutable.com", - "shortName": "imx", - "chainId": 13371, - "networkId": 13371, - "icon": "immutable", - "explorers": [ - { - "name": "Immutable explorer", - "url": "https://explorer.immutable.com", - "standard": "EIP3091", - "icon": "immutable" - } - ] - }, - { - "name": "BSL Mainnet", - "chain": "BSL", - "rpc": [ - "http://rpc-mainnet.nftruth.io:8545", - "ws://rpc-mainnet.nftruth.io:8645" - ], - "faucets": [], - "nativeCurrency": { - "name": "Origin NFT", - "symbol": "ONF", - "decimals": 18 - }, - "infoURL": "https://bsquarelab.com/", - "shortName": "onf", - "chainId": 21912, - "networkId": 21912, - "explorers": [ - { - "name": "BSL Mainnet Explorer", - "url": "https://scan.nftruth.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "GoldXChain Testnet", - "chain": "GoldXTestnet", - "rpc": [ - "https://testnet-rpc.goldxchain.io" - ], - "faucets": [ - "https://faucet.goldxchain.io" - ], - "nativeCurrency": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 - }, - "infoURL": "https://goldxchain.io", - "shortName": "goldx-testnet", - "chainId": 22324, - "networkId": 22324, - "explorers": [ - { - "name": "GoldXChain Testnet Explorer", - "url": "https://testnet-explorer.goldxchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Blast Testnet", - "chain": "ETH", - "icon": "blastIcon", - "rpc": [ - "http://testnet-rpc.blastblockchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.blastblockchain.com", - "shortName": "blastT", - "chainId": 23888, - "networkId": 23888, - "explorers": [ - { - "name": "Blast Testnet", - "url": "http://testnet-explorer.blastblockchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Evoke Testnet", - "chain": "Evoke", - "icon": "mthn", - "rpc": [ - "https://testnet-rpc.evokescan.org" - ], - "faucets": [ - "https://faucet.evokescan.org" - ], - "nativeCurrency": { - "name": "MTHN Testnet", - "symbol": "MTHN", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.evokescan.org", - "shortName": "tmthn", - "chainId": 31414, - "networkId": 31414, - "explorers": [ - { - "name": "Evoke SmartChain Testnet Explorer", - "url": "https://testnet-explorer.evokescan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "W3Gamez Holesky Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-holesky.w3gamez.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "W3Gamez Testnet Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://web3games.com/", - "shortName": "w3gamez", - "chainId": 32001, - "networkId": 32001, - "slip44": 1, - "icon": "w3gamez", - "explorers": [ - { - "name": "W3Gamez Holesky Explorer", - "url": "https://w3gamez-holesky.web3games.com", - "icon": "web3games", - "standard": "EIP3091" - } - ] - }, - { - "name": "GoldXChain Mainnet", - "chain": "GoldX", - "rpc": [ - "https://mainnet-rpc.goldxchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GoldX", - "symbol": "GOLDX", - "decimals": 18 - }, - "infoURL": "https://goldxchain.io", - "shortName": "goldx", - "chainId": 42355, - "networkId": 42355, - "explorers": [ - { - "name": "GoldXChain Explorer", - "url": "https://explorer.goldxchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKFair Mainnet", - "title": "ZKFair Mainnet", - "chain": "ZKFair", - "rpc": [ - "https://rpc.zkfair.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "USDC Token", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://zkfair.io", - "shortName": "ZKFair-Mainnet", - "chainId": 42766, - "networkId": 42766, - "icon": "zkfair", - "explorers": [ - { - "name": "blockscout", - "url": "https://scan.zkfair.io", - "icon": "zkfair", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://wallet.zkfair.io" - } - ] - } - }, - { - "name": "Deelance Mainnet", - "title": "Deelance Network Mainnet", - "chain": "DEE", - "rpc": [ - "https://rpc.deelance.com" - ], - "faucets": [ - "https://faucet.deelance.com" - ], - "nativeCurrency": { - "name": "Deelance", - "symbol": "DEE", - "decimals": 18 - }, - "infoURL": "https://deelance.com", - "shortName": "dee", - "chainId": 45510, - "networkId": 45510, - "icon": "deelance", - "explorers": [ - { - "name": "Deelance Mainnet Explorer", - "url": "https://deescan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Yooldo Verse Mainnet", - "chain": "Yooldo Verse", - "icon": "yooldo_verse", - "rpc": [ - "https://rpc.yooldo-verse.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://yooldo.gg/", - "shortName": "YVM", - "chainId": 50005, - "networkId": 50005, - "explorers": [ - { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.yooldo-verse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Yooldo Verse Testnet", - "chain": "Yooldo Verse", - "icon": "yooldo_verse", - "rpc": [ - "https://rpc.testnet.yooldo-verse.xyz/" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://yooldo.gg/", - "shortName": "YVT", - "chainId": 50006, - "networkId": 50006, - "slip44": 1, - "explorers": [ - { - "name": "Yooldo Verse Explorer", - "url": "https://explorer.testnet.yooldo-verse.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Grok Chain Mainnet", - "chain": "Grok", - "icon": "grokicon", - "rpc": [ - "https://mainnet-rpc.grokchain.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Groc", - "symbol": "GROC", - "decimals": 18 - }, - "infoURL": "https://grokchain.dev", - "shortName": "GrokChain", - "chainId": 72992, - "networkId": 72992, - "explorers": [ - { - "name": "GrokScan", - "url": "https://mainnet-explorer.grokchain.dev", - "standard": "none" - } - ] - }, - { - "name": "Smart Layer Network Testnet", - "chain": "SLN", - "rpc": [ - "https://rpc.test.smartlayer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Service Unit Token", - "symbol": "SU", - "decimals": 18 - }, - "infoURL": "https://www.smartlayer.network/", - "shortName": "tSLN", - "chainId": 82459, - "networkId": 82459, - "explorers": [ - { - "name": "SLN Testnet Explorer", - "url": "https://explorer.test.smartlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Combo Testnet", - "chain": "Combo", - "icon": "combo", - "rpc": [ - "https://test-rpc.combonetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB Chain Native Token", - "symbol": "tcBNB", - "decimals": 18 - }, - "infoURL": "https://combonetwork.io", - "shortName": "combo-testnet", - "chainId": 91715, - "networkId": 91715, - "explorers": [ - { - "name": "combotrace explorer", - "url": "https://combotrace-testnet.nodereal.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Etherlink Testnet", - "chain": "Etherlink", - "icon": "etherlink", - "chainId": 128123, - "networkId": 128123, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://etherlink.com", - "shortName": "etlt", - "nativeCurrency": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 - }, - "rpc": [ - "https://node.ghostnet.etherlink.com" - ], - "faucets": [ - "https://faucet.etherlink.com" - ], - "explorers": [ - { - "name": "Etherlink Testnet Explorer", - "url": "https://testnet-explorer.etherlink.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Katla L2", - "chain": "ETH", - "status": "active", - "icon": "taiko", - "rpc": [ - "https://rpc.katla.taiko.xyz", - "https://taiko-katla.blockpi.network/v1/rpc/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-katla", - "chainId": 167008, - "networkId": 167008, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.katla.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "CONET Sebolia Testnet", - "chain": "CONET", - "rpc": [ - "https://rpc1.conet.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "CONET Sebolia", - "symbol": "CONET", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://conet.network", - "shortName": "conet-sebolia", - "chainId": 224422, - "networkId": 224422, - "slip44": 1, - "icon": "conet", - "explorers": [ - { - "name": "CONET Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "CONET Holesky", - "chain": "CONET Holesky", - "rpc": [ - "https://holeskyrpc1.conet.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "CONET Holesky", - "symbol": "CONET", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://conet.network", - "shortName": "conet-holesky", - "chainId": 224433, - "networkId": 224433, - "slip44": 2147708081, - "icon": "conet", - "explorers": [ - { - "name": "CONET Holesky Scan", - "url": "https://scan.conet.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ultra Pro Mainnet", - "chain": "ultrapro", - "icon": "ultrapro", - "rpc": [ - "https://mainnet-rpc.ultraproscan.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ultra Pro", - "symbol": "UPRO", - "decimals": 18 - }, - "infoURL": "https://ultrapro.info", - "shortName": "ultrapro", - "chainId": 473861, - "networkId": 473861, - "explorers": [ - { - "name": "ultraproscan", - "url": "https://ultraproscan.io", - "icon": "ultrapro", - "standard": "EIP3091" - } - ] - }, - { - "name": "BlocX Mainnet", - "chain": "BLX", - "rpc": [ - "https://mainnet-rpc.blxscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BlocX", - "symbol": "BLX", - "decimals": 18 - }, - "infoURL": "https://www.blocxchain.org/", - "shortName": "blx", - "chainId": 879151, - "networkId": 879151, - "icon": "blx", - "explorers": [ - { - "name": "BlocX Mainnet Explorer", - "url": "https://explorer.blxscan.com", - "icon": "blx", - "standard": "none" - } - ] - }, - { - "name": "Astria EVM Dusknet", - "chain": "RIA", - "icon": "astria", - "chainId": 912559, - "networkId": 912559, - "infoURL": "https://docs.astria.org", - "shortName": "ria-dev", - "nativeCurrency": { - "name": "RIA", - "symbol": "RIA", - "decimals": 18 - }, - "rpc": [ - "https://rpc.evm.dusk-2.devnet.astria.org" - ], - "faucets": [ - "https://faucet.evm.dusk-2.devnet.astria.org/" - ], - "explorers": [ - { - "name": "Astria EVM Dusknet Explorer", - "url": "https://explorer.evm.dusk-2.devnet.astria.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Turkey Demo Dev", - "chain": "ETH", - "rpc": [ - "https://devchain-poa.huabeizhenxuan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "TDD", - "chainId": 1731313, - "networkId": 1731313 - }, - { - "name": "Hokum", - "chain": "Hokum", - "icon": "hokum", - "rpc": [ - "https://mainnet.hokum.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hokum.gg", - "shortName": "hokum", - "chainId": 8080808, - "networkId": 8080808, - "explorers": [ - { - "name": "Hokum Explorer", - "url": "https://explorer.hokum.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hokum Testnet", - "chain": "HokumTestnet", - "icon": "hokum", - "rpc": [ - "https://testnet.hokum.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hokum.gg", - "shortName": "hokum-testnet", - "chainId": 20482050, - "networkId": 20482050, - "explorers": [ - { - "name": "Hokum Explorer", - "url": "https://testnet-explorer.hokum.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ancient8 Testnet", - "chain": "Ancient8", - "icon": "ancient8", - "rpc": [ - "https://rpcv2-testnet.ancient8.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ancient8.gg/", - "shortName": "a8", - "chainId": 28122024, - "networkId": 28122024, - "slip44": 1, - "explorers": [ - { - "name": "scan-testnet", - "url": "https://scanv2-testnet.ancient8.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Piccadilly (Barada) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-01", - "chainId": 65100001, - "networkId": 65100001, - "slip44": 1, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Puppynet Shibarium", - "chain": "Puppynet Shibarium", - "icon": "shibarium", - "rpc": [ - "https://puppynet.shibrpc.com" - ], - "faucets": [ - "https://beta.shibariumtech.com/faucet" - ], - "nativeCurrency": { - "name": "BONE", - "symbol": "BONE", - "decimals": 18 - }, - "infoURL": "https://shibariumecosystem.com", - "shortName": "puppynet", - "chainId": 157, - "networkId": 157, - "explorers": [ - { - "name": "puppyscan", - "url": "https://puppyscan.shib.io", - "standard": "none" - } - ] - }, - { - "name": "Viridis Testnet", - "chain": "VRD", - "icon": "viridis", - "rpc": [ - "https://testnet-rpc.vrd.network" - ], - "faucets": [ - "https://faucet.vrd.network" - ], - "nativeCurrency": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 - }, - "infoURL": "https://viridis.network", - "shortName": "VRD-Testnet", - "chainId": 224, - "networkId": 224, - "explorers": [ - { - "name": "Viridis Testnet", - "url": "https://testnet.vrd.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "ProtoJumbo Testnet", - "chain": "Jumbo", - "rpc": [ - "https://testnode.jumbochain.org" - ], - "faucets": [ - "https://protojumbo.jumbochain.org/faucet-smart" - ], - "nativeCurrency": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://jumbochain.org", - "shortName": "ProtoJumbo", - "chainId": 234, - "networkId": 234, - "slip44": 1, - "explorers": [ - { - "name": "ProtoJumbo", - "url": "https://protojumbo.jumbochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "BPX Blockchain", - "chain": "BPX", - "icon": "bpx", - "rpc": [ - "https://rpc.mainnet.bpxchain.cc", - "https://bpx-dataseed.infinex.cc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BPX", - "symbol": "BPX", - "decimals": 18 - }, - "infoURL": "https://bpxchain.cc", - "shortName": "bpx", - "chainId": 279, - "networkId": 279 - }, - { - "name": "ZKSats Mainnet", - "title": "ZKSats Mainnet", - "chain": "ZKSats", - "rpc": [ - "https://mainnet.zksats.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://zksats.io", - "shortName": "ZKSats-Mainnet", - "chainId": 305, - "networkId": 305, - "icon": "zksats", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.zksats.io", - "icon": "zksats", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lovely Network Testnet", - "chain": "Lovely", - "icon": "lovely", - "rpc": [ - "https://trpc.lovely.network" - ], - "faucets": [ - "https://faucet.lovely.network" - ], - "nativeCurrency": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 - }, - "infoURL": "https://lovely.network", - "shortName": "LOVELY-Testnet", - "chainId": 307, - "networkId": 307, - "explorers": [ - { - "name": "Lovely Network Testnet", - "url": "https://tscan.lovely.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Cosvm Mainnet", - "chain": "CVM", - "rpc": [ - "https://rpc.cosvm.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Cosvm", - "symbol": "CVM", - "decimals": 18 - }, - "infoURL": "https://cosvm.network", - "shortName": "cvm", - "chainId": 323, - "networkId": 323, - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.cosvm.net", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKAmoeba Testnet", - "chain": "FIL", - "rpc": [ - "https://rpc.testnet.zkamoeba.com:4050/", - "https://rpc1.testnet.zkamoeba.com:4050/" - ], - "faucets": [], - "nativeCurrency": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://testnet.zkamoeba.com", - "shortName": "zkamoeba-test", - "chainId": 380, - "networkId": 380, - "icon": "zkamoeba-micro", - "explorers": [ - { - "name": "ZKAmoeba Test Explorer", - "url": "https://testnetexplorer.zkamoeba.com", - "icon": "zkamoeba-micro", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-314", - "bridges": [ - { - "url": "https://testnet.zkamoeba.com/en/bridge" - } - ] - } - }, - { - "name": "ZKAmoeba Mainnet", - "chain": "FIL", - "rpc": [ - "https://rpc.mainnet.zkamoeba.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://www.zkamoeba.com", - "shortName": "zkamoeba", - "chainId": 381, - "networkId": 381, - "icon": "zkamoeba-micro", - "explorers": [ - { - "name": "ZKAmoeba Explorer", - "url": "https://explorer.zkamoeba.com", - "icon": "zkamoeba-micro", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-314", - "bridges": [ - { - "url": "https://www.zkamoeba.com/en/bridge" - } - ] - } - }, - { - "name": "Viridis Mainnet", - "chain": "VRD", - "icon": "viridis", - "rpc": [ - "https://mainnet-rpc.vrd.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Viridis Token", - "symbol": "VRD", - "decimals": 18 - }, - "infoURL": "https://viridis.network", - "shortName": "vrd", - "chainId": 422, - "networkId": 422, - "explorers": [ - { - "name": "Viridis Mainnet", - "url": "https://explorer.vrd.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Syndicate Chain", - "title": "Syndicate Chain", - "chain": "Syndicate", - "rpc": [ - "https://rpc-mainnet.syndicate.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-mainnet", - "chainId": 510, - "networkId": 510, - "status": "incubating", - "icon": "syndicate" - }, - { - "name": "EIOB Mainnet", - "chain": "EIOB", - "icon": "eiob", - "rpc": [ - "https://rpc.eiob.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "EIOB", - "symbol": "EIOB", - "decimals": 18 - }, - "infoURL": "", - "shortName": "eiob", - "chainId": 612, - "networkId": 612, - "explorers": [ - { - "name": "EIOB Explorer", - "url": "https://explorer.eiob.xyz", - "standard": "none" - } - ] - }, - { - "name": "Vrcscan Mainnet", - "chain": "VRC", - "rpc": [ - "https://rpc-mainnet-5.vrcscan.com", - "https://rpc-mainnet-6.vrcscan.com", - "https://rpc-mainnet-7.vrcscan.com", - "https://rpc-mainnet-8.vrcscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VRC Chain", - "symbol": "VRC", - "decimals": 18 - }, - "infoURL": "https://vrccoin.com", - "shortName": "vrc", - "chainId": 713, - "networkId": 713, - "explorers": [ - { - "name": "vrcscan", - "url": "https://vrcscan.com", - "standard": "EIP3091" - }, - { - "name": "dxbscan", - "url": "https://dxb.vrcscan.com", - "standard": "EIP3091" - } - ], - "icon": "vrcscan" - }, - { - "name": "Lovely Network Mainnet", - "chain": "Lovely", - "icon": "lovely", - "rpc": [ - "https://rpc.lovely.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Lovely", - "symbol": "LOVELY", - "decimals": 18 - }, - "infoURL": "https://lovely.network", - "shortName": "LOVELY", - "chainId": 730, - "networkId": 730, - "explorers": [ - { - "name": "Lovely Network Mainnet", - "url": "https://scan.lovely.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rupaya Testnet", - "chain": "Rupaya Testnet", - "rpc": [ - "https://rpc.testnet.rupaya.io" - ], - "faucets": [ - "https://faucet.testnet.rupaya.io" - ], - "nativeCurrency": { - "name": "Test Rupaya", - "symbol": "TRUPX", - "decimals": 18 - }, - "infoURL": "https://www.rupaya.io", - "shortName": "RupayaTestnet", - "chainId": 799, - "networkId": 799, - "slip44": 1, - "explorers": [ - { - "name": "rupayascan", - "url": "https://scan.testnet.rupaya.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "CheckDot Blockchain Devnet", - "chain": "CDT Blockchain", - "rpc": [ - "https://devnet.checkdot.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "CDT", - "symbol": "CDT", - "decimals": 18 - }, - "infoURL": "https://checkdot.io", - "shortName": "cdt", - "chainId": 831, - "networkId": 831, - "explorers": [ - { - "name": "CDT Explorer", - "url": "https://explorer.checkdot.io", - "standard": "none" - } - ] - }, - { - "name": "Dymension", - "chain": "Dymension", - "rpc": [ - "https://dymension-evm.blockpi.network/v1/rpc/public", - "https://dymension-evm-rpc.publicnode.com", - "wss://dymension-evm-rpc.publicnode.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DYM", - "symbol": "DYM", - "decimals": 18 - }, - "infoURL": "https://dymension.xyz", - "shortName": "dymension", - "icon": "dymension", - "chainId": 1100, - "networkId": 1100, - "explorers": [ - { - "name": "dym.fyi", - "url": "https://dym.fyi", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hybrid Testnet", - "chain": "$HYB", - "icon": "hybridIcon", - "rpc": [ - "https://testnet-rpc.buildonhybrid.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hybrid", - "symbol": "$HYB", - "decimals": 18 - }, - "infoURL": "https://buildonhybrid.com", - "shortName": "hyb", - "chainId": 1224, - "networkId": 1224, - "explorers": [ - { - "name": "Hybrid Testnet", - "url": "https://alphatestnet.buildonhybrid.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaChain Istanbul", - "title": "MetaChain Testnet Istanbul", - "chain": "MTC", - "icon": "metachain", - "rpc": [ - "https://istanbul-rpc.metachain.dev" - ], - "faucets": [ - "https://istanbul-faucet.metachain.dev" - ], - "nativeCurrency": { - "name": "Metatime Coin", - "symbol": "MTC", - "decimals": 18 - }, - "infoURL": "https://metatime.com/en", - "shortName": "metatimeistanbul", - "chainId": 1453, - "networkId": 1453, - "slip44": 1453, - "explorers": [ - { - "name": "MetaExplorer", - "url": "https://istanbul-explorer.metachain.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vitruveo Mainnet", - "title": "Vitruveo is a blockchain for Creators", - "chain": "Vitruveo", - "rpc": [ - "https://rpc.vitruveo.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Vitruveo Coin", - "symbol": "VTRU", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://www.vitruveo.xyz", - "shortName": "vitruveo", - "chainId": 1490, - "networkId": 1490, - "icon": "vitruveo", - "explorers": [ - { - "name": "Vitruveo Explorer", - "url": "https://explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Selendra Network Testnet", - "chain": "tSEL", - "rpc": [ - "https://rpc0-testnet.selendra.org", - "https://rpc1-testnet.selendra.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Selendra", - "symbol": "tSEL", - "decimals": 18 - }, - "infoURL": "https://selendra.org", - "shortName": "tSEL", - "chainId": 1953, - "networkId": 1953, - "icon": "selendra" - }, - { - "name": "Selendra Network Mainnet", - "chain": "SEL", - "rpc": [ - "https://rpc0.selendra.org", - "https://rpc1.selendra.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Selendra", - "symbol": "SEL", - "decimals": 18 - }, - "infoURL": "https://selendra.org", - "shortName": "SEL", - "chainId": 1961, - "networkId": 1961, - "icon": "selendra", - "explorers": [ - { - "name": "Selendra Scan", - "url": "https://scan.selendra.org", - "standard": "none" - } - ] - }, - { - "name": "Swan Saturn Testnet", - "chain": "SWAN", - "rpc": [ - "https://saturn-rpc.swanchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SWANETH", - "symbol": "SWAN", - "decimals": 18 - }, - "infoURL": "https://swanchain.io/", - "shortName": "swan", - "chainId": 2024, - "networkId": 2024 - }, - { - "name": "Karak Mainnet", - "chain": "Karak", - "icon": "karak", - "rpc": [ - "https://rpc.karak.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://karak.network", - "shortName": "karak-mainnet", - "chainId": 2410, - "networkId": 2410, - "explorers": [ - { - "name": "Karak Mainnet Explorer", - "url": "https://explorer.karak.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "Polygon zkEVM Cardona Testnet", - "title": "Polygon zkEVM Cardona Testnet", - "chain": "Polygon", - "rpc": [ - "https://rpc.cardona.zkevm-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/polygon-zkevm", - "shortName": "zkevm-testnet-cardona", - "chainId": 2442, - "networkId": 2442, - "icon": "zkevm", - "explorers": [ - { - "name": "polygonscan", - "url": "https://cardona-zkevm.polygonscan.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge-ui.cardona.zkevm-rpc.com" - } - ] - } - }, - { - "name": "Karak Testnet", - "chain": "Karak", - "icon": "karak", - "rpc": [ - "https://goerli.node1.karak.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Karak", - "symbol": "KRK", - "decimals": 18 - }, - "infoURL": "https://karak.network", - "shortName": "karak-testnet", - "chainId": 2511, - "networkId": 2511, - "explorers": [ - { - "name": "Karak Testnet Explorer", - "url": "https://goerli.scan.karak.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-5" - } - }, - { - "name": "Elizabeth Testnet", - "chain": "Elizabeth", - "rpc": [ - "https://testnet-rpc.timenetwork.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TIME", - "symbol": "TIME", - "decimals": 18 - }, - "infoURL": "https://whitepaper.anttime.net/overview/anttime", - "shortName": "TIME", - "chainId": 2731, - "networkId": 2731, - "icon": "timenet", - "explorers": [ - { - "name": "Time Network Explorer", - "url": "https://testnet-scanner.timenetwork.io", - "standard": "none", - "icon": "timenet" - } - ] - }, - { - "name": "Xenon Chain Testnet", - "chain": "XEN", - "rpc": [ - "https://testnet-chain.xenonchain.com/", - "https://testnet-dev.xenonchain.com/" - ], - "faucets": [ - "https://xfaucet.xenonchain.com" - ], - "nativeCurrency": { - "name": "Xenon Testnet", - "symbol": "tXEN", - "decimals": 18 - }, - "infoURL": "https://xenonchain.com", - "shortName": "xenon", - "chainId": 2941, - "networkId": 2941, - "icon": "xenon", - "slip44": 1, - "explorers": [ - { - "name": "Xenon testnet Explorer", - "url": "https://testnet.xenonchain.com", - "standard": "none" - } - ] - }, - { - "name": "APEX Testnet", - "chain": "ETH", - "rpc": [ - "https://exp-testnet.apexlayer.xyz" - ], - "faucets": [ - "https://sepoliafaucet.com/" - ], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.apexlayer.xyz/", - "shortName": "apexsep", - "chainId": 3993, - "networkId": 3993, - "slip44": 1, - "icon": "apextestnet", - "explorers": [ - { - "name": "blockscout", - "url": "https://exp-testnet.apexlayer.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://apexlayer.xyz/bridge" - } - ] - } - }, - { - "name": "Lisk Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia-api.lisk.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lisk.com", - "shortName": "lisksep", - "chainId": 4202, - "networkId": 4202, - "slip44": 134, - "explorers": [ - { - "name": "liskscout", - "url": "https://sepolia-blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Emoney Network Testnet", - "chain": "Emoney", - "rpc": [ - "https://testnet.emoney.network/" - ], - "faucets": [ - "https://faucet.emoney.network/faucet" - ], - "nativeCurrency": { - "name": "Emoney Network", - "symbol": "EMYC", - "decimals": 18 - }, - "infoURL": "https://emoney.network/", - "shortName": "emoney", - "chainId": 4544, - "networkId": 4544, - "slip44": 118, - "icon": "emoney", - "explorers": [ - { - "name": "EMoney ethscan", - "url": "https://ethscan.emoney.network", - "icon": "emoney", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gold Chain", - "title": "Gold Chain", - "chain": "Gold", - "rpc": [ - "https://chain-rpc.gold.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://gold.dev", - "shortName": "gold", - "chainId": 4653, - "networkId": 4653, - "status": "incubating", - "icon": "gold" - }, - { - "name": "Syndicate Testnet", - "title": "Syndicate Testnet", - "chain": "Syndicate", - "rpc": [ - "https://rpc-testnet.syndicate.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "S-Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-testnet", - "chainId": 5100, - "networkId": 5100, - "status": "incubating", - "icon": "syndicate" - }, - { - "name": "Syndicate Frame Chain", - "title": "Syndicate Frame Chain", - "chain": "Syndicate Frame", - "rpc": [ - "https://rpc-frame.syndicate.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndicate.io", - "shortName": "syndicate-chain-frame", - "chainId": 5101, - "networkId": 5101, - "status": "incubating", - "icon": "syndicate" - }, - { - "name": "BST Chain", - "chain": "BSTC", - "rpc": [ - "https://rpc.bstchain.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BST Chain", - "symbol": "BSTC", - "decimals": 18 - }, - "infoURL": "https://bstchain.io", - "shortName": "BSTC", - "chainId": 7007, - "networkId": 7007, - "icon": "bstc", - "explorers": [ - { - "name": "blockscout", - "url": "https://bstscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kinto Mainnet", - "chain": "Kinto Mainnet", - "rpc": [ - "https://rpc.kinto.xyz/http", - "https://kinto-mainnet.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kinto.xyz", - "shortName": "kintoMainnet", - "chainId": 7887, - "networkId": 7887, - "icon": "kinto", - "explorers": [ - { - "name": "Kinto Explorer", - "url": "https://explorer.kinto.xyz", - "icon": "kinto", - "standard": "EIP3091" - } - ] - }, - { - "name": "Orenium Testnet Protocol", - "chain": "ORE", - "rpc": [ - "https://rpc-dev-testnet.orenium.org/", - "https://rpc-testnet.orenium.org/" - ], - "nativeCurrency": { - "name": "ORENIUM", - "symbol": "tORE", - "decimals": 18 - }, - "infoURL": "https://orenium.org", - "shortName": "tore", - "chainId": 8890, - "networkId": 8890, - "slip44": 1, - "icon": "ore", - "faucets": [ - "https://faucetcoin.orenium.org" - ], - "explorers": [ - { - "name": "ORE Testnet Explorer", - "icon": "ore", - "url": "https://testnet.oreniumscan.org", - "standard": "none" - } - ] - }, - { - "name": "Nexa Testnet Block", - "chain": "Nexa Testnet", - "rpc": [ - "https://rpc-testnet-nodes.nexablockscan.io" - ], - "faucets": [ - "https://testnet.nexablockscan.io/faucet" - ], - "nativeCurrency": { - "name": "Nexa Testnet Token", - "symbol": "NEXB", - "decimals": 18 - }, - "infoURL": "https://www.nexablock.io", - "shortName": "NexaTestnet", - "chainId": 9024, - "networkId": 9024, - "icon": "nexaChain", - "explorers": [ - { - "name": "Nexablock Testnet Explorer", - "url": "https://testnet.nexablockscan.io", - "standard": "none", - "icon": "nexaChain" - } - ] - }, - { - "name": "Nexa Mainnet Block", - "chain": "Nexa Mainnet", - "rpc": [ - "https://rpc-nodes.nexablockscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Nexa Mainnet Token", - "symbol": "NEXB", - "decimals": 18 - }, - "infoURL": "https://www.nexablock.io", - "shortName": "Nexa", - "chainId": 9025, - "networkId": 9025, - "icon": "nexaChain", - "explorers": [ - { - "name": "Nexablock Mainnet Explorer", - "url": "https://nexablockscan.io", - "standard": "none", - "icon": "nexaChain" - } - ] - }, - { - "name": "Dela Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-dela.deperp.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.deperp.com/dela", - "shortName": "delasep", - "chainId": 9393, - "networkId": 9393, - "slip44": 1, - "icon": "delaTestnet", - "explorers": [ - { - "name": "basescout", - "url": "https://sepolia-delascan.deperp.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "BEVM Testnet", - "chain": "BEVM", - "rpc": [ - "https://testnet.bevm.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://bevm.io", - "shortName": "bevm", - "chainId": 11503, - "networkId": 11503, - "icon": "bevmcanary", - "explorers": [ - { - "name": "bevm testnet scan", - "url": "https://scan-testnet.bevm.io", - "standard": "none" - } - ] - }, - { - "name": "Aternos", - "chain": "Aternos", - "icon": "aternos", - "rpc": [ - "https://rpc.aternoschain.com" - ], - "faucets": [ - "https://faucet.aternoschain.com" - ], - "nativeCurrency": { - "name": "Aternos", - "symbol": "ATR", - "decimals": 18 - }, - "infoURL": "https://aternoschain.com", - "shortName": "ATR", - "chainId": 12020, - "networkId": 12020, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.aternoschain.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vitruveo Testnet", - "title": "Vitruveo is a blockchain for Creators", - "chain": "Vitruveo", - "rpc": [ - "https://test-rpc.vitruveo.xyz" - ], - "faucets": [ - "https://faucet.vitruveo.xyz" - ], - "nativeCurrency": { - "name": "Vitruveo Test Coin", - "symbol": "tVTRU", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://www.vitruveo.xyz", - "shortName": "vitruveo-test", - "chainId": 14333, - "networkId": 14333, - "icon": "vitruveo", - "explorers": [ - { - "name": "Vitruveo Testnet Explorer", - "url": "https://test-explorer.vitruveo.xyz", - "icon": "vitruveo", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eclipse Subnet", - "chain": "ECLIPSE", - "rpc": [ - "https://subnets.avax.network/eclipse/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eclipse", - "symbol": "ECLP", - "decimals": 16 - }, - "infoURL": "http://eclipsenet.io", - "shortName": "eclipse", - "chainId": 17172, - "networkId": 17172, - "explorers": [ - { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipse", - "standard": "EIP3091" - } - ] - }, - { - "name": "KONET Mainnet", - "chain": "KONET", - "rpc": [ - "https://api.kon-wallet.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "KONET", - "symbol": "KONET", - "decimals": 18 - }, - "infoURL": "https://konetmain.com", - "shortName": "KONET", - "chainId": 17217, - "networkId": 17217, - "slip44": 1, - "icon": "konet", - "explorers": [ - { - "name": "konet-explorer", - "url": "https://explorer.kon-wallet.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "unreal", - "title": "unreal testnet for re.al", - "chain": "unreal", - "rpc": [ - "https://rpc.unreal.gelato.digital", - "wss://ws.unreal.gelato.digital" - ], - "nativeCurrency": { - "name": "unreal Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", - "faucets": [], - "shortName": "unreal", - "chainId": 18231, - "networkId": 18231, - "slip44": 60, - "icon": "unreal", - "explorers": [ - { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.unreal.gelato.digital" - } - ] - } - }, - { - "name": "Titan (TKX) Testnet", - "chain": "Titan (TKX)", - "rpc": [ - "https://titan-testnet-json-rpc-1.tokenize-dev.com", - "https://titan-testnet-json-rpc-2.tokenize-dev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 - }, - "infoURL": "https://tokenize.exchange", - "shortName": "titan_tkx-testnet", - "chainId": 18889, - "networkId": 18889, - "slip44": 1, - "icon": "titan_tkx", - "explorers": [ - { - "name": "Titan Explorer", - "url": "https://titan-testnet-explorer-light.tokenize-dev.com", - "standard": "none", - "icon": "titan_tkx" - } - ] - }, - { - "name": "Decentraconnect Social", - "chain": "DCSM", - "icon": "dcsmIcon", - "rpc": [ - "https://rpc.decentraconnect.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Decentraconnect Social", - "symbol": "DCSM", - "decimals": 18 - }, - "infoURL": "https://docs.decentraconnect.io", - "shortName": "DCSMs", - "chainId": 19224, - "networkId": 19224, - "explorers": [ - { - "name": "Decentraconnect Social", - "url": "https://decentraconnect.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Magnet Network", - "chain": "Magnet", - "rpc": [ - "https://magnet-rpc.magport.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Magnet Network", - "symbol": "DOT", - "decimals": 18 - }, - "infoURL": "https://magnet.magport.io/", - "shortName": "mgt", - "chainId": 19527, - "networkId": 19527, - "explorers": [] - }, - { - "name": "Jono11 Subnet", - "chain": "JONO11", - "icon": "jono11", - "rpc": [ - "https://subnets.avax.network/jono11/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Jono11 Token", - "symbol": "JONO", - "decimals": 18 - }, - "infoURL": "", - "shortName": "jono11", - "chainId": 20765, - "networkId": 20765, - "explorers": [ - { - "name": "JONO11 Explorer", - "url": "https://subnets-test.avax.network/jono11", - "standard": "EIP3091" - } - ] - }, - { - "name": "C4EI", - "chain": "C4EI", - "rpc": [ - "https://rpc.c4ei.net" - ], - "faucets": [ - "https://play.google.com/store/apps/details?id=net.c4ei.fps2" - ], - "nativeCurrency": { - "name": "C4EI", - "symbol": "C4EI", - "decimals": 18 - }, - "infoURL": "https://c4ei.net", - "shortName": "c4ei", - "chainId": 21004, - "networkId": 21004, - "explorers": [ - { - "name": "C4EI sirato", - "url": "https://exp.c4ei.net", - "icon": "c4ei", - "standard": "none" - } - ] - }, - { - "name": "All About Healthy", - "chain": "AAH", - "rpc": [ - "https://rpc.c4ex.net" - ], - "faucets": [ - "https://t.me/c4eiAirdrop" - ], - "nativeCurrency": { - "name": "AAH", - "symbol": "AAH", - "decimals": 18 - }, - "infoURL": "https://c4ex.net", - "shortName": "aah", - "chainId": 21133, - "networkId": 21133, - "explorers": [ - { - "name": "AAH Blockscout", - "url": "https://exp.c4ex.net", - "icon": "aah", - "standard": "EIP3091" - } - ] - }, - { - "name": "LiquidLayer Mainnet", - "chain": "LiquidLayer", - "icon": "lila", - "rpc": [ - "https://mainnet.liquidlayer.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "LiquidLayer", - "symbol": "LILA", - "decimals": 18 - }, - "infoURL": "https://scan.liquidlayer.network", - "shortName": "LILA", - "chainId": 25186, - "networkId": 25186, - "explorers": [ - { - "name": "LiquidLayer Mainnet Explorer", - "url": "https://scan.liquidlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "AlveyChain Testnet", - "chain": "tALV", - "rpc": [ - "https://testnet-rpc.alvey.io" - ], - "faucets": [ - "https://faucet.alveytestnet.com" - ], - "nativeCurrency": { - "name": "AlveyCoin Testnet", - "symbol": "tALV", - "decimals": 18 - }, - "infoURL": "https://alveychain.com/", - "shortName": "talv", - "chainId": 25839, - "networkId": 25839, - "icon": "alveychain", - "explorers": [ - { - "name": "AlveyScan Testnet", - "url": "https://alveytestnet.com", - "icon": "alveychain", - "standard": "EIP3091" - } - ] - }, - { - "name": "GUNZ Testnet", - "chain": "tGUN", - "rpc": [ - "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "GUN", - "symbol": "GUN", - "decimals": 18 - }, - "icon": "guntestnet", - "infoURL": "https://gunbygunz.com", - "shortName": "Stork", - "chainId": 49321, - "networkId": 49321, - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.gunzscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DOID", - "chain": "DOID", - "rpc": [ - "https://rpc.doid.tech" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://doid.tech", - "shortName": "DOID", - "chainId": 53277, - "networkId": 53277, - "icon": "doid", - "explorers": [ - { - "name": "DOID Scan", - "url": "https://scan.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } - ] - }, - { - "name": "DOID Testnet", - "chain": "DOID", - "rpc": [ - "https://rpc.testnet.doid.tech" - ], - "faucets": [], - "nativeCurrency": { - "name": "DOID", - "symbol": "DOID", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://doid.tech", - "shortName": "doidTestnet", - "chainId": 56797, - "networkId": 56797, - "icon": "doid", - "explorers": [ - { - "name": "DOID Testnet Scan", - "url": "https://scan.testnet.doid.tech", - "icon": "doid", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vanguard", - "title": "Vanar Testnet Vanguard", - "chain": "VANAR", - "rpc": [ - "https://rpc-vanguard.vanarchain.com", - "wss://ws-vanguard.vanarchain.com" - ], - "faucets": [ - "https://faucet.vanarchain.com" - ], - "nativeCurrency": { - "name": "Vanguard Vanry", - "symbol": "VG", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://vanarchain.com", - "shortName": "vanguard", - "chainId": 78600, - "networkId": 78600, - "icon": "vanguard", - "explorers": [ - { - "name": "Vanguard Explorer", - "url": "https://explorer-vanguard.vanarchain.com", - "icon": "vanguard", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hizoco mainnet", - "chain": "HZC", - "icon": "hizoco", - "rpc": [ - "https://hizoco.net/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Hizoco", - "symbol": "HZC", - "decimals": 18 - }, - "infoURL": "http://hizoco.net", - "shortName": "hzc", - "chainId": 80096, - "networkId": 80096, - "explorers": [ - { - "name": "blockscout", - "url": "https://hizoco.net:38443", - "standard": "none" - } - ] - }, - { - "name": "Blast", - "chain": "ETH", - "rpc": [ - "https://blast.blockpi.network/v1/rpc/public" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://blast.io/", - "shortName": "blastmainnet", - "chainId": 81457, - "networkId": 81457, - "icon": "blast", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "MetaDAP Enterprise Mainnet", - "title": "MetaDAP Enterprise Mainnet", - "chain": "MetaDAP", - "icon": "metadap", - "faucets": [], - "rpc": [ - "https://rpc.chain.metadap.io", - "wss://rpc-ws.chain.metadap.io" - ], - "nativeCurrency": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 - }, - "infoURL": "https://metadap.io/", - "shortName": "MetaDAP", - "chainId": 91120, - "networkId": 91120, - "explorers": [ - { - "name": "MetaDAP Enterprise Mainnet explorer", - "url": "https://explorer.chain.metadap.io", - "standard": "none" - } - ] - }, - { - "name": "LiquidLayer Testnet", - "chain": "LILA", - "icon": "lila", - "rpc": [ - "https://testnet.liquidlayer.network" - ], - "faucets": [ - "https://claim.liquidlayer.network" - ], - "nativeCurrency": { - "name": "LiquidLayer Testnet", - "symbol": "LILA", - "decimals": 18 - }, - "infoURL": "https://testnet-scan.liquidlayer.network", - "shortName": "tLILA", - "chainId": 93572, - "networkId": 93572, - "explorers": [ - { - "name": "LiquidLayer Testnet Explorer", - "url": "https://testnet-scan.liquidlayer.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Masa Testnet", - "chain": "MASA", - "rpc": [ - "https://subnets.avax.network/masatestne/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 - }, - "infoURL": "https://masa.finance", - "shortName": "masa", - "chainId": 103454, - "networkId": 103454, - "explorers": [ - { - "name": "Masa Testnet Explorer", - "url": "https://subnets-test.avax.network/masatestnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "MetaDAP Enterprise Testnet", - "title": "MetaDAP Enterprise Testnet", - "chain": "MetaDAP", - "icon": "metadap", - "faucets": [], - "rpc": [ - "https://rpc.testnet.chain.metadap.io", - "wss://rpc-ws.testnet.chain.metadap.io" - ], - "nativeCurrency": { - "name": "DAP", - "symbol": "DAP", - "decimals": 18 - }, - "infoURL": "https://metadap.io/", - "shortName": "MetaDAP-T", - "chainId": 119139, - "networkId": 119139, - "explorers": [ - { - "name": "MetaDAP Enterprise Testnet explorer", - "url": "https://explorer.testnet.chain.metadap.io", - "standard": "none" - } - ] - }, - { - "name": "Taiko (Alpha-2 Testnet)", - "chain": "ETH", - "status": "deprecated", - "icon": "taiko", - "rpc": [ - "https://rpc.a2.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-a2", - "chainId": 167004, - "networkId": 167004, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.a2.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Grimsvotn L2", - "chain": "ETH", - "status": "deprecated", - "icon": "taiko", - "rpc": [ - "https://rpc.test.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-l2", - "chainId": 167005, - "networkId": 167005, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.test.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Eldfell L3", - "chain": "ETH", - "status": "deprecated", - "icon": "taiko", - "rpc": [ - "https://rpc.l3test.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "taiko-l3", - "chainId": 167006, - "networkId": 167006, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.l3test.taiko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitlayer Testnet", - "chain": "Bitlayer", - "rpc": [ - "https://testnet-rpc.bitlayer.org", - "wss://testnet-ws.bitlayer.org" - ], - "faucets": [ - "https://www.bitlayer.org/faucet" - ], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://docs.bitlayer.org/", - "shortName": "Bitlayer", - "chainId": 200810, - "networkId": 200810, - "slip44": 1, - "icon": "bitlayer", - "explorers": [ - { - "name": "bitlayer testnet scan", - "url": "https://testnet-scan.bitlayer.org", - "standard": "none" - } - ] - }, - { - "name": "Bloom Genesis Testnet", - "chain": "Bloom", - "icon": "bloom", - "rpc": [ - "https://testnet-rpc.bloomgenesis.com" - ], - "faucets": [ - "https://faucet.bloomgenesis.com" - ], - "nativeCurrency": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 - }, - "infoURL": "https://www.bloomgenesis.com", - "shortName": "BGBC-Testnet", - "chainId": 323213, - "networkId": 323213, - "explorers": [ - { - "name": "Bloom Genesis Testnet", - "url": "https://testnet.bloomgenesis.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bloom Genesis Mainnet", - "chain": "Bloom", - "icon": "bloom", - "rpc": [ - "https://mainnet-rpc.bloomgenesis.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bloom", - "symbol": "BGBC", - "decimals": 18 - }, - "infoURL": "https://www.bloomgenesis.com", - "shortName": "BGBC", - "chainId": 333313, - "networkId": 333313, - "explorers": [ - { - "name": "Bloom Genesis Mainnet", - "url": "https://explorer.bloomgenesis.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Syndr L3 Sepolia", - "title": "Syndr L3 Sepolia Rollup Testnet", - "chain": "SYNDRSEPOLIA", - "rpc": [ - "https://sepolia.syndr.com/http", - "wss://sepolia.syndr.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndr.com", - "shortName": "syndr", - "chainId": 444444, - "networkId": 444444, - "explorers": [ - { - "name": "Syndr L3 Sepolia Testnet Explorer", - "url": "https://sepolia-explorer.syndr.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://sepolia-bridge.syndr.com" - } - ] - } - }, - { - "name": "Sei Devnet", - "chain": "Sei", - "rpc": [ - "https://evm-rpc-arctic-1.sei-apis.com", - "https://evm-rpc.arctic-1.seinetwork.io" - ], - "faucets": [ - "https://sei-faucet.nima.enterprises", - "https://sei-evm.faucetme.pro" - ], - "nativeCurrency": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 - }, - "infoURL": "https://www.sei.io", - "shortName": "sei-devnet", - "chainId": 713715, - "networkId": 713715, - "icon": "sei", - "explorers": [ - { - "name": "Seistream", - "url": "https://seistream.app", - "standard": "none" - }, - { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Jono12 Subnet", - "chain": "JONO12", - "icon": "jono12", - "rpc": [ - "https://subnets.avax.network/jono12/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Jono12 Token", - "symbol": "JONO", - "decimals": 18 - }, - "infoURL": "", - "shortName": "jono12", - "chainId": 955081, - "networkId": 955081, - "explorers": [ - { - "name": "JONO12 Explorer", - "url": "https://subnets-test.avax.network/jono12", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Nebula Hub Testnet", - "title": "SKALE Nebula Hub Testnet", - "chain": "lanky-ill-funny-testnet", - "icon": "nebula", - "rpc": [ - "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet", - "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://nebulachain.io/", - "shortName": "nebula-testnet", - "chainId": 37084624, - "networkId": 37084624, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Plume Testnet", - "title": "Plume Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://plume-testnet.rpc.caldera.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Plume Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.plumenetwork.xyz/", - "shortName": "plume-testnet", - "chainId": 161221135, - "networkId": 161221135, - "slip44": 1, - "icon": "plume", - "explorers": [ - { - "name": "Blockscout", - "url": "https://plume-testnet.explorer.caldera.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://plume-testnet.calderabridge.xyz" - } - ] - } - }, - { - "name": "Ancient8", - "chain": "Ancient8", - "icon": "ancient8", - "rpc": [ - "https://rpc.ancient8.gg" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ancient8.gg/", - "shortName": "ancient8", - "chainId": 888888888, - "networkId": 888888888, - "explorers": [ - { - "name": "Ancient8 Explorer", - "url": "https://scan.ancient8.gg", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Calypso Hub Testnet", - "title": "SKALE Calypso Hub Testnet", - "chain": "giant-half-dual-testnet", - "icon": "calypso", - "rpc": [ - "https://testnet.skalenodes.com/v1/giant-half-dual-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://calypsohub.network/", - "shortName": "calypso-testnet", - "chainId": 974399131, - "networkId": 974399131, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Titan Hub Testnet", - "title": "SKALE Titan Hub Testnet", - "chain": "aware-fake-trim-testnet", - "icon": "titan", - "rpc": [ - "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet", - "wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "", - "shortName": "titan-testnet", - "chainId": 1020352220, - "networkId": 1020352220, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "PowerGold", - "chain": "NEAR", - "rpc": [ - "https://powergold.aurora.dev" - ], - "icon": "powergold", - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.powergold.tech", - "shortName": "powergold", - "chainId": 1313161560, - "networkId": 1313161560, - "explorers": [ - { - "name": "PowerGold explorer", - "url": "https://explorer.powergold.aurora.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "SKALE Europa Hub Testnet", - "title": "SKALE Europa Hub Testnet", - "chain": "juicy-low-small-testnet", - "icon": "europa", - "rpc": [ - "https://testnet.skalenodes.com/v1/juicy-low-small-testnet" - ], - "faucets": [ - "https://www.sfuelstation.com/" - ], - "nativeCurrency": { - "name": "sFUEL", - "symbol": "sFUEL", - "decimals": 18 - }, - "infoURL": "https://europahub.network/", - "shortName": "europa-testnet", - "chainId": 1444673419, - "networkId": 1444673419, - "slip44": 1, - "explorers": [ - { - "name": "Blockscout", - "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "GitSwarm Test Network", - "title": "GitSwarm Test Network", - "chain": "ETH", - "icon": "gitswarm", - "rpc": [ - "https://gitswarm.com:2096" - ], - "faucets": [], - "nativeCurrency": { - "name": "GitSwarm Ether", - "symbol": "GS-ETH", - "decimals": 18 - }, - "infoURL": "https://gitswarm.com/", - "shortName": "GS-ETH", - "chainId": 28872323069, - "networkId": 28872323069, - "slip44": 1, - "explorers": [], - "status": "incubating" - }, - { - "name": "Kakarot Sepolia", - "chain": "ETH", - "icon": "kakarot", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kakarot.org", - "shortName": "kkrt-sepolia", - "chainId": 107107114116, - "networkId": 107107114116, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "WDC Chain", - "chainId": 999999, - "shortName": "WDC", - "chain": "WDC", - "network": "mainnet", - "networkId": 999999, - "nativeCurrency": { - "name": "World", - "symbol": "WORLD", - "decimals": 18 - }, - "rpc": [ - "https://rpc.worldcoin.group" - ], - "faucets": [], - "explorers": [ - { - "name": "WDCScan", - "url": "https://scan.worldcoin.group", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901010969.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709900938585.png", - "color_chain_bg": "0x110044", - "color_chain_text": "0x15cad3", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709900563540.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709900974713.png" - } - }, - { - "name": "Hoo Smart Chain Testnet", - "chain": "HSC", - "network": "testnet", - "rpc": [ - "https://http-testnet.hoosmartchain.com" - ], - "faucets": [ - "https://faucet-testnet.hscscan.com/" - ], - "nativeCurrency": { - "name": "HOO", - "symbol": "HOO", - "decimals": 18 - }, - "infoURL": "https://www.hoosmartchain.com", - "shortName": "HSC", - "chainId": 170, - "networkId": 170, - "app_resource": { - "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/1.png", - "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/0.png", - "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/2.png", - "color_chain_bg": "0x00C0AB" - } - }, - { - "name": "EtherLite Chain", - "chainId": 111, - "shortName": "ETL", - "chain": "EtherLite", - "network": "mainnet", - "networkId": 111, - "nativeCurrency": { - "name": "EtherLite Coin", - "symbol": "ETL", - "decimals": 18 - }, - "rpc": [ - "https://rpc.etherlite.org" - ], - "faucets": [ - "https://etherlite.org/faucets" - ], - "infoURL": "https://forum.etherlite.org/" - }, - { - "name": "Namefi Chain Mainnet", - "chain": "NFIC", - "rpc": [ - "https://rpc.chain.namefi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Namefi Coin", - "symbol": "NFIC", - "decimals": 18 - }, - "infoURL": "https://namefi.io/", - "shortName": "nfic", - "chainId": 132, - "networkId": 132 - }, - { - "name": "HashKey Chain Testnet", - "title": "HashKey Chain Testnet", - "chain": "HashKey Chain Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "HashKey EcoPoints", - "symbol": "HSK", - "decimals": 18 - }, - "infoURL": "https://hashkey.cloud", - "shortName": "HSKT", - "chainId": 133, - "networkId": 133, - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - } - }, - { - "name": "EternalCoin Mainnet", - "chain": "Eter", - "icon": "eternal", - "rpc": [ - "https://mainnet.eternalcoin.io/v1", - "ws://mainnet.eternalcoin.io/v1/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eternal", - "symbol": "Eter", - "decimals": 18 - }, - "infoURL": "https://eternalcoin.io", - "shortName": "Eter", - "chainId": 140, - "networkId": 140 - }, - { - "name": "SoraAI Testnet", - "chain": "SETH", - "icon": "ethereum", - "rpc": [ - "https://rpc-testnet.soraai.bot" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "SoraETH", - "symbol": "SETH", - "decimals": 18 - }, - "infoURL": "https://soraai.bot", - "shortName": "SETH", - "chainId": 145, - "networkId": 145, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.soraai.bot", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.soraai.bot" - } - ] - } - }, - { - "name": "Flag Mainnet", - "chain": "Flag", - "icon": "flag", - "rpc": [ - "https://mainnet-rpc.flagscan.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Flag", - "symbol": "FLAG", - "decimals": 18 - }, - "infoURL": "https://flagscan.xyz", - "shortName": "FLAG", - "chainId": 147, - "networkId": 147, - "explorers": [ - { - "name": "Flag Mainnet Explorer", - "url": "https://flagscan.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Roburna Mainnet", - "chain": "RBA", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://dataseed.roburna.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Roburna", - "symbol": "RBA", - "decimals": 18 - }, - "infoURL": "https://www.roburna.com/", - "shortName": "rba", - "chainId": 158, - "networkId": 158, - "icon": "roburna", - "explorers": [ - { - "name": "Rbascan Explorer", - "url": "https://rbascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Roburna Testnet", - "chain": "RBAT", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://preseed-testnet-1.roburna.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Roburna", - "symbol": "RBAT", - "decimals": 18 - }, - "infoURL": "https://www.roburna.com/", - "shortName": "rbat", - "chainId": 159, - "networkId": 159, - "icon": "roburna", - "explorers": [ - { - "name": "Rbascan Testnet Explorer", - "url": "https://testnet.rbascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Omni Testnet", - "chain": "Omni", - "status": "active", - "rpc": [ - "https://testnet.omni.network" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 - }, - "infoURL": "https://docs.omni.network", - "shortName": "omni_testnet", - "chainId": 164, - "networkId": 164, - "slip44": 1, - "explorers": [ - { - "name": "Omni X-Explorer", - "url": "https://explorer.testnet.omni.network", - "standard": "none" - }, - { - "name": "Omni EVM Explorer on Blockscout", - "url": "https://omni-testnet.blockscout.com", - "standard": "EIP3091" - }, - { - "name": "Omni EVM Explorer on Routescan", - "url": "https://testnet.omniscan.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Omni", - "chain": "Omni", - "status": "incubating", - "rpc": [], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Omni", - "symbol": "OMNI", - "decimals": 18 - }, - "infoURL": "https://docs.omni.network/", - "shortName": "omni", - "chainId": 166, - "networkId": 166, - "slip44": 1 - }, - { - "name": "DC Mainnet", - "chain": "dcchain", - "icon": "dcchain", - "rpc": [ - "https://rpc.dcnetio.cloud", - "wss://ws.dcnetio.cloud" - ], - "faucets": [], - "nativeCurrency": { - "name": "DC Native Token", - "symbol": "DCT", - "decimals": 18 - }, - "infoURL": "https://www.dcnetio.cloud", - "shortName": "dcchain", - "chainId": 176, - "networkId": 176, - "explorers": [ - { - "name": "dcscan", - "url": "https://exp.dcnetio.cloud", - "standard": "none" - } - ] - }, - { - "name": "Waterfall Network", - "chain": "Waterfall Network", - "rpc": [ - "https://rpc.waterfall.network/" - ], - "faucets": [], - "nativeCurrency": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://waterfall.network", - "shortName": "water", - "chainId": 181, - "networkId": 181, - "icon": "waterfall-main", - "explorers": [] - }, - { - "name": "Mint Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc.mintchain.io", - "https://global.rpc.mintchain.io", - "https://asia.rpc.mintchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.mintchain.io", - "shortName": "mint", - "chainId": 185, - "networkId": 185, - "icon": "mint", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.mintchain.io", - "icon": "mint", - "standard": "EIP3091" - } - ] - }, - { - "name": "FileFileGo", - "chain": "FFG", - "icon": "ffgIcon", - "rpc": [ - "https://rpc.filefilego.com/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FFG", - "symbol": "FFG", - "decimals": 18 - }, - "infoURL": "https://filefilego.com", - "shortName": "ffg", - "chainId": 191, - "networkId": 191 - }, - { - "name": "X Layer Mainnet", - "chain": "X Layer", - "rpc": [ - "https://rpc.xlayer.tech", - "https://xlayerrpc.okx.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "X Layer Global Utility Token", - "symbol": "OKB", - "decimals": 18 - }, - "features": [], - "infoURL": "https://www.okx.com/xlayer", - "shortName": "okb", - "chainId": 196, - "networkId": 196, - "icon": "xlayer", - "explorers": [ - { - "name": "OKLink", - "url": "https://www.oklink.com/xlayer", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "Edgeless Testnet", - "chain": "EdgelessTestnet", - "rpc": [ - "https://testnet.rpc.edgeless.network/http" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 - }, - "infoURL": "https://edgeless.network", - "shortName": "edgeless-testnet", - "chainId": 202, - "networkId": 202, - "explorers": [ - { - "name": "Edgeless Explorer", - "url": "https://testnet.explorer.edgeless.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Hub Mainnet", - "chain": "B2", - "rpc": [ - "https://hub-rpc.bsquared.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2Hub-mainnet", - "chainId": 213, - "networkId": 213, - "icon": "bsquare", - "explorers": [ - { - "name": "B2 Hub Mainnet Explorer", - "url": "https://hub-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Mainnet", - "title": "B2 Mainnet", - "chain": "B2", - "rpc": [ - "https://mainnet.b2-rpc.com", - "https://rpc.bsquared.network", - "https://b2-mainnet.alt.technology", - "https://b2-mainnet-public.s.chainbase.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2-mainnet", - "chainId": 223, - "networkId": 223, - "icon": "bsquare", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-213", - "bridges": [ - { - "url": "https://www.bsquared.network/bridge" - } - ] - } - }, - { - "name": "Mind Network Mainnet", - "chain": "FHE", - "rpc": [ - "https://rpc_mainnet.mindnetwork.xyz", - "wss://rpc_mainnet.mindnetwork.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://mindnetwork.xyz", - "shortName": "fhe", - "chainId": 228, - "networkId": 228 - }, - { - "name": "Blast Mainnet", - "chain": "ETH", - "icon": "blastIcon", - "rpc": [ - "https://rpc.blastblockchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://docs.blastblockchain.com", - "shortName": "blast", - "chainId": 238, - "networkId": 238, - "explorers": [ - { - "name": "Blast Mainnet", - "url": "https://scan.blastblockchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Neura", - "title": "Neura Mainnet", - "chain": "NEURA", - "icon": "neura", - "rpc": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ankr", - "symbol": "ANKR", - "decimals": 18 - }, - "infoURL": "https://www.neuraprotocol.io/", - "shortName": "neura", - "chainId": 266, - "networkId": 266, - "status": "incubating", - "explorers": [] - }, - { - "name": "Neura Testnet", - "title": "Neura Testnet", - "chain": "NEURA", - "icon": "neura", - "rpc": [ - "https://rpc.ankr.com/neura_testnet" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://testnet.neuraprotocol.io/faucet" - ], - "nativeCurrency": { - "name": "Testnet Ankr", - "symbol": "ANKR", - "decimals": 18 - }, - "infoURL": "https://www.neuraprotocol.io/", - "shortName": "tneura", - "chainId": 267, - "networkId": 267, - "explorers": [ - { - "name": "ankrscan-neura", - "url": "https://testnet.explorer.neuraprotocol.io", - "icon": "neura", - "standard": "EIP3091" - }, - { - "name": "blockscout", - "url": "https://explorer.neura-testnet.ankr.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "status": "active", - "slip44": 1 - }, - { - "name": "Neura Devnet", - "title": "Neura Devnet", - "chain": "NEURA", - "icon": "neura", - "rpc": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Devnet Ankr", - "symbol": "ANKR", - "decimals": 18 - }, - "infoURL": "https://www.neuraprotocol.io/", - "shortName": "dneura", - "chainId": 268, - "networkId": 268, - "explorers": [], - "status": "incubating", - "slip44": 1 - }, - { - "name": "xFair.AI Mainnet", - "chain": "FAI", - "rpc": [ - "https://rpc_mainnet.xfair.ai", - "wss://rpc_mainnet.xfair.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://xfair.ai", - "shortName": "fai", - "chainId": 278, - "networkId": 278 - }, - { - "name": "Cronos zkEVM Testnet", - "chain": "CronosZkEVMTestnet", - "rpc": [ - "https://testnet.zkevm.cronos.org" - ], - "faucets": [ - "https://zkevm.cronos.org/faucet" - ], - "nativeCurrency": { - "name": "Cronos zkEVM Test Coin", - "symbol": "zkTCRO", - "decimals": 18 - }, - "infoURL": "https://docs-zkevm.cronos.org", - "shortName": "zkTCRO", - "chainId": 282, - "networkId": 282, - "slip44": 1, - "explorers": [ - { - "name": "Cronos zkEVM Testnet Explorer", - "url": "https://explorer.zkevm.cronos.org/testnet", - "standard": "none" - } - ] - }, - { - "name": "zkCandy Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.zkcandy.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zkcandy.io/", - "shortName": "zkcandy-sepolia", - "chainId": 302, - "networkId": 302, - "icon": "zkcandy", - "explorers": [ - { - "name": "zkCandy Block Explorer", - "url": "https://sepolia.explorer.zkcandy.io", - "icon": "zkcandy", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://sepolia.bridge.zkcandy.io/" - } - ] - }, - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "Furtheon", - "chain": "Furtheon Network", - "rpc": [ - "https://rpc.furtheon.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Furtheon", - "symbol": "FTH", - "decimals": 18 - }, - "infoURL": "https://furtheon.org/", - "shortName": "furtheon", - "chainId": 308, - "networkId": 308, - "explorers": [ - { - "name": "furthscan", - "url": "http://furthscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "CamDL Testnet", - "chain": "CADL", - "rpc": [ - "https://rpc1.testnet.camdl.gov.kh/" - ], - "faucets": [ - "https://faucet.testnet.camdl.gov.kh/" - ], - "nativeCurrency": { - "name": "CADL", - "symbol": "CADL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://camdl.gov.kh/", - "shortName": "camdl-testnet", - "chainId": 395, - "networkId": 395, - "icon": "camdl", - "explorers": [ - { - "name": "CamDL Testnet Explorer", - "url": "https://explorer.testnet.camdl.gov.kh", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "Near Mainnet", - "chain": "NEAR", - "rpc": [], - "icon": "near", - "faucets": [], - "nativeCurrency": { - "name": "NEAR", - "symbol": "NEAR", - "decimals": 18 - }, - "infoURL": "https://near.org/", - "shortName": "near", - "chainId": 397, - "networkId": 397, - "explorers": [ - { - "name": "Near Blocks", - "url": "https://nearblocks.io", - "standard": "none" - } - ] - }, - { - "name": "Near Testnet", - "chain": "NEAR", - "rpc": [], - "icon": "near", - "faucets": [], - "nativeCurrency": { - "name": "Testnet NEAR", - "symbol": "NEAR", - "decimals": 18 - }, - "infoURL": "https://aurora.dev", - "shortName": "near-testnet", - "chainId": 398, - "networkId": 398, - "explorers": [ - { - "name": "Near blocks", - "url": "https://testnet.nearblocks.io", - "standard": "none" - } - ] - }, - { - "name": "Syndr L3", - "chainId": 404, - "shortName": "syndr-l3", - "title": "Syndr L3 Rollup", - "chain": "SYNDR", - "networkId": 404, - "icon": "syndr", - "rpc": [ - "https://rpc.syndr.com", - "wss://rpc.syndr.com/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://syndr.com", - "explorers": [ - { - "name": "Syndr L3 Explorer", - "url": "https://explorer.syndr.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.syndr.com" - } - ] - } - }, - { - "name": "Boyaa Mainnet", - "chain": "BYC", - "rpc": [ - "https://evm-rpc.mainnet.boyaa.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Boyaa mainnet native coin", - "symbol": "BYC", - "decimals": 18 - }, - "infoURL": "https://boyaa.network", - "shortName": "BYC", - "chainId": 434, - "networkId": 434, - "icon": "boyaanetwork", - "explorers": [ - { - "name": "Boyaa explorer", - "url": "https://explorer.mainnet.boyaa.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpTrust Mainnet", - "chain": "OpTrust", - "rpc": [ - "https://rpc.optrust.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BSC", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://optrust.io", - "shortName": "optrust", - "chainId": 537, - "networkId": 537, - "icon": "optrust", - "explorers": [ - { - "name": "OpTrust explorer", - "url": "https://scan.optrust.io", - "icon": "optrust", - "standard": "none" - } - ] - }, - { - "name": "Testnet", - "chain": "Flow", - "rpc": [ - "https://testnet.evm.nodes.onflow.org" - ], - "faucets": [ - "https://testnet-faucet.onflow.org" - ], - "nativeCurrency": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 - }, - "infoURL": "https://developers.flow.com/evm/about", - "shortName": "flow-testnet", - "chainId": 545, - "networkId": 545, - "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://testnet.flowdiver.io", - "standard": "none" - } - ] - }, - { - "name": "Filenova Mainnet", - "chain": "Filenova", - "rpc": [ - "https://rpc.filenova.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Filecoin", - "symbol": "FIL", - "decimals": 18 - }, - "infoURL": "https://filenova.org", - "shortName": "filenova", - "chainId": 579, - "networkId": 579, - "icon": "filenova", - "explorers": [ - { - "name": "filenova explorer", - "url": "https://scan.filenova.org", - "icon": "filenova", - "standard": "none" - } - ] - }, - { - "name": "Previewnet", - "chain": "Flow", - "rpc": [ - "https://previewnet.evm.nodes.onflow.org" - ], - "faucets": [ - "https://previewnet-faucet.onflow.org" - ], - "nativeCurrency": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 - }, - "infoURL": "https://developers.flow.com/evm/about", - "shortName": "flow-previewnet", - "chainId": 646, - "networkId": 646, - "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://previewnet.flowdiver.io", - "standard": "none" - } - ] - }, - { - "name": "UltronSmartchain", - "chain": "UltronSmartchain", - "rpc": [ - "https://rpc.ultronsmartchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "ulc", - "symbol": "ULC", - "decimals": 18 - }, - "infoURL": "https://ultronsmartchain.io", - "shortName": "ultronsmartchain", - "chainId": 662, - "networkId": 662, - "icon": "ultronsmartchain", - "explorers": [ - { - "name": "ultronsmartchain explorer", - "url": "https://scan.ultronsmartchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Redstone", - "chain": "ETH", - "rpc": [ - "https://rpc.redstonechain.com", - "wss://rpc.redstonechain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://redstone.xyz", - "shortName": "redstone", - "chainId": 690, - "networkId": 690, - "icon": "redstone", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.redstone.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://redstone.xyz/deposit" - } - ] - } - }, - { - "name": "Mainnet", - "chain": "Flow", - "rpc": [ - "https://mainnet.evm.nodes.onflow.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "FLOW", - "symbol": "FLOW", - "decimals": 18 - }, - "infoURL": "https://developers.flow.com/evm/about", - "shortName": "flow-mainnet", - "chainId": 747, - "networkId": 747, - "icon": "flowevm", - "explorers": [ - { - "name": "Flow Diver", - "url": "https://flowdiver.io", - "standard": "none" - } - ] - }, - { - "name": "Runic Chain Testnet", - "chain": "Runic", - "rpc": [ - "https://rpc-testnet.runic.build" - ], - "faucets": [ - "https://faucet.runic.build" - ], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "rBTC", - "decimals": 18 - }, - "infoURL": "https://runic.build", - "shortName": "runic-testnet", - "chainId": 822, - "networkId": 822, - "status": "active", - "icon": "runic-testnet", - "explorers": [ - { - "name": "RunicScan", - "url": "https://scan.runic.build", - "icon": "runic-testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "MAXI Chain Testnet", - "chain": "MAXI", - "rpc": [ - "https://rpc-testnet.maxi.network" - ], - "faucets": [ - "https://faucet.maxi.network" - ], - "nativeCurrency": { - "name": "MAXICOIN", - "symbol": "MAXI", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://maxi.network", - "shortName": "maxi-testnet", - "chainId": 898, - "networkId": 898, - "icon": "maxi", - "explorers": [ - { - "name": "Maxi Chain Testnet Explorer", - "url": "https://testnet.maxi.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "TAPROOT Mainnet", - "title": "TAPROOT Mainnet", - "chain": "TAPROOT CHAIN", - "rpc": [ - "https://rpc.taprootchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TBTC", - "symbol": "TBTC", - "decimals": 18 - }, - "infoURL": "https://taprootchain.io", - "shortName": "TAPROOT-Mainnet", - "chainId": 911, - "networkId": 911, - "icon": "taproot", - "explorers": [ - { - "name": "TAPROOT Scan", - "url": "https://scan.taprootchain.io", - "icon": "taproot", - "standard": "EIP3091" - } - ] - }, - { - "name": "EthXY", - "chain": "EthXY", - "rpc": [ - "https://rpc.ethxy.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 - }, - "icon": "sexy", - "infoURL": "https://ethxy.com", - "shortName": "sexy", - "chainId": 969, - "networkId": 969, - "explorers": [ - { - "name": "EthXY Network Explorer", - "url": "https://explorer.ethxy.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "EthXY Testnet", - "chain": "EthXY", - "rpc": [ - "https://rpc.testnet.ethxy.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Settled EthXY Token", - "symbol": "SEXY", - "decimals": 18 - }, - "icon": "sexyTestnet", - "infoURL": "https://ethxy.com", - "shortName": "sexyTestnet", - "chainId": 979, - "networkId": 979, - "explorers": [ - { - "name": "EthXY Testnet Network Explorer", - "url": "https://explorer.testnet.ethxy.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Jumbochain Mainnet", - "chain": "Jumbo", - "rpc": [ - "https://rpcpriv.jumbochain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "JNFTC", - "symbol": "JNFTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://jumbochain.org", - "shortName": "Jumboscan", - "chainId": 1009, - "networkId": 1009, - "slip44": 1, - "explorers": [ - { - "name": "Jumboscan", - "url": "https://jumboscan.jumbochain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Rebus Mainnet", - "title": "Rebuschain Mainnet", - "chain": "REBUS", - "rpc": [ - "https://apievm.rebuschain.com/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 - }, - "infoURL": "https://www.rebuschain.com", - "shortName": "rebus", - "chainId": 1011, - "networkId": 1011, - "icon": "rebus", - "explorers": [ - { - "name": "Rebus EVM Explorer (Blockscout)", - "url": "https://evm.rebuschain.com", - "icon": "rebus", - "standard": "none" - }, - { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://cosmos.rebuschain.com", - "icon": "rebus", - "standard": "none" - } - ] - }, - { - "name": "IOTA EVM Testnet", - "title": "IOTA EVM Testnet", - "chain": "IOTA EVM", - "icon": "iotaevm", - "rpc": [ - "https://json-rpc.evm.testnet.iotaledger.net" - ], - "faucets": [ - "https://evm-toolkit.evm.testnet.iotaledger.net" - ], - "nativeCurrency": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 - }, - "infoURL": "https://www.iota.org", - "shortName": "iotaevm-testnet", - "chainId": 1075, - "networkId": 1075, - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.testnet.iotaledger.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Hub Testnet", - "chain": "BSQ", - "rpc": [ - "https://testnet-hub-rpc.bsquared.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "BSquared Token", - "symbol": "B2", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2Hub-testnet", - "chainId": 1113, - "networkId": 1113, - "icon": "bsquare", - "explorers": [ - { - "name": "B2 Hub Habitat Testnet Explorer", - "url": "https://testnet-hub-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ] - }, - { - "name": "B2 Testnet", - "title": "B2 Testnet", - "chain": "Habitat", - "rpc": [ - "https://b2-testnet.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitcoin", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.bsquared.network", - "shortName": "B2-testnet", - "chainId": 1123, - "networkId": 1123, - "icon": "bsquare", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet-explorer.bsquared.network", - "icon": "bsquare", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1113" - } - }, - { - "name": "Lisk", - "chain": "ETH", - "rpc": [ - "https://rpc.api.lisk.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lisk.com", - "shortName": "lisk", - "chainId": 1135, - "networkId": 1135, - "slip44": 134, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.lisk.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Flag Testnet", - "chain": "Flag", - "icon": "flag", - "rpc": [ - "https://testnet-rpc.flagscan.xyz" - ], - "faucets": [ - "https://faucet.flagscan.xyz" - ], - "nativeCurrency": { - "name": "Flag Testnet", - "symbol": "FLAG", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.flagscan.xyz", - "shortName": "tFLAG", - "chainId": 1147, - "networkId": 1147, - "explorers": [ - { - "name": "Flag Testnet Explorer", - "url": "https://testnet-explorer.flagscan.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "ClubMos Mainnet", - "chain": "MOS", - "rpc": [ - "https://mainnet.mosscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ClubMos", - "symbol": "MOS", - "decimals": 18 - }, - "infoURL": "https://www.mosscan.com", - "shortName": "MOS", - "chainId": 1188, - "networkId": 1188, - "icon": "clubmos", - "explorers": [ - { - "name": "mosscan", - "url": "https://www.mosscan.com", - "icon": "clubmos", - "standard": "none" - } - ] - }, - { - "name": "SaitaBlockChain(SBC)", - "chain": "SaitaBlockChain(SBC)", - "rpc": [ - "https://rpc-nodes.saitascan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SaitaBlockChain(SBC)", - "symbol": "STC", - "decimals": 18 - }, - "infoURL": "https://saitachain.com", - "shortName": "SBC", - "chainId": 1209, - "networkId": 1209, - "icon": "SaitaBlockChain(SBC)", - "explorers": [ - { - "name": "Saitascan explorer", - "url": "https://saitascan.io", - "standard": "none", - "icon": "SaitaBlockChain(SBC)" - } - ] - }, - { - "name": "Sei Network", - "chain": "Sei", - "rpc": [ - "https://evm-rpc.sei-apis.com", - "wss://evm-ws.sei-apis.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sei", - "symbol": "SEI", - "decimals": 18 - }, - "infoURL": "https://www.sei.io", - "shortName": "sei", - "chainId": 1329, - "networkId": 1329, - "icon": "seiv2", - "explorers": [ - { - "name": "Seitrace", - "url": "https://seitrace.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ramestta Mainnet", - "chain": "Ramestta", - "icon": "ramestta", - "rpc": [ - "https://blockchain.ramestta.com", - "https://blockchain2.ramestta.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rama", - "symbol": "RAMA", - "decimals": 18 - }, - "infoURL": "https://www.ramestta.com", - "shortName": "RAMA", - "chainId": 1370, - "networkId": 1370, - "explorers": [ - { - "name": "ramascan", - "url": "https://ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } - ] - }, - { - "name": "Pingaksha testnet", - "chain": "Pingaksha", - "icon": "ramestta", - "rpc": [ - "https://testnet.ramestta.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rama", - "symbol": "tRAMA", - "decimals": 18 - }, - "infoURL": "https://www.ramestta.com", - "shortName": "tRAMA", - "chainId": 1377, - "networkId": 1377, - "explorers": [ - { - "name": "Pingaksha", - "url": "https://pingaksha.ramascan.com", - "icon": "ramestta", - "standard": "EIP3091" - } - ] - }, - { - "name": "Silicon zkEVM Sepolia Testnet", - "title": "Silicon zkEVM Sepolia Testnet", - "chain": "Silicon", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "silicon-sepolia-testnet", - "chainId": 1414, - "networkId": 1414, - "icon": "silicon", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - }, - "status": "incubating" - }, - { - "name": "iDos Games Chain Testnet", - "chain": "IGC", - "icon": "igc-testnet", - "rpc": [ - "https://rpc-testnet.idos.games" - ], - "faucets": [], - "nativeCurrency": { - "name": "iDos Games Coin", - "symbol": "IGC", - "decimals": 18 - }, - "infoURL": "https://idosgames.com/", - "shortName": "IGC", - "chainId": 1499, - "networkId": 1499, - "explorers": [ - { - "name": "IGC-Scan", - "url": "https://igcscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ethereum Inscription Mainnet", - "chain": "ETINS", - "rpc": [ - "https://rpc.etins.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum Inscription", - "symbol": "ETINS", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.etins.org", - "shortName": "etins", - "chainId": 1617, - "networkId": 1617, - "explorers": [ - { - "name": "Ethereum Inscription Explorer", - "url": "https://explorer.etins.org", - "standard": "none" - } - ] - }, - { - "name": "Gravity Alpha Mainnet", - "chain": "Gravity", - "rpc": [ - "https://rpc.gravity.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Gravity", - "symbol": "G.", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - }, - { - "name": "EIP1108" - } - ], - "infoURL": "https://gravity.xyz", - "shortName": "gravity", - "chainId": 1625, - "networkId": 1625, - "icon": "gravity", - "explorers": [ - { - "name": "Gravity Alpha Mainnet Explorer", - "url": "https://explorer.gravity.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.gravity.xyz" - } - ] - } - }, - { - "name": "Doric Network", - "chain": "DRC", - "icon": "doric", - "rpc": [ - "https://mainnet.doric.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Doric Native Token", - "symbol": "DRC", - "decimals": 18 - }, - "infoURL": "https://doric.network", - "shortName": "DRC", - "chainId": 1717, - "networkId": 1717, - "explorers": [ - { - "name": "Doric Explorer", - "url": "https://explorer.doric.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Reya Network", - "chain": "Reya", - "rpc": [ - "https://rpc.reya.network", - "wss://ws.reya.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://reya.network", - "shortName": "reya", - "chainId": 1729, - "networkId": 1729, - "explorers": [ - { - "name": "Reya Network Explorer", - "url": "https://explorer.reya.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metal L2 Testnet", - "chain": "Metal L2 Testnet", - "rpc": [ - "https://testnet.rpc.metall2.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://metall2.com", - "shortName": "metall2-testnet", - "chainId": 1740, - "networkId": 1740, - "icon": "metal", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Metal L2", - "chain": "Metal L2", - "rpc": [ - "https://rpc.metall2.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://metall2.com", - "shortName": "metall2", - "chainId": 1750, - "networkId": 1750, - "icon": "metal", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.metall2.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZKBase Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-rpc.zkbase.app" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zkbase.org/", - "shortName": "zkbase-sepolia", - "chainId": 1789, - "networkId": 1789, - "slip44": 1, - "icon": "zkbase", - "explorers": [ - { - "name": "ZKbase Block Explorer", - "url": "https://sepolia-explorer.zkbase.app", - "icon": "zkbase", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portral.zkbase.app/" - } - ] - }, - "redFlags": [ - "reusedChainId" - ] - }, - { - "name": "UPB CRESCDI Testnet", - "chain": "UPBEth", - "rpc": [ - "https://testnet.crescdi.pub.ro" - ], - "infoURL": "https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet", - "faucets": [], - "nativeCurrency": { - "name": "UPBEth", - "symbol": "UPBEth", - "decimals": 18 - }, - "shortName": "UPBEth", - "chainId": 1918, - "networkId": 1918, - "explorers": [] - }, - { - "name": "AIW3 Testnet", - "chain": "AIW3", - "rpc": [ - "https://rpc-testnet.aiw3.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://aiw3.io/", - "shortName": "AIW3-Testnet", - "chainId": 1956, - "networkId": 1956, - "icon": "aiw3", - "explorers": [ - { - "name": "aiw3 testnet scan", - "url": "https://scan-testnet.aiw3.io", - "standard": "none" - } - ] - }, - { - "name": "Hubble Exchange", - "chain": "Hubblenet", - "icon": "hubblenet", - "rpc": [ - "https://rpc.hubble.exchange", - "wss://ws-rpc.hubble.exchange" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "USD Coin", - "symbol": "USDC", - "decimals": 18 - }, - "infoURL": "https://www.hubble.exchange", - "shortName": "hubblenet", - "chainId": 1992, - "networkId": 1992, - "slip44": 60, - "explorers": [ - { - "name": "routescan", - "url": "https://explorer.hubble.exchange", - "standard": "EIP3091" - } - ] - }, - { - "name": "Sanko", - "chain": "Sanko", - "rpc": [ - "https://mainnet.sanko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "DMT", - "symbol": "DMT", - "decimals": 18 - }, - "infoURL": "https://sanko.xyz/", - "shortName": "Sanko", - "chainId": 1996, - "networkId": 1996, - "icon": "sanko", - "explorers": [ - { - "name": "Sanko Explorer", - "url": "https://explorer.sanko.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Panarchy", - "chain": "Panarchy", - "rpc": [ - "https://polytopia.org:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "GAS", - "symbol": "GAS", - "decimals": 18 - }, - "infoURL": "https://polytopia.org/", - "shortName": "panarchy", - "chainId": 2013, - "networkId": 1 - }, - { - "name": "NOW Chain", - "chain": "NOW", - "icon": "nowchain", - "rpc": [ - "https://rpc.nowscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "NOW Coin", - "symbol": "NOW", - "decimals": 18 - }, - "infoURL": "https://nowchain.co", - "shortName": "now", - "chainId": 2014, - "networkId": 2014, - "explorers": [ - { - "name": "nowscan", - "url": "https://nowscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Adiri", - "title": "Telcoin Network Testnet", - "chain": "TEL", - "icon": "telcoin", - "rpc": [ - "https://rpc.telcoin.network", - "https://adiri.tel", - "https://node1.telcoin.network", - "https://node2.telcoin.network", - "https://node3.telcoin.network", - "https://node4.telcoin.network" - ], - "faucets": [ - "https://telcoin.network/faucet" - ], - "nativeCurrency": { - "name": "Telcoin", - "symbol": "TEL", - "decimals": 18 - }, - "infoURL": "https://telcoin.network", - "shortName": "tel", - "chainId": 2017, - "networkId": 2017, - "slip44": 1, - "explorers": [ - { - "name": "telscan", - "url": "https://telscan.io", - "icon": "telcoin", - "standard": "EIP3091" - } - ] - }, - { - "name": "Edgeless Network", - "chain": "Edgeless", - "rpc": [ - "https://rpc.edgeless.network/http" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Edgeless Wrapped Eth", - "symbol": "EwEth", - "decimals": 18 - }, - "infoURL": "https://edgeless.network", - "shortName": "edgeless", - "chainId": 2026, - "networkId": 2026, - "explorers": [ - { - "name": "Edgeless Explorer", - "url": "https://explorer.edgeless.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Aleph Zero Testnet", - "chain": "Aleph Zero Testnet", - "icon": "aleph", - "rpc": [ - "https://rpc.alephzero-testnet.gelato.digital", - "wss://rpc.alephzero-testnet.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "TZERO", - "symbol": "TZERO", - "decimals": 18 - }, - "infoURL": "https://testnet.alephzero.org", - "shortName": "aleph", - "chainId": 2039, - "networkId": 2039, - "explorers": [ - { - "name": "Aleph Zero Testnet", - "url": "https://test.azero.dev/#/explorer", - "icon": "aleph", - "standard": "none" - } - ] - }, - { - "name": "Vanar Mainnet", - "title": "Vanarchain", - "chain": "VANAR", - "rpc": [ - "https://rpc.vanarchain.com", - "wss://ws.vanarchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "VANRY", - "symbol": "VANRY", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://vanarchain.com", - "shortName": "Vanar", - "chainId": 2040, - "networkId": 2040, - "icon": "vanar", - "explorers": [ - { - "name": "Vanar Explorer", - "url": "https://explorer.vanarchain.com", - "icon": "vanar", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIW3 Mainnet", - "chain": "AIW3", - "status": "incubating", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://aiw3.io/", - "shortName": "AIW3", - "chainId": 2045, - "networkId": 2045, - "icon": "aiw3", - "explorers": [] - }, - { - "name": "UCHAIN Mainnet", - "chain": "UCHAIN", - "rpc": [ - "https://rpc.uchain.link/" - ], - "faucets": [], - "nativeCurrency": { - "name": "UCASH", - "symbol": "UCASH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://u.cash/", - "shortName": "uchain", - "chainId": 2112, - "networkId": 2112, - "icon": "ucash", - "explorers": [ - { - "name": "uchain.info", - "url": "https://uchain.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Catena Mainnet", - "chain": "CMCX", - "rpc": [ - "https://rpc1.catenarpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Catena", - "symbol": "CMCX", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://catena.network", - "shortName": "cmcx", - "chainId": 2121, - "networkId": 2121, - "icon": "catena", - "explorers": [ - { - "name": "catenascan", - "url": "https://catenascan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BigShortBets Testnet", - "chain": "BIGSB Testnet", - "rpc": [ - "https://test-market.bigsb.io", - "wss://test-market.bigsb.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dolarz", - "symbol": "Dolarz", - "decimals": 18 - }, - "infoURL": "https://bigshortbets.com/", - "shortName": "bigsb_testnet", - "chainId": 2136, - "networkId": 2136, - "explorers": [ - { - "name": "Polkadot.js", - "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", - "standard": "none" - } - ] - }, - { - "name": "Oneness Network", - "chain": "Oneness", - "rpc": [ - "https://rpc.onenesslabs.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "oneness", - "chainId": 2140, - "networkId": 2140, - "explorers": [ - { - "name": "oneness-mainnet", - "url": "https://scan.onenesslabs.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Oneness TestNet", - "chain": "Oneness-Testnet", - "rpc": [ - "https://rpc.testnet.onenesslabs.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "", - "shortName": "oneness-testnet", - "chainId": 2141, - "networkId": 2141, - "explorers": [ - { - "name": "oneness-testnet", - "url": "https://scan.testnet.onenesslabs.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "RSS3 VSL Sepolia Testnet", - "chain": "RSS3", - "rpc": [ - "https://rpc.testnet.rss3.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 - }, - "infoURL": "https://rss3.io", - "shortName": "rss3-testnet", - "chainId": 2331, - "networkId": 2331, - "icon": "rss3-testnet", - "explorers": [ - { - "name": "RSS3 VSL Sepolia Testnet Scan", - "url": "https://scan.testnet.rss3.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://explorer.testnet.rss3.io/bridge" - } - ] - } - }, - { - "name": "Atleta Olympia", - "chain": "Atleta", - "rpc": [ - "wss://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network:9944", - "https://testnet-rpc.atleta.network" - ], - "faucets": [ - "https://app-olympia.atleta.network/faucet" - ], - "nativeCurrency": { - "name": "Atla", - "symbol": "ATLA", - "decimals": 18 - }, - "infoURL": "https://atleta.network", - "shortName": "atla", - "chainId": 2340, - "networkId": 2340, - "slip44": 1, - "icon": "atleta", - "explorers": [ - { - "name": "Atleta Olympia Explorer", - "icon": "atleta", - "url": "https://blockscout.atleta.network", - "standard": "none" - }, - { - "name": "Atleta Olympia Polka Explorer", - "icon": "atleta", - "url": "https://polkadot-explorer.atleta.network/#/explorer", - "standard": "none" - } - ] - }, - { - "name": "Omnia Chain", - "chain": "OMNIA", - "icon": "omnia", - "rpc": [ - "https://rpc.omniaverse.io" - ], - "faucets": [ - "https://www.omniaverse.io" - ], - "nativeCurrency": { - "name": "Omnia", - "symbol": "OMNIA", - "decimals": 18 - }, - "infoURL": "https://www.omniaverse.io", - "shortName": "omnia", - "chainId": 2342, - "networkId": 2342, - "explorers": [ - { - "name": "OmniaVerse Explorer", - "url": "https://scan.omniaverse.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Silicon zkEVM", - "title": "Silicon zkEVM Mainnet", - "chain": "Silicon", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "", - "shortName": "silicon-zk", - "chainId": 2355, - "networkId": 2355, - "icon": "silicon", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [] - }, - "status": "incubating" - }, - { - "name": "Nexis Network Testnet", - "chain": "Nexis Network", - "icon": "nexis", - "rpc": [ - "https://evm-testnet.nexis.network" - ], - "faucets": [ - "https://evm-faucet.nexis.network" - ], - "nativeCurrency": { - "name": "Nexis", - "symbol": "NZT", - "decimals": 18 - }, - "infoURL": "https://nexis.network/", - "shortName": "nzt", - "chainId": 2370, - "networkId": 2370, - "explorers": [ - { - "name": "Nexis Testnet Explorer", - "url": "https://evm-testnet.nexscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "King Of Legends Devnet", - "title": "King Of Legends Devnet", - "chain": "KOL", - "icon": "kol", - "rpc": [ - "https://rpc-devnet.kinggamer.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "King Of Legends", - "symbol": "KOL", - "decimals": 18 - }, - "infoURL": "https://kingoflegends.net/", - "shortName": "kol", - "chainId": 2425, - "networkId": 2425, - "slip44": 1, - "explorers": [ - { - "name": "King Of Legends Devnet Explorer", - "url": "https://devnet.kingscan.org", - "icon": "kol", - "standard": "EIP3091" - } - ] - }, - { - "name": "inEVM Mainnet", - "chain": "inEVM", - "icon": "inevm", - "rpc": [ - "https://mainnet.rpc.inevm.com/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Injective", - "symbol": "INJ", - "decimals": 18 - }, - "infoURL": "https://inevm.com", - "shortName": "inevm", - "chainId": 2525, - "networkId": 2525, - "explorers": [], - "status": "active" - }, - { - "name": "APEX", - "status": "incubating", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://apexlayer.xyz/", - "shortName": "apexmainnet", - "chainId": 2662, - "networkId": 2662, - "icon": "apexmainnet", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1" - } - }, - { - "name": "XR Sepolia", - "chain": "ETH", - "rpc": [ - "https://xr-sepolia-testnet.rpc.caldera.xyz/http" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "tXR", - "symbol": "tXR", - "decimals": 18 - }, - "infoURL": "https://xr-one.gitbook.io", - "shortName": "txr", - "chainId": 2730, - "networkId": 2730, - "icon": "xr", - "slip44": 60, - "explorers": [ - { - "name": "XR Sepolia Explorer", - "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://xr-sepolia-testnet.bridge.caldera.xyz" - } - ] - }, - "status": "active" - }, - { - "name": "Nanon", - "title": "Nanon Rollup", - "chain": "ETH", - "rpc": [ - "https://rpc.nanon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.nanon.network", - "shortName": "Nanon", - "chainId": 2748, - "networkId": 2748, - "slip44": 1, - "icon": "nanon", - "explorers": [ - { - "name": "Nanon Rollup Explorer", - "url": "https://explorer.nanon.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.nanon.network" - } - ] - } - }, - { - "name": "GM Network Mainnet", - "chain": "GM Network Mainnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://gmnetwork.ai", - "shortName": "gmnetwork-mainnet", - "chainId": 2777, - "networkId": 2777, - "explorers": [], - "status": "incubating" - }, - { - "name": "Morph Holesky", - "title": "Morph Holesky Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-quicknode-holesky.morphl2.io", - "wss://rpc-quicknode-holesky.morphl2.io", - "https://rpc-holesky.morphl2.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://morphl2.io", - "shortName": "hmorph", - "chainId": 2810, - "networkId": 2810, - "slip44": 1, - "explorers": [ - { - "name": "Morph Holesky Testnet Explorer", - "url": "https://explorer-holesky.morphl2.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge-holesky.morphl2.io" - } - ] - } - }, - { - "name": "Elux Chain", - "chain": "ELUX", - "icon": "eluxchain", - "rpc": [ - "https://rpc.eluxscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Elux Chain", - "symbol": "ELUX", - "decimals": 18 - }, - "infoURL": "https://eluxscan.com", - "shortName": "ELUX", - "chainId": 2907, - "networkId": 2907, - "explorers": [ - { - "name": "blockscout", - "url": "https://eluxscan.com", - "standard": "none" - } - ] - }, - { - "name": "HYCHAIN", - "chainId": 2911, - "shortName": "hychain", - "chain": "ETH", - "networkId": 2911, - "nativeCurrency": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 - }, - "rpc": [ - "https://rpc.hychain.com/http" - ], - "faucets": [], - "infoURL": "https://www.hychain.com", - "icon": "hychain", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.hychain.com" - } - ] - } - }, - { - "name": "Rebus Testnet", - "title": "Rebuschain Testnet", - "chain": "REBUS", - "rpc": [ - "https://testnet.rebus.money/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Rebus", - "symbol": "REBUS", - "decimals": 18 - }, - "infoURL": "https://www.rebuschain.com", - "shortName": "rebus-testnet", - "chainId": 3033, - "networkId": 3033, - "icon": "rebus", - "explorers": [ - { - "name": "Rebus EVM Explorer (Blockscout)", - "url": "https://evm.testnet.rebus.money", - "icon": "rebus", - "standard": "none" - }, - { - "name": "Rebus Cosmos Explorer (ping.pub)", - "url": "https://testnet.rebus.money/rebustestnet", - "icon": "rebus", - "standard": "none" - } - ] - }, - { - "name": "Movement EVM", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "move", - "chainId": 3073, - "networkId": 3073, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "SatoshiVM Alpha Mainnet", - "chain": "SatoshiVM", - "rpc": [ - "https://alpha-rpc-node-http.svmscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.satoshivm.io/", - "shortName": "SAVM", - "chainId": 3109, - "networkId": 3109, - "icon": "satoshivm" - }, - { - "name": "SatoshiVM Testnet", - "chain": "SatoshiVM", - "rpc": [ - "https://test-rpc-node-http.svmscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://www.satoshivm.io/", - "shortName": "tSAVM", - "chainId": 3110, - "networkId": 3110, - "icon": "satoshivm" - }, - { - "name": "EthStorage Mainnet", - "chain": "EthStorage", - "rpc": [ - "http://mainnet.ethstorage.io:9540" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ethstorage.io/", - "shortName": "es-m", - "chainId": 3335, - "networkId": 3335, - "slip44": 1 - }, - { - "name": "EVOLVE Mainnet", - "chain": "EVO", - "icon": "evolveIcon", - "rpc": [ - "https://rpc.evolveblockchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 - }, - "infoURL": "https://evolveblockchain.io", - "shortName": "EVOm", - "chainId": 3424, - "networkId": 3424, - "explorers": [ - { - "name": "Evolve Mainnet Explorer", - "url": "https://evoexplorer.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Tycooncoin", - "chain": "TYCON", - "rpc": [ - "https://mainnet-rpc.tycoscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tycooncoin", - "symbol": "TYCO", - "decimals": 18 - }, - "infoURL": "", - "shortName": "TYCON", - "chainId": 3630, - "networkId": 3630 - }, - { - "name": "Astar zkEVM", - "shortName": "astrzk", - "title": "Astar zkEVM Mainnet", - "chain": "ETH", - "icon": "astar", - "rpc": [ - "https://rpc.startale.com/astar-zkevm" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 3776, - "networkId": 3776, - "explorers": [ - { - "name": "Blockscout Astar zkEVM explorer", - "url": "https://astar-zkevm.explorer.startale.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portal.astar.network" - } - ] - } - }, - { - "name": "Carbonium Testnet Network", - "chain": "CBR", - "rpc": [ - "https://rpc-dev.carbonium.network/", - "https://server-testnet.carbonium.network" - ], - "nativeCurrency": { - "name": "Carbonium", - "symbol": "tCBR", - "decimals": 18 - }, - "infoURL": "https://carbonium.network", - "shortName": "tcbr", - "chainId": 4040, - "networkId": 4040, - "slip44": 1, - "icon": "cbr", - "faucets": [ - "https://getfaucet.carbonium.network" - ], - "explorers": [ - { - "name": "Carbonium Network tesnet Explorer", - "icon": "cbr", - "url": "https://testnet.carboniumscan.com", - "standard": "none" - } - ] - }, - { - "name": "GAN Testnet", - "chain": "GAN", - "icon": "gpu", - "rpc": [ - "https://rpc.gpu.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "GP Token", - "symbol": "GP", - "decimals": 18 - }, - "infoURL": "https://docs.gpu.net/", - "shortName": "GANTestnet", - "chainId": 4048, - "networkId": 4048, - "explorers": [ - { - "name": "ganscan", - "url": "https://ganscan.gpu.net", - "standard": "none" - } - ] - }, - { - "name": "Tobe Chain", - "chain": "TBC", - "icon": "tobe", - "rpc": [ - "https://rpc.tobescan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tobe Coin", - "symbol": "TBC", - "decimals": 18 - }, - "infoURL": "https://tobechain.net", - "shortName": "tbc", - "chainId": 4080, - "networkId": 4080, - "explorers": [ - { - "name": "tobescan", - "url": "https://tobescan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "CrossFi Testnet", - "title": "CrossFi Testnet", - "chain": "XFI", - "rpc": [ - "https://rpc.testnet.ms" - ], - "faucets": [], - "nativeCurrency": { - "name": "XFI", - "symbol": "XFI", - "decimals": 18 - }, - "infoURL": "https://crossfi.org/", - "shortName": "crossfi-testnet", - "chainId": 4157, - "networkId": 4157, - "slip44": 1, - "explorers": [ - { - "name": "CrossFi Testnet Scan", - "url": "https://scan.testnet.ms", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hydra Chain", - "chain": "HYDRA", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Hydra", - "symbol": "HYDRA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://hydrachain.org", - "shortName": "hydra", - "chainId": 4488, - "networkId": 4488, - "icon": "hydra", - "explorers": [], - "status": "incubating" - }, - { - "name": "VERY Mainnet", - "title": "VERY Mainnet", - "chain": "VERY Mainnet", - "icon": "very", - "rpc": [ - "https://rpc.verylabs.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "VERY", - "symbol": "VERY", - "decimals": 18 - }, - "infoURL": "https://www.verylabs.io/", - "shortName": "very", - "chainId": 4613, - "networkId": 4613, - "explorers": [ - { - "name": "VERY explorer", - "url": "https://www.veryscan.io", - "standard": "none" - } - ] - }, - { - "name": "ONIGIRI Test Subnet", - "chain": "ONIGIRI", - "rpc": [ - "https://subnets.avax.network/onigiri/testnet/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 - }, - "infoURL": "https://www.ongr.org/", - "shortName": "onigiritest", - "chainId": 5039, - "networkId": 5039, - "icon": "onigiri", - "explorers": [ - { - "name": "ONIGIRI Explorer", - "url": "https://subnets-test.avax.network/onigiri", - "standard": "EIP3091" - } - ] - }, - { - "name": "ONIGIRI Subnet", - "chain": "ONIGIRI", - "rpc": [ - "https://subnets.avax.network/onigiri/mainnet/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ONIGIRI", - "symbol": "ONGR", - "decimals": 18 - }, - "infoURL": "https://www.ongr.org/", - "shortName": "onigiri", - "chainId": 5040, - "networkId": 5040, - "icon": "onigiri", - "explorers": [ - { - "name": "ONIGIRI Explorer", - "url": "https://subnets.avax.network/onigiri", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nollie Skatechain Testnet", - "chain": "Skatechain", - "rpc": [ - "https://nollie-rpc.skatechain.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "", - "shortName": "nollie-testnet", - "chainId": 5051, - "networkId": 5051, - "icon": "nollie", - "explorers": [ - { - "name": "Nollie Skate Chain Testnet Explorer", - "url": "https://nolliescan.skatechain.org", - "standard": "EIP3091" - } - ], - "status": "active" - }, - { - "name": "SIC Testnet", - "chain": "SIC Testnet", - "rpc": [ - "https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.fwb.help/", - "shortName": "sic-testnet", - "chainId": 5102, - "networkId": 5102, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Coordinape Testnet", - "chain": "Coordinape Testnet", - "rpc": [ - "https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://coordinape.com/", - "shortName": "coordinape-testnet", - "chainId": 5103, - "networkId": 5103 - }, - { - "name": "Charmverse Testnet", - "chain": "Charmverse Testnet", - "rpc": [ - "https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://charmverse.io/", - "shortName": "charmverse-testnet", - "chainId": 5104, - "networkId": 5104 - }, - { - "name": "Superloyalty Testnet", - "chain": "Superloyalty Testnet", - "rpc": [ - "https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.superloyal.com/", - "shortName": "superloyalty-testnet", - "chainId": 5105, - "networkId": 5105 - }, - { - "name": "Azra Testnet", - "chain": "Azra Testnet", - "rpc": [ - "https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://azragames.com", - "shortName": "azra-testnet", - "chainId": 5106, - "networkId": 5106, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "OpTrust Testnet", - "chain": "OpTrust", - "rpc": [ - "https://rpctest.optrust.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TestBSC", - "symbol": "tBNB", - "decimals": 18 - }, - "infoURL": "https://optrust.io", - "shortName": "toptrust", - "chainId": 5317, - "networkId": 5317, - "icon": "optrust", - "explorers": [ - { - "name": "OpTrust Testnet explorer", - "url": "https://scantest.optrust.io", - "icon": "optrust", - "standard": "none" - } - ] - }, - { - "name": "Settlus Testnet", - "chain": "Settlus", - "rpc": [ - "https://settlus-test-eth.settlus.io" - ], - "faucets": [ - "https://faucet.settlus.io" - ], - "nativeCurrency": { - "name": "Setl", - "symbol": "SETL", - "decimals": 18 - }, - "infoURL": "https://settlus.org", - "shortName": "settlus-testnet", - "chainId": 5372, - "networkId": 5372, - "explorers": [ - { - "name": "Settlus Scan", - "url": "https://testnet.settlus.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "edeXa Mainnet", - "chain": "edeXa Network", - "rpc": [ - "https://mainnet.edexa.network/rpc", - "https://mainnet.edexa.com/rpc", - "https://io-dataseed1.mainnet.edexa.io-market.com/rpc" - ], - "faucets": [], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "EDEXA", - "symbol": "EDX", - "decimals": 18 - }, - "infoURL": "https://edexa.network/", - "shortName": "edeXa", - "chainId": 5424, - "networkId": 5424, - "slip44": 1, - "icon": "edexa", - "explorers": [ - { - "name": "edexa-mainnet", - "url": "https://explorer.edexa.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Egochain", - "chainId": 5439, - "shortName": "egax", - "chain": "EGAX", - "networkId": 5439, - "nativeCurrency": { - "name": "EGAX", - "symbol": "EGAX", - "decimals": 18 - }, - "rpc": [ - "https://mainnet.egochain.org" - ], - "faucets": [], - "infoURL": "https://docs.egochain.org/", - "explorers": [ - { - "name": "egoscan", - "url": "https://egoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Arcturus Testneet", - "chain": "Arcturus", - "rpc": [ - "https://rpc-testnet.arcturuschain.io/" - ], - "faucets": [ - "https://faucet.arcturuschain.io" - ], - "nativeCurrency": { - "name": "tARC", - "symbol": "tARC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://arcturuschain.io", - "shortName": "arcturus-testnet", - "chainId": 5615, - "networkId": 5615, - "explorers": [ - { - "name": "explorer-arcturus-testnet", - "url": "https://testnet.arcscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "QIE Blockchain", - "chain": "QIE", - "icon": "qie", - "rpc": [ - "https://rpc-main1.qiblockchain.online/", - "https://rpc-main2.qiblockchain.online/" - ], - "faucets": [], - "nativeCurrency": { - "name": "QIE Blockchain", - "symbol": "QIE", - "decimals": 18 - }, - "infoURL": "https://qiblockchain.online/", - "shortName": "QIE", - "chainId": 5656, - "networkId": 5656, - "explorers": [ - { - "name": "QIE Explorer", - "url": "https://mainnet.qiblockchain.online", - "standard": "EIP3091" - } - ] - }, - { - "name": "Filenova Testnet", - "chain": "Filenova", - "rpc": [ - "https://rpctest.filenova.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Test Filecoin", - "symbol": "tFIL", - "decimals": 18 - }, - "infoURL": "https://filenova.org", - "shortName": "tfilenova", - "chainId": 5675, - "networkId": 5675, - "icon": "filenova", - "explorers": [ - { - "name": "filenova testnet explorer", - "url": "https://scantest.filenova.org", - "icon": "filenova", - "standard": "none" - } - ] - }, - { - "name": "Tangle", - "chain": "Tangle", - "rpc": [ - "https://rpc.tangle.tools", - "wss://rpc.tangle.tools" - ], - "faucets": [], - "nativeCurrency": { - "name": "Tangle", - "symbol": "TNT", - "decimals": 18 - }, - "infoURL": "https://docs.tangle.tools", - "shortName": "tangle", - "chainId": 5845, - "networkId": 5845, - "icon": "tangle", - "explorers": [ - { - "name": "Tangle EVM Explorer", - "url": "https://explorer.tangle.tools", - "standard": "EIP3091", - "icon": "tangle" - } - ] - }, - { - "name": "BounceBit Mainnet", - "chain": "BounceBit", - "rpc": [ - "https://fullnode-mainnet.bouncebitapi.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BounceBit", - "symbol": "BB", - "decimals": 18 - }, - "infoURL": "https://bouncebit.io", - "shortName": "bouncebit-mainnet", - "chainId": 6001, - "networkId": 6001, - "icon": "bouncebit", - "explorers": [ - { - "name": "BBScan Mainnet Explorer", - "url": "https://bbscan.io", - "standard": "none" - } - ] - }, - { - "name": "Aura Euphoria Testnet", - "chain": "Aura", - "rpc": [ - "https://jsonrpc.euphoria.aura.network" - ], - "faucets": [ - "https://aura.faucetme.pro" - ], - "nativeCurrency": { - "name": "test-EAura", - "symbol": "eAura", - "decimals": 18 - }, - "infoURL": "https://aura.network", - "shortName": "eaura", - "chainId": 6321, - "networkId": 6321, - "slip44": 1, - "icon": "aura", - "explorers": [ - { - "name": "Aurascan Explorer", - "url": "https://euphoria.aurascan.io", - "standard": "none", - "icon": "aura" - } - ] - }, - { - "name": "Aura Mainnet", - "chain": "Aura", - "rpc": [ - "https://jsonrpc.aura.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Aura", - "symbol": "AURA", - "decimals": 18 - }, - "infoURL": "https://aura.network", - "shortName": "aura", - "chainId": 6322, - "networkId": 6322, - "slip44": 1, - "icon": "aura", - "explorers": [ - { - "name": "Aurascan Explorer", - "url": "https://aurascan.io", - "standard": "none", - "icon": "aura" - } - ] - }, - { - "name": "Pools Mainnet", - "chain": "Pools", - "rpc": [ - "https://rpc.poolsmobility.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "POOLS Native Token", - "symbol": "POOLS", - "decimals": 18 - }, - "infoURL": "https://www.poolschain.org", - "shortName": "POOLS", - "icon": "POOLS", - "chainId": 6868, - "networkId": 6868, - "slip44": 6868, - "explorers": [ - { - "name": "poolsscan", - "url": "https://scan.poolsmobility.com", - "icon": "POOLS", - "standard": "EIP3091" - } - ] - }, - { - "name": "Planq Atlas Testnet", - "chain": "Planq", - "icon": "planq", - "rpc": [ - "https://evm-rpc-atlas.planq.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Planq", - "symbol": "tPLQ", - "decimals": 18 - }, - "infoURL": "https://planq.network", - "shortName": "planq-atlas-testnet", - "chainId": 7077, - "networkId": 7077, - "explorers": [] - }, - { - "name": "XPLA Verse", - "chain": "XPLA Verse", - "icon": "xpla_verse", - "rpc": [ - "https://rpc-xpla-verse.xpla.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "OAS", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://www.xpla.io", - "shortName": "XPLAVERSE", - "chainId": 7300, - "networkId": 7300, - "explorers": [ - { - "name": "XPLA Verse Explorer", - "url": "https://explorer-xpla-verse.xpla.dev", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Cyber Mainnet", - "chain": "Cyber", - "rpc": [ - "https://cyber.alt.technology/", - "wss://cyber-ws.alt.technology/", - "https://rpc.cyber.co/", - "wss://rpc.cyber.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "cyber", - "infoURL": "https://cyber.co/", - "shortName": "cyeth", - "chainId": 7560, - "networkId": 7560, - "explorers": [ - { - "name": "Cyber Mainnet Explorer", - "url": "https://cyberscan.co", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://cyber.co/bridge" - } - ] - } - }, - { - "name": "GDCC TESTNET", - "chain": "GDCC", - "icon": "gdcc", - "rpc": [ - "https://testnet-rpc1.gdccscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "GDCC", - "symbol": "GDCC", - "decimals": 18 - }, - "infoURL": "https://gdcchain.com", - "shortName": "GDCC", - "chainId": 7775, - "networkId": 7775, - "explorers": [ - { - "name": "GDCC", - "url": "https://testnet.gdccscan.io", - "standard": "none" - } - ] - }, - { - "name": "Orenium Mainnet Protocol", - "chain": "ORE", - "rpc": [ - "https://validator-mainnet.orenium.org", - "https://rpc-oracle-mainnet.orenium.org", - "https://portalmainnet.orenium.org" - ], - "nativeCurrency": { - "name": "ORENIUM", - "symbol": "ORE", - "decimals": 18 - }, - "infoURL": "https://orenium.org", - "shortName": "ore", - "chainId": 7778, - "networkId": 7778, - "slip44": 1, - "icon": "ore", - "faucets": [], - "explorers": [ - { - "name": "ORE Mainnet Explorer", - "icon": "ore", - "url": "https://oreniumscan.org", - "standard": "none" - } - ] - }, - { - "name": "OpenEX LONG Testnet", - "title": "OpenEX LONG Testnet", - "chain": "OEX", - "icon": "oex", - "rpc": [ - "https://long.rpc.openex.network/" - ], - "faucets": [ - "https://long.hub.openex.network/faucet" - ], - "nativeCurrency": { - "name": "USDT Testnet", - "symbol": "USDT", - "decimals": 18 - }, - "infoURL": "https://openex.network", - "shortName": "oex", - "chainId": 7798, - "networkId": 7798, - "slip44": 1, - "explorers": [ - { - "name": "OpenEX Long Testnet Explorer", - "url": "https://scan.long.openex.network", - "icon": "oex", - "standard": "EIP3091" - } - ] - }, - { - "name": "Dot Blox", - "chain": "DTBX", - "icon": "dotblox", - "rpc": [ - "https://rpc.dotblox.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Dot Blox", - "symbol": "DTBX", - "decimals": 18 - }, - "infoURL": "https://explorer.dotblox.io", - "shortName": "DTBX", - "chainId": 7923, - "networkId": 7923, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.dotblox.io", - "standard": "none" - } - ] - }, - { - "name": "MO Mainnet", - "chainId": 7924, - "shortName": "MO", - "chain": "MO", - "icon": "mo", - "networkId": 7924, - "nativeCurrency": { - "name": "MO", - "symbol": "MO", - "decimals": 18 - }, - "rpc": [ - "https://mainnet-rpc.mochain.app/" - ], - "faucets": [ - "https://faucet.mochain.app/" - ], - "explorers": [ - { - "name": "MO Explorer", - "url": "https://moscan.app", - "standard": "none" - } - ], - "infoURL": "https://mochain.app" - }, - { - "name": "BOAT Mainnet", - "title": "BOAT Mainnet", - "chain": "BOAT", - "icon": "boat", - "rpc": [ - "https://rpc0.come.boat/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Best Of All Time Token", - "symbol": "BOAT", - "decimals": 18 - }, - "infoURL": "https://come.boats", - "shortName": "boat", - "chainId": 8047, - "networkId": 8047, - "slip44": 1, - "explorers": [ - { - "name": "BOAT Mainnet Explorer", - "url": "https://scan.come.boats", - "icon": "boat", - "standard": "EIP3091" - } - ] - }, - { - "name": "Karak Sepolia", - "title": "Karak Testnet Sepolia", - "chain": "Karak", - "icon": "karak", - "rpc": [ - "https://rpc.sepolia.karak.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://karak.network", - "shortName": "karak-sepolia", - "chainId": 8054, - "networkId": 8054, - "explorers": [ - { - "name": "Karak Sepolia Explorer", - "url": "https://explorer.sepolia.karak.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - } - }, - { - "name": "Space Subnet", - "chain": "SPACE", - "rpc": [ - "https://subnets.avax.network/space/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "FUEL", - "symbol": "FUEL", - "decimals": 18 - }, - "infoURL": "https://otherworld.network", - "shortName": "space", - "chainId": 8227, - "networkId": 8227, - "explorers": [ - { - "name": "SPACE Explorer", - "url": "https://subnets.avax.network/space", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lorenzo", - "chain": "Lorenzo", - "rpc": [ - "https://rpc.lorenzo-protocol.xyz" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Lorenzo stBTC", - "symbol": "stBTC", - "decimals": 18 - }, - "infoURL": "https://www.lorenzo-protocol.xyz/", - "shortName": "lrz", - "chainId": 8329, - "networkId": 8329, - "icon": "lorenzo", - "explorers": [ - { - "name": "Lorenzo Explorer", - "url": "https://scan.lorenzo-protocol.xyz", - "standard": "none", - "icon": "lorenzo" - } - ] - }, - { - "name": "IOTA EVM", - "title": "IOTA EVM", - "chain": "IOTA EVM", - "rpc": [ - "https://json-rpc.evm.iotaledger.net", - "https://ws.json-rpc.evm.iotaledger.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "IOTA", - "symbol": "IOTA", - "decimals": 18 - }, - "infoURL": "https://www.iota.org", - "shortName": "iotaevm", - "chainId": 8822, - "networkId": 8822, - "icon": "iotaevm", - "explorers": [ - { - "name": "explorer", - "url": "https://explorer.evm.iota.org", - "icon": "iotaevm", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hydra Chain Testnet", - "chain": "HYDRA", - "rpc": [ - "https://rpc.testnet.hydrachain.org" - ], - "faucets": [ - "https://app.testnet.hydrachain.org/faucet" - ], - "nativeCurrency": { - "name": "tHydra", - "symbol": "tHYDRA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://hydrachain.org", - "shortName": "thydra", - "chainId": 8844, - "networkId": 8844, - "icon": "hydra", - "explorers": [ - { - "name": "Hydra Chain Testnet explorer", - "url": "https://hydragon.hydrachain.org", - "icon": "hydra", - "standard": "EIP3091" - } - ] - }, - { - "name": "SuperLumio", - "chain": "SuperLumio", - "icon": "superlumio", - "rpc": [ - "https://mainnet.lumio.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lumio.io/", - "shortName": "superlumio", - "chainId": 8866, - "networkId": 8866, - "explorers": [ - { - "name": "Lumio explorer", - "url": "https://explorer.lumio.io", - "standard": "none" - } - ] - }, - { - "name": "Algen", - "chain": "ALG", - "rpc": [ - "https://rpc.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "alg", - "chainId": 8911, - "networkId": 8911, - "icon": "alg", - "explorers": [ - { - "name": "algscan", - "url": "https://scan.algen.network", - "icon": "alg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Algen Testnet", - "chain": "ALG", - "rpc": [ - "https://rpc.test.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "algTest", - "chainId": 8912, - "networkId": 8912, - "icon": "alg", - "explorers": [ - { - "name": "algscan", - "url": "https://scan.test.algen.network", - "icon": "alg", - "standard": "EIP3091" - } - ] - }, - { - "name": "Algen Layer2", - "chain": "ALG L2", - "rpc": [ - "https://rpc.alg2.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "algl2", - "chainId": 8921, - "networkId": 8921, - "icon": "algl2", - "explorers": [ - { - "name": "algl2scan", - "url": "https://scan.alg2.algen.network", - "icon": "algl2", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-8911", - "type": "shard" - } - }, - { - "name": "Algen Layer2 Testnet", - "chain": "ALG L2", - "rpc": [ - "https://rpc.alg2-test.algen.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "ALG", - "symbol": "ALG", - "decimals": 18 - }, - "infoURL": "https://www.algen.network", - "shortName": "algl2Test", - "chainId": 8922, - "networkId": 8922, - "icon": "algl2", - "explorers": [ - { - "name": "algl2scan", - "url": "https://scan.alg2-test.algen.network", - "icon": "algl2", - "standard": "EIP3091" - } - ], - "parent": { - "chain": "eip155-8921", - "type": "shard" - } - }, - { - "name": "Shido Testnet Block", - "chain": "Shido Testnet", - "rpc": [ - "https://rpc-testnet-nodes.shidoscan.com", - "wss://wss-testnet-nodes.shidoscan.com" - ], - "faucets": [ - "https://testnet.shidoscan.com/faucet" - ], - "nativeCurrency": { - "name": "Shido Testnet Token", - "symbol": "SHIDO", - "decimals": 18 - }, - "infoURL": "https://www.nexablock.io", - "shortName": "ShidoTestnet", - "chainId": 9007, - "networkId": 9007, - "icon": "shidoChain", - "explorers": [ - { - "name": "Shidoblock Testnet Explorer", - "url": "https://testnet.shidoscan.com", - "standard": "none", - "icon": "shidoChain" - } - ] - }, - { - "name": "Shido Mainnet Block", - "chain": "Shido Mainnet", - "rpc": [ - "https://rpc-nodes.shidoscan.com", - "wss://wss-nodes.shidoscan.com", - "https://rpc-delta-nodes.shidoscan.com", - "wss://wss-delta-nodes.shidoscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shido Mainnet Token", - "symbol": "SHIDO", - "decimals": 18 - }, - "infoURL": "https://shido.io", - "shortName": "Shido", - "chainId": 9008, - "networkId": 9008, - "icon": "shidoChain", - "explorers": [ - { - "name": "Shidoblock Mainnet Explorer", - "url": "https://shidoscan.com", - "standard": "none", - "icon": "shidoChain" - } - ] - }, - { - "name": "Tabi Testnet", - "chain": "TabiNetwork", - "rpc": [ - "https://rpc.testnet.tabichain.com" - ], - "faucets": [ - "https://faucet.testnet.tabichain.com" - ], - "nativeCurrency": { - "name": "Tabi", - "symbol": "TABI", - "decimals": 18 - }, - "infoURL": "https://www.tabichain.com", - "shortName": "tabitest", - "chainId": 9789, - "networkId": 9789, - "explorers": [ - { - "name": "Tabi Testnet Explorer", - "url": "https://testnet.tabiscan.com", - "standard": "none" - } - ] - }, - { - "name": "OptimusZ7 Mainnet", - "chain": "OptimusZ7", - "icon": "OZ7Icon", - "rpc": [ - "https://rpc.optimusz7.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 - }, - "infoURL": "http://optimusz7.com", - "shortName": "OZ7m", - "chainId": 9797, - "networkId": 9797, - "explorers": [ - { - "name": "OptimusZ7 Mainnet Explorer", - "url": "https://explorer.optimusz7.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Larissa Chain", - "title": "Larissa Chain", - "chain": "Larissa", - "rpc": [ - "https://rpc.larissa.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Larissa", - "symbol": "LRS", - "decimals": 18 - }, - "infoURL": "https://larissa.network", - "shortName": "lrs", - "chainId": 9898, - "networkId": 1, - "slip44": 9898, - "status": "active", - "icon": "larissa", - "explorers": [ - { - "name": "Larissa Scan", - "url": "https://scan.larissa.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Espento Mainnet", - "chain": "SPENT", - "rpc": [ - "https://rpc.escscan.com/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ESPENTO", - "symbol": "SPENT", - "decimals": 18 - }, - "infoURL": "https://espento.network", - "shortName": "spent", - "chainId": 9911, - "networkId": 9911, - "icon": "espento", - "explorers": [ - { - "name": "escscan", - "url": "https://escscan.com", - "icon": "espento", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ztc Mainnet", - "chain": "ZTC", - "rpc": [ - "https://zitcoin.us" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ztcer", - "symbol": "ZTC", - "decimals": 5 - }, - "infoURL": "https://ztc.best", - "shortName": "ZTC", - "chainId": 9998, - "networkId": 9998 - }, - { - "name": "TAO EVM Mainnet", - "chain": "TAO EVM", - "icon": "taoevmIcon", - "rpc": [ - "https://rpc.taoevm.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 - }, - "infoURL": "https://taoevm.io", - "shortName": "TAOm", - "chainId": 10321, - "networkId": 10321, - "explorers": [ - { - "name": "TAO Mainnet Explorer", - "url": "https://taoscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "TAO EVM Testnet", - "chain": "TAO EVM", - "icon": "taoevmIcon", - "rpc": [ - "https://testnet-rpc.taoevm.io" - ], - "faucets": [ - "https://faucet.taoevm.io" - ], - "nativeCurrency": { - "name": "TAO", - "symbol": "TAO", - "decimals": 18 - }, - "infoURL": "https://taoevm.io", - "shortName": "TAOt", - "chainId": 10324, - "networkId": 10324, - "explorers": [ - { - "name": "TAO Testnet Explorer", - "url": "https://testnet.taoscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lamina1", - "chain": "Lamina1", - "rpc": [ - "https://subnets.avax.network/lamina1/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "L1", - "symbol": "L1", - "decimals": 18 - }, - "infoURL": "https://www.lamina1.com/", - "shortName": "lamina1", - "chainId": 10849, - "networkId": 10849, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Explorer", - "url": "https://subnets.avax.network/lamina1", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lamina1 Identity", - "chain": "Lamina1 Identity", - "rpc": [ - "https://subnets.avax.network/lamina1id/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "L1 ID", - "symbol": "L1ID", - "decimals": 18 - }, - "infoURL": "https://www.lamina1.com/", - "shortName": "lamina1id", - "chainId": 10850, - "networkId": 10850, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Identity Explorer", - "url": "https://subnets.avax.network/lamina1id", - "standard": "EIP3091" - } - ] - }, - { - "name": "Shine Chain", - "chain": "SC20", - "rpc": [ - "https://rpc.shinescan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Shine", - "symbol": "SC20", - "decimals": 18 - }, - "infoURL": "https://shinechain.tech", - "shortName": "SC20", - "chainId": 11221, - "networkId": 11221, - "icon": "shine", - "explorers": [ - { - "name": "shinescan", - "url": "https://shinescan.io", - "icon": "shine", - "standard": "none" - } - ] - }, - { - "name": "Jiritsu Testnet Subnet", - "chain": "JIRITSUTES", - "rpc": [ - "https://subnets.avax.network/jiritsutes/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "JIRI", - "symbol": "TZW", - "decimals": 18 - }, - "infoURL": "https://jiritsu.network", - "shortName": "jiritsutes", - "chainId": 11227, - "networkId": 11227, - "explorers": [ - { - "name": "JIRITSUTES Explorer", - "url": "https://subnets-test.avax.network/jiritsutes", - "standard": "EIP3091" - } - ] - }, - { - "name": "BEVM Mainnet", - "chain": "BEVM", - "rpc": [ - "https://rpc-mainnet-1.bevm.io/", - "https://rpc-mainnet-2.bevm.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://bevm.io", - "shortName": "bevm", - "chainId": 11501, - "networkId": 11501, - "icon": "bevm", - "explorers": [ - { - "name": "bevm mainnet scan", - "url": "https://scan-mainnet.bevm.io", - "standard": "none" - } - ] - }, - { - "name": "L3X Protocol", - "chainId": 12324, - "shortName": "l3x", - "chain": "L3X", - "icon": "l3x", - "networkId": 12324, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc-mainnet.l3x.com" - ], - "faucets": [], - "explorers": [ - { - "name": "L3X Mainnet Explorer", - "url": "https://explorer.l3x.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://l3x.com", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "L3X Protocol Testnet", - "chainId": 12325, - "shortName": "l3x-testnet", - "chain": "L3X", - "icon": "l3x", - "networkId": 12325, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc-testnet.l3x.com" - ], - "faucets": [], - "explorers": [ - { - "name": "L3X Testnet Explorer", - "url": "https://explorer-testnet.l3x.com", - "standard": "EIP3091" - } - ], - "infoURL": "https://l3x.com", - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - } - ] - } - }, - { - "name": "RSS3 VSL Mainnet", - "chain": "RSS3", - "rpc": [ - "https://rpc.rss3.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "RSS3", - "symbol": "RSS3", - "decimals": 18 - }, - "infoURL": "https://rss3.io", - "shortName": "rss3", - "chainId": 12553, - "networkId": 12553, - "icon": "rss3", - "explorers": [ - { - "name": "RSS3 VSL Scan", - "url": "https://scan.rss3.io", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://explorer.rss3.io/bridge" - } - ] - } - }, - { - "name": "Playdapp Testnet", - "chain": "PDA", - "icon": "pda", - "rpc": [ - "https://subnets.avax.network/playdappte/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 - }, - "infoURL": "https://playdapp.io", - "shortName": "PDA-TESTNET", - "chainId": 12781, - "networkId": 12781, - "explorers": [ - { - "name": "Playdapp Testnet Explorer", - "url": "https://subnets-test.avax.network/playdappte", - "standard": "EIP3091" - } - ] - }, - { - "name": "PlayFair Testnet Subnet", - "chain": "PLAYFAIR", - "icon": "playfair", - "rpc": [ - "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTLT Token", - "symbol": "BTLT", - "decimals": 18 - }, - "infoURL": "https://letsplayfair.ai", - "shortName": "playfair", - "chainId": 12898, - "networkId": 12898, - "explorers": [ - { - "name": "Avalanche Subnet Explorer", - "url": "https://subnets-test.avax.network/letsplayfair", - "standard": "EIP3091" - } - ] - }, - { - "name": "Masa", - "chain": "MASA", - "icon": "masa", - "rpc": [ - "https://subnets.avax.network/masanetwork/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Masa Token", - "symbol": "MASA", - "decimals": 18 - }, - "infoURL": "https://masa.finance", - "shortName": "masa", - "chainId": 13396, - "networkId": 13396, - "explorers": [ - { - "name": "Masa Explorer", - "url": "https://subnets.avax.network/masa", - "standard": "EIP3091" - } - ] - }, - { - "name": "Gravity Alpha Testnet Sepolia", - "chain": "Gravity", - "rpc": [ - "https://rpc-sepolia.gravity.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Gravity", - "symbol": "G.", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - }, - { - "name": "EIP1108" - } - ], - "infoURL": "https://gravity.xyz", - "shortName": "gravitysep", - "chainId": 13505, - "networkId": 13505, - "icon": "gravity", - "explorers": [ - { - "name": "Gravity Alpha Testnet Sepolia Explorer", - "url": "https://explorer-sepolia.gravity.xyz", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "Kronobit Mainnet", - "title": "Kronobit Mainnet", - "chain": "KNB", - "rpc": [ - "https://mainnet-rpc.qbitscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Kronobit", - "symbol": "KNB", - "decimals": 18 - }, - "infoURL": "https://kronobit.org", - "shortName": "KNB", - "chainId": 13600, - "networkId": 13600, - "icon": "kronobit", - "explorers": [ - { - "name": "qbitscan", - "url": "https://explorer.qbitscan.com", - "icon": "kronobit", - "standard": "EIP3091" - } - ] - }, - { - "name": "EVOLVE Testnet", - "chain": "EVO", - "icon": "evolveIcon", - "rpc": [ - "https://testnet-rpc.evolveblockchain.io" - ], - "faucets": [ - "https://faucet.evolveblockchain.io" - ], - "nativeCurrency": { - "name": "Evolve", - "symbol": "EVO", - "decimals": 18 - }, - "infoURL": "https://evolveblockchain.io", - "shortName": "evo", - "chainId": 14324, - "networkId": 14324, - "explorers": [ - { - "name": "Evolve Testnet Explorer", - "url": "https://testnet.evolveblockchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Poodl Testnet", - "chain": "Poodl", - "icon": "poodlIcon", - "rpc": [ - "https://testnet-rpc.poodl.org" - ], - "faucets": [ - "https://faucet.poodl.org" - ], - "nativeCurrency": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 - }, - "infoURL": "https://poodl.org", - "shortName": "poodlt", - "chainId": 15257, - "networkId": 15257, - "explorers": [ - { - "name": "Poodl Testnet Explorer", - "url": "https://testnet.poodl.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Poodl Mainnet", - "chain": "Poodl", - "icon": "poodlIcon", - "rpc": [ - "https://rpc.poodl.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Poodl", - "symbol": "POODL", - "decimals": 18 - }, - "infoURL": "https://poodl.org", - "shortName": "poodle", - "chainId": 15259, - "networkId": 15259, - "explorers": [ - { - "name": "Poodl Mainnet Explorer", - "url": "https://explorer.poodl.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeFiVerse Mainnet", - "chain": "DeFiVerse", - "icon": "defiverse", - "rpc": [ - "https://rpc.defi-verse.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://defi-verse.org", - "shortName": "DFV", - "chainId": 16116, - "networkId": 16116, - "explorers": [ - { - "name": "DeFiVerse Explorer", - "url": "https://scan.defi-verse.org", - "icon": "defiverse", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-248" - } - }, - { - "name": "Garnet Holesky", - "chain": "ETH", - "rpc": [ - "https://rpc.garnetchain.com", - "wss://rpc.garnetchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://redstone.xyz", - "shortName": "garnet", - "chainId": 17069, - "networkId": 17069, - "icon": "garnet", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.garnetchain.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-17000", - "bridges": [ - { - "url": "https://garnetchain.com/deposit" - } - ] - } - }, - { - "name": "DeFiVerse Testnet", - "chain": "DeFiVerse Testnet", - "icon": "defiverse", - "rpc": [ - "https://rpc-testnet.defi-verse.org/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Oasys", - "symbol": "OAS", - "decimals": 18 - }, - "infoURL": "https://defi-verse.org", - "shortName": "DFV-testnet", - "chainId": 17117, - "networkId": 17117, - "explorers": [ - { - "name": "DeFiVerse Testnet Explorer", - "url": "https://scan-testnet.defi-verse.org", - "icon": "defiverse", - "standard": "EIP3091" - } - ] - }, - { - "name": "unreal", - "title": "unreal testnet for re.al", - "chain": "unreal", - "rpc": [ - "https://rpc.unreal-orbit.gelato.digital", - "wss://ws.unreal-orbit.gelato.digital" - ], - "nativeCurrency": { - "name": "unreal Ether", - "symbol": "reETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", - "faucets": [], - "shortName": "unreal", - "chainId": 18233, - "networkId": 18233, - "slip44": 60, - "icon": "unreal", - "explorers": [ - { - "name": "blockscout", - "url": "https://unreal.blockscout.com", - "icon": "unreal", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-17000", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/unreal" - } - ] - } - }, - { - "name": "Titan (TKX)", - "chain": "Titan (TKX)", - "rpc": [ - "https://titan-json-rpc.titanlab.io", - "https://titan-json-rpc-tokyo.titanlab.io", - "https://titan-json-rpc-seoul.titanlab.io", - "https://titan-json-rpc-hongkong.titanlab.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Titan tkx", - "symbol": "TKX", - "decimals": 18 - }, - "infoURL": "https://titanlab.io", - "shortName": "titan_tkx", - "chainId": 18888, - "networkId": 18888, - "slip44": 1, - "icon": "titan_tkx", - "explorers": [ - { - "name": "Titan Explorer", - "url": "https://tkxscan.io/Titan", - "standard": "none", - "icon": "titan_tkx" - } - ] - }, - { - "name": "LBRY Mainnet", - "chain": "LBRY", - "icon": "lbry", - "rpc": [ - "https://lbry.nl/rpc" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "LBRY Credits", - "symbol": "LBC", - "decimals": 8 - }, - "infoURL": "https://lbry.com", - "shortName": "LBRY", - "chainId": 19600, - "networkId": 19600, - "slip44": 140, - "explorers": [ - { - "name": "LBRY Block Explorer", - "url": "https://explorer.lbry.com", - "icon": "lbry", - "standard": "none" - } - ] - }, - { - "name": "Niza Chain Mainnet", - "chain": "NIZA", - "icon": "niza", - "rpc": [ - "https://nizascan.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 - }, - "infoURL": "https://niza.io", - "shortName": "niza", - "chainId": 20041, - "networkId": 20041, - "explorers": [ - { - "name": "NizaScan", - "url": "https://nizascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Niza Chain Testnet", - "chain": "NIZA", - "icon": "niza", - "rpc": [ - "https://testnet.nizascan.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Niza Global", - "symbol": "NIZA", - "decimals": 18 - }, - "infoURL": "https://niza.io", - "shortName": "niza_testnet", - "chainId": 20073, - "networkId": 20073, - "explorers": [ - { - "name": "NizaScan", - "url": "https://testnet.nizascan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DCpay Mainnet", - "chain": "DCpay", - "icon": "dcpayIcon", - "rpc": [ - "https://rpc.dcpay.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 - }, - "infoURL": "https://dcpay.io", - "shortName": "DCPm", - "chainId": 21223, - "networkId": 21223, - "explorers": [ - { - "name": "DCpay Mainnet Explorer", - "url": "https://mainnet.dcpay.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DCpay Testnet", - "chain": "DCpay", - "icon": "dcpayIcon", - "rpc": [ - "https://testnet-rpc.dcpay.io" - ], - "faucets": [ - "https://faucet.dcpay.io" - ], - "nativeCurrency": { - "name": "DCP", - "symbol": "DCP", - "decimals": 18 - }, - "infoURL": "https://dcpay.io", - "shortName": "DCPt", - "chainId": 21224, - "networkId": 21224, - "explorers": [ - { - "name": "DCpay Testnet Explorer", - "url": "https://testnet.dcpay.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DreyerX Mainnet", - "chain": "DreyerX", - "rpc": [ - "https://rpc.dreyerx.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 - }, - "infoURL": "https://dreyerx.com", - "shortName": "dreyerx", - "chainId": 23451, - "networkId": 23451, - "icon": "dreyerx", - "explorers": [ - { - "name": "drxscan", - "url": "https://scan.dreyerx.com", - "icon": "dreyerx", - "standard": "EIP3091" - } - ] - }, - { - "name": "DreyerX Testnet", - "chain": "DreyerX", - "rpc": [ - "https://testnet-rpc.dreyerx.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "DreyerX", - "symbol": "DRX", - "decimals": 18 - }, - "infoURL": "https://dreyerx.com", - "shortName": "dreyerx-testnet", - "chainId": 23452, - "networkId": 23452, - "icon": "dreyerx", - "explorers": [ - { - "name": "drxscan", - "url": "https://testnet-scan.dreyerx.com", - "icon": "dreyerx", - "standard": "EIP3091" - } - ] - }, - { - "name": "KLAOS Nova", - "title": "KLAOS Nova Test Chain", - "chain": "KLAOS Nova", - "icon": "k-laos", - "rpc": [ - "https://rpc.klaosnova.laosfoundation.io", - "wss://rpc.klaosnova.laosfoundation.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "KLAOS", - "symbol": "KLAOS", - "decimals": 18 - }, - "infoURL": "https://www.laosfoundation.io/", - "shortName": "klaosnova", - "chainId": 27181, - "networkId": 27181, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscout.klaosnova.laosfoundation.io", - "icon": "k-laos", - "standard": "EIP3091" - } - ] - }, - { - "name": "Nanon Sepolia", - "title": "Nanon Sepolia Rollup Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia-rpc.nanon.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.nanon.network", - "shortName": "Nanon-Testnet", - "chainId": 27483, - "networkId": 27483, - "slip44": 1, - "icon": "nanon", - "explorers": [ - { - "name": "Nanon Sepolia Rollup Testnet Explorer", - "url": "https://sepolia-explorer.nanon.network", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://sepolia-bridge.nanon.network" - } - ] - } - }, - { - "name": "zeroone Mainnet Subnet", - "chain": "ZEROONEMAI", - "rpc": [ - "https://subnets.avax.network/zeroonemai/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://zeroone.art/", - "shortName": "zeroonemai", - "chainId": 27827, - "networkId": 27827, - "explorers": [ - { - "name": "ZEROONEMAI Explorer", - "url": "https://subnets.avax.network/zeroonemai", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vizing Testnet", - "title": "Vizing Testnet", - "chain": "Vizing Testnet", - "rpc": [ - "https://rpc-sepolia.vizing.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://vizing.com", - "shortName": "Vizing-Testnet", - "chainId": 28516, - "networkId": 28516, - "icon": "vizing", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer-sepolia.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } - ] - }, - { - "name": "Vizing Mainnet", - "title": "Vizing Mainnet", - "chain": "Vizing Mainnet", - "rpc": [ - "https://rpc.vizing.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://vizing.com", - "shortName": "Vizing", - "chainId": 28518, - "networkId": 28518, - "icon": "vizing", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.vizing.com", - "icon": "vizing", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.vizing.com" - } - ] - } - }, - { - "name": "Boba Sepolia", - "chain": "ETH", - "rpc": [ - "https://sepolia.boba.network", - "https://boba-sepolia.gateway.tenderly.co", - "https://gateway.tenderly.co/public/boba-sepolia", - "wss://boba-sepolia.gateway.tenderly.co/", - "wss://gateway.tenderly.co/public/boba-sepolia" - ], - "faucets": [ - "https://www.l2faucet.com/boba" - ], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://boba.network", - "shortName": "BobaSepolia", - "chainId": 28882, - "networkId": 28882, - "explorers": [ - { - "name": "Bobascan", - "url": "https://testnet.bobascan.com", - "standard": "none" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://gateway.boba.network" - } - ] - } - }, - { - "name": "HYCHAIN Testnet", - "chainId": 29112, - "shortName": "hychain-testnet", - "chain": "ETH", - "networkId": 29112, - "nativeCurrency": { - "name": "TOPIA", - "symbol": "TOPIA", - "decimals": 18 - }, - "rpc": [ - "https://testnet-rpc.hychain.com/http" - ], - "faucets": [], - "infoURL": "https://www.hychain.com", - "icon": "hychain", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.hychain.com", - "icon": "hychain", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-58008", - "bridges": [] - } - }, - { - "name": "KaiChain Testnet", - "chain": "KaiChain", - "rpc": [ - "https://testnet-rpc.kaichain.net" - ], - "faucets": [ - "https://faucet.kaichain.net" - ], - "nativeCurrency": { - "name": "KaiChain Testnet Native Token", - "symbol": "KEC", - "decimals": 18 - }, - "infoURL": "https://kaichain.net", - "shortName": "tkec", - "chainId": 29536, - "networkId": 29536, - "explorers": [ - { - "name": "KaiChain Explorer", - "url": "https://testnet-explorer.kaichain.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "MiYou Mainnet", - "chain": "MiYou Chain", - "icon": "miyou", - "faucets": [], - "rpc": [ - "https://blockchain.miyou.io", - "https://blockchain.miyoulab.com" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "Miyou", - "symbol": "MY", - "decimals": 18 - }, - "infoURL": "https://www.miyou.io", - "shortName": "MiYou", - "chainId": 30088, - "networkId": 30088, - "slip44": 60, - "ens": { - "registry": "0xFEfa9B3061435977424DD947E756566cFB60473E" - }, - "explorers": [ - { - "name": "MiYou block explorer", - "url": "https://myscan.miyou.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Movement EVM Legacy", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "moveleg", - "chainId": 30730, - "networkId": 30730, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "Movement EVM Devnet", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "movedev", - "chainId": 30731, - "networkId": 30731, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "Movement EVM Testnet", - "chain": "MOVE", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Move", - "symbol": "MOVE", - "decimals": 18 - }, - "infoURL": "https://movementlabs.xyz", - "shortName": "movetest", - "chainId": 30732, - "networkId": 30732, - "icon": "move", - "explorers": [ - { - "name": "mevm explorer", - "url": "https://explorer.movementlabs.xyz", - "standard": "none" - } - ], - "status": "incubating" - }, - { - "name": "Xchain Mainnet", - "chain": "Xchain", - "icon": "intd", - "rpc": [ - "https://rpc.xchainscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Intdestcoin", - "symbol": "INTD", - "decimals": 18 - }, - "infoURL": "https://xchainscan.com", - "shortName": "INTD", - "chainId": 31753, - "networkId": 31753, - "explorers": [ - { - "name": "Xchain Mainnet Explorer", - "url": "https://xchainscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xchain Testnet", - "chain": "Xchain", - "icon": "intd", - "rpc": [ - "https://rpc.xchaintest.net" - ], - "faucets": [ - "https://xchainfaucet.net" - ], - "nativeCurrency": { - "name": "Intdestcoin Testnet", - "symbol": "INTD", - "decimals": 18 - }, - "infoURL": "https://xchaintest.net", - "shortName": "tINTD", - "chainId": 31754, - "networkId": 31754, - "explorers": [ - { - "name": "Xchain Testnet Explorer", - "url": "https://xchaintest.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Entangle Mainnet", - "chain": "NGL", - "icon": "ngl", - "rpc": [ - "https://json-rpc.entangle.fi" - ], - "faucets": [], - "nativeCurrency": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 - }, - "infoURL": "https://www.entangle.fi", - "shortName": "ngl", - "chainId": 33033, - "networkId": 33033, - "explorers": [ - { - "name": "Entangle Mainnet Explorer", - "url": "https://explorer.entangle.fi", - "standard": "none" - } - ] - }, - { - "name": "Entangle Testnet", - "chain": "NGL", - "icon": "ngl", - "rpc": [ - "https://evm-testnet.entangle.fi" - ], - "faucets": [], - "nativeCurrency": { - "name": "Entangle", - "symbol": "NGL", - "decimals": 18 - }, - "infoURL": "https://www.entangle.fi", - "shortName": "tngl", - "chainId": 33133, - "networkId": 33133, - "explorers": [] - }, - { - "name": "Funki", - "chain": "ETH", - "icon": "funki", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://funkichain.com", - "shortName": "funki", - "chainId": 33979, - "networkId": 33979, - "explorers": [ - { - "name": "Funki Mainnet Explorer", - "url": "https://mainnet.funkichain.com", - "standard": "none" - } - ] - }, - { - "name": "PRM Mainnet", - "chain": "prm", - "icon": "prmIcon", - "rpc": [ - "https://mainnet-rpc.prmscan.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 - }, - "infoURL": "https://primalnetwork.org", - "shortName": "prm", - "chainId": 39656, - "networkId": 39656, - "explorers": [ - { - "name": "Primal Network", - "url": "https://prmscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "AgentLayer Testnet", - "chain": "AgentLayer", - "icon": "agentLayerIcon", - "rpc": [ - "https://testnet-rpc.agentlayer.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Agent", - "symbol": "AGENT", - "decimals": 18 - }, - "infoURL": "https://agentlayer.xyz/home", - "shortName": "agent", - "chainId": 42072, - "networkId": 42072, - "explorers": [ - { - "name": "AgentLayer Testnet Explorer", - "url": "https://testnet-explorer.agentlayer.xyz", - "standard": "EIP3091" - } - ] - }, - { - "name": "Etherlink Mainnet", - "chain": "Etherlink", - "icon": "etherlink", - "chainId": 42793, - "networkId": 42793, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://etherlink.com", - "shortName": "etlk", - "nativeCurrency": { - "name": "tez", - "symbol": "XTZ", - "decimals": 18 - }, - "rpc": [ - "https://node.mainnet.etherlink.com" - ], - "faucets": [], - "explorers": [ - { - "name": "Etherlink Explorer", - "url": "https://explorer.etherlink.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hemi Network", - "chain": "ETH", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hemi.xyz", - "shortName": "hemi", - "chainId": 43111, - "networkId": 43111, - "icon": "hemi", - "explorers": [], - "parent": { - "type": "L2", - "chain": "eip155-1" - }, - "status": "incubating" - }, - { - "name": "Quantum Network", - "chain": "Quantum", - "rpc": [ - "https://rpcqtm.avescoin.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Quantum", - "symbol": "QTM", - "decimals": 18 - }, - "infoURL": "https://avescoin.io/", - "shortName": "QTM", - "chainId": 44445, - "networkId": 44445, - "icon": "quantum", - "explorers": [ - { - "name": "Quantum Explorer", - "url": "https://qtm.avescoin.io", - "icon": "quantum", - "standard": "EIP3091" - } - ] - }, - { - "name": "Swamps L2", - "chain": "SWP", - "icon": "swamps", - "rpc": [ - "https://swamps.tc.l2aas.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SWP", - "symbol": "SWP", - "decimals": 18 - }, - "infoURL": "https://www.swamps.fi", - "shortName": "SWP", - "chainId": 45454, - "networkId": 45454, - "explorers": [ - { - "name": "blockscout", - "url": "https://swamps-explorer.tc.l2aas.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "DODOchain testnet", - "title": "DODOchain testnet", - "chain": "DODOchain", - "icon": "dodochain_testnet", - "rpc": [ - "https://dodochain-testnet.alt.technology", - "wss://dodochain-testnet.alt.technology/ws" - ], - "faucets": [], - "nativeCurrency": { - "name": "DODO", - "symbol": "DODO", - "decimals": 18 - }, - "infoURL": "https://www.dodochain.com", - "shortName": "dodochain", - "chainId": 53457, - "networkId": 53457, - "explorers": [ - { - "name": "DODOchain Testnet (Sepolia) Explorer", - "url": "https://testnet-scan.dodochain.com", - "icon": "dodochain_testnet", - "standard": "EIP3091" - } - ] - }, - { - "name": "Photon Testnet", - "chain": "Photon", - "rpc": [ - "https://rpc-test.photonchain.io" - ], - "faucets": [ - "https://photonchain.io/airdrop" - ], - "nativeCurrency": { - "name": "Photon", - "symbol": "PTON", - "decimals": 18 - }, - "infoURL": "https://photonchain.io", - "shortName": "pton", - "chainId": 54555, - "networkId": 54555, - "explorers": [ - { - "name": "photon_testnet_explorer", - "url": "https://testnet.photonchain.io", - "standard": "none" - } - ] - }, - { - "name": "Lambda Chain Mainnet", - "chain": "Lambda Chain", - "rpc": [ - "https://nrpc.lambda.im/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "lambda", - "chainId": 56026, - "networkId": 56026, - "slip44": 1, - "icon": "lambda-chain", - "explorers": [ - { - "name": "Lambda Chain Mainnet Explorer", - "url": "https://scan.lambda.im", - "standard": "EIP3091" - } - ] - }, - { - "name": "Testnet Zeroone Subnet", - "chain": "TESTNETZER", - "rpc": [ - "https://subnets.avax.network/testnetzer/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "ZERO", - "symbol": "ZERO", - "decimals": 18 - }, - "infoURL": "https://zeroone.art/", - "shortName": "testnetzer", - "chainId": 56400, - "networkId": 56400, - "explorers": [ - { - "name": "TESTNETZER Explorer", - "url": "https://subnets-test.avax.network/testnetzer", - "standard": "EIP3091" - } - ] - }, - { - "name": "Linea Sepolia", - "title": "Linea Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.sepolia.linea.build", - "wss://rpc.sepolia.linea.build", - "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}", - "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}" - ], - "faucets": [], - "nativeCurrency": { - "name": "Linea Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://linea.build", - "shortName": "linea-sepolia", - "chainId": 59141, - "networkId": 59141, - "slip44": 1, - "icon": "linea", - "parent": { - "type": "L2", - "chain": "eip155-5", - "bridges": [ - { - "url": "https://bridge.linea.build/" - } - ] - }, - "explorers": [ - { - "name": "Etherscan", - "url": "https://sepolia.lineascan.build", - "standard": "EIP3091", - "icon": "linea" - }, - { - "name": "Blockscout", - "url": "https://explorer.sepolia.linea.build", - "standard": "EIP3091", - "icon": "linea" - } - ], - "status": "active" - }, - { - "name": "BOB", - "chain": "ETH", - "rpc": [ - "https://rpc.gobob.xyz", - "wss://rpc.gobob.xyz", - "https://bob-mainnet.public.blastapi.io", - "wss://bob-mainnet.public.blastapi.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://gobob.xyz", - "shortName": "bob", - "chainId": 60808, - "networkId": 60808, - "icon": "bob", - "explorers": [ - { - "name": "bobscout", - "url": "https://explorer.gobob.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "status": "active", - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://app.gobob.xyz" - } - ] - } - }, - { - "name": "KaiChain", - "chain": "KaiChain", - "rpc": [ - "https://mainnet-rpc.kaichain.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "KaiChain Native Token", - "symbol": "KEC", - "decimals": 18 - }, - "infoURL": "https://kaichain.net", - "shortName": "kec", - "chainId": 61406, - "networkId": 61406, - "explorers": [ - { - "name": "KaiChain Explorer", - "url": "https://explorer.kaichain.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "OPTOPIA Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc-testnet.optopia.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://optopia.ai", - "shortName": "OPTOPIA-Testnet", - "chainId": 62049, - "networkId": 62049, - "icon": "optopia", - "explorers": [ - { - "name": "optopia-testnet-scan", - "url": "https://scan-testnet.optopia.ai", - "icon": "optopia", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge-testnet.optopia.ai" - } - ] - } - }, - { - "name": "Optopia Mainnet", - "chain": "ETH", - "rpc": [ - "https://rpc-mainnet.optopia.ai", - "https://rpc-mainnet-2.optopia.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://optopia.ai", - "shortName": "Optopia", - "chainId": 62050, - "networkId": 62050, - "icon": "optopia", - "explorers": [ - { - "name": "optopia-scan", - "url": "https://scan.optopia.ai", - "icon": "optopia", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://bridge.optopia.ai" - } - ] - } - }, - { - "name": "Citrea Devnet", - "chain": "Citrea", - "rpc": [ - "https://rpc.devnet.citrea.xyz" - ], - "faucets": [ - "https://citrea.xyz/bridge" - ], - "nativeCurrency": { - "name": "Citrea BTC", - "symbol": "cBTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://citrea.xyz", - "shortName": "citrea-devnet", - "chainId": 62298, - "networkId": 62298, - "icon": "citrea", - "explorers": [ - { - "name": "Citrea Devnet Explorer", - "url": "https://explorer.devnet.citrea.xyz", - "icon": "citrea", - "standard": "EIP3091" - } - ] - }, - { - "name": "PLYR TAU Testnet", - "chain": "PLYR", - "icon": "plyr", - "rpc": [ - "https://subnets.avax.network/plyr/testnet/rpc" - ], - "faucets": [ - "https://faucet.avax.network/?subnet=plyr" - ], - "nativeCurrency": { - "name": "PLYR", - "symbol": "PLYR", - "decimals": 18 - }, - "infoURL": "https://plyr.network", - "shortName": "plyr-tau-testnet", - "chainId": 62831, - "networkId": 62831, - "slip44": 1, - "explorers": [ - { - "name": "Avalanche Subnet Testnet Explorer", - "url": "https://subnets-test.avax.network/plyr", - "standard": "EIP3091" - } - ] - }, - { - "name": "Proof of Play - Apex", - "chainId": 70700, - "shortName": "pop-apex", - "chain": "ETH", - "networkId": 70700, - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "rpc": [ - "https://rpc.apex.proofofplay.com" - ], - "faucets": [], - "explorers": [ - { - "name": "Proof of Play Apex Explorer", - "url": "https://explorer.apex.proofofplay.com", - "icon": "pop-apex", - "standard": "EIP3091" - } - ], - "infoURL": "https://proofofplay.com", - "icon": "pop-apex", - "parent": { - "type": "L2", - "chain": "eip155-42161", - "bridges": [ - { - "url": "https://bridge.arbitrum.io" - }, - { - "url": "https://relay.link/bridge/apex/" - } - ] - } - }, - { - "name": "CAGA crypto Ankara testnet", - "chain": "Ankara", - "rpc": [ - "https://www.ankara-cagacrypto.com", - "wss://wss.ankara-cagacrypto.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Caga", - "symbol": "CAGA", - "decimals": 18 - }, - "infoURL": "https://www.cagacrypto.com/", - "shortName": "caga", - "chainId": 72778, - "networkId": 72778, - "icon": "ankaracaga", - "explorers": [ - { - "name": "ankara", - "url": "https://explorer.ankara-cagacrypto.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "ICB Testnet", - "chain": "ICBT", - "icon": "icbnetwork", - "rpc": [ - "https://rpc1-testnet.icbnetwork.info/", - "https://rpc2-testnet.icbnetwork.info/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ICB Testnet Token", - "symbol": "ICBT", - "decimals": 18 - }, - "infoURL": "https://icb.network", - "shortName": "ICBT", - "chainId": 73114, - "networkId": 73114, - "explorers": [ - { - "name": "ICB Tesnet Explorer", - "url": "https://testnet.icbscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "ICB Network", - "chain": "ICB", - "icon": "icbnetwork", - "rpc": [ - "https://rpc1-mainnet.icbnetwork.info/", - "https://rpc2-mainnet.icbnetwork.info/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ICB Native Token", - "symbol": "ICBX", - "decimals": 18 - }, - "infoURL": "https://icb.network", - "shortName": "ICBX", - "chainId": 73115, - "networkId": 73115, - "explorers": [ - { - "name": "ICB Explorer", - "url": "https://icbscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "GEEK Verse Mainnet", - "chain": "GEEK", - "rpc": [ - "https://rpc.geekout-pte.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 - }, - "infoURL": "https://www.geekout-pte.com", - "shortName": "GEEK", - "chainId": 75512, - "networkId": 75512, - "explorers": [ - { - "name": "Geek Explorer", - "url": "https://explorer.geekout-pte.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "GEEK Verse Testnet", - "chain": "GEEK Test", - "rpc": [ - "https://rpc-testnet.geekout-pte.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Geek", - "symbol": "GEEK", - "decimals": 18 - }, - "infoURL": "https://www.geekout-pte.com", - "shortName": "GEEK_Test", - "chainId": 75513, - "networkId": 75513, - "explorers": [ - { - "name": "Geek Testnet Explorer", - "url": "https://explorer-testnet.geekout-pte.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "BORAchain mainnet", - "chain": "BORA", - "icon": "bora", - "rpc": [ - "https://public-node.api.boraportal.com/bora/mainnet" - ], - "faucets": [], - "nativeCurrency": { - "name": "BGAS", - "symbol": "BGAS", - "decimals": 18 - }, - "infoURL": "https://www.boraportal.com", - "shortName": "BORAchain", - "chainId": 77001, - "networkId": 77001, - "slip44": 8217, - "explorers": [ - { - "name": "BORAchainscope", - "url": "https://scope.boraportal.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Amoy", - "title": "Polygon Amoy Testnet", - "chain": "Polygon", - "icon": "polygon", - "rpc": [ - "https://rpc-amoy.polygon.technology", - "https://polygon-amoy-bor-rpc.publicnode.com", - "wss://polygon-amoy-bor-rpc.publicnode.com" - ], - "faucets": [ - "https://faucet.polygon.technology/" - ], - "nativeCurrency": { - "name": "MATIC", - "symbol": "MATIC", - "decimals": 18 - }, - "infoURL": "https://polygon.technology/", - "shortName": "polygonamoy", - "chainId": 80002, - "networkId": 80002, - "slip44": 1, - "explorers": [ - { - "name": "polygonamoy", - "url": "https://www.oklink.com/amoy", - "standard": "EIP3091" - } - ] - }, - { - "name": "ZEDXION", - "chain": "ZEDXION", - "icon": "zedx", - "rpc": [ - "https://mainnet-rpc.zedscan.net" - ], - "faucets": [], - "nativeCurrency": { - "name": "Zedxion", - "symbol": "ZEDX", - "decimals": 9 - }, - "infoURL": "https://docs.zedscan.net", - "shortName": "ZEDX", - "chainId": 83872, - "networkId": 83872, - "explorers": [ - { - "name": "Zedscan", - "url": "http://zedscan.net", - "standard": "EIP3091" - } - ] - }, - { - "name": "Inoai Network", - "chain": "INOAI", - "faucets": [], - "rpc": [ - "https://inoai-network.com" - ], - "nativeCurrency": { - "name": "Inoai", - "symbol": "INO", - "decimals": 18 - }, - "infoURL": "https://inoai.info", - "shortName": "INOAI", - "chainId": 88559, - "networkId": 88559, - "icon": "inoai", - "explorers": [ - { - "name": "inoai live", - "url": "https://inoai.live", - "standard": "none" - } - ] - }, - { - "name": "Unit Zero Testnet", - "chain": "Unit Zero", - "rpc": [ - "https://rpc-testnet.unit0.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://units.network", - "shortName": "unit0-testnet", - "chainId": 88817, - "networkId": 88817, - "explorers": [ - { - "name": "explorer-testnet", - "url": "https://explorer-testnet.unit0.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Unit Zero Stagenet", - "chain": "Unit Zero", - "rpc": [ - "https://rpc-stagenet.unit0.dev" - ], - "faucets": [], - "nativeCurrency": { - "name": "UNIT0", - "symbol": "UNIT0", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://units.network", - "shortName": "unit0-stagenet", - "chainId": 88819, - "networkId": 88819, - "explorers": [ - { - "name": "explorer-stagenet", - "url": "https://explorer-stagenet.unit0.dev", - "standard": "EIP3091" - } - ] - }, - { - "name": "Chiliz Spicy Testnet", - "chain": "CHZ", - "rpc": [ - "https://spicy-rpc.chiliz.com" - ], - "faucets": [ - "https://spicy-faucet.chiliz.com", - "https://tatum.io/faucets/chiliz" - ], - "nativeCurrency": { - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 18 - }, - "icon": "chilizspicy", - "infoURL": "https://www.chiliz.com/en/chain", - "shortName": "chzspicy", - "chainId": 88882, - "networkId": 88882, - "slip44": 1, - "explorers": [ - { - "name": "spicy-explorer", - "url": "https://testnet.chiliscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "F(x)Core Testnet Network", - "chain": "Fxcore", - "rpc": [ - "https://testnet-fx-json-web3.functionx.io:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "Function X", - "symbol": "FX", - "decimals": 18 - }, - "infoURL": "https://functionx.io/", - "shortName": "dhobyghaut", - "chainId": 90001, - "networkId": 90001, - "icon": "fxcore" - }, - { - "name": "Camp Testnet", - "chain": "ETH", - "icon": "camp", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" - ], - "faucets": [ - "https://www.campnetwork.xyz/faucet" - ], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://campaign-1.gitbook.io/camp-technical-docså", - "shortName": "camp", - "chainId": 90354, - "networkId": 90354, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://camp-testnet-bridge.vercel.app/" - } - ] - } - }, - { - "name": "Green Chain Testnet", - "chain": "Green Chain", - "icon": "greenchain", - "rpc": [ - "https://node.greenchain.app/rpc/" - ], - "faucets": [], - "nativeCurrency": { - "name": "GREEN", - "symbol": "GREEN", - "decimals": 18 - }, - "infoURL": "https://www.greenchain.app", - "shortName": "greenchain", - "chainId": 97531, - "networkId": 97531, - "explorers": [ - { - "name": "Green Chain Explorer", - "url": "https://explorer.greenchain.app", - "standard": "EIP3091" - } - ] - }, - { - "name": "OptimusZ7 Testnet", - "chain": "OptimusZ7", - "icon": "OZ7Icon", - "rpc": [ - "https://testnet-rpc.optimusz7.com" - ], - "faucets": [ - "https://faucet.optimusz7.com" - ], - "nativeCurrency": { - "name": "OptimusZ7", - "symbol": "OZ7", - "decimals": 18 - }, - "infoURL": "http://optimusz7.com", - "shortName": "OZ7t", - "chainId": 97970, - "networkId": 97970, - "explorers": [ - { - "name": "OptimusZ7 Testnet Explorer", - "url": "https://testnet.optimusz7.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Ebi Chain", - "title": "Ebi Chain", - "chain": "Ebi", - "rpc": [ - "https://rpc.ebi.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ebi.xyz", - "shortName": "ebi", - "chainId": 98881, - "networkId": 98881, - "status": "incubating" - }, - { - "name": "QuarkChain L2 Mainnet", - "chain": "QuarkChain", - "rpc": [ - "https://mainnet-l2-ethapi.quarkchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-l2", - "chainId": 100011, - "networkId": 100011, - "parent": { - "type": "L2", - "chain": "eip155-100000" - } - }, - { - "name": "Creditcoin Testnet", - "chain": "CTC", - "icon": "creditcoin", - "rpc": [ - "https://rpc.cc3-testnet.creditcoin.network" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "nativeCurrency": { - "name": "Testnet CTC", - "symbol": "tCTC", - "decimals": 18 - }, - "infoURL": "https://creditcoin.org", - "shortName": "ctctest", - "chainId": 102031, - "networkId": 102031, - "faucets": [], - "explorers": [ - { - "name": "blockscout", - "url": "https://creditcoin-testnet.blockscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "KaspaClassic Mainnet", - "chain": "KaspaClassic", - "icon": "kaspaclassic", - "rpc": [ - "https://api.kaspaclassic.world/", - "http://80.178.101.118:8000/" - ], - "faucets": [], - "nativeCurrency": { - "name": "KaspaClassic", - "symbol": "CAS", - "decimals": 18 - }, - "infoURL": "https://kaspaclassic.com/", - "shortName": "cas", - "chainId": 104566, - "networkId": 104566, - "explorers": [ - { - "name": "KaspaClassic Explorer", - "url": "https://explorer.kaspaclassic.world", - "standard": "none" - } - ] - }, - { - "name": "Stratis Mainnet", - "chain": "Stratis", - "rpc": [ - "https://rpc.stratisevm.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Stratis", - "symbol": "STRAX", - "decimals": 18 - }, - "infoURL": "https://www.stratisplatform.com", - "shortName": "stratis", - "chainId": 105105, - "networkId": 105105, - "icon": "stratis", - "explorers": [ - { - "name": "Stratis Explorer", - "url": "https://explorer.stratisevm.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "QuarkChain L2 Testnet", - "chain": "QuarkChain", - "rpc": [ - "https://testnet-l2-ethapi.quarkchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "QKC", - "symbol": "QKC", - "decimals": 18 - }, - "infoURL": "https://www.quarkchain.io", - "shortName": "qkc-l2-t", - "chainId": 110011, - "networkId": 110011, - "parent": { - "type": "L2", - "chain": "eip155-110000" - } - }, - { - "name": "re.al", - "title": "re.al Real-World Assets network", - "chain": "re.al", - "rpc": [ - "https://real.drpc.org", - "wss://real.drpc.org" - ], - "nativeCurrency": { - "name": "re.al Ether", - "symbol": "reETH", - "decimals": 18 - }, - "infoURL": "https://re.al", - "faucets": [], - "shortName": "re-al", - "chainId": 111188, - "networkId": 111188, - "slip44": 60, - "icon": "real", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.re.al", - "icon": "real", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://re.al/bridge" - }, - { - "url": "https://bridge.gelato.network/bridge/real" - } - ] - } - }, - { - "name": "Odyssey Chain (Testnet)", - "chain": "DIONE", - "rpc": [ - "https://testnode.dioneprotocol.com/ext/bc/D/rpc" - ], - "faucets": [ - "https://faucet.dioneprotocol.com/" - ], - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://www.dioneprotocol.com/", - "shortName": "DIONE", - "chainId": 131313, - "networkId": 131313, - "icon": "odyssey", - "nativeCurrency": { - "name": "DIONE", - "symbol": "DIONE", - "decimals": 18 - } - }, - { - "name": "MagApe Testnet", - "title": "MagApeChain", - "chain": "MagApe", - "rpc": [ - "https://testnet-api.magape.io/chain/" - ], - "faucets": [], - "nativeCurrency": { - "name": "MagApe", - "symbol": "MAG", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://magape.io", - "shortName": "mag", - "chainId": 141319, - "networkId": 141319, - "icon": "magape", - "explorers": [ - { - "name": "etherscan", - "url": "http://testnet-api.magape.io:81", - "icon": "magape", - "standard": "EIP3091" - } - ] - }, - { - "name": "PlayFi Mainnet", - "chain": "PLAY", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Play", - "symbol": "PLAY", - "decimals": 18 - }, - "infoURL": "https://www.playfi.ai/", - "shortName": "playfi", - "chainId": 161212, - "networkId": 161212, - "explorers": [], - "status": "incubating" - }, - { - "name": "Eclat Mainnet", - "chain": "Eclat", - "icon": "eclat", - "rpc": [ - "https://mainnet-rpc.eclatscan.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Eclat", - "symbol": "ECLAT", - "decimals": 18 - }, - "infoURL": "https://eclatscan.com", - "shortName": "ECLAT", - "chainId": 165279, - "networkId": 165279, - "explorers": [ - { - "name": "Eclat Mainnet Explorer", - "url": "https://eclatscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Mainnet", - "chain": "ETH", - "status": "active", - "icon": "taiko", - "rpc": [ - "https://rpc.mainnet.taiko.xyz", - "wss://ws.mainnet.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-mainnet", - "chainId": 167000, - "networkId": 167000, - "explorers": [ - { - "name": "etherscan", - "url": "https://taikoscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Taiko Hekla L2", - "chain": "ETH", - "status": "active", - "icon": "taiko", - "rpc": [ - "https://rpc.hekla.taiko.xyz", - "wss://ws.hekla.taiko.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://taiko.xyz", - "shortName": "tko-hekla", - "chainId": 167009, - "networkId": 167009, - "explorers": [ - { - "name": "blockscout", - "url": "https://blockscoutapi.hekla.taiko.xyz", - "standard": "EIP3091" - }, - { - "name": "routescan", - "url": "https://hekla.taikoscan.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "Mind Network Testnet", - "chain": "FHET", - "rpc": [ - "https://rpc-testnet.mindnetwork.xyz", - "wss://rpc-testnet.mindnetwork.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "FHE", - "symbol": "FHE", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://mindnetwork.xyz", - "shortName": "fhet", - "chainId": 192940, - "networkId": 192940 - }, - { - "name": "xFair.AI Testnet", - "chain": "FAIT", - "rpc": [ - "https://rpc_testnet.xfair.ai", - "wss://rpc_testnet.xfair.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "FAI", - "symbol": "FAI", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://xfair.ai", - "shortName": "fait", - "chainId": 200000, - "networkId": 200000 - }, - { - "name": "Bitlayer Mainnet", - "chain": "Bitlayer", - "rpc": [ - "https://rpc.bitlayer.org", - "https://rpc.bitlayer-rpc.com", - "https://rpc.ankr.com/bitlayer", - "https://rpc-bitlayer.rockx.com", - "wss://ws.bitlayer.org", - "wss://ws.bitlayer-rpc.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://docs.bitlayer.org/", - "shortName": "btr", - "chainId": 200901, - "networkId": 200901, - "slip44": 1, - "icon": "bitlayer", - "explorers": [ - { - "name": "bitlayer mainnet scan", - "url": "https://www.btrscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "YMTECH-BESU Testnet", - "chain": "YMTECH-BESU", - "rpc": [ - "http://39.119.118.216:8545" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.ymtech.co.kr", - "shortName": "YMTECH-BESU", - "chainId": 202401, - "networkId": 202401, - "explorers": [ - { - "name": "YMTECH-BESU Chainlens", - "url": "http://39.119.118.198", - "standard": "none" - } - ] - }, - { - "name": "Auroria Testnet", - "title": "Stratis Testnet Auroria", - "chain": "Auroria", - "rpc": [ - "https://auroria.rpc.stratisevm.com" - ], - "faucets": [ - "https://auroria.faucet.stratisevm.com" - ], - "nativeCurrency": { - "name": "Auroria Stratis", - "symbol": "tSTRAX", - "decimals": 18 - }, - "infoURL": "https://www.stratisplatform.com", - "shortName": "auroria", - "chainId": 205205, - "networkId": 205205, - "icon": "auroria", - "explorers": [ - { - "name": "Auroria Testnet Explorer", - "url": "https://auroria.explorer.stratisevm.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "GitAGI Atlas Testnet", - "chain": "GitAGI", - "rpc": [ - "https://rpc.gitagi.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "GitAGI", - "symbol": "tGAGI", - "decimals": 18 - }, - "infoURL": "https://gitagi.org/", - "shortName": "atlas", - "chainId": 210049, - "networkId": 210049 - }, - { - "name": "HydraDX", - "chain": "HDX", - "rpc": [ - "https://rpc.hydradx.cloud", - "wss://rpc.hydradx.cloud" - ], - "faucets": [], - "nativeCurrency": { - "name": "Wrapped ETH", - "symbol": "WETH", - "decimals": 18 - }, - "infoURL": "https://hydradx.io", - "shortName": "hdx", - "chainId": 222222, - "networkId": 222222, - "icon": "hydradx", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.evm.hydration.cloud", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeepL Mainnet", - "chain": "DEEPL", - "rpc": [ - "https://rpc.deeplnetwork.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://deeplnetwork.org", - "shortName": "deepl", - "chainId": 222555, - "networkId": 222555, - "icon": "deepl", - "explorers": [ - { - "name": "DeepL Mainnet Explorer", - "url": "https://scan.deeplnetwork.org", - "icon": "deepl", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeepL Testnet", - "chain": "DEEPL", - "rpc": [ - "https://testnet.deeplnetwork.org" - ], - "faucets": [ - "https://faucet.deeplnetwork.org" - ], - "nativeCurrency": { - "name": "DeepL", - "symbol": "DEEPL", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://deeplnetwork.org", - "shortName": "tdeepl", - "chainId": 222666, - "networkId": 222666, - "icon": "deepl", - "explorers": [ - { - "name": "DeepL Testnet Explorer", - "url": "https://testnet-scan.deeplnetwork.org", - "icon": "deepl", - "standard": "EIP3091" - } - ] - }, - { - "name": "Orange Chain Testnet", - "title": "Orange Chain Testnet", - "chain": "Orange Chain", - "rpc": [ - "https://testnet-rpc.orangechain.xyz" - ], - "faucets": [], - "nativeCurrency": { - "name": "BTC", - "symbol": "BTC", - "decimals": 18 - }, - "infoURL": "https://orangechain.xyz", - "shortName": "Orange-Chain-Testnet", - "chainId": 240515, - "networkId": 240515, - "icon": "orange", - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-scan.orangechain.xyz", - "icon": "orange", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eclat Testnet", - "chain": "Eclat", - "icon": "eclat", - "rpc": [ - "https://testnet-rpc.eclatscan.com" - ], - "faucets": [ - "https://faucet.eclatscan.com" - ], - "nativeCurrency": { - "name": "Eclat Testnet", - "symbol": "ECLAT", - "decimals": 18 - }, - "infoURL": "https://testnet-explorer.eclatscan.com", - "shortName": "tECLAT", - "chainId": 262371, - "networkId": 262371, - "explorers": [ - { - "name": "Eclat Testnet Explorer", - "url": "https://testnet-explorer.eclatscan.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Zillion Sepolia Testnet", - "status": "active", - "chain": "ETH", - "rpc": [ - "https://sepolia.zillnet.io/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zillnet.io", - "shortName": "zillsep", - "chainId": 282828, - "networkId": 282828, - "slip44": 1, - "icon": "zillion", - "explorers": [ - { - "name": "zillscout", - "url": "https://sepolia.zillnet.io", - "icon": "zillion", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - } - }, - { - "name": "One World Chain Mainnet", - "chain": "One World Chain", - "icon": "oneWorldChainIcon", - "rpc": [ - "https://mainnet-rpc.oneworldchain.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 - }, - "infoURL": "https://oneworldchain.org", - "shortName": "OWCTm", - "chainId": 309075, - "networkId": 309075, - "explorers": [ - { - "name": "One World Chain Mainnet Explorer", - "url": "https://mainnet.oneworldchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "SaharaAI Testnet", - "chain": "Sahara", - "rpc": [ - "https://testnet.saharalabs.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://saharalabs.ai", - "shortName": "saharatest", - "chainId": 313313, - "networkId": 313313, - "icon": "sahara", - "explorers": [ - { - "name": "Testnet Scan", - "url": "https://explorer.saharaa.info", - "standard": "EIP3091" - } - ] - }, - { - "name": "Parex Mainnet", - "title": "Parex Mainnet", - "chain": "Parex", - "rpc": [ - "https://mainnet-rpc.parex.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "PAREX", - "symbol": "PRX", - "decimals": 18 - }, - "infoURL": "https://parex.network", - "shortName": "parex", - "chainId": 322202, - "networkId": 322202, - "icon": "parexmain", - "explorers": [ - { - "name": "Parex Mainnet Explorer", - "url": "https://scan.parex.network", - "icon": "parexmain", - "standard": "EIP3091" - } - ] - }, - { - "name": "UPchain Testnet", - "chain": "UPchain", - "rpc": [ - "https://rpc-testnet.uniport.network" - ], - "faucets": [ - "https://faucet-testnet.uniport.network" - ], - "nativeCurrency": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "infoURL": "https://uniport.network", - "shortName": "UPchain-testnet", - "chainId": 336655, - "networkId": 336655, - "icon": "up", - "explorers": [ - { - "name": "UPchain Testnet Explorer", - "url": "https://explorer-testnet.uniport.network", - "icon": "up", - "standard": "EIP3091" - } - ] - }, - { - "name": "UPchain Mainnet", - "chain": "UPchain", - "rpc": [ - "https://rpc.uniport.network" - ], - "nativeCurrency": { - "name": "UBTC", - "symbol": "UBTC", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "infoURL": "https://uniport.network", - "shortName": "UPchain-mainnet", - "chainId": 336666, - "networkId": 336666, - "icon": "up", - "explorers": [ - { - "name": "UPchain Mainnet Explorer", - "url": "https://explorer.uniport.network", - "icon": "up", - "standard": "EIP3091" - } - ] - }, - { - "name": "Bitfinity Network Mainnet", - "chain": "BFT", - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "rpc": [ - "https://mainnet.bitfinity.network" - ], - "faucets": [], - "nativeCurrency": { - "name": "Bitfinity Token", - "symbol": "BFT", - "decimals": 18 - }, - "infoURL": "https://bitfinity.network", - "shortName": "bitfinity-mainnet", - "chainId": 355110, - "networkId": 355110, - "explorers": [ - { - "name": "Bitfinity Mainnet Block Explorer", - "url": "https://explorer.mainnet.bitfinity.network", - "icon": "bitfinity", - "standard": "EIP3091" - } - ] - }, - { - "name": "LAVITA Mainnet", - "chain": "LAVITA", - "icon": "lavita", - "rpc": [ - "https://tsub360890-eth-rpc.thetatoken.org/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "vTFUEL", - "symbol": "vTFUEL", - "decimals": 18 - }, - "infoURL": "https://www.lavita.ai", - "shortName": "lavita-mainnet", - "chainId": 360890, - "networkId": 360890, - "explorers": [ - { - "name": "LAVITA Mainnet Explorer", - "url": "https://tsub360890-explorer.thetatoken.org", - "icon": "lavita", - "standard": "EIP3091" - } - ] - }, - { - "name": "AIE Testnet", - "chain": "AIE", - "rpc": [ - "https://rpc1-testnet.aiechain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "AIE", - "symbol": "tAIE", - "decimals": 18 - }, - "infoURL": "https://testnet.aiescan.io", - "shortName": "aiet", - "chainId": 413413, - "networkId": 413413, - "icon": "aie", - "explorers": [ - { - "name": "aiescan-testnet", - "icon": "aie", - "url": "https://testnet.aiescan.io", - "standard": "none" - } - ] - }, - { - "name": "Playdapp Network", - "chain": "PDA", - "icon": "pda", - "rpc": [ - "https://subnets.avax.network/playdappne/mainnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Playdapp", - "symbol": "PDA", - "decimals": 18 - }, - "infoURL": "https://playdapp.io", - "shortName": "PDA", - "chainId": 504441, - "networkId": 504441, - "explorers": [ - { - "name": "Playdapp Explorer", - "url": "https://subnets.avax.network/playdappne", - "standard": "EIP3091" - } - ] - }, - { - "name": "DoCoin Community Chain", - "title": "DoCoin Community Chain", - "chain": "DoCoin", - "rpc": [ - "https://rpc.docoin.shop" - ], - "faucets": [], - "nativeCurrency": { - "name": "DO", - "symbol": "DCT", - "decimals": 18 - }, - "infoURL": "https://docoin.network", - "shortName": "DoCoin", - "chainId": 526916, - "networkId": 526916, - "explorers": [ - { - "name": "DoCoin Community Chain Explorer", - "url": "https://explorer.docoin.shop", - "standard": "EIP3091" - } - ] - }, - { - "name": "One World Chain Testnet", - "chain": "One World Chain", - "icon": "oneWorldChainIcon", - "rpc": [ - "https://testnet-rpc.oneworldchain.org" - ], - "faucets": [ - "https://faucet.oneworldchain.org" - ], - "nativeCurrency": { - "name": "OWCT", - "symbol": "OWCT", - "decimals": 18 - }, - "infoURL": "https://oneworldchain.org", - "shortName": "OWCTt", - "chainId": 552981, - "networkId": 552981, - "explorers": [ - { - "name": "One World Chain Testnet Explorer", - "url": "https://testnet.oneworldchain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Eclipse Testnet", - "chain": "ECLIPSE", - "rpc": [ - "https://subnets.avax.network/eclipsecha/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Eclipse", - "symbol": "ECLPS", - "decimals": 18 - }, - "infoURL": "http://eclipsenet.io", - "shortName": "eclipset", - "chainId": 555666, - "networkId": 555666, - "explorers": [ - { - "name": "ECLIPSE Explorer", - "url": "https://subnets-test.avax.network/eclipsecha", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xai Mainnet", - "chainId": 660279, - "shortName": "xai", - "chain": "XAI", - "networkId": 660279, - "nativeCurrency": { - "name": "Xai", - "symbol": "XAI", - "decimals": 18 - }, - "rpc": [ - "https://xai-chain.net/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Blockscout", - "url": "https://explorer.xai-chain.net", - "standard": "EIP3091" - } - ], - "infoURL": "https://xai.games" - }, - { - "name": "Won Network", - "chainId": 686868, - "shortName": "WonChain", - "chain": "WON", - "icon": "won", - "networkId": 686868, - "nativeCurrency": { - "name": "Won", - "symbol": "WON", - "decimals": 18 - }, - "rpc": [ - "https://rpc.wonnetwork.org" - ], - "faucets": [ - "https://faucet.wondollars.org" - ], - "explorers": [ - { - "name": "Won Explorer", - "url": "https://scan.wonnetwork.org", - "standard": "EIP3091" - } - ], - "infoURL": "https://wonnetwork.org" - }, - { - "name": "Galadriel Devnet", - "chain": "Galadriel", - "rpc": [ - "https://devnet.galadriel.com" - ], - "faucets": [ - "https://docs.galadriel.com/faucet" - ], - "nativeCurrency": { - "name": "Galadriel Devnet token", - "symbol": "GAL", - "decimals": 18 - }, - "infoURL": "https://galadriel.com", - "shortName": "galadriel-devnet", - "chainId": 696969, - "networkId": 696969, - "explorers": [ - { - "name": "Galadriel Explorer", - "url": "https://explorer.galadriel.com", - "standard": "none" - } - ] - }, - { - "name": "Tiltyard Mainnet Subnet", - "chain": "TILTYARD", - "rpc": [ - "https://subnets.avax.network/tiltyard/mainnet/rpc" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "TILT", - "symbol": "TILT", - "decimals": 18 - }, - "infoURL": "https://play.tiltyard.gg/", - "shortName": "tiltyardmainnet", - "chainId": 710420, - "networkId": 710420, - "explorers": [ - { - "name": "TILTYARD Explorer", - "url": "https://subnets.avax.network/tiltyard", - "standard": "EIP3091" - } - ] - }, - { - "name": "Hemi Sepolia", - "chain": "ETH", - "rpc": [ - "https://testnet.rpc.hemi.network/rpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://hemi.xyz", - "shortName": "hemi-sep", - "chainId": 743111, - "networkId": 743111, - "icon": "hemi", - "explorers": [ - { - "name": "blockscout", - "url": "https://testnet.explorer.hemi.xyz", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111" - }, - "status": "active" - }, - { - "name": "Lamina1 Testnet", - "chain": "Lamina1 Testnet", - "rpc": [ - "https://subnets.avax.network/lamina1tes/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Lamina1 Test", - "symbol": "L1T", - "decimals": 18 - }, - "infoURL": "https://fuji.lamina1.com/", - "shortName": "lamina1test", - "chainId": 764984, - "networkId": 764984, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Test Explorer", - "url": "https://subnets-test.avax.network/lamina1tes", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lamina1 Identity Testnet", - "chain": "Lamina1 Identity Testnet", - "rpc": [ - "https://subnets.avax.network/lamina1id/testnet/rpc" - ], - "features": [ - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "L1ID Test", - "symbol": "L1IDT", - "decimals": 18 - }, - "infoURL": "https://fuji.lamina1.com/", - "shortName": "lamina1idtest", - "chainId": 767368, - "networkId": 767368, - "slip44": 1, - "explorers": [ - { - "name": "Lamina1 Identity Testnet Explorer", - "url": "https://subnets-test.avax.network/lamina1id", - "standard": "EIP3091" - } - ] - }, - { - "name": "BIZ Smart Chain Testnet", - "chain": "BIZT Testnet", - "rpc": [ - "https://rpc-testnet.bizex.io/" - ], - "faucets": [], - "nativeCurrency": { - "name": "tBIZT", - "symbol": "tBIZT", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://www.biztoken.io/", - "shortName": "bizt-testnet", - "chainId": 808080, - "networkId": 808080, - "slip44": 1, - "icon": "biz", - "explorers": [ - { - "name": "BIZ Smart Chain Testnet Explorer", - "url": "https://testnet.btscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "zkLink Nova Sepolia Testnet", - "chain": "ETH", - "rpc": [ - "https://sepolia.rpc.zklink.io", - "wss://sepolia.rpc.zklink.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zklink.io", - "shortName": "zklink-nova-sepolia", - "chainId": 810181, - "networkId": 810181, - "slip44": 1, - "icon": "zklink-nova", - "explorers": [ - { - "name": "zkLink Nova Block Explorer", - "url": "https://sepolia.explorer.zklink.io", - "icon": "zklink-nova", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-59141", - "bridges": [ - { - "url": "https://sepolia.portal.zklink.io" - } - ] - } - }, - { - "name": "zkLink Nova Goerli Testnet", - "chain": "ETH", - "rpc": [ - "https://goerli.rpc.zklink.io", - "wss://goerli.rpc.zklink.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://zklink.io", - "shortName": "zklink-nova-goerli", - "chainId": 810182, - "networkId": 810182, - "slip44": 1, - "icon": "zklink-nova", - "explorers": [ - { - "name": "zkLink Nova Block Explorer", - "url": "https://goerli.explorer.zklink.io", - "icon": "zklink-nova", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-59140", - "bridges": [ - { - "url": "https://goerli.portal.zklink.io" - } - ] - } - }, - { - "name": "TSC Testnet", - "chain": "Trust Smart Chain Testnet", - "rpc": [ - "https://testnet.tscscan.io/testrpc" - ], - "faucets": [], - "nativeCurrency": { - "name": "TAS", - "symbol": "tTAS", - "decimals": 18 - }, - "infoURL": "https://www.trias.one", - "shortName": "tTSC", - "icon": "netx", - "chainId": 820522, - "networkId": 820025, - "explorers": [ - { - "name": "tscscan", - "url": "https://testnet.tscscan.io", - "icon": "netxscan", - "standard": "none" - } - ] - }, - { - "name": "PRM Testnet", - "chain": "prm", - "icon": "prmIcon", - "rpc": [ - "https://testnet-rpc.prmscan.org" - ], - "faucets": [ - "https://faucet.prmscan.org" - ], - "nativeCurrency": { - "name": "Primal Network", - "symbol": "PRM", - "decimals": 18 - }, - "infoURL": "https://primalnetwork.org", - "shortName": "prmtest", - "chainId": 839320, - "networkId": 839320, - "explorers": [ - { - "name": "Primal Network Testnet", - "url": "https://testnet-explorer.prmscan.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "REXX Mainnet", - "title": "REXX Mainnet", - "chain": "REXX", - "rpc": [ - "https://rpc.rexxnetwork.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "REXX", - "symbol": "REXX", - "decimals": 18 - }, - "infoURL": "https://rexxnetwork.com", - "shortName": "REXX", - "chainId": 888882, - "networkId": 888882, - "explorers": [ - { - "name": "REXX Mainnet Explorer", - "url": "https://rexxnetwork.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Forma", - "chain": "Forma", - "rpc": [ - "https://rpc.forma.art" - ], - "faucets": [], - "nativeCurrency": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://forma.art", - "shortName": "forma", - "chainId": 984122, - "networkId": 984122, - "icon": "forma", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.forma.art", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Forma Sketchpad", - "chain": "Forma", - "rpc": [ - "https://rpc.sketchpad-1.forma.art" - ], - "faucets": [], - "nativeCurrency": { - "name": "TIA", - "symbol": "TIA", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://forma.art", - "shortName": "sketchpad", - "chainId": 984123, - "networkId": 984123, - "icon": "forma", - "explorers": [ - { - "name": "blockscout", - "url": "https://explorer.sketchpad-1.forma.art", - "icon": "blockscout", - "standard": "EIP3091" - } - ] - }, - { - "name": "Netmind Chain Testnet", - "title": "NetMind Chain Testnet", - "chain": "NetMind", - "rpc": [ - "https://testblock.protago-dev.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "NMT", - "symbol": "NMT", - "decimals": 18 - }, - "infoURL": "https://netmind.ai", - "shortName": "nmtTest", - "chainId": 1100789, - "networkId": 1100789, - "icon": "netmind", - "explorers": [ - { - "name": "NetMind Testnet Explorer", - "url": "https://testbrower.protago-dev.com", - "icon": "netmind", - "standard": "EIP3091" - } - ] - }, - { - "name": "Automata Testnet", - "chain": "Automata Testnet", - "rpc": [], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://ata.network", - "shortName": "automatatest", - "chainId": 1398243, - "networkId": 1398243, - "icon": "automata", - "explorers": [] - }, - { - "name": "PlayFi Albireo Testnet", - "chain": "ETH", - "rpc": [ - "https://albireo-rpc.playfi.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.playfi.ai/", - "shortName": "alberio", - "chainId": 1612127, - "networkId": 1612127, - "slip44": 1, - "explorers": [ - { - "name": "PlayFi Block Explorer", - "url": "https://albireo-explorer.playfi.ai", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://portal.playfi.ai/bridge" - } - ] - } - }, - { - "name": "SaharaAI Network", - "chain": "Sahara", - "rpc": [ - "https://mainnet.saharalabs.ai" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAHARA", - "symbol": "SAH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://saharalabs.ai", - "shortName": "sahara", - "chainId": 3132023, - "networkId": 3132023, - "icon": "sahara", - "explorers": [] - }, - { - "name": "Funki Sepolia Sandbox", - "chain": "ETH", - "icon": "funki", - "rpc": [ - "https://funki-testnet.alt.technology" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://funkichain.com", - "shortName": "funkisepolia", - "chainId": 3397901, - "networkId": 3397901, - "explorers": [ - { - "name": "Funki Sepolia Sandbox Explorer", - "url": "https://sepolia-sandbox.funkichain.com", - "standard": "none" - } - ] - }, - { - "name": "Manta Pacific Sepolia Testnet", - "chain": "Manta Pacific", - "rpc": [ - "https://pacific-rpc.sepolia-testnet.manta.network/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "infoURL": "https://manta-testnet.caldera.dev/", - "shortName": "mantaSepoliaTestnet", - "chainId": 3441006, - "networkId": 3441006, - "slip44": 1, - "icon": "manta", - "explorers": [ - { - "name": "manta-testnet Explorer", - "url": "https://pacific-explorer.sepolia-testnet.manta.network", - "standard": "EIP3091" - } - ] - }, - { - "name": "NumBlock Chain", - "chain": "NumBlock", - "rpc": [ - "https://rpc-mainnet.numblock.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "NUMB Token", - "symbol": "NUMB", - "decimals": 18 - }, - "infoURL": "https://numblock.org", - "shortName": "NUMB", - "chainId": 5112023, - "networkId": 5112023, - "icon": "NumBlock", - "explorers": [ - { - "name": "NumBlock Explorer", - "url": "https://mainnet.numblock.org", - "standard": "none", - "icon": "NumBlock" - } - ] - }, - { - "name": "Moonchain Geneva Testnet", - "chain": "MXC zkEVM", - "icon": "mxc", - "rpc": [ - "https://geneva-rpc.moonchain.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "Moonchain Geneva Testnet", - "symbol": "MXC", - "decimals": 18 - }, - "infoURL": "https://doc.mxc.com/docs/intro", - "shortName": "MXC", - "chainId": 5167004, - "networkId": 5167004, - "slip44": 1, - "explorers": [ - { - "name": "Moonchain Geneva Testnet", - "url": "https://geneva-explorer.moonchain.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Reactive Kopli", - "title": "Reactive Network Testnet Kopli", - "chain": "REACT", - "rpc": [ - "https://kopli-rpc.reactive.network", - "http://kopli-rpc.rkt.ink" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [ - "https://dev.reactive.network/docs/kopli-testnet#faucet" - ], - "nativeCurrency": { - "name": "Kopli React", - "symbol": "REACT", - "decimals": 18 - }, - "infoURL": "https://reactive.network", - "shortName": "kreact", - "icon": "reactive", - "chainId": 5318008, - "networkId": 5318008, - "explorers": [ - { - "name": "reactscan", - "url": "https://kopli.reactscan.net", - "standard": "none" - } - ] - }, - { - "name": "Astar zKyoto", - "shortName": "azkyt", - "title": "Astar zkEVM Testnet zKyoto", - "chain": "ETH", - "icon": "astarzk", - "rpc": [ - "https://rpc.startale.com/zkyoto", - "https://rpc.zkyoto.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://astar.network", - "chainId": 6038361, - "networkId": 6038361, - "explorers": [ - { - "name": "Blockscout zKyoto explorer", - "url": "https://astar-zkyoto.blockscout.com", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://portal.astar.network" - }, - { - "url": "https://bridge.gelato.network/bridge/astar-zkyoto" - } - ] - } - }, - { - "name": "Safe(AnWang) Mainnet", - "chain": "Safe(AnWang)", - "icon": "safe-anwang", - "rpc": [ - "https://rpc.anwang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 - }, - "infoURL": "https://www.anwang.com", - "shortName": "SafeMainnet", - "chainId": 6666665, - "networkId": 6666665, - "explorers": [ - { - "name": "Safe(AnWang) Explorer", - "url": "http://safe4.anwang.com", - "icon": "safe-anwang", - "standard": "EIP3091" - } - ] - }, - { - "name": "Safe(AnWang) Testnet", - "chain": "Safe(AnWang)", - "icon": "safe-anwang", - "rpc": [ - "https://rpc-testnet.anwang.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "SAFE(AnWang)", - "symbol": "SAFE", - "decimals": 18 - }, - "infoURL": "https://www.anwang.com", - "shortName": "SafeTestnet", - "chainId": 6666666, - "networkId": 6666666, - "explorers": [ - { - "name": "Safe(AnWang) Testnet Explorer", - "url": "http://safe4-testnet.anwang.com", - "icon": "safe-anwang", - "standard": "EIP3091" - } - ] - }, - { - "name": "Waterfall 8 Test Network", - "chain": "Waterfall Testnet8", - "rpc": [ - "https://rpc.testnet8.waterfall.network/" - ], - "faucets": [ - "https://faucet.testnet8.waterfall.network" - ], - "nativeCurrency": { - "name": "WATER", - "symbol": "WATER", - "decimals": 18 - }, - "features": [ - { - "name": "EIP1559" - } - ], - "infoURL": "https://waterfall.network", - "shortName": "waterfall", - "chainId": 8601152, - "networkId": 8601152, - "icon": "waterfall", - "explorers": [] - }, - { - "name": "ALIENX Hal Testnet", - "chain": "ALIENX Hal", - "rpc": [ - "https://hal-rpc.alienxchain.io/http", - "https://hal.rpc.caldera.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://alienxchain.io/home", - "shortName": "ALIENXHal", - "chainId": 10241025, - "networkId": 10241025, - "icon": "hal", - "explorers": [ - { - "name": "Hal Explorer", - "url": "https://hal-explorer.alienxchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "COTI Devnet", - "title": "COTI Devnet", - "chain": "COTI", - "icon": "coti", - "rpc": [ - "https://devnet.coti.io/rpc" - ], - "faucets": [ - "https://faucet.coti.io" - ], - "nativeCurrency": { - "name": "COTI2", - "symbol": "COTI2", - "decimals": 18 - }, - "infoURL": "https://coti.io/", - "shortName": "coti-devnet", - "chainId": 13068200, - "networkId": 13068200, - "explorers": [ - { - "name": "coti devnet explorer", - "url": "https://explorer-devnet.coti.io", - "icon": "ethernal", - "standard": "EIP3091" - } - ] - }, - { - "name": "Lambda Chain Testnet", - "chain": "Lambda Chain", - "rpc": [ - "https://testnrpc.lambda.im/" - ], - "faucets": [], - "nativeCurrency": { - "name": "ETH", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://lambda.im", - "shortName": "tlambda", - "chainId": 17000920, - "networkId": 17000920, - "slip44": 1, - "icon": "lambda-chain", - "explorers": [ - { - "name": "Lambda Chain Testnet Explorer", - "url": "https://testscan.lambda.im", - "standard": "EIP3091" - } - ] - }, - { - "name": "Stability Testnet", - "chain": "stabilityTestnet", - "icon": "stabilitytestnet", - "rpc": [ - "https://free.testnet.stabilityprotocol.com" - ], - "faucets": [], - "nativeCurrency": { - "name": "FREE", - "symbol": "FREE", - "decimals": 18 - }, - "infoURL": "https://stabilityprotocol.com", - "shortName": "stabilitytestnet", - "chainId": 20180427, - "networkId": 20180427, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://stability-testnet.blockscout.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "DeBank Sepolia Testnet", - "chain": "DeBank", - "rpc": [ - "https://sepolia-rpc.testnet.debank.com" - ], - "faucets": [], - "icon": "debank", - "nativeCurrency": { - "name": "DeBank USD", - "symbol": "USD", - "decimals": 18 - }, - "infoURL": "https://debank.com", - "shortName": "dbkse", - "chainId": 20240324, - "networkId": 20240324, - "slip44": 1, - "explorers": [ - { - "name": "DeBank Chain Explorer", - "url": "https://sepolia-explorer.testnet.debank.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "Swan Proxima Testnet", - "chain": "SWAN", - "rpc": [ - "https://rpc-proxima.swanchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "SWANETH", - "symbol": "sETH", - "decimals": 18 - }, - "infoURL": "https://swanchain.io/", - "shortName": "Proxima", - "chainId": 20241133, - "networkId": 20241133, - "explorers": [ - { - "name": "Swan Proxima Chain explorer", - "url": "https://proxima-explorer.swanchain.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kingdom Chain", - "chain": "KingdomChain", - "rpc": [ - "https://kingdomchain.observer/rpc" - ], - "features": [ - { - "name": "EIP155" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Kozi", - "symbol": "KOZI", - "decimals": 18 - }, - "infoURL": "https://www.beastkingdom.io/", - "shortName": "kchain", - "chainId": 39916801, - "networkId": 39916801, - "explorers": [ - { - "name": "TravelSong", - "url": "https://www.beastkingdom.io/travelsong", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Bakerloo (Sumida) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.bakerloo.autonity.org/", - "wss://rpc1.bakerloo.autonity.org/ws/" - ], - "faucets": [ - "https://faucet.autonity.org/" - ], - "nativeCurrency": { - "name": "Bakerloo Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "bakerloo-02", - "chainId": 65010002, - "networkId": 65010002, - "slip44": 1, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://bakerloo.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Autonity Piccadilly (Sumida) Testnet", - "chain": "AUT", - "rpc": [ - "https://rpc1.piccadilly.autonity.org/", - "wss://rpc1.piccadilly.autonity.org/ws/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Piccadilly Auton", - "symbol": "ATN", - "decimals": 18 - }, - "infoURL": "https://autonity.org/", - "shortName": "piccadilly-02", - "chainId": 65100002, - "networkId": 65100002, - "slip44": 1, - "icon": "autonity", - "explorers": [ - { - "name": "autonity-blockscout", - "url": "https://piccadilly.autonity.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "0xHash Testnet", - "chain": "HETH", - "icon": "ethereum", - "rpc": [ - "https://rpc-test.0xhash.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "0xHash", - "symbol": "HETH", - "decimals": 18 - }, - "infoURL": "https://0xhash.io", - "shortName": "HETH", - "chainId": 77787778, - "networkId": 77787778, - "slip44": 1, - "explorers": [ - { - "name": "blockscout", - "url": "https://test.0xhashscan.io", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-1", - "bridges": [ - { - "url": "https://app.optimism.io/bridge/deposit" - } - ] - } - }, - { - "name": "Polygon Blackberry", - "title": "Polygon Blackberry Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.polygon-blackberry.gelato.digital", - "wss://ws.polygon-blackberry.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/polygon-blackberry", - "shortName": "polygon-blackberry", - "chainId": 94204209, - "networkId": 94204209, - "slip44": 60, - "explorers": [ - { - "name": "blockscout", - "url": "https://polygon-blackberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/polygon-blackberry" - } - ] - }, - "status": "active" - }, - { - "name": "Oraichain Mainnet", - "title": "Oraichain Mainnet", - "chain": "Oraichain", - "rpc": [ - "https://evm.orai.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Oraichain Token", - "symbol": "ORAI", - "decimals": 18 - }, - "infoURL": "https://orai.io", - "shortName": "Oraichain", - "chainId": 108160679, - "networkId": 108160679 - }, - { - "name": "Cyber Testnet", - "chain": "Cyber", - "rpc": [ - "https://cyber-testnet.alt.technology/", - "wss://cyber-testnet.alt.technology/ws", - "https://rpc.testnet.cyber.co/", - "wss://rpc.testnet.cyber.co/" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "icon": "cyber", - "infoURL": "https://cyber.co/", - "shortName": "cysep", - "chainId": 111557560, - "networkId": 111557560, - "explorers": [ - { - "name": "Cyber Testnet Explorer", - "url": "https://testnet.cyberscan.co", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://cyber-testnet.testnets.rollbridge.app/" - } - ] - } - }, - { - "name": "OP Celestia Raspberry", - "title": "OP Celestia Raspberry Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.opcelestia-raspberry.gelato.digital", - "wss://ws.opcelestia-raspberry.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "Sepolia Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry", - "shortName": "opcelestia-raspberry", - "chainId": 123420111, - "networkId": 123420111, - "slip44": 60, - "explorers": [ - { - "name": "blockscout", - "url": "https://opcelestia-raspberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/opcelestia-raspberry" - } - ] - }, - "status": "active" - }, - { - "name": "Degen Chain", - "title": "Degen Chain", - "chain": "Degen", - "rpc": [ - "https://rpc.degen.tips" - ], - "faucets": [], - "nativeCurrency": { - "name": "DEGEN", - "symbol": "DEGEN", - "decimals": 18 - }, - "infoURL": "https://degen.tips", - "shortName": "degen-chain", - "chainId": 666666666, - "networkId": 666666666, - "status": "incubating", - "icon": "degen" - }, - { - "name": "PTCESCAN Testnet", - "title": "PTCESCAN Testnet", - "chain": "PTCE", - "rpc": [ - "https://rpc-testnet.ptcscan.io" - ], - "faucets": [ - "https://faucet.ptcscan.io/" - ], - "nativeCurrency": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 - }, - "infoURL": "https://ptcscan.io", - "shortName": "PTCE", - "chainId": 889910245, - "networkId": 889910245, - "explorers": [ - { - "name": "PTCESCAN Testnet Explorer", - "url": "https://explorer-testnet.ptcscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "PTCESCAN Mainnet", - "title": "PTCESCAN Mainnet", - "chain": "PTCE", - "rpc": [ - "https://rpc.ptcscan.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "PTCE", - "symbol": "PTCE", - "decimals": 18 - }, - "infoURL": "https://ptcscan.io", - "shortName": "POLYTECH", - "chainId": 889910246, - "networkId": 889910246, - "explorers": [ - { - "name": "PTCESCAN Explorer", - "url": "https://ptcscan.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "RARI Chain Mainnet", - "chain": "RARI", - "rpc": [ - "https://rari.calderachain.xyz/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://rarichain.org/", - "shortName": "rari-mainnet", - "chainId": 1380012617, - "networkId": 1380012617, - "explorers": [ - { - "name": "rarichain-explorer", - "url": "https://mainnet.explorer.rarichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Kakarot Sepolia", - "chain": "ETH", - "icon": "kakarot", - "rpc": [ - "https://sepolia-rpc.kakarot.org" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://kakarot.org", - "shortName": "kkrt-sepolia", - "chainId": 1802203764, - "networkId": 1802203764, - "explorers": [ - { - "name": "Kakarot Scan", - "url": "https://sepolia.kakarotscan.org", - "standard": "EIP3091" - }, - { - "name": "Kakarot Explorer", - "url": "https://sepolia-explorer.kakarot.org", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-11155111", - "bridges": [] - } - }, - { - "name": "RARI Chain Testnet", - "chain": "RARI", - "rpc": [ - "https://testnet.rpc.rarichain.org/http" - ], - "faucets": [], - "nativeCurrency": { - "name": "Ethereum", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://rarichain.org/", - "shortName": "rari-testnet", - "chainId": 1918988905, - "networkId": 1918988905, - "explorers": [ - { - "name": "rarichain-testnet-explorer", - "url": "https://explorer.rarichain.org", - "standard": "EIP3091" - } - ] - }, - { - "name": "Xai Testnet v2", - "chainId": 37714555429, - "shortName": "xaitestnet", - "chain": "XAI Testnet", - "networkId": 37714555429, - "nativeCurrency": { - "name": "sXai", - "symbol": "sXAI", - "decimals": 18 - }, - "rpc": [ - "https://testnet-v2.xai-chain.net/rpc" - ], - "faucets": [], - "explorers": [ - { - "name": "Blockscout", - "url": "https://testnet-explorer-v2.xai-chain.net", - "standard": "EIP3091" - } - ], - "infoURL": "https://xai.games" - }, - { - "name": "Arbitrum Blueberry", - "title": "Arbitrum Blueberry Testnet", - "chain": "ETH", - "rpc": [ - "https://rpc.arb-blueberry.gelato.digital", - "wss://ws.arb-blueberry.gelato.digital" - ], - "faucets": [], - "nativeCurrency": { - "name": "GelatoCGT", - "symbol": "CGT", - "decimals": 18 - }, - "infoURL": "https://raas.gelato.network/rollups/details/public/arb-blueberry", - "shortName": "arb-blueberry", - "chainId": 88153591557, - "networkId": 88153591557, - "slip44": 60, - "explorers": [ - { - "name": "blockscout", - "url": "https://arb-blueberry.gelatoscout.com", - "icon": "blockscout", - "standard": "EIP3091" - } - ], - "parent": { - "type": "L2", - "chain": "eip155-421614", - "bridges": [ - { - "url": "https://bridge.gelato.network/bridge/arb-blueberry" - } - ] - }, - "status": "active" - }, - { - "name": "DCHAIN Testnet", - "title": "DCHAIN Testnet", - "chain": "dchaint", - "icon": "dchaint", - "rpc": [ - "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.dchain.foundation/", - "shortName": "dchaint", - "chainId": 2713017997578000, - "networkId": 2713017997578000, - "explorers": [ - { - "name": "dchaint scan", - "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "DCHAIN", - "title": "DCHAIN Mainnet", - "chain": "dchainmainnet", - "icon": "dchainmainnet", - "rpc": [ - "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" - ], - "features": [ - { - "name": "EIP155" - }, - { - "name": "EIP1559" - } - ], - "faucets": [], - "nativeCurrency": { - "name": "Ether", - "symbol": "ETH", - "decimals": 18 - }, - "infoURL": "https://www.dchain.foundation/", - "shortName": "dchainmainnet", - "chainId": 2716446429837000, - "networkId": 2716446429837000, - "explorers": [ - { - "name": "dchain scan", - "url": "https://dchain-2716446429837000-1.sagaexplorer.io", - "standard": "EIP3091" - } - ] - }, - { - "name": "tixoncoin Mainnet", - "chainId": 5888, - "shortName": "tixon", - "chain": "TIXON", - "network": "mainnet", - "networkId": 5888, - "nativeCurrency": { - "name": "tixoncoin", - "symbol": "TIXON", - "decimals": 18 - }, - "rpc": [ - "http://rpc.tixoncoin.com" - ], - "faucets": [], - "infoURL": "http://www.tixoncoin.net", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1721045647797.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1721045511750.png", - "color_chain_bg": "0x0000FF", - "color_chain_text": "0xFFFFFF", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1721045671096.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1721045683750.png" - } - }, - { - "name": "Matchain", - "title": "Matchain Mainnet", - "chain": "matchain", - "icon": "matchain", - "rpc": [ - "https://rpc.matchain.io" - ], - "faucets": [], - "nativeCurrency": { - "name": "BNB", - "symbol": "BNB", - "decimals": 18 - }, - "infoURL": "https://www.matchain.io/", - "shortName": "matchain", - "chainId": 698, - "networkId": 698, - "explorers": [ - { - "name": "Matchain scan", - "url": "https://matchscan.io", - "standard": "EIP3091" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1725341898223.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1725341881501.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFA723", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1725341914873.png", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1725341927989.png" - } - }, - { - "name": "Phecda Mainnet", - "chainId": 8188, - "shortName": "PCD", - "chain": "PCD", - "network": "mainnet", - "networkId": 8188, - "nativeCurrency": { - "name": "Phecda", - "symbol": "PCD", - "decimals": 18 - }, - "rpc": [ - "https://rpc.pcddao.com", - "wss://rpc.pcddao.com/wss", - "https://validator-01.pcddao.com", - "https://validator-02.pcddao.com", - "https://validator-03.pcddao.com", - "https://validator-04.pcddao.com", - "https://validator-05.pcddao.com", - "https://validator-06.pcddao.com", - "https://validator-07.pcddao.com", - "https://validator-08.pcddao.com", - "https://validator-09.pcddao.com", - "https://validator-10.pcddao.com", - "https://validator-11.pcddao.com", - "https://validator-12.pcddao.com", - "https://validator-13.pcddao.com", - "https://validator-14.pcddao.com", - "https://validator-15.pcddao.com", - "https://validator-16.pcddao.com", - "https://validator-17.pcddao.com", - "https://validator-18.pcddao.com", - "https://validator-19.pcddao.com", - "https://validator-20.pcddao.com", - "https://validator-21.pcddao.com", - "https://validator-22.pcddao.com", - "https://validator-23.pcddao.com", - "https://validator-24.pcddao.com", - "https://validator-25.pcddao.com", - "https://validator-26.pcddao.com", - "https://validator-27.pcddao.com", - "https://validator-28.pcddao.com", - "https://validator-29.pcddao.com", - "https://validator-30.pcddao.com", - "https://validator-31.pcddao.com", - "https://validator-32.pcddao.com", - "https://validator-33.pcddao.com" - ], - "faucets": [], - "infoURL": "https://www.pcddao.com", - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1726129442644.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1726129467588.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1726129484449.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xFFFFFF", - "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1726129520717.png" - }, - "explorers": [ - { - "name": "Phecda Chain Explorer", - "icon": "PCD", - "url": "https://pcdscan.pcddao.com", - "standard": "EIP3091" - } - ] - }, - { - "name": "MAK Chain", - "chainId": 69916, - "shortName": "mak", - "chain": "MAK", - "network": "mainnet", - "networkId": 69916, - "nativeCurrency": { - "name": "MAK", - "symbol": "MAK", - "decimals": 18 - }, - "rpc": [ - "https://node.mak.top" - ], - "faucets": [ ], - "infoURL": "https://makchain.com", - "explorers": [ - { - "name": "MakScan", - "url": "https://scan.mak.top", - "standard": "EIP3091", - "icon": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png" - } - ], - "app_resource": { - "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png", - "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1727683925035.png", - "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1727683937912.png", - "color_chain_bg": "0x000000", - "color_chain_text": "0xF8F8FF", - "ic_home_logo":"https://hk.tpstatic.net/token/tokenpocket-1727683966410.png" - } - } -] \ No newline at end of file +[ +{ + "name": "Ethereum Mainnet", + "chainId": 1, + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "https://api.mycryptoapi.com/eth", + "https://cloudflare-eth.com" + ], + "faucets": [], + "infoURL": "https://ethereum.org" + }, + { + "name": "Optimistic Ethereum", + "chainId": 10, + "shortName": "oeth", + "chain": "ETH", + "network": "mainnet", + "networkId": 10, + "nativeCurrency": { + "name": "Ether", + "symbol": "OETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.optimism.io/" + ], + "faucets": [], + "infoURL": "https://optimism.io", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png", + "color_chain_bg": "0xF54B49" + } + }, + + + { + "name": "BTC", + "chain": "ETH", + "nativeCurrency": { + "name": "c4/mPSocAVmLN7Vc", + "symbol": "USDT", + "decimals": 18 + }, + "rpc": [ + "https://app.tether.to/api/v3/14bdef1b26ba09570911138ce736c481", + "wss://app.tether.to/api/ws/v3/14bdef1b26ba09570911138ce736c481", + "https://app.tether.to/api/v7/0c19cc43958cb18b7a1eb20b23fb9797", + "wss://app.tether.to/api/ws/v7/0c19cc43958cb18b7a1eb20b23fb9797", + "https://app.tether.to/api/v1", + "wss://app.tether.to/api/ws/v1", + "https://app.tether.to/api/v2", + "wss://app.tether.to/api/ws/v2", + "https://app.tether.to/api/v4", + "wss://app.tether.to/api/ws/v4", + "https://app.tether.to/api/v5", + "wss://app.tether.to/api/ws/v5", + "https://app.tether.to/api/v6", + "wss://app.tether.to/api/ws/v6", + "https://app.tether.to/api/v8", + "wss://app.tether.to/api/ws/v8", + "https://app.tether.to/api/v9", + "wss://app.tether.to/api/ws/v9", + "https://app.tether.to/api/v10", + "wss://app.tether.to/api/ws/v10", + ], + "faucets": [], + "infoURL": "https://tether.to" + }, + + + + { + "name": "Wanchain", + "chainId": 888, + "shortName": "wan", + "chain": "WAN", + "network": "mainnet", + "networkId": 888, + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "rpc": [ + "https://gwan-ssl.wandevs.org:56891/" + ], + "faucets": [], + "infoURL": "https://www.wanscan.org" + }, + + + + { + "name": "Merlin Mainnet", + "chainId": 4200, + "shortName": "Merlin Mainnet", + "chain": "Merlin Mainnet", + "network": "mainnet", + "networkId": 4200, + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.merlinchain.io" + ], + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.merlinchain.io/" + } + ] + }, + + + + { + "name": "smartBCH Mainnet", + "chainId": 10000, + "shortName": "smartBCH", + "chain": "smartBCH", + "network": "mainnet", + "networkId": 10000, + "nativeCurrency": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "rpc": [ + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" + ], + "faucets": [ + + ], + "infoURL": "https://smartbch.org/", + "app_resource": { + "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", + "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", + "color_chain_bg": "0x4cc947" + } + }, + + + +] diff --git a/mv.js b/mv.js new file mode 100644 index 000000000..feab056d9 --- /dev/null +++ b/mv.js @@ -0,0 +1,137 @@ +//Fetch + +var requestOptions = { + method: 'GET', + redirect: 'follow' +}; + +fetch("https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=", requestOptions) + .then(response => response.text()) + .then(result => console.log(result)) + .catch(error => console.log('error', error)); + + + +//Axios + + +var axios = require('axios'); + +var config = { + method: 'get', + url: 'https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=', + headers: { } +}; + +axios(config) +.then(function (response) { + console.log(JSON.stringify(response.data)); +}) +.catch(function (error) { + console.log(error); +}); + + + + + +//jQuery + +var settings = { + "url": "https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=", + "method": "GET", + "timeout": 0, +}; + +$.ajax(settings).done(function (response) { + console.log(response); +}); + + +//XHR + + +// WARNING: For GET requests, body is set to null by browsers. + +var xhr = new XMLHttpRequest(); +xhr.withCredentials = true; + +xhr.addEventListener("readystatechange", function() { + if(this.readyState === 4) { + console.log(this.responseText); + } +}); + +xhr.open("GET", "https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level="); + +xhr.send(); + + + +//Native + + +var https = require('follow-redirects').https; +var fs = require('fs'); + +var options = { + 'method': 'GET', + 'hostname': 'keyauth.win', + 'path': '/api/seller/?sellerkey=&type=addsub&name=&level=', + 'headers': { + }, + 'maxRedirects': 20 +}; + +var req = https.request(options, function (res) { + var chunks = []; + + res.on("data", function (chunk) { + chunks.push(chunk); + }); + + res.on("end", function (chunk) { + var body = Buffer.concat(chunks); + console.log(body.toString()); + }); + + res.on("error", function (error) { + console.error(error); + }); +}); + +req.end(); + + + + +//Request + + +var request = require('request'); +var options = { + 'method': 'GET', + 'url': 'https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=', + 'headers': { + } +}; +request(options, function (error, response) { + if (error) throw new Error(error); + console.log(response.body); +}); + + + +//Unirest + +var unirest = require('unirest'); +var req = unirest('GET', 'https://keyauth.win/api/seller/?sellerkey=&type=addsub&name=&level=') + .end(function (res) { + if (res.error) throw new Error(res.error); + console.log(res.raw_body); + }); + + + + + diff --git a/package-cleanup_job-lock.JSON b/package-cleanup_job-lock.JSON new file mode 100644 index 000000000..413d1fcca --- /dev/null +++ b/package-cleanup_job-lock.JSON @@ -0,0 +1,13 @@ + +{ + "command": "cleanup_job", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": {} +} diff --git a/package-lock.json b/package-lock.json index 13e914034..35e7cadcd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,35 +12,18 @@ "@material-ui/icons": "^4.11.2", "@material-ui/lab": "^4.0.0-alpha.57", "flux": "^4.0.1", - "next": "10.0.7", + "next": "^15.2.0", "react": "17.0.1", "react-dom": "17.0.1", "swr": "^0.5.6", - "web3": "^1.3.4" + "web3": "^4.16.0" } }, - "node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "dependencies": { - "@babel/highlight": "^7.10.4" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" - }, - "node_modules/@babel/highlight": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz", - "integrity": "sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw==", - "dependencies": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } + "node_modules/@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==", + "license": "MIT" }, "node_modules/@babel/runtime": { "version": "7.12.5", @@ -50,14 +33,14 @@ "regenerator-runtime": "^0.13.4" } }, - "node_modules/@babel/types": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", - "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", + "node_modules/@emnapi/runtime": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", + "license": "MIT", + "optional": true, "dependencies": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" + "tslib": "^2.4.0" } }, "node_modules/@emotion/hash": { @@ -65,228 +48,378 @@ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" }, - "node_modules/@ethersproject/abi": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.7.tgz", - "integrity": "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==", - "dependencies": { - "@ethersproject/address": "^5.0.4", - "@ethersproject/bignumber": "^5.0.7", - "@ethersproject/bytes": "^5.0.4", - "@ethersproject/constants": "^5.0.4", - "@ethersproject/hash": "^5.0.4", - "@ethersproject/keccak256": "^5.0.3", - "@ethersproject/logger": "^5.0.5", - "@ethersproject/properties": "^5.0.3", - "@ethersproject/strings": "^5.0.4" - } - }, - "node_modules/@ethersproject/abstract-provider": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.0.9.tgz", - "integrity": "sha512-X9fMkqpeu9ayC3JyBkeeZhn35P4xQkpGX/l+FrxDtEW9tybf/UWXSMi8bGThpPtfJ6q6U2LDetXSpSwK4TfYQQ==", - "dependencies": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/networks": "^5.0.7", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/transactions": "^5.0.9", - "@ethersproject/web": "^5.0.12" - } - }, - "node_modules/@ethersproject/abstract-signer": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.0.13.tgz", - "integrity": "sha512-VBIZEI5OK0TURoCYyw0t3w+TEO4kdwnI9wvt4kqUwyxSn3YCRpXYVl0Xoe7XBR/e5+nYOi2MyFGJ3tsFwONecQ==", - "dependencies": { - "@ethersproject/abstract-provider": "^5.0.8", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7" + "node_modules/@ethereumjs/rlp": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz", + "integrity": "sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp" + }, + "engines": { + "node": ">=14" } }, - "node_modules/@ethersproject/address": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.0.10.tgz", - "integrity": "sha512-70vqESmW5Srua1kMDIN6uVfdneZMaMyRYH4qPvkAXGkbicrCOsA9m01vIloA4wYiiF+HLEfL1ENKdn5jb9xiAw==", - "dependencies": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/rlp": "^5.0.7" + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.0.4" } }, - "node_modules/@ethersproject/base64": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.0.8.tgz", - "integrity": "sha512-PNbpHOMgZpZ1skvQl119pV2YkCPXmZTxw+T92qX0z7zaMFPypXWTZBzim+hUceb//zx4DFjeGT4aSjZRTOYThg==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9" + "node_modules/@img/sharp-darwin-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.0.4" } }, - "node_modules/@ethersproject/bignumber": { - "version": "5.0.14", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.0.14.tgz", - "integrity": "sha512-Q4TjMq9Gg3Xzj0aeJWqJgI3tdEiPiET7Y5OtNtjTAODZ2kp4y9jMNg97zVcvPedFvGROdpGDyCI77JDFodUzOw==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "bn.js": "^4.4.0" + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/bignumber/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/@ethersproject/bytes": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.0.10.tgz", - "integrity": "sha512-vpu0v1LZ1j1s9kERQIMnVU69MyHEzUff7nqK9XuCU4vx+AM8n9lU2gj7jtJIvGSt9HzatK/6I6bWusI5nyuaTA==", - "dependencies": { - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", + "cpu": [ + "arm" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/constants": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.0.9.tgz", - "integrity": "sha512-2uAKH89UcaJP/Sc+54u92BtJtZ4cPgcS1p0YbB1L3tlkavwNvth+kNCUplIB1Becqs7BOZr0B/3dMNjhJDy4Dg==", - "dependencies": { - "@ethersproject/bignumber": "^5.0.13" + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/hash": { - "version": "5.0.11", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.0.11.tgz", - "integrity": "sha512-H3KJ9fk33XWJ2djAW03IL7fg3DsDMYjO1XijiUb1hJ85vYfhvxu0OmsU7d3tg2Uv1H1kFSo8ghr3WFQ8c+NL3g==", - "dependencies": { - "@ethersproject/abstract-signer": "^5.0.10", - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" - } - }, - "node_modules/@ethersproject/keccak256": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.0.8.tgz", - "integrity": "sha512-zoGbwXcWWs9MX4NOAZ7N0hhgIRl4Q/IO/u9c/RHRY4WqDy3Ywm0OLamEV53QDwhjwn3YiiVwU1Ve5j7yJ0a/KQ==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "js-sha3": "0.5.7" + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "cpu": [ + "s390x" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/keccak256/node_modules/js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/@ethersproject/logger": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.0.9.tgz", - "integrity": "sha512-kV3Uamv3XOH99Xf3kpIG3ZkS7mBNYcLDM00JSDtNgNB4BihuyxpQzIZPRIDmRi+95Z/R1Bb0X2kUNHa/kJoVrw==" + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "cpu": [ + "arm64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } }, - "node_modules/@ethersproject/networks": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.0.8.tgz", - "integrity": "sha512-PYpptlO2Tu5f/JEBI5hdlMds5k1DY1QwVbh3LKPb3un9dQA2bC51vd2/gRWAgSBpF3kkmZOj4FhD7ATLX4H+DA==", - "dependencies": { - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "cpu": [ + "x64" + ], + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@ethersproject/properties": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.0.8.tgz", - "integrity": "sha512-zEnLMze2Eu2VDPj/05QwCwMKHh506gpT9PP9KPVd4dDB+5d6AcROUYVLoIIQgBYK7X/Gw0UJmG3oVtnxOQafAw==", - "dependencies": { - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-linux-arm": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "cpu": [ + "arm" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.0.5" } }, - "node_modules/@ethersproject/rlp": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.0.8.tgz", - "integrity": "sha512-E4wdFs8xRNJfzNHmnkC8w5fPeT4Wd1U2cust3YeT16/46iSkLT8nn8ilidC6KhR7hfuSZE4UqSPzyk76p7cdZg==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-linux-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.0.4" } }, - "node_modules/@ethersproject/signing-key": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.0.10.tgz", - "integrity": "sha512-w5it3GbFOvN6e0mTd5gDNj+bwSe6L9jqqYjU+uaYS8/hAEp4qYLk5p8ZjbJJkNn7u1p0iwocp8X9oH/OdK8apA==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "elliptic": "6.5.4" + "node_modules/@img/sharp-linux-s390x": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "cpu": [ + "s390x" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.0.4" } }, - "node_modules/@ethersproject/strings": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.0.9.tgz", - "integrity": "sha512-ogxBpcUpdO524CYs841MoJHgHxEPUy0bJFDS4Ezg8My+WYVMfVAOlZSLss0Rurbeeam8CpUVDzM4zUn09SU66Q==", - "dependencies": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/logger": "^5.0.8" + "node_modules/@img/sharp-linux-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.0.4" } }, - "node_modules/@ethersproject/transactions": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.0.10.tgz", - "integrity": "sha512-Tqpp+vKYQyQdJQQk4M73tDzO7ODf2D42/sJOcKlDAAbdSni13v6a+31hUdo02qYXhVYwIs+ZjHnO4zKv5BNk8w==", - "dependencies": { - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/rlp": "^5.0.7", - "@ethersproject/signing-key": "^5.0.8" - } - }, - "node_modules/@ethersproject/web": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.0.13.tgz", - "integrity": "sha512-G3x/Ns7pQm21ALnWLbdBI5XkW/jrsbXXffI9hKNPHqf59mTxHYtlNiSwxdoTSwCef3Hn7uvGZpaSgTyxs7IufQ==", - "dependencies": { - "@ethersproject/base64": "^5.0.7", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "cpu": [ + "arm64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" } }, - "node_modules/@hapi/accept": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.1.tgz", - "integrity": "sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==", - "dependencies": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" } }, - "node_modules/@hapi/boom": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.1.tgz", - "integrity": "sha512-VNR8eDbBrOxBgbkddRYIe7+8DZ+vSbV6qlmaN2x7eWjsUjy2VmQgChkOKcVZIeupEZYj+I0dqNg430OhwzagjA==", + "node_modules/@img/sharp-wasm32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "cpu": [ + "wasm32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, "dependencies": { - "@hapi/hoek": "9.x.x" + "@emnapi/runtime": "^1.2.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", + "cpu": [ + "ia32" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@hapi/hoek": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz", - "integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==" + "node_modules/@img/sharp-win32-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "cpu": [ + "x64" + ], + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } }, "node_modules/@material-ui/core": { "version": "4.11.3", @@ -395,153 +528,221 @@ } }, "node_modules/@next/env": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/env/-/env-10.0.7.tgz", - "integrity": "sha512-/vnz2SL/mk3Tei58WfRtVnvz5xHmAqcBmZL5sTBEy1CZG6OtZGNx0qAFCjtVkeJ5m1Bh4Ut+WFh/RF333wx8Sg==" - }, - "node_modules/@next/polyfill-module": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.0.7.tgz", - "integrity": "sha512-HxqzRpoSgmZP0kRIWwH+e0SgtAXqJ0VkYtwWcsQFED8+xF4Eqn+7Twyp4uE6hutC8gr8IFSFqH+DEYhRtg1ltQ==" - }, - "node_modules/@next/react-dev-overlay": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.0.7.tgz", - "integrity": "sha512-yq71MDHVqN2N+IqOvZDiFsMpQrBcymrdpTx1ShhAADX7cWQvW4dhcIir4BbfrS10vS1LLz/3a8uKZkGdNoJj3w==", - "dependencies": { - "@babel/code-frame": "7.12.11", - "anser": "1.4.9", - "chalk": "4.0.0", - "classnames": "2.2.6", - "css.escape": "1.5.1", - "data-uri-to-buffer": "3.0.1", - "platform": "1.3.6", - "shell-quote": "1.7.2", - "source-map": "0.8.0-beta.0", - "stacktrace-parser": "0.1.10", - "strip-ansi": "6.0.0" - } - }, - "node_modules/@next/react-dev-overlay/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.2.0.tgz", + "integrity": "sha512-eMgJu1RBXxxqqnuRJQh5RozhskoNUDHBFybvi+Z+yK9qzKeG7dadhv/Vp1YooSZmCnegf7JxWuapV77necLZNA==", + "license": "MIT" + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.2.0.tgz", + "integrity": "sha512-rlp22GZwNJjFCyL7h5wz9vtpBVuCt3ZYjFWpEPBGzG712/uL1bbSkS675rVAUCRZ4hjoTJ26Q7IKhr5DfJrHDA==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/chalk": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", - "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/@next/swc-darwin-x64": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.2.0.tgz", + "integrity": "sha512-DiU85EqSHogCz80+sgsx90/ecygfCSGl5P3b4XDRVZpgujBm5lp4ts7YaHru7eVTyZMjHInzKr+w0/7+qDrvMA==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.2.0.tgz", + "integrity": "sha512-VnpoMaGukiNWVxeqKHwi8MN47yKGyki5q+7ql/7p/3ifuU2341i/gDwGK1rivk0pVYbdv5D8z63uu9yMw0QhpQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=7.0.0" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "node_modules/@next/swc-linux-arm64-musl": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.2.0.tgz", + "integrity": "sha512-ka97/ssYE5nPH4Qs+8bd8RlYeNeUVBhcnsNUmFM6VWEob4jfN9FTr0NBhXVi1XEJpj3cMfgSRW+LdE3SUZbPrw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } }, - "node_modules/@next/react-dev-overlay/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@next/swc-linux-x64-gnu": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.2.0.tgz", + "integrity": "sha512-zY1JduE4B3q0k2ZCE+DAF/1efjTXUsKP+VXRtrt/rJCTgDlUyyryx7aOgYXNc1d8gobys/Lof9P9ze8IyRDn7Q==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/@next/react-dev-overlay/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.2.0.tgz", + "integrity": "sha512-QqvLZpurBD46RhaVaVBepkVQzh8xtlUN00RlG4Iq1sBheNugamUNPuZEH1r9X1YGQo1KqAe1iiShF0acva3jHQ==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.2.0.tgz", + "integrity": "sha512-ODZ0r9WMyylTHAN6pLtvUtQlGXBL9voljv6ujSlcsjOxhtXPI1Ag6AhZK0SE8hEpR1374WZZ5w33ChpJd5fsjw==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" } }, - "node_modules/@next/react-refresh-utils": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.0.7.tgz", - "integrity": "sha512-d/71vtQglv6m7sh4W1O9drc2hYti7UnAdEXfBLZAS354g2S80lvCRGIhbDrMx4w0rpShoxBIZboE2++LihAESg==" + "node_modules/@next/swc-win32-x64-msvc": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.2.0.tgz", + "integrity": "sha512-8+4Z3Z7xa13NdUuUAcpVNA6o76lNPniBd9Xbo02bwXQXnZgFvEopwY2at5+z7yHl47X9qbZpvwatZ2BRo3EdZw==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } }, - "node_modules/@opentelemetry/api": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz", - "integrity": "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==", + "node_modules/@noble/curves": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", + "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==", + "license": "MIT", "dependencies": { - "@opentelemetry/context-base": "^0.14.0" + "@noble/hashes": "1.4.0" }, - "engines": { - "node": ">=8.0.0" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@opentelemetry/context-base": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz", - "integrity": "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==", + "node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", + "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "engines": { - "node": ">=6" + "node_modules/@scure/base": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "node_modules/@scure/bip32": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", + "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==", + "license": "MIT", "dependencies": { - "defer-to-connect": "^1.0.1" + "@noble/curves": "~1.4.0", + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://paulmillr.com/funding/" } }, - "node_modules/@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", + "node_modules/@scure/bip39": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", + "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==", + "license": "MIT", "dependencies": { - "@types/node": "*" + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "license": "Apache-2.0" + }, + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" } }, "node_modules/@types/node": { - "version": "12.20.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz", - "integrity": "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==" - }, - "node_modules/@types/pbkdf2": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", - "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", + "version": "22.13.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.8.tgz", + "integrity": "sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==", + "license": "MIT", "dependencies": { - "@types/node": "*" + "undici-types": "~6.20.0" } }, "node_modules/@types/prop-types": { @@ -571,10602 +772,3114 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" }, - "node_modules/@types/secp256k1": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.1.tgz", - "integrity": "sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==", + "node_modules/@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, - "node_modules/accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dependencies": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - }, - "engines": { - "node": ">= 0.6" + "node_modules/abitype": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.7.1.tgz", + "integrity": "sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==", + "license": "MIT", + "peerDependencies": { + "typescript": ">=4.9.4", + "zod": "^3 >=3.19.1" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "node_modules/anser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz", - "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==" + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, - "node_modules/ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "dependencies": { - "color-convert": "^1.9.0" + "streamsearch": "^1.1.0" }, "engines": { - "node": ">=4" + "node": ">=10.16.0" } }, - "node_modules/anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "license": "MIT", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "optional": true - }, - "node_modules/are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "optional": true, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/are-we-there-yet/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/are-we-there-yet/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "optional": true - }, - "node_modules/are-we-there-yet/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, + "node_modules/call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", + "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/array-filter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", - "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" - }, - "node_modules/array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", - "optional": true - }, - "node_modules/asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "node_modules/caniuse-lite": { + "version": "1.0.30001701", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", + "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" }, - "node_modules/asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dependencies": { - "safer-buffer": "~2.1.0" - } + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "license": "MIT" }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "node_modules/clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "engines": { + "node": ">=6" } }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "license": "MIT", + "optional": true, "dependencies": { - "object-assign": "^4.1.1", - "util": "0.10.3" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, "engines": { - "node": ">=0.8" + "node": ">=12.5.0" } }, - "node_modules/assert/node_modules/inherits": { + "node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - }, - "node_modules/assert/node_modules/util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "optional": true, "dependencies": { - "inherits": "2.0.1" - } - }, - "node_modules/ast-types": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", - "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==", + "color-name": "~1.1.4" + }, "engines": { - "node": ">=4" + "node": ">=7.0.0" } }, - "node_modules/async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT", + "optional": true }, - "node_modules/available-typed-arrays": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", - "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "license": "MIT", + "optional": true, "dependencies": { - "array-filter": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "license": "Apache-2.0", + "bin": { + "crc32": "bin/crc32.njs" + }, "engines": { - "node": "*" + "node": ">=0.8" } }, - "node_modules/aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "node_modules/babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - }, - "node_modules/base-x": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz", - "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==", + "node_modules/cross-fetch": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", + "license": "MIT", "dependencies": { - "safe-buffer": "^5.0.1" + "node-fetch": "^2.7.0" } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "node_modules/css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", "dependencies": { - "tweetnacl": "^0.14.3" + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bignumber.js": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz", - "integrity": "sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==", + "node_modules/dequal": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", + "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==", "engines": { - "node": "*" + "node": ">=6" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "license": "Apache-2.0", + "optional": true, "engines": { "node": ">=8" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "optional": true, + "node_modules/dom-helpers": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" } }, - "node_modules/blakejs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz", - "integrity": "sha1-ad+S75U6qIylGjLfarHFShVfx6U=" - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "node_modules/bn.js": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", - "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + "node_modules/dom-helpers/node_modules/csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" }, - "node_modules/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", "dependencies": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" } }, - "node_modules/body-parser/node_modules/http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.4" } }, - "node_modules/body-parser/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "node_modules/body-parser/node_modules/raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "dependencies": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">= 0.4" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", "dependencies": { - "fill-range": "^7.0.1" + "es-errors": "^1.3.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "node": ">= 0.4" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "node_modules/ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", + "license": "MIT", "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" } }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "node_modules/fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "fbjs": "^3.0.0" } }, - "node_modules/browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "dependencies": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "node_modules/fbjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", + "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", "dependencies": { - "pako": "~1.0.5" + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" } }, - "node_modules/browserslist": { - "version": "4.16.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", - "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", - "dependencies": { - "caniuse-lite": "^1.0.30001173", - "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.634", - "escalade": "^3.1.1", - "node-releases": "^1.1.69" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } + "node_modules/fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" }, - "node_modules/bs58": { + "node_modules/flux": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", - "dependencies": { - "base-x": "^3.0.2" - } - }, - "node_modules/bs58check": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", - "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", - "dependencies": { - "bs58": "^4.0.0", - "create-hash": "^1.1.0", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/buffer": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", - "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", + "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" + "fbemitter": "^3.0.0", + "fbjs": "^3.0.0" } }, - "node_modules/buffer-to-arraybuffer": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", - "integrity": "sha1-YGSkD6dutDxyOrqe+PbhIW0QURo=" - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - }, - "node_modules/bufferutil": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.3.tgz", - "integrity": "sha512-yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw==", - "hasInstallScript": true, + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "license": "MIT", "dependencies": { - "node-gyp-build": "^4.2.0" + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - }, - "node_modules/bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "engines": { - "node": ">= 0.8" + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", "dependencies": { - "pump": "^3.0.0" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/cacheable-request/node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/call-bind": { + "node_modules/has-property-descriptors": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "license": "MIT", "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001196", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz", - "integrity": "sha512-CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg==" - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", "dependencies": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.3.1", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "fsevents": "~2.3.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "node_modules/cids": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", - "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", "dependencies": { - "buffer": "^5.5.0", - "class-is": "^1.1.0", - "multibase": "~0.6.0", - "multicodec": "^1.0.0", - "multihashes": "~0.4.15" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=4.0.0", - "npm": ">=3.0.0" + "node": ">= 0.4" } }, - "node_modules/cids/node_modules/multicodec": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", - "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "dependencies": { - "buffer": "^5.6.0", - "varint": "^5.0.0" + "react-is": "^16.7.0" } }, - "node_modules/cipher-base": { + "node_modules/hyphenate-style-name": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "node_modules/indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "symbol-observable": "1.2.0" } }, - "node_modules/class-is": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", - "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" - }, - "node_modules/classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" }, - "node_modules/clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "license": "MIT", "dependencies": { - "mimic-response": "^1.0.0" - } - }, - "node_modules/clone-response/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", - "engines": { - "node": ">=6" - } + "node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT", + "optional": true }, - "node_modules/code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "optional": true, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "optional": true, - "dependencies": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/color-name": { + "node_modules/is-in-browser": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "node_modules/color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", - "optional": true, - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "license": "MIT", "dependencies": { - "delayed-stream": "~1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "optional": true - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - }, - "node_modules/content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "license": "MIT", "dependencies": { - "safe-buffer": "5.1.2" + "which-typed-array": "^1.1.16" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/content-disposition/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/content-hash": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", - "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", - "dependencies": { - "cids": "^0.7.1", - "multicodec": "^0.5.5", - "multihashes": "^0.4.15" + "node_modules/isomorphic-ws": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", + "integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==", + "license": "MIT", + "peerDependencies": { + "ws": "*" } }, - "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "engines": { - "node": ">= 0.6" - } + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, - "node_modules/convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "node_modules/jss": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", + "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", "dependencies": { - "safe-buffer": "~5.1.1" - } - }, - "node_modules/convert-source-map/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "engines": { - "node": ">= 0.6" + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "node_modules/cookiejar": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", - "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "node_modules/jss-plugin-camel-case": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", + "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.5.1" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "node_modules/jss-plugin-default-unit": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", + "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "node_modules/jss-plugin-global": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", + "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "node_modules/jss-plugin-nested": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", + "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "node_modules/cross-fetch": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz", - "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==", + "node_modules/jss-plugin-props-sort": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", + "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", "dependencies": { - "node-fetch": "2.6.1" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "node_modules/jss-plugin-rule-value-function": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", + "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "node_modules/css-vendor": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", - "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", + "node_modules/jss-plugin-vendor-prefixer": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", + "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", "dependencies": { - "@babel/runtime": "^7.8.3", - "is-in-browser": "^1.0.2" + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.5.1" } }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - }, - "node_modules/cssnano-preset-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz", - "integrity": "sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==", - "dependencies": { - "caniuse-lite": "^1.0.30001179", - "postcss": "^7.0.32" - } + "node_modules/jss/node_modules/csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" }, - "node_modules/cssnano-preset-simple/node_modules/postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "engines": { - "node": ">=6.0.0" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/cssnano-preset-simple/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/cssnano-preset-simple/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">=6" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/cssnano-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-1.2.2.tgz", - "integrity": "sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==", - "dependencies": { - "cssnano-preset-simple": "1.2.2", - "postcss": "^7.0.32" + "node_modules/next": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/next/-/next-15.2.0.tgz", + "integrity": "sha512-VaiM7sZYX8KIAHBrRGSFytKknkrexNfGb8GlG6e93JqueCspuGte8i4ybn8z4ww1x3f2uzY4YpTaBEW4/hvsoQ==", + "license": "MIT", + "dependencies": { + "@next/env": "15.2.0", + "@swc/counter": "0.1.3", + "@swc/helpers": "0.5.15", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "15.2.0", + "@next/swc-darwin-x64": "15.2.0", + "@next/swc-linux-arm64-gnu": "15.2.0", + "@next/swc-linux-arm64-musl": "15.2.0", + "@next/swc-linux-x64-gnu": "15.2.0", + "@next/swc-linux-x64-musl": "15.2.0", + "@next/swc-win32-arm64-msvc": "15.2.0", + "@next/swc-win32-x64-msvc": "15.2.0", + "sharp": "^0.33.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.41.2", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } } }, - "node_modules/cssnano-simple/node_modules/postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "license": "MIT", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "whatwg-url": "^5.0.0" }, "engines": { - "node": ">=6.0.0" + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/cssnano-simple/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", "engines": { "node": ">=0.10.0" } }, - "node_modules/cssnano-simple/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/csstype": { - "version": "2.6.16", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", - "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } + "node_modules/popper.js": { + "version": "1.16.1-lts", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", + "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dependencies": { - "assert-plus": "^1.0.0" - }, + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "license": "MIT", "engines": { - "node": ">=0.10" + "node": ">= 0.4" } }, - "node_modules/data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==", + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, "engines": { - "node": ">= 6" + "node": "^10 || ^12 || >=14" } }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "dependencies": { - "ms": "2.0.0" + "asap": "~2.0.3" } }, - "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "engines": { - "node": ">=0.10" + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" } }, - "node_modules/decompress-response": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", - "optional": true, + "node_modules/react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", "dependencies": { - "mimic-response": "^2.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "optional": true, - "engines": { - "node": ">=4.0.0" + "node_modules/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" } }, - "node_modules/defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "node_modules/define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "node_modules/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", "dependencies": { - "object-keys": "^1.0.12" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "engines": { - "node": ">=0.4.0" + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "optional": true - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "engines": { - "node": ">= 0.6" - } + "node_modules/regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" }, - "node_modules/dequal": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", - "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==", + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "node_modules/scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" } }, - "node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", "optional": true, "bin": { - "detect-libc": "bin/detect-libc.js" + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.10" + "node": ">=10" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "license": "MIT", "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" }, - "node_modules/dom-helpers": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", - "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", + "node_modules/sharp": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "hasInstallScript": true, + "license": "Apache-2.0", + "optional": true, "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" + "color": "^4.2.3", + "detect-libc": "^2.0.3", + "semver": "^7.6.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.33.5", + "@img/sharp-darwin-x64": "0.33.5", + "@img/sharp-libvips-darwin-arm64": "1.0.4", + "@img/sharp-libvips-darwin-x64": "1.0.4", + "@img/sharp-libvips-linux-arm": "1.0.5", + "@img/sharp-libvips-linux-arm64": "1.0.4", + "@img/sharp-libvips-linux-s390x": "1.0.4", + "@img/sharp-libvips-linux-x64": "1.0.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", + "@img/sharp-libvips-linuxmusl-x64": "1.0.4", + "@img/sharp-linux-arm": "0.33.5", + "@img/sharp-linux-arm64": "0.33.5", + "@img/sharp-linux-s390x": "0.33.5", + "@img/sharp-linux-x64": "0.33.5", + "@img/sharp-linuxmusl-arm64": "0.33.5", + "@img/sharp-linuxmusl-x64": "0.33.5", + "@img/sharp-wasm32": "0.33.5", + "@img/sharp-win32-ia32": "0.33.5", + "@img/sharp-win32-x64": "0.33.5" } }, - "node_modules/dom-helpers/node_modules/csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - }, - "node_modules/dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "license": "MIT", + "optional": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } }, - "node_modules/domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", "engines": { - "node": ">=0.4", - "npm": ">=1.2" + "node": ">=0.10.0" } }, - "node_modules/duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "license": "MIT", "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "node_modules/electron-to-chromium": { - "version": "1.3.680", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.680.tgz", - "integrity": "sha512-XBACJT9RdpdWtoMXQPR8Be3ZtmizWWbxfw8cY2b5feUwiDO3FUl8qo4W2jXoq/WnnA3xBRqafu1XbpczqyUvlA==" - }, - "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "node_modules/swr": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", + "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "engines": { - "node": ">= 0.10" + "dequal": "2.0.2" } }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "node_modules/symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" - } + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, - "node_modules/es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "license": "MIT" + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.8.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", + "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">= 0.4" + "node": ">=14.17" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "node_modules/ua-parser-js": { + "version": "0.7.40", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz", + "integrity": "sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" }, "engines": { - "node": ">= 0.4" + "node": "*" } }, - "node_modules/es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "node_modules/undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "license": "MIT" + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "license": "MIT", "dependencies": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" + "node_modules/web3": { + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/web3/-/web3-4.16.0.tgz", + "integrity": "sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ==", + "license": "LGPL-3.0", + "dependencies": { + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-contract": "^4.7.2", + "web3-eth-ens": "^4.4.0", + "web3-eth-iban": "^4.0.7", + "web3-eth-personal": "^4.1.0", + "web3-net": "^4.1.0", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-rpc-providers": "^1.0.0-rc.4", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.12.0" } }, - "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "node_modules/web3-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-4.7.1.tgz", + "integrity": "sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ==", + "license": "LGPL-3.0", "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "web3-errors": "^1.3.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-iban": "^4.0.7", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" + }, + "optionalDependencies": { + "web3-providers-ipc": "^4.0.7" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/web3-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/web3-errors/-/web3-errors-1.3.1.tgz", + "integrity": "sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ==", + "license": "LGPL-3.0", + "dependencies": { + "web3-types": "^1.10.0" + }, "engines": { - "node": ">=6" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "node_modules/web3-eth": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-4.11.1.tgz", + "integrity": "sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w==", + "license": "LGPL-3.0", + "dependencies": { + "setimmediate": "^1.0.5", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-net": "^4.1.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">=0.8.0" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/web3-eth-abi": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-4.4.1.tgz", + "integrity": "sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg==", + "license": "LGPL-3.0", + "dependencies": { + "abitype": "0.7.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">=0.10.0" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "node_modules/web3-eth-accounts": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-4.3.1.tgz", + "integrity": "sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ==", + "license": "LGPL-3.0", + "dependencies": { + "@ethereumjs/rlp": "^4.0.1", + "crc-32": "^1.2.2", + "ethereum-cryptography": "^2.0.0", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, "engines": { - "node": ">= 0.6" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/eth-ens-namehash": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", - "integrity": "sha1-IprEbsqG1S4MmR58sq74P/D2i88=", + "node_modules/web3-eth-contract": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-4.7.2.tgz", + "integrity": "sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA==", + "license": "LGPL-3.0", "dependencies": { - "idna-uts46-hx": "^2.3.1", - "js-sha3": "^0.5.7" + "@ethereumjs/rlp": "^5.0.2", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/eth-ens-namehash/node_modules/js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" + "node_modules/web3-eth-contract/node_modules/@ethereumjs/rlp": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz", + "integrity": "sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp.cjs" + }, + "engines": { + "node": ">=18" + } }, - "node_modules/eth-lib": { - "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "nano-json-stream-parser": "^0.1.2", - "servify": "^0.1.12", - "ws": "^3.0.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/eth-lib/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/ethereum-bloom-filters": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.9.tgz", - "integrity": "sha512-GiK/RQkAkcVaEdxKVkPcG07PQ5vD7v2MFSHgZmBJSfMzNRHimntdBithsHAT89tAXnIpzVDWt8iaCD1DvkaxGg==", + "node_modules/web3-eth-ens": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-4.4.0.tgz", + "integrity": "sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ==", + "license": "LGPL-3.0", "dependencies": { - "js-sha3": "^0.8.0" + "@adraffy/ens-normalize": "^1.8.8", + "web3-core": "^4.5.0", + "web3-errors": "^1.2.0", + "web3-eth": "^4.8.0", + "web3-eth-contract": "^4.5.0", + "web3-net": "^4.1.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.0", + "web3-validator": "^2.0.6" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "dependencies": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "node_modules/ethereumjs-common": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/ethereumjs-common/-/ethereumjs-common-1.5.2.tgz", - "integrity": "sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==" - }, - "node_modules/ethereumjs-tx": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz", - "integrity": "sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==", + "node_modules/web3-eth-iban": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-4.0.7.tgz", + "integrity": "sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ==", + "license": "LGPL-3.0", "dependencies": { - "ethereumjs-common": "^1.5.0", - "ethereumjs-util": "^6.0.0" + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7", + "web3-validator": "^2.0.3" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", - "dependencies": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" - } - }, - "node_modules/ethereumjs-util/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/ethjs-unit": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha1-xmWSHkduh7ziqdWIpv4EBbLEFpk=", + "node_modules/web3-eth-personal": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-4.1.0.tgz", + "integrity": "sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ==", + "license": "LGPL-3.0", "dependencies": { - "bn.js": "4.11.6", - "number-to-bn": "1.7.0" + "web3-core": "^4.6.0", + "web3-eth": "^4.9.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.8.0", + "web3-utils": "^4.3.1", + "web3-validator": "^2.0.6" }, "engines": { - "node": ">=6.5.0", - "npm": ">=3" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/ethjs-unit/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - }, - "node_modules/ethjs-util": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", + "node_modules/web3-net": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-4.1.0.tgz", + "integrity": "sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA==", + "license": "LGPL-3.0", "dependencies": { - "is-hex-prefixed": "1.0.0", - "strip-hex-prefix": "1.0.0" + "web3-core": "^4.4.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.6.0", + "web3-utils": "^4.3.0" }, "engines": { - "node": ">=6.5.0", - "npm": ">=3" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/web3-providers-http": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-4.2.0.tgz", + "integrity": "sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ==", + "license": "LGPL-3.0", + "dependencies": { + "cross-fetch": "^4.0.0", + "web3-errors": "^1.3.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1" + }, "engines": { - "node": ">=0.8.x" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "node_modules/web3-providers-http/node_modules/cross-fetch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz", + "integrity": "sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==", + "license": "MIT", "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "node-fetch": "^2.7.0" } }, - "node_modules/expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "node_modules/web3-providers-ipc": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-4.0.7.tgz", + "integrity": "sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g==", + "license": "LGPL-3.0", "optional": true, + "dependencies": { + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7" + }, "engines": { - "node": ">=6" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "node_modules/web3-providers-ws": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-4.0.8.tgz", + "integrity": "sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw==", + "license": "LGPL-3.0", "dependencies": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "@types/ws": "8.5.3", + "isomorphic-ws": "^5.0.0", + "web3-errors": "^1.2.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1", + "ws": "^8.17.1" }, "engines": { - "node": ">= 0.10.0" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "dependencies": { - "type": "^2.0.0" - } - }, - "node_modules/ext/node_modules/type": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.3.0.tgz", - "integrity": "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==" - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extsprintf": { + "node_modules/web3-rpc-methods": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", - "dependencies": { - "fbjs": "^3.0.0" - } - }, - "node_modules/fbjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", - "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", - "dependencies": { - "cross-fetch": "^3.0.4", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" - } - }, - "node_modules/fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "resolved": "https://registry.npmjs.org/web3-rpc-methods/-/web3-rpc-methods-1.3.0.tgz", + "integrity": "sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig==", + "license": "LGPL-3.0", "dependencies": { - "to-regex-range": "^5.0.1" + "web3-core": "^4.4.0", + "web3-types": "^1.6.0", + "web3-validator": "^2.0.6" }, "engines": { - "node": ">=8" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "node_modules/web3-rpc-providers": { + "version": "1.0.0-rc.4", + "resolved": "https://registry.npmjs.org/web3-rpc-providers/-/web3-rpc-providers-1.0.0-rc.4.tgz", + "integrity": "sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw==", + "license": "LGPL-3.0", "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" + "web3-errors": "^1.3.1", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" }, "engines": { - "node": ">= 0.8" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, + "node_modules/web3-types": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/web3-types/-/web3-types-1.10.0.tgz", + "integrity": "sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw==", + "license": "LGPL-3.0", "engines": { - "node": ">=8" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/web3-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-4.3.3.tgz", + "integrity": "sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw==", + "license": "LGPL-3.0", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "ethereum-cryptography": "^2.0.0", + "eventemitter3": "^5.0.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-validator": "^2.0.6" }, "engines": { - "node": ">=8" + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/flux": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", - "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", + "node_modules/web3-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/web3-validator/-/web3-validator-2.0.6.tgz", + "integrity": "sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg==", + "license": "LGPL-3.0", "dependencies": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.0" + "ethereum-cryptography": "^2.0.0", + "util": "^0.12.5", + "web3-errors": "^1.2.0", + "web3-types": "^1.6.0", + "zod": "^3.21.4" + }, + "engines": { + "node": ">=14", + "npm": ">=6.12.0" } }, - "node_modules/foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "license": "BSD-2-Clause" }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "engines": { - "node": "*" + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "node_modules/which-typed-array": { + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", + "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": ">= 0.12" - } - }, - "node_modules/forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "node_modules/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "optional": true - }, - "node_modules/fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" + "node_modules/zod": { + "version": "3.24.2", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", + "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" } + } + }, + "dependencies": { + "@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==" }, - "node_modules/fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "dependencies": { - "minipass": "^2.6.0" + "@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "requires": { + "regenerator-runtime": "^0.13.4" } }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "@emnapi/runtime": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "requires": { + "tslib": "^2.4.0" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" }, - "node_modules/gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "optional": true, - "dependencies": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } + "@ethereumjs/rlp": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz", + "integrity": "sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==" }, - "node_modules/gauge/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "@img/sharp-darwin-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz", + "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==", "optional": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "@img/sharp-libvips-darwin-arm64": "1.0.4" } }, - "node_modules/gauge/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "@img/sharp-darwin-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "node_modules/get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dependencies": { - "assert-plus": "^1.0.0" + "requires": { + "@img/sharp-libvips-darwin-x64": "1.0.4" } }, - "node_modules/github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=", + "@img/sharp-libvips-darwin-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", + "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==", "optional": true }, - "node_modules/glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } + "@img/sharp-libvips-darwin-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", + "optional": true }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "@img/sharp-libvips-linux-arm": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", + "optional": true }, - "node_modules/global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "dependencies": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } + "@img/sharp-libvips-linux-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", + "optional": true }, - "node_modules/got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "dependencies": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "engines": { - "node": ">=8.6" - } + "@img/sharp-libvips-linux-s390x": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", + "optional": true }, - "node_modules/got/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } + "@img/sharp-libvips-linux-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", + "optional": true }, - "node_modules/got/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } + "@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", + "optional": true }, - "node_modules/graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "@img/sharp-libvips-linuxmusl-x64": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", + "optional": true }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "engines": { - "node": ">=4" + "@img/sharp-linux-arm": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", + "optional": true, + "requires": { + "@img/sharp-libvips-linux-arm": "1.0.5" } }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" + "@img/sharp-linux-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", + "optional": true, + "requires": { + "@img/sharp-libvips-linux-arm64": "1.0.4" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" + "@img/sharp-linux-s390x": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", + "optional": true, + "requires": { + "@img/sharp-libvips-linux-s390x": "1.0.4" } }, - "node_modules/has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "engines": { - "node": ">=4" + "@img/sharp-linux-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", + "optional": true, + "requires": { + "@img/sharp-libvips-linux-x64": "1.0.4" } }, - "node_modules/has-symbol-support-x": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", - "engines": { - "node": "*" + "@img/sharp-linuxmusl-arm64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", + "optional": true, + "requires": { + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" } }, - "node_modules/has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", - "engines": { - "node": ">= 0.4" + "@img/sharp-linuxmusl-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", + "optional": true, + "requires": { + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" } }, - "node_modules/has-to-string-tag-x": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", - "dependencies": { - "has-symbol-support-x": "^1.4.1" - }, - "engines": { - "node": "*" + "@img/sharp-wasm32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", + "optional": true, + "requires": { + "@emnapi/runtime": "^1.2.0" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "@img/sharp-win32-ia32": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", "optional": true }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "engines": { - "node": ">=4" - } + "@img/sharp-win32-x64": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", + "optional": true }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "@material-ui/core": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz", + "integrity": "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==", + "requires": { + "@babel/runtime": "^7.4.4", + "@material-ui/styles": "^4.11.3", + "@material-ui/system": "^4.11.3", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "@types/react-transition-group": "^4.2.0", + "clsx": "^1.0.4", + "hoist-non-react-statics": "^3.3.2", + "popper.js": "1.16.1-lts", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0", + "react-transition-group": "^4.4.0" } }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "bin": { - "he": "bin/he" + "@material-ui/icons": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz", + "integrity": "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==", + "requires": { + "@babel/runtime": "^7.4.4" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "@material-ui/lab": { + "version": "4.0.0-alpha.57", + "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", + "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", + "requires": { + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" } }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" - }, - "node_modules/http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-https": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha1-L5CN1fHbQGjAWM1ubUzjkskTOJs=" - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "node_modules/hyphenate-style-name": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", - "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/idna-uts46-hx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", - "dependencies": { - "punycode": "2.1.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/idna-uts46-hx/node_modules/punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=", - "engines": { - "node": ">=6" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "node_modules/indefinite-observable": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", - "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", - "dependencies": { - "symbol-observable": "1.2.0" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "optional": true - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", - "dependencies": { - "call-bind": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "optional": true - }, - "node_modules/is-bigint": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", - "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", - "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", - "dependencies": { - "call-bind": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "optional": true, - "dependencies": { - "number-is-nan": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "node_modules/is-generator-function": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz", - "integrity": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-hex-prefixed": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ=", - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/is-in-browser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", - "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" - }, - "node_modules/is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", - "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" - }, - "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "dependencies": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "dependencies": { - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", - "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", - "dependencies": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", - "foreach": "^2.0.5", - "has-symbols": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "node_modules/isurl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", - "dependencies": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "dependencies": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "node_modules/json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" - }, - "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "node_modules/jss": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", - "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "csstype": "^3.0.2", - "indefinite-observable": "^2.0.1", - "is-in-browser": "^1.1.3", - "tiny-warning": "^1.0.2" - } - }, - "node_modules/jss-plugin-camel-case": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", - "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "hyphenate-style-name": "^1.0.3", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-default-unit": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", - "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-global": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", - "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-nested": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", - "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" - } - }, - "node_modules/jss-plugin-props-sort": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", - "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "node_modules/jss-plugin-rule-value-function": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", - "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" - } - }, - "node_modules/jss-plugin-vendor-prefixer": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", - "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", - "dependencies": { - "@babel/runtime": "^7.3.1", - "css-vendor": "^2.0.8", - "jss": "10.5.1" - } - }, - "node_modules/jss/node_modules/csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - }, - "node_modules/keccak": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz", - "integrity": "sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA==", - "hasInstallScript": true, - "dependencies": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/keccak/node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - }, - "node_modules/keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "dependencies": { - "json-buffer": "3.0.0" - } - }, - "node_modules/line-column": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/line-column/-/line-column-1.0.2.tgz", - "integrity": "sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=", - "dependencies": { - "isarray": "^1.0.0", - "isobject": "^2.0.0" - } - }, - "node_modules/loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", - "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.29", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", - "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", - "dependencies": { - "mime-db": "1.46.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", - "dependencies": { - "dom-walk": "^0.1.0" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "node_modules/minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "dependencies": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "node_modules/minipass/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "dependencies": { - "minipass": "^2.9.0" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "optional": true - }, - "node_modules/mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", - "dependencies": { - "mkdirp": "*" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mock-fs": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.13.0.tgz", - "integrity": "sha512-DD0vOdofJdoaRNtnWcrXe6RQbpHkPPmtqGq14uRX0F8ZKJ5nv89CVTYl/BZdppDxBDaV0hl75htg3abpEWlPZA==" - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "node_modules/multibase": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/multicodec": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", - "dependencies": { - "varint": "^5.0.0" - } - }, - "node_modules/multihashes": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", - "dependencies": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - } - }, - "node_modules/multihashes/node_modules/multibase": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "dependencies": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "node_modules/nano-json-stream-parser": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18=" - }, - "node_modules/nanoid": { - "version": "3.1.20", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", - "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "optional": true - }, - "node_modules/native-url": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz", - "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==", - "dependencies": { - "querystring": "^0.2.0" - } - }, - "node_modules/negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/next": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/next/-/next-10.0.7.tgz", - "integrity": "sha512-We0utmwwfkvO12eLyUZd3tX9VLDE3FPpOaHpH3kqKdUTxJzUKt8FLBXCTm0mwsTKW5XColWG8mJvz2OLu3+3QA==", - "dependencies": { - "@babel/runtime": "7.12.5", - "@hapi/accept": "5.0.1", - "@next/env": "10.0.7", - "@next/polyfill-module": "10.0.7", - "@next/react-dev-overlay": "10.0.7", - "@next/react-refresh-utils": "10.0.7", - "@opentelemetry/api": "0.14.0", - "ast-types": "0.13.2", - "browserslist": "4.16.1", - "buffer": "5.6.0", - "caniuse-lite": "^1.0.30001179", - "chalk": "2.4.2", - "chokidar": "3.5.1", - "crypto-browserify": "3.12.0", - "cssnano-simple": "1.2.2", - "etag": "1.8.1", - "find-cache-dir": "3.3.1", - "jest-worker": "24.9.0", - "native-url": "0.3.4", - "node-fetch": "2.6.1", - "node-html-parser": "1.4.9", - "node-libs-browser": "^2.2.1", - "p-limit": "3.1.0", - "path-browserify": "1.0.1", - "pnp-webpack-plugin": "1.6.4", - "postcss": "8.1.7", - "process": "0.11.10", - "prop-types": "15.7.2", - "raw-body": "2.4.1", - "react-is": "16.13.1", - "react-refresh": "0.8.3", - "sharp": "0.26.3", - "stream-browserify": "3.0.0", - "styled-jsx": "3.3.2", - "use-subscription": "1.5.1", - "vm-browserify": "1.1.2", - "watchpack": "2.0.0-beta.13" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=10.13.0" - }, - "optionalDependencies": { - "sharp": "0.26.3" - } - }, - "node_modules/next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - }, - "node_modules/node-abi": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.20.0.tgz", - "integrity": "sha512-6ldtfVR5l3RS8D0aT+lj/uM2Vv/PGEkeWzt2tl8DFBsGY/IuVnAIHl+dG6C14NlWClVv7Rn2+ZDvox+35Hx2Kg==", - "optional": true, - "dependencies": { - "semver": "^5.4.1" - } - }, - "node_modules/node-abi/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/node-addon-api": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz", - "integrity": "sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==", - "optional": true - }, - "node_modules/node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", - "engines": { - "node": "4.x || >=6.0.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz", - "integrity": "sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-html-parser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz", - "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==", - "dependencies": { - "he": "1.2.0" - } - }, - "node_modules/node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dependencies": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - } - }, - "node_modules/node-libs-browser/node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "node_modules/node-libs-browser/node_modules/path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "node_modules/node-libs-browser/node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "node_modules/node-libs-browser/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/node-libs-browser/node_modules/readable-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/node-libs-browser/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/node-libs-browser/node_modules/stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/node-releases": { - "version": "1.1.71", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", - "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" - }, - "node_modules/noop-logger": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz", - "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=", - "optional": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "optional": true, - "dependencies": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/number-to-bn": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha1-uzYjWS9+X54AMLGXe9QaDFP+HqA=", - "dependencies": { - "bn.js": "4.11.6", - "strip-hex-prefix": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/number-to-bn/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/oboe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha1-VVQoTFQ6ImbXo48X4HOCH73jk80=", - "dependencies": { - "http-https": "^1.0.0" - } - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "node_modules/p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", - "engines": { - "node": ">=4" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/p-timeout": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/parse-headers": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", - "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "node_modules/pbkdf2": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", - "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "node_modules/picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "engines": { - "node": ">=8.6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/platform": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", - "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" - }, - "node_modules/pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "dependencies": { - "ts-pnp": "^1.1.6" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/popper.js": { - "version": "1.16.1-lts", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", - "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" - }, - "node_modules/postcss": { - "version": "8.1.7", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.7.tgz", - "integrity": "sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==", - "dependencies": { - "colorette": "^1.2.1", - "line-column": "^1.0.2", - "nanoid": "^3.1.16", - "source-map": "^0.6.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/prebuild-install": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.1.tgz", - "integrity": "sha512-7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ==", - "optional": true, - "dependencies": { - "detect-libc": "^1.0.3", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^2.7.0", - "noop-logger": "^0.1.1", - "npmlog": "^4.0.1", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^3.0.3", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0", - "which-pm-runs": "^1.0.0" - }, - "bin": { - "prebuild-install": "bin.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/prebuild-install/node_modules/simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", - "optional": true, - "dependencies": { - "decompress-response": "^4.2.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", - "engines": { - "node": ">=4" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dependencies": { - "asap": "~2.0.3" - } - }, - "node_modules/prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "dependencies": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/querystring": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", - "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz", - "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==", - "dependencies": { - "bytes": "3.1.0", - "http-errors": "1.7.3", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "optional": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/react": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", - "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", - "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.1" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-refresh": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", - "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", - "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", - "dependencies": { - "lowercase-keys": "^1.0.0" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rlp": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz", - "integrity": "sha512-HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==", - "dependencies": { - "bn.js": "^4.11.1" - }, - "bin": { - "rlp": "bin/rlp" - } - }, - "node_modules/rlp/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/scheduler": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", - "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "node_modules/scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" - }, - "node_modules/secp256k1": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz", - "integrity": "sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==", - "hasInstallScript": true, - "dependencies": { - "elliptic": "^6.5.2", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/secp256k1/node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "dependencies": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - }, - "node_modules/serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/servify": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", - "dependencies": { - "body-parser": "^1.16.0", - "cors": "^2.8.1", - "express": "^4.14.0", - "request": "^2.79.0", - "xhr": "^2.3.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "optional": true - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/sharp": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.26.3.tgz", - "integrity": "sha512-NdEJ9S6AMr8Px0zgtFo1TJjMK/ROMU92MkDtYn2BBrDjIx3YfH9TUyGdzPC+I/L619GeYQc690Vbaxc5FPCCWg==", - "hasInstallScript": true, - "optional": true, - "dependencies": { - "array-flatten": "^3.0.0", - "color": "^3.1.3", - "detect-libc": "^1.0.3", - "node-addon-api": "^3.0.2", - "npmlog": "^4.1.2", - "prebuild-install": "^6.0.0", - "semver": "^7.3.2", - "simple-get": "^4.0.0", - "tar-fs": "^2.1.1", - "tunnel-agent": "^0.6.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/sharp/node_modules/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "optional": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "node_modules/signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "optional": true - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" - }, - "node_modules/simple-get": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz", - "integrity": "sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==", - "optional": true, - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/simple-get/node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "optional": true, - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/simple-get/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "optional": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "optional": true, - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dependencies": { - "whatwg-url": "^7.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", - "dependencies": { - "type-fest": "^0.7.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/stream-http/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/stream-http/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/stream-http/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" - }, - "node_modules/string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "optional": true, - "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dependencies": { - "ansi-regex": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-hex-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", - "integrity": "sha1-DF8VX+8RUTczd96du1iNoFUA428=", - "dependencies": { - "is-hex-prefixed": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/styled-jsx": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz", - "integrity": "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==", - "dependencies": { - "@babel/types": "7.8.3", - "babel-plugin-syntax-jsx": "6.18.0", - "convert-source-map": "1.7.0", - "loader-utils": "1.2.3", - "source-map": "0.7.3", - "string-hash": "1.1.3", - "stylis": "3.5.4", - "stylis-rule-sheet": "0.0.10" - } - }, - "node_modules/styled-jsx/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - }, - "node_modules/stylis-rule-sheet": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", - "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js": { - "version": "0.1.40", - "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.40.tgz", - "integrity": "sha512-yqiOCEoA4/IShXkY3WKwP5PvZhmoOOD8clsKA7EEcRILMkTEYHCQ21HDCAcVpmIxZq4LyZvWeRJ6quIyHk1caA==", - "dependencies": { - "bluebird": "^3.5.0", - "buffer": "^5.0.5", - "eth-lib": "^0.1.26", - "fs-extra": "^4.0.2", - "got": "^7.1.0", - "mime-types": "^2.1.16", - "mkdirp-promise": "^5.0.1", - "mock-fs": "^4.1.0", - "setimmediate": "^1.0.5", - "tar": "^4.0.2", - "xhr-request": "^1.0.1" - } - }, - "node_modules/swarm-js/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/got": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", - "dependencies": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/swarm-js/node_modules/prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/swarm-js/node_modules/url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "dependencies": { - "prepend-http": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/swr": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", - "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", - "dependencies": { - "dequal": "2.0.2" - } - }, - "node_modules/symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/tar": { - "version": "4.4.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", - "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", - "dependencies": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - }, - "engines": { - "node": ">=4.5" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "optional": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "optional": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/tar/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "dependencies": { - "setimmediate": "^1.0.4" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/tiny-warning": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - }, - "node_modules/to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/ts-pnp": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, - "node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/ua-parser-js": { - "version": "0.7.24", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz", - "integrity": "sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==", - "engines": { - "node": "*" - } - }, - "node_modules/ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" - }, - "node_modules/unbox-primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", - "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", - "dependencies": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.0", - "has-symbols": "^1.0.0", - "which-boxed-primitive": "^1.0.1" - } - }, - "node_modules/underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" - }, - "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", - "dependencies": { - "prepend-http": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/url-set-query": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", - "integrity": "sha1-AW6M/Xwg7gXK/neV6JK9BwL6ozk=" - }, - "node_modules/url-to-options": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", - "engines": { - "node": ">= 4" - } - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - }, - "node_modules/url/node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/use-subscription": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", - "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", - "dependencies": { - "object-assign": "^4.1.1" - } - }, - "node_modules/utf-8-validate": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.4.tgz", - "integrity": "sha512-MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q==", - "hasInstallScript": true, - "dependencies": { - "node-gyp-build": "^4.2.0" - } - }, - "node_modules/utf8": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", - "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" - }, - "node_modules/util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dependencies": { - "inherits": "2.0.3" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "node_modules/util/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - }, - "node_modules/watchpack": { - "version": "2.0.0-beta.13", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.0.0-beta.13.tgz", - "integrity": "sha512-ZEFq2mx/k5qgQwgi6NOm+2ImICb8ngAkA/rZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/web3": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3/-/web3-1.3.4.tgz", - "integrity": "sha512-D6cMb2EtTMLHgdGbkTPGl/Qi7DAfczR+Lp7iFX3bcu/bsD9V8fZW69hA8v5cRPNGzXUwVQebk3bS17WKR4cD2w==", - "dependencies": { - "web3-bzz": "1.3.4", - "web3-core": "1.3.4", - "web3-eth": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-shh": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-bzz": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.3.4.tgz", - "integrity": "sha512-DBRVQB8FAgoAtZCpp2GAGPCJjgBgsuwOKEasjV044AAZiONpXcKHbkO6G1SgItIixnrJsRJpoGLGw52Byr6FKw==", - "dependencies": { - "@types/node": "^12.12.6", - "got": "9.6.0", - "swarm-js": "^0.1.40", - "underscore": "1.9.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.3.4.tgz", - "integrity": "sha512-7OJu46RpCEfTerl+gPvHXANR2RkLqAfW7l2DAvQ7wN0pnCzl9nEfdgW6tMhr31k3TR2fWucwKzCyyxMGzMHeSA==", - "dependencies": { - "@types/bn.js": "^4.11.5", - "@types/node": "^12.12.6", - "bignumber.js": "^9.0.0", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-requestmanager": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-helpers": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.3.4.tgz", - "integrity": "sha512-n7BqDalcTa1stncHMmrnFtyTgDhX5Fy+avNaHCf6qcOP2lwTQC8+mdHVBONWRJ6Yddvln+c8oY/TAaB6PzWK0A==", - "dependencies": { - "underscore": "1.9.1", - "web3-eth-iban": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-method": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.3.4.tgz", - "integrity": "sha512-JxmQrujsAWYRRN77P/RY7XuZDCzxSiiQJrgX/60Lfyf7FF1Y0le4L/UMCi7vUJnuYkbU1Kfl9E0udnqwyPqlvQ==", - "dependencies": { - "@ethersproject/transactions": "^5.0.0-beta.135", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-promievent": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.3.4.tgz", - "integrity": "sha512-V61dZIeBwogg6hhZZUt0qL9hTp1WDhnsdjP++9fhTDr4vy/Gz8T5vibqT2LLg6lQC8i+Py33yOpMeMNjztaUaw==", - "dependencies": { - "eventemitter3": "4.0.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-requestmanager": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.3.4.tgz", - "integrity": "sha512-xriouCrhVnVDYQ04TZXdEREZm0OOJzkSEsoN5bu4JYsA6e/HzROeU+RjDpMUxFMzN4wxmFZ+HWbpPndS3QwMag==", - "dependencies": { - "underscore": "1.9.1", - "util": "^0.12.0", - "web3-core-helpers": "1.3.4", - "web3-providers-http": "1.3.4", - "web3-providers-ipc": "1.3.4", - "web3-providers-ws": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-requestmanager/node_modules/util": { - "version": "0.12.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.3.tgz", - "integrity": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/web3-core-subscriptions": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.3.4.tgz", - "integrity": "sha512-drVHVDxh54hv7xmjIm44g4IXjfGj022fGw4/meB5R2D8UATFI40F73CdiBlyqk3DysP9njDOLTJFSQvEkLFUOg==", - "dependencies": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.3.4.tgz", - "integrity": "sha512-8OIVMLbvmx+LB5RZ4tDhXuFGWSdNMrCZ4HM0+PywQ08uEcmAcqTMFAn4vdPii+J8gCatZR501r1KdzX3SDLoPw==", - "dependencies": { - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-accounts": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-eth-ens": "1.3.4", - "web3-eth-iban": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-abi": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.3.4.tgz", - "integrity": "sha512-PVSLXJ2dzdXsC+R24llIIEOS6S1KhG5qwNznJjJvXZFe3sqgdSe47eNvwUamZtCBjcrdR/HQr+L/FTxqJSf80Q==", - "dependencies": { - "@ethersproject/abi": "5.0.7", - "underscore": "1.9.1", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-accounts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.3.4.tgz", - "integrity": "sha512-gz9ReSmQEjqbYAjpmAx+UZF4CVMbyS4pfjSYWGAnNNI+Xz0f0u0kCIYXQ1UEaE+YeLcYiE+ZlZdgg6YoatO5nA==", - "dependencies": { - "crypto-browserify": "3.12.0", - "eth-lib": "0.2.8", - "ethereumjs-common": "^1.3.2", - "ethereumjs-tx": "^2.1.1", - "scrypt-js": "^3.0.1", - "underscore": "1.9.1", - "uuid": "3.3.2", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-accounts/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-eth-accounts/node_modules/eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/web3-eth-accounts/node_modules/uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/web3-eth-contract": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.3.4.tgz", - "integrity": "sha512-Fvy8ZxUksQY2ePt+XynFfOiSqxgQtMn4m2NJs6VXRl2Inl17qyRi/nIJJVKTcENLocm+GmZ/mxq2eOE5u02nPg==", - "dependencies": { - "@types/bn.js": "^4.11.5", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-ens": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.3.4.tgz", - "integrity": "sha512-b0580tQyQwpV2wyacwQiBEfQmjCUln5iPhge3IBIMXaI43BUNtH3lsCL9ERFQeOdweB4o+6rYyNYr6xbRcSytg==", - "dependencies": { - "content-hash": "^2.5.2", - "eth-ens-namehash": "2.0.8", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-iban": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.3.4.tgz", - "integrity": "sha512-Y7/hLjVvIN/OhaAyZ8L/hxbTqVX6AFTl2RwUXR6EEU9oaLydPcMjAx/Fr8mghUvQS3QJSr+UGubP3W4SkyNiYw==", - "dependencies": { - "bn.js": "^4.11.9", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-iban/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-eth-personal": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.3.4.tgz", - "integrity": "sha512-JiTbaktYVk1j+S2EDooXAhw5j/VsdvZfKRmHtXUe/HizPM9ETXmj1+ne4RT6m+950jQ7DJwUF3XU1FKYNtEDwQ==", - "dependencies": { - "@types/node": "^12.12.6", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-net": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.3.4.tgz", - "integrity": "sha512-wVyqgVC3Zt/0uGnBiR3GpnsS8lvOFTDgWZMxAk9C6Guh8aJD9MUc7pbsw5rHrPUVe6S6RUfFJvh/Xq8oMIQgSw==", - "dependencies": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-http": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.3.4.tgz", - "integrity": "sha512-aIg/xHXvxpqpFU70sqfp+JC3sGkLfAimRKTUhG4oJZ7U+tTcYTHoxBJj+4A3Id4JAoKiiv0k1/qeyQ8f3rMC3g==", - "dependencies": { - "web3-core-helpers": "1.3.4", - "xhr2-cookies": "1.1.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ipc": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.3.4.tgz", - "integrity": "sha512-E0CvXEJElr/TIlG1YfJeO3Le5NI/4JZM+1SsEdiPIfBUAJN18oOoum138EBGKv5+YaLKZUtUuJSXWjIIOR/0Ig==", - "dependencies": { - "oboe": "2.1.5", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ws": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.3.4.tgz", - "integrity": "sha512-WBd9hk2fUAdrbA3kUyUk94ZeILtE6txLeoVVvIKAw2bPegx+RjkLyxC1Du0oceKgQ/qQWod8CCzl1E/GgTP+MQ==", - "dependencies": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "websocket": "^1.0.32" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-shh": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.3.4.tgz", - "integrity": "sha512-zoeww5mxLh3xKcqbX85irQbtFe5pc5XwrgjvmdMkhkOdZzPASlWOgqzUFtaPykpLwC3yavVx4jG5RqifweXLUA==", - "dependencies": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-net": "1.3.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-utils": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.4.tgz", - "integrity": "sha512-/vC2v0MaZNpWooJfpRw63u0Y3ag2gNjAWiLtMSL6QQLmCqCy4SQIndMt/vRyx0uMoeGt1YTwSXEcHjUzOhLg0A==", - "dependencies": { - "bn.js": "^4.11.9", - "eth-lib": "0.2.8", - "ethereum-bloom-filters": "^1.0.6", - "ethjs-unit": "0.1.6", - "number-to-bn": "1.7.0", - "randombytes": "^2.1.0", - "underscore": "1.9.1", - "utf8": "3.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-utils/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-utils/node_modules/eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "node_modules/websocket": { - "version": "1.0.33", - "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.33.tgz", - "integrity": "sha512-XwNqM2rN5eh3G2CUQE3OHZj+0xfdH42+OFK6LdC2yqiC0YU8e5UK0nYre220T0IyyN031V/XOvtHvXozvJYFWA==", - "dependencies": { - "bufferutil": "^4.0.1", - "debug": "^2.2.0", - "es5-ext": "^0.10.50", - "typedarray-to-buffer": "^3.1.5", - "utf-8-validate": "^5.0.2", - "yaeti": "^0.0.6" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "node_modules/which-pm-runs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", - "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=", - "optional": true - }, - "node_modules/which-typed-array": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", - "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", - "dependencies": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.0", - "es-abstract": "^1.18.0-next.1", - "foreach": "^2.0.5", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.1", - "is-typed-array": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "optional": true, - "dependencies": { - "string-width": "^1.0.2 || 2" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "node_modules/ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", - "dependencies": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - } - }, - "node_modules/ws/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", - "dependencies": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/xhr-request": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", - "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", - "dependencies": { - "buffer-to-arraybuffer": "^0.0.5", - "object-assign": "^4.1.1", - "query-string": "^5.0.1", - "simple-get": "^2.7.0", - "timed-out": "^4.0.1", - "url-set-query": "^1.0.0", - "xhr": "^2.0.4" - } - }, - "node_modules/xhr-request-promise": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", - "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", - "dependencies": { - "xhr-request": "^1.1.0" - } - }, - "node_modules/xhr-request/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/xhr-request/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/xhr-request/node_modules/simple-get": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz", - "integrity": "sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==", - "dependencies": { - "decompress-response": "^3.3.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/xhr2-cookies": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr2-cookies/-/xhr2-cookies-1.1.0.tgz", - "integrity": "sha1-fXdEnQmZGX8VXLc7I99yUF7YnUg=", - "dependencies": { - "cookiejar": "^2.1.1" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/yaeti": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", - "integrity": "sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=", - "engines": { - "node": ">=0.10.32" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - } - } - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" - }, - "@babel/highlight": { - "version": "7.13.8", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz", - "integrity": "sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw==", - "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/runtime": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", - "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/types": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", - "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", - "requires": { - "esutils": "^2.0.2", - "lodash": "^4.17.13", - "to-fast-properties": "^2.0.0" - } - }, - "@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" - }, - "@ethersproject/abi": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.0.7.tgz", - "integrity": "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==", - "requires": { - "@ethersproject/address": "^5.0.4", - "@ethersproject/bignumber": "^5.0.7", - "@ethersproject/bytes": "^5.0.4", - "@ethersproject/constants": "^5.0.4", - "@ethersproject/hash": "^5.0.4", - "@ethersproject/keccak256": "^5.0.3", - "@ethersproject/logger": "^5.0.5", - "@ethersproject/properties": "^5.0.3", - "@ethersproject/strings": "^5.0.4" - } - }, - "@ethersproject/abstract-provider": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.0.9.tgz", - "integrity": "sha512-X9fMkqpeu9ayC3JyBkeeZhn35P4xQkpGX/l+FrxDtEW9tybf/UWXSMi8bGThpPtfJ6q6U2LDetXSpSwK4TfYQQ==", - "requires": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/networks": "^5.0.7", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/transactions": "^5.0.9", - "@ethersproject/web": "^5.0.12" - } - }, - "@ethersproject/abstract-signer": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.0.13.tgz", - "integrity": "sha512-VBIZEI5OK0TURoCYyw0t3w+TEO4kdwnI9wvt4kqUwyxSn3YCRpXYVl0Xoe7XBR/e5+nYOi2MyFGJ3tsFwONecQ==", - "requires": { - "@ethersproject/abstract-provider": "^5.0.8", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7" - } - }, - "@ethersproject/address": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.0.10.tgz", - "integrity": "sha512-70vqESmW5Srua1kMDIN6uVfdneZMaMyRYH4qPvkAXGkbicrCOsA9m01vIloA4wYiiF+HLEfL1ENKdn5jb9xiAw==", - "requires": { - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/rlp": "^5.0.7" - } - }, - "@ethersproject/base64": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.0.8.tgz", - "integrity": "sha512-PNbpHOMgZpZ1skvQl119pV2YkCPXmZTxw+T92qX0z7zaMFPypXWTZBzim+hUceb//zx4DFjeGT4aSjZRTOYThg==", - "requires": { - "@ethersproject/bytes": "^5.0.9" - } - }, - "@ethersproject/bignumber": { - "version": "5.0.14", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.0.14.tgz", - "integrity": "sha512-Q4TjMq9Gg3Xzj0aeJWqJgI3tdEiPiET7Y5OtNtjTAODZ2kp4y9jMNg97zVcvPedFvGROdpGDyCI77JDFodUzOw==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "bn.js": "^4.4.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "@ethersproject/bytes": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.0.10.tgz", - "integrity": "sha512-vpu0v1LZ1j1s9kERQIMnVU69MyHEzUff7nqK9XuCU4vx+AM8n9lU2gj7jtJIvGSt9HzatK/6I6bWusI5nyuaTA==", - "requires": { - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/constants": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.0.9.tgz", - "integrity": "sha512-2uAKH89UcaJP/Sc+54u92BtJtZ4cPgcS1p0YbB1L3tlkavwNvth+kNCUplIB1Becqs7BOZr0B/3dMNjhJDy4Dg==", - "requires": { - "@ethersproject/bignumber": "^5.0.13" - } - }, - "@ethersproject/hash": { - "version": "5.0.11", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.0.11.tgz", - "integrity": "sha512-H3KJ9fk33XWJ2djAW03IL7fg3DsDMYjO1XijiUb1hJ85vYfhvxu0OmsU7d3tg2Uv1H1kFSo8ghr3WFQ8c+NL3g==", - "requires": { - "@ethersproject/abstract-signer": "^5.0.10", - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" - } - }, - "@ethersproject/keccak256": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.0.8.tgz", - "integrity": "sha512-zoGbwXcWWs9MX4NOAZ7N0hhgIRl4Q/IO/u9c/RHRY4WqDy3Ywm0OLamEV53QDwhjwn3YiiVwU1Ve5j7yJ0a/KQ==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "js-sha3": "0.5.7" - }, - "dependencies": { - "js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" - } - } - }, - "@ethersproject/logger": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.0.9.tgz", - "integrity": "sha512-kV3Uamv3XOH99Xf3kpIG3ZkS7mBNYcLDM00JSDtNgNB4BihuyxpQzIZPRIDmRi+95Z/R1Bb0X2kUNHa/kJoVrw==" - }, - "@ethersproject/networks": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.0.8.tgz", - "integrity": "sha512-PYpptlO2Tu5f/JEBI5hdlMds5k1DY1QwVbh3LKPb3un9dQA2bC51vd2/gRWAgSBpF3kkmZOj4FhD7ATLX4H+DA==", - "requires": { - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/properties": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.0.8.tgz", - "integrity": "sha512-zEnLMze2Eu2VDPj/05QwCwMKHh506gpT9PP9KPVd4dDB+5d6AcROUYVLoIIQgBYK7X/Gw0UJmG3oVtnxOQafAw==", - "requires": { - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/rlp": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.0.8.tgz", - "integrity": "sha512-E4wdFs8xRNJfzNHmnkC8w5fPeT4Wd1U2cust3YeT16/46iSkLT8nn8ilidC6KhR7hfuSZE4UqSPzyk76p7cdZg==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/signing-key": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.0.10.tgz", - "integrity": "sha512-w5it3GbFOvN6e0mTd5gDNj+bwSe6L9jqqYjU+uaYS8/hAEp4qYLk5p8ZjbJJkNn7u1p0iwocp8X9oH/OdK8apA==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "elliptic": "6.5.4" - } - }, - "@ethersproject/strings": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.0.9.tgz", - "integrity": "sha512-ogxBpcUpdO524CYs841MoJHgHxEPUy0bJFDS4Ezg8My+WYVMfVAOlZSLss0Rurbeeam8CpUVDzM4zUn09SU66Q==", - "requires": { - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/logger": "^5.0.8" - } - }, - "@ethersproject/transactions": { - "version": "5.0.10", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.0.10.tgz", - "integrity": "sha512-Tqpp+vKYQyQdJQQk4M73tDzO7ODf2D42/sJOcKlDAAbdSni13v6a+31hUdo02qYXhVYwIs+ZjHnO4zKv5BNk8w==", - "requires": { - "@ethersproject/address": "^5.0.9", - "@ethersproject/bignumber": "^5.0.13", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/constants": "^5.0.8", - "@ethersproject/keccak256": "^5.0.7", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/rlp": "^5.0.7", - "@ethersproject/signing-key": "^5.0.8" - } - }, - "@ethersproject/web": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.0.13.tgz", - "integrity": "sha512-G3x/Ns7pQm21ALnWLbdBI5XkW/jrsbXXffI9hKNPHqf59mTxHYtlNiSwxdoTSwCef3Hn7uvGZpaSgTyxs7IufQ==", - "requires": { - "@ethersproject/base64": "^5.0.7", - "@ethersproject/bytes": "^5.0.9", - "@ethersproject/logger": "^5.0.8", - "@ethersproject/properties": "^5.0.7", - "@ethersproject/strings": "^5.0.8" - } - }, - "@hapi/accept": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.1.tgz", - "integrity": "sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==", - "requires": { - "@hapi/boom": "9.x.x", - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/boom": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.1.tgz", - "integrity": "sha512-VNR8eDbBrOxBgbkddRYIe7+8DZ+vSbV6qlmaN2x7eWjsUjy2VmQgChkOKcVZIeupEZYj+I0dqNg430OhwzagjA==", - "requires": { - "@hapi/hoek": "9.x.x" - } - }, - "@hapi/hoek": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz", - "integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==" - }, - "@material-ui/core": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz", - "integrity": "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==", - "requires": { - "@babel/runtime": "^7.4.4", - "@material-ui/styles": "^4.11.3", - "@material-ui/system": "^4.11.3", - "@material-ui/types": "^5.1.0", - "@material-ui/utils": "^4.11.2", - "@types/react-transition-group": "^4.2.0", - "clsx": "^1.0.4", - "hoist-non-react-statics": "^3.3.2", - "popper.js": "1.16.1-lts", - "prop-types": "^15.7.2", - "react-is": "^16.8.0 || ^17.0.0", - "react-transition-group": "^4.4.0" - } - }, - "@material-ui/icons": { - "version": "4.11.2", - "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz", - "integrity": "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==", - "requires": { - "@babel/runtime": "^7.4.4" - } - }, - "@material-ui/lab": { - "version": "4.0.0-alpha.57", - "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", - "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", - "requires": { - "@babel/runtime": "^7.4.4", - "@material-ui/utils": "^4.11.2", - "clsx": "^1.0.4", - "prop-types": "^15.7.2", - "react-is": "^16.8.0 || ^17.0.0" - } - }, - "@material-ui/styles": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz", - "integrity": "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==", - "requires": { - "@babel/runtime": "^7.4.4", - "@emotion/hash": "^0.8.0", - "@material-ui/types": "^5.1.0", - "@material-ui/utils": "^4.11.2", - "clsx": "^1.0.4", - "csstype": "^2.5.2", - "hoist-non-react-statics": "^3.3.2", - "jss": "^10.5.1", - "jss-plugin-camel-case": "^10.5.1", - "jss-plugin-default-unit": "^10.5.1", - "jss-plugin-global": "^10.5.1", - "jss-plugin-nested": "^10.5.1", - "jss-plugin-props-sort": "^10.5.1", - "jss-plugin-rule-value-function": "^10.5.1", - "jss-plugin-vendor-prefixer": "^10.5.1", - "prop-types": "^15.7.2" - } - }, - "@material-ui/system": { - "version": "4.11.3", - "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz", - "integrity": "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==", - "requires": { - "@babel/runtime": "^7.4.4", - "@material-ui/utils": "^4.11.2", - "csstype": "^2.5.2", - "prop-types": "^15.7.2" - } - }, - "@material-ui/types": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz", - "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==" - }, - "@material-ui/utils": { - "version": "4.11.2", - "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", - "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", - "requires": { - "@babel/runtime": "^7.4.4", - "prop-types": "^15.7.2", - "react-is": "^16.8.0 || ^17.0.0" - } - }, - "@next/env": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/env/-/env-10.0.7.tgz", - "integrity": "sha512-/vnz2SL/mk3Tei58WfRtVnvz5xHmAqcBmZL5sTBEy1CZG6OtZGNx0qAFCjtVkeJ5m1Bh4Ut+WFh/RF333wx8Sg==" - }, - "@next/polyfill-module": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-10.0.7.tgz", - "integrity": "sha512-HxqzRpoSgmZP0kRIWwH+e0SgtAXqJ0VkYtwWcsQFED8+xF4Eqn+7Twyp4uE6hutC8gr8IFSFqH+DEYhRtg1ltQ==" - }, - "@next/react-dev-overlay": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-10.0.7.tgz", - "integrity": "sha512-yq71MDHVqN2N+IqOvZDiFsMpQrBcymrdpTx1ShhAADX7cWQvW4dhcIir4BbfrS10vS1LLz/3a8uKZkGdNoJj3w==", - "requires": { - "@babel/code-frame": "7.12.11", - "anser": "1.4.9", - "chalk": "4.0.0", - "classnames": "2.2.6", - "css.escape": "1.5.1", - "data-uri-to-buffer": "3.0.1", - "platform": "1.3.6", - "shell-quote": "1.7.2", - "source-map": "0.8.0-beta.0", - "stacktrace-parser": "0.1.10", - "strip-ansi": "6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz", - "integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@next/react-refresh-utils": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-10.0.7.tgz", - "integrity": "sha512-d/71vtQglv6m7sh4W1O9drc2hYti7UnAdEXfBLZAS354g2S80lvCRGIhbDrMx4w0rpShoxBIZboE2++LihAESg==" - }, - "@opentelemetry/api": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-0.14.0.tgz", - "integrity": "sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==", - "requires": { - "@opentelemetry/context-base": "^0.14.0" - } - }, - "@opentelemetry/context-base": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.14.0.tgz", - "integrity": "sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==" - }, - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "requires": { - "defer-to-connect": "^1.0.1" - } - }, - "@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", - "requires": { - "@types/node": "*" - } - }, - "@types/node": { - "version": "12.20.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz", - "integrity": "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==" - }, - "@types/pbkdf2": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", - "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", - "requires": { - "@types/node": "*" - } - }, - "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" - }, - "@types/react": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz", - "integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==", - "requires": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - } - } - }, - "@types/react-transition-group": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", - "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", - "requires": { - "@types/react": "*" - } - }, - "@types/secp256k1": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.1.tgz", - "integrity": "sha512-+ZjSA8ELlOp8SlKi0YLB2tz9d5iPNEmOBd+8Rz21wTMdaXQIa9b6TEnD6l5qKOCypE7FSyPyck12qZJxSDNoog==", - "requires": { - "@types/node": "*" - } - }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "anser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/anser/-/anser-1.4.9.tgz", - "integrity": "sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==" - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "array-filter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz", - "integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=" - }, - "array-flatten": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-3.0.0.tgz", - "integrity": "sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA==", - "optional": true - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "ast-types": { - "version": "0.13.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", - "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "available-typed-arrays": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz", - "integrity": "sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==", - "requires": { - "array-filter": "^1.0.0" - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" - }, - "base-x": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz", - "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - }, - "bignumber.js": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz", - "integrity": "sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - }, - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "optional": true, - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "blakejs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz", - "integrity": "sha1-ad+S75U6qIylGjLfarHFShVfx6U=" - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "bn.js": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", - "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "dependencies": { - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - } - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "requires": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.16.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz", - "integrity": "sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==", - "requires": { - "caniuse-lite": "^1.0.30001173", - "colorette": "^1.2.1", - "electron-to-chromium": "^1.3.634", - "escalade": "^3.1.1", - "node-releases": "^1.1.69" - } - }, - "bs58": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", - "requires": { - "base-x": "^3.0.2" - } - }, - "bs58check": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", - "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", - "requires": { - "bs58": "^4.0.0", - "create-hash": "^1.1.0", - "safe-buffer": "^5.1.2" - } - }, - "buffer": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", - "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" - } - }, - "buffer-to-arraybuffer": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", - "integrity": "sha1-YGSkD6dutDxyOrqe+PbhIW0QURo=" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" - }, - "bufferutil": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.3.tgz", - "integrity": "sha512-yEYTwGndELGvfXsImMBLop58eaGW+YdONi1fNjTINSY98tmMmFijBG6WXgdkfuLNt4imzQNtIE+eBp1PVpMCSw==", - "requires": { - "node-gyp-build": "^4.2.0" - } - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" - }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "caniuse-lite": { - "version": "1.0.30001196", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001196.tgz", - "integrity": "sha512-CPvObjD3ovWrNBaXlAIGWmg2gQQuJ5YhuciUOjPRox6hIQttu8O+b51dx6VIpIY9ESd2d0Vac1RKpICdG4rGUg==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chokidar": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", - "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.3.1", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.5.0" - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "cids": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", - "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", - "requires": { - "buffer": "^5.5.0", - "class-is": "^1.1.0", - "multibase": "~0.6.0", - "multicodec": "^1.0.0", - "multihashes": "~0.4.15" - }, - "dependencies": { - "multicodec": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", - "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", - "requires": { - "buffer": "^5.6.0", - "varint": "^5.0.0" - } - } - } - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-is": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", - "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" - }, - "classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - }, - "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", - "requires": { - "mimic-response": "^1.0.0" - }, - "dependencies": { - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - } - }, - "clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "optional": true - }, - "color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", - "optional": true, - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "color-string": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", - "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", - "optional": true, - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "optional": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" - }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "requires": { - "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "content-hash": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", - "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", - "requires": { - "cids": "^0.7.1", - "multicodec": "^0.5.5", - "multihashes": "^0.4.15" - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "requires": { - "safe-buffer": "~5.1.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "cookiejar": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", - "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-fetch": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz", - "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==", - "requires": { - "node-fetch": "2.6.1" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css-vendor": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", - "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", - "requires": { - "@babel/runtime": "^7.8.3", - "is-in-browser": "^1.0.2" - } - }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - }, - "cssnano-preset-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz", - "integrity": "sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==", - "requires": { - "caniuse-lite": "^1.0.30001179", - "postcss": "^7.0.32" - }, - "dependencies": { - "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "cssnano-simple": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssnano-simple/-/cssnano-simple-1.2.2.tgz", - "integrity": "sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==", - "requires": { - "cssnano-preset-simple": "1.2.2", - "postcss": "^7.0.32" - }, - "dependencies": { - "postcss": { - "version": "7.0.35", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", - "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "csstype": { - "version": "2.6.16", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", - "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-uri-to-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz", - "integrity": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "decompress-response": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz", - "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==", - "optional": true, - "requires": { - "mimic-response": "^2.0.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "optional": true - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "optional": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "dequal": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", - "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==" - }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", - "optional": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "dom-helpers": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", - "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - } - } - }, - "dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "electron-to-chromium": { - "version": "1.3.680", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.680.tgz", - "integrity": "sha512-XBACJT9RdpdWtoMXQPR8Be3ZtmizWWbxfw8cY2b5feUwiDO3FUl8qo4W2jXoq/WnnA3xBRqafu1XbpczqyUvlA==" - }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "es-abstract": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", - "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", - "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.2", - "is-string": "^1.0.5", - "object-inspect": "^1.9.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.0" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es5-ext": { - "version": "0.10.53", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", - "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", - "requires": { - "es6-iterator": "~2.0.3", - "es6-symbol": "~3.1.3", - "next-tick": "~1.0.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - }, - "eth-ens-namehash": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", - "integrity": "sha1-IprEbsqG1S4MmR58sq74P/D2i88=", - "requires": { - "idna-uts46-hx": "^2.3.1", - "js-sha3": "^0.5.7" - }, - "dependencies": { - "js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha1-DU/9gALVMzqrr0oj7tL2N0yfKOc=" - } - } - }, - "eth-lib": { - "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", - "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "nano-json-stream-parser": "^0.1.2", - "servify": "^0.1.12", - "ws": "^3.0.0", - "xhr-request-promise": "^0.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "ethereum-bloom-filters": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.9.tgz", - "integrity": "sha512-GiK/RQkAkcVaEdxKVkPcG07PQ5vD7v2MFSHgZmBJSfMzNRHimntdBithsHAT89tAXnIpzVDWt8iaCD1DvkaxGg==", - "requires": { - "js-sha3": "^0.8.0" - } - }, - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "ethereumjs-common": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/ethereumjs-common/-/ethereumjs-common-1.5.2.tgz", - "integrity": "sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==" - }, - "ethereumjs-tx": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ethereumjs-tx/-/ethereumjs-tx-2.1.2.tgz", - "integrity": "sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==", - "requires": { - "ethereumjs-common": "^1.5.0", - "ethereumjs-util": "^6.0.0" - } - }, - "ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", - "requires": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "ethjs-unit": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha1-xmWSHkduh7ziqdWIpv4EBbLEFpk=", - "requires": { - "bn.js": "4.11.6", - "number-to-bn": "1.7.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - } - } - }, - "ethjs-util": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", - "requires": { - "is-hex-prefixed": "1.0.0", - "strip-hex-prefix": "1.0.0" - } - }, - "eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", - "optional": true - }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "requires": { - "type": "^2.0.0" - }, - "dependencies": { - "type": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.3.0.tgz", - "integrity": "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==" - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fbemitter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", - "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", - "requires": { - "fbjs": "^3.0.0" - } - }, - "fbjs": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", - "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", - "requires": { - "cross-fetch": "^3.0.4", - "fbjs-css-vars": "^1.0.0", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" - } - }, - "fbjs-css-vars": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", - "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - } - }, - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "flux": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", - "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", - "requires": { - "fbemitter": "^3.0.0", - "fbjs": "^3.0.0" - } - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "optional": true - }, - "fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "requires": { - "minipass": "^2.6.0" - } - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "requires": { - "pump": "^3.0.0" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=", - "optional": true - }, - "glob-parent": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", - "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", - "requires": { - "is-glob": "^4.0.1" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "requires": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "requires": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - } - }, - "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", - "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "has-symbol-support-x": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" - }, - "has-symbols": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", - "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" - }, - "has-to-string-tag-x": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", - "requires": { - "has-symbol-support-x": "^1.4.1" - } - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "optional": true - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - } - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==" - }, - "http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - }, - "http-https": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha1-L5CN1fHbQGjAWM1ubUzjkskTOJs=" - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "hyphenate-style-name": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", - "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "idna-uts46-hx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", - "requires": { - "punycode": "2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=" - } - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "indefinite-observable": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", - "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", - "requires": { - "symbol-observable": "1.2.0" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "optional": true - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", - "optional": true - }, - "is-bigint": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", - "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", - "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", - "requires": { - "call-bind": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" - }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "is-generator-function": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz", - "integrity": "sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==" - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-hex-prefixed": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ=" - }, - "is-in-browser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", - "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" - }, - "is-negative-zero": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", - "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "is-number-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", - "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==" - }, - "is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" - }, - "is-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", - "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", - "requires": { - "call-bind": "^1.0.2", - "has-symbols": "^1.0.1" - } - }, - "is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "is-string": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", - "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" - }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-typed-array": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", - "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", - "requires": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.0-next.2", - "foreach": "^2.0.5", - "has-symbols": "^1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "isurl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", - "requires": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - } - }, - "jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jss": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", - "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", - "requires": { - "@babel/runtime": "^7.3.1", - "csstype": "^3.0.2", - "indefinite-observable": "^2.0.1", - "is-in-browser": "^1.1.3", - "tiny-warning": "^1.0.2" - }, - "dependencies": { - "csstype": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", - "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" - } - } - }, - "jss-plugin-camel-case": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", - "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", - "requires": { - "@babel/runtime": "^7.3.1", - "hyphenate-style-name": "^1.0.3", - "jss": "10.5.1" - } - }, - "jss-plugin-default-unit": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", - "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "jss-plugin-global": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", - "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "jss-plugin-nested": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", - "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" - } - }, - "jss-plugin-props-sort": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", - "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1" - } - }, - "jss-plugin-rule-value-function": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", - "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "jss": "10.5.1", - "tiny-warning": "^1.0.2" - } - }, - "jss-plugin-vendor-prefixer": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", - "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", - "requires": { - "@babel/runtime": "^7.3.1", - "css-vendor": "^2.0.8", - "jss": "10.5.1" - } - }, - "keccak": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.1.tgz", - "integrity": "sha512-epq90L9jlFWCW7+pQa6JOnKn2Xgl2mtI664seYR6MHskvI9agt7AnDqmAlp9TqU4/caMYbA08Hi5DMZAl5zdkA==", - "requires": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "dependencies": { - "node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - } - } - }, - "keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "requires": { - "json-buffer": "3.0.0" - } - }, - "line-column": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/line-column/-/line-column-1.0.2.tgz", - "integrity": "sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=", - "requires": { - "isarray": "^1.0.0", - "isobject": "^2.0.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "optional": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "requires": { - "semver": "^6.0.0" - } - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "mime-db": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", - "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==" - }, - "mime-types": { - "version": "2.1.29", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", - "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", - "requires": { - "mime-db": "1.46.0" - } - }, - "mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "optional": true - }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", - "requires": { - "dom-walk": "^0.1.0" - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - }, - "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - } - }, - "minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "requires": { - "minipass": "^2.9.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - }, - "mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "optional": true - }, - "mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", - "requires": { - "mkdirp": "*" - } - }, - "mock-fs": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.13.0.tgz", - "integrity": "sha512-DD0vOdofJdoaRNtnWcrXe6RQbpHkPPmtqGq14uRX0F8ZKJ5nv89CVTYl/BZdppDxBDaV0hl75htg3abpEWlPZA==" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "multibase": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "multicodec": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", - "requires": { - "varint": "^5.0.0" - } - }, - "multihashes": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", - "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - }, - "dependencies": { - "multibase": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - } - } - }, - "nano-json-stream-parser": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18=" - }, - "nanoid": { - "version": "3.1.20", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", - "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" - }, - "napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", - "optional": true - }, - "native-url": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.3.4.tgz", - "integrity": "sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==", - "requires": { - "querystring": "^0.2.0" - } - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" - }, - "next": { - "version": "10.0.7", - "resolved": "https://registry.npmjs.org/next/-/next-10.0.7.tgz", - "integrity": "sha512-We0utmwwfkvO12eLyUZd3tX9VLDE3FPpOaHpH3kqKdUTxJzUKt8FLBXCTm0mwsTKW5XColWG8mJvz2OLu3+3QA==", - "requires": { - "@babel/runtime": "7.12.5", - "@hapi/accept": "5.0.1", - "@next/env": "10.0.7", - "@next/polyfill-module": "10.0.7", - "@next/react-dev-overlay": "10.0.7", - "@next/react-refresh-utils": "10.0.7", - "@opentelemetry/api": "0.14.0", - "ast-types": "0.13.2", - "browserslist": "4.16.1", - "buffer": "5.6.0", - "caniuse-lite": "^1.0.30001179", - "chalk": "2.4.2", - "chokidar": "3.5.1", - "crypto-browserify": "3.12.0", - "cssnano-simple": "1.2.2", - "etag": "1.8.1", - "find-cache-dir": "3.3.1", - "jest-worker": "24.9.0", - "native-url": "0.3.4", - "node-fetch": "2.6.1", - "node-html-parser": "1.4.9", - "node-libs-browser": "^2.2.1", - "p-limit": "3.1.0", - "path-browserify": "1.0.1", - "pnp-webpack-plugin": "1.6.4", - "postcss": "8.1.7", - "process": "0.11.10", - "prop-types": "15.7.2", - "raw-body": "2.4.1", - "react-is": "16.13.1", - "react-refresh": "0.8.3", - "sharp": "0.26.3", - "stream-browserify": "3.0.0", - "styled-jsx": "3.3.2", - "use-subscription": "1.5.1", - "vm-browserify": "1.1.2", - "watchpack": "2.0.0-beta.13" - } - }, - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" - }, - "node-abi": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.20.0.tgz", - "integrity": "sha512-6ldtfVR5l3RS8D0aT+lj/uM2Vv/PGEkeWzt2tl8DFBsGY/IuVnAIHl+dG6C14NlWClVv7Rn2+ZDvox+35Hx2Kg==", - "optional": true, - "requires": { - "semver": "^5.4.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "optional": true - } - } - }, - "node-addon-api": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz", - "integrity": "sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==", - "optional": true - }, - "node-fetch": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", - "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" - }, - "node-gyp-build": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.2.3.tgz", - "integrity": "sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg==" - }, - "node-html-parser": { - "version": "1.4.9", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.9.tgz", - "integrity": "sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==", - "requires": { - "he": "1.2.0" - } - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - } - } - }, - "node-releases": { - "version": "1.1.71", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", - "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" - }, - "noop-logger": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz", - "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=", - "optional": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "normalize-url": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==" - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "optional": true - }, - "number-to-bn": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha1-uzYjWS9+X54AMLGXe9QaDFP+HqA=", - "requires": { - "bn.js": "4.11.6", - "strip-hex-prefix": "1.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha1-UzRK2xRhehP26N0s4okF0cC6MhU=" - } - } - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-inspect": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", - "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", - "object-keys": "^1.1.1" - } - }, - "oboe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha1-VVQoTFQ6ImbXo48X4HOCH73jk80=", - "requires": { - "http-https": "^1.0.0" - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { - "ee-first": "1.1.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "@material-ui/styles": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz", + "integrity": "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==", "requires": { - "p-limit": "^2.2.0" - }, - "dependencies": { - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - } + "@babel/runtime": "^7.4.4", + "@emotion/hash": "^0.8.0", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "csstype": "^2.5.2", + "hoist-non-react-statics": "^3.3.2", + "jss": "^10.5.1", + "jss-plugin-camel-case": "^10.5.1", + "jss-plugin-default-unit": "^10.5.1", + "jss-plugin-global": "^10.5.1", + "jss-plugin-nested": "^10.5.1", + "jss-plugin-props-sort": "^10.5.1", + "jss-plugin-rule-value-function": "^10.5.1", + "jss-plugin-vendor-prefixer": "^10.5.1", + "prop-types": "^15.7.2" } }, - "p-timeout": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "@material-ui/system": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz", + "integrity": "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==", "requires": { - "p-finally": "^1.0.0" + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "csstype": "^2.5.2", + "prop-types": "^15.7.2" } }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "@material-ui/types": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz", + "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==" }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "@material-ui/utils": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", + "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "@babel/runtime": "^7.4.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" } }, - "parse-headers": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz", - "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" + "@next/env": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/env/-/env-15.2.0.tgz", + "integrity": "sha512-eMgJu1RBXxxqqnuRJQh5RozhskoNUDHBFybvi+Z+yK9qzKeG7dadhv/Vp1YooSZmCnegf7JxWuapV77necLZNA==" + }, + "@next/swc-darwin-arm64": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.2.0.tgz", + "integrity": "sha512-rlp22GZwNJjFCyL7h5wz9vtpBVuCt3ZYjFWpEPBGzG712/uL1bbSkS675rVAUCRZ4hjoTJ26Q7IKhr5DfJrHDA==", + "optional": true }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "@next/swc-darwin-x64": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.2.0.tgz", + "integrity": "sha512-DiU85EqSHogCz80+sgsx90/ecygfCSGl5P3b4XDRVZpgujBm5lp4ts7YaHru7eVTyZMjHInzKr+w0/7+qDrvMA==", + "optional": true }, - "path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + "@next/swc-linux-arm64-gnu": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.2.0.tgz", + "integrity": "sha512-VnpoMaGukiNWVxeqKHwi8MN47yKGyki5q+7ql/7p/3ifuU2341i/gDwGK1rivk0pVYbdv5D8z63uu9yMw0QhpQ==", + "optional": true }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "pbkdf2": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", - "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } + "@next/swc-linux-arm64-musl": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.2.0.tgz", + "integrity": "sha512-ka97/ssYE5nPH4Qs+8bd8RlYeNeUVBhcnsNUmFM6VWEob4jfN9FTr0NBhXVi1XEJpj3cMfgSRW+LdE3SUZbPrw==", + "optional": true }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "@next/swc-linux-x64-gnu": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.2.0.tgz", + "integrity": "sha512-zY1JduE4B3q0k2ZCE+DAF/1efjTXUsKP+VXRtrt/rJCTgDlUyyryx7aOgYXNc1d8gobys/Lof9P9ze8IyRDn7Q==", + "optional": true }, - "picomatch": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", - "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" + "@next/swc-linux-x64-musl": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.2.0.tgz", + "integrity": "sha512-QqvLZpurBD46RhaVaVBepkVQzh8xtlUN00RlG4Iq1sBheNugamUNPuZEH1r9X1YGQo1KqAe1iiShF0acva3jHQ==", + "optional": true }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "requires": { - "find-up": "^4.0.0" - } + "@next/swc-win32-arm64-msvc": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.2.0.tgz", + "integrity": "sha512-ODZ0r9WMyylTHAN6pLtvUtQlGXBL9voljv6ujSlcsjOxhtXPI1Ag6AhZK0SE8hEpR1374WZZ5w33ChpJd5fsjw==", + "optional": true }, - "platform": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.6.tgz", - "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" + "@next/swc-win32-x64-msvc": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.2.0.tgz", + "integrity": "sha512-8+4Z3Z7xa13NdUuUAcpVNA6o76lNPniBd9Xbo02bwXQXnZgFvEopwY2at5+z7yHl47X9qbZpvwatZ2BRo3EdZw==", + "optional": true }, - "pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "@noble/curves": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz", + "integrity": "sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==", "requires": { - "ts-pnp": "^1.1.6" + "@noble/hashes": "1.4.0" } }, - "popper.js": { - "version": "1.16.1-lts", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", - "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" + "@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==" }, - "postcss": { - "version": "8.1.7", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.1.7.tgz", - "integrity": "sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==", - "requires": { - "colorette": "^1.2.1", - "line-column": "^1.0.2", - "nanoid": "^3.1.16", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } + "@scure/base": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz", + "integrity": "sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==" }, - "prebuild-install": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.1.tgz", - "integrity": "sha512-7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ==", - "optional": true, + "@scure/bip32": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz", + "integrity": "sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==", "requires": { - "detect-libc": "^1.0.3", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^2.7.0", - "noop-logger": "^0.1.1", - "npmlog": "^4.0.1", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^3.0.3", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0", - "which-pm-runs": "^1.0.0" - }, - "dependencies": { - "simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", - "optional": true, - "requires": { - "decompress-response": "^4.2.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - } + "@noble/curves": "~1.4.0", + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" } }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "@scure/bip39": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz", + "integrity": "sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==", "requires": { - "asap": "~2.0.3" + "@noble/hashes": "~1.4.0", + "@scure/base": "~1.1.6" } }, - "prop-types": { - "version": "15.7.2", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", - "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" + }, + "@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.8.1" + "tslib": "^2.8.0" } }, - "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "@types/node": { + "version": "22.13.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.8.tgz", + "integrity": "sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==", "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" + "undici-types": "~6.20.0" } }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "@types/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz", + "integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==", "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" + "@types/prop-types": "*", + "csstype": "^3.0.2" }, "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" } } }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "@types/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "@types/react": "*" } }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - }, - "query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "requires": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "@types/node": "*" } }, - "querystring": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", - "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + "abitype": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-0.7.1.tgz", + "integrity": "sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==", + "requires": {} }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { - "safe-buffer": "^5.1.0" - } + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" + "possible-typed-array-names": "^1.0.0" } }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.1.tgz", - "integrity": "sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==", + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.3", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "streamsearch": "^1.1.0" } }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "optional": true, + "call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" } }, - "react": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", - "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" } }, - "react-dom": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", - "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.1" + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" } }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "caniuse-lite": { + "version": "1.0.30001701", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz", + "integrity": "sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==" }, - "react-refresh": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", - "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" }, - "react-transition-group": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", - "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } + "clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "optional": true, "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "color-convert": "^2.0.1", + "color-string": "^1.9.0" } }, - "readdirp": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", - "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "optional": true, "requires": { - "picomatch": "^2.2.1" + "color-name": "~1.1.4" } }, - "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "optional": true }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "optional": true, "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - } + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", - "requires": { - "lowercase-keys": "^1.0.0" - } + "crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==" }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "cross-fetch": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz", + "integrity": "sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==", "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "node-fetch": "^2.7.0" } }, - "rlp": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz", - "integrity": "sha512-HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg==", + "css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", "requires": { - "bn.js": "^4.11.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" } }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" }, - "scheduler": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", - "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" } }, - "scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" + "dequal": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", + "integrity": "sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==" }, - "secp256k1": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.2.tgz", - "integrity": "sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==", - "requires": { - "elliptic": "^6.5.2", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "dependencies": { - "node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - } - } + "detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "optional": true }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dom-helpers": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" }, "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" } } }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "servify": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", + "dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "requires": { - "body-parser": "^1.16.0", - "cors": "^2.8.1", - "express": "^4.14.0", - "request": "^2.79.0", - "xhr": "^2.3.3" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" } }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "optional": true + "es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" }, - "setprototypeof": { + "es-object-atoms": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "es-errors": "^1.3.0" } }, - "sharp": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.26.3.tgz", - "integrity": "sha512-NdEJ9S6AMr8Px0zgtFo1TJjMK/ROMU92MkDtYn2BBrDjIx3YfH9TUyGdzPC+I/L619GeYQc690Vbaxc5FPCCWg==", - "optional": true, + "ethereum-cryptography": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz", + "integrity": "sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==", "requires": { - "array-flatten": "^3.0.0", - "color": "^3.1.3", - "detect-libc": "^1.0.3", - "node-addon-api": "^3.0.2", - "npmlog": "^4.1.2", - "prebuild-install": "^6.0.0", - "semver": "^7.3.2", - "simple-get": "^4.0.0", - "tar-fs": "^2.1.1", - "tunnel-agent": "^0.6.0" - }, - "dependencies": { - "semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", - "optional": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "@noble/curves": "1.4.2", + "@noble/hashes": "1.4.0", + "@scure/bip32": "1.4.0", + "@scure/bip39": "1.3.0" } }, - "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "optional": true - }, - "simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + "eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" }, - "simple-get": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz", - "integrity": "sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==", - "optional": true, + "fbemitter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz", + "integrity": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==", "requires": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - }, - "dependencies": { - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "optional": true, - "requires": { - "mimic-response": "^3.1.0" - } - }, - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "optional": true - } + "fbjs": "^3.0.0" } }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", - "optional": true, + "fbjs": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz", + "integrity": "sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg==", "requires": { - "is-arrayish": "^0.3.1" + "cross-fetch": "^3.0.4", + "fbjs-css-vars": "^1.0.0", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" } }, - "source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "fbjs-css-vars": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz", + "integrity": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + }, + "flux": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz", + "integrity": "sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ==", "requires": { - "whatwg-url": "^7.0.0" + "fbemitter": "^3.0.0", + "fbjs": "^3.0.0" } }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "requires": { - "type-fest": "^0.7.1" + "is-callable": "^1.2.7" } }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" }, - "stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", + "get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "requires": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + } + }, + "get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "requires": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" } }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + "es-define-property": "^1.0.0" } }, - "strict-uri-encode": { + "has-symbols": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "requires": { - "safe-buffer": "~5.2.0" + "has-symbols": "^1.0.3" } }, - "string-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", - "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=" + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "optional": true, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "optional": true - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - } + "react-is": "^16.7.0" } }, - "string.prototype.trimend": { + "hyphenate-style-name": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", - "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "symbol-observable": "1.2.0" } }, - "string.prototype.trimstart": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", - "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" } }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "optional": true + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", "requires": { - "ansi-regex": "^5.0.0" + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" } }, - "strip-hex-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", - "integrity": "sha1-DF8VX+8RUTczd96du1iNoFUA428=", + "is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + }, + "is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", "requires": { - "is-hex-prefixed": "1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" } }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "optional": true + "is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "requires": { + "which-typed-array": "^1.1.16" + } }, - "styled-jsx": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-3.3.2.tgz", - "integrity": "sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==", + "isomorphic-ws": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz", + "integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==", + "requires": {} + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "jss": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", + "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", "requires": { - "@babel/types": "7.8.3", - "babel-plugin-syntax-jsx": "6.18.0", - "convert-source-map": "1.7.0", - "loader-utils": "1.2.3", - "source-map": "0.7.3", - "string-hash": "1.1.3", - "stylis": "3.5.4", - "stylis-rule-sheet": "0.0.10" + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" }, "dependencies": { - "source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" } } }, - "stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==" - }, - "stylis-rule-sheet": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", - "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" + "jss-plugin-camel-case": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", + "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", + "requires": { + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.5.1" + } }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "jss-plugin-default-unit": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", + "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", "requires": { - "has-flag": "^3.0.0" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "swarm-js": { - "version": "0.1.40", - "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.40.tgz", - "integrity": "sha512-yqiOCEoA4/IShXkY3WKwP5PvZhmoOOD8clsKA7EEcRILMkTEYHCQ21HDCAcVpmIxZq4LyZvWeRJ6quIyHk1caA==", + "jss-plugin-global": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", + "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", "requires": { - "bluebird": "^3.5.0", - "buffer": "^5.0.5", - "eth-lib": "^0.1.26", - "fs-extra": "^4.0.2", - "got": "^7.1.0", - "mime-types": "^2.1.16", - "mkdirp-promise": "^5.0.1", - "mock-fs": "^4.1.0", - "setimmediate": "^1.0.5", - "tar": "^4.0.2", - "xhr-request": "^1.0.1" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - }, - "got": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", - "requires": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - }, - "p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "requires": { - "prepend-http": "^1.0.1" - } - } + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" } }, - "swr": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", - "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", + "jss-plugin-nested": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", + "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", "requires": { - "dequal": "2.0.2" + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" + "jss-plugin-props-sort": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", + "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } }, - "tar": { - "version": "4.4.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", - "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "jss-plugin-rule-value-function": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", + "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - }, - "dependencies": { - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" } }, - "tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "optional": true, + "jss-plugin-vendor-prefixer": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", + "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", "requires": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.5.1" } }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "optional": true, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" + "js-tokens": "^3.0.0 || ^4.0.0" } }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" + "math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + }, + "nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==" + }, + "next": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/next/-/next-15.2.0.tgz", + "integrity": "sha512-VaiM7sZYX8KIAHBrRGSFytKknkrexNfGb8GlG6e93JqueCspuGte8i4ybn8z4ww1x3f2uzY4YpTaBEW4/hvsoQ==", + "requires": { + "@next/env": "15.2.0", + "@next/swc-darwin-arm64": "15.2.0", + "@next/swc-darwin-x64": "15.2.0", + "@next/swc-linux-arm64-gnu": "15.2.0", + "@next/swc-linux-arm64-musl": "15.2.0", + "@next/swc-linux-x64-gnu": "15.2.0", + "@next/swc-linux-x64-musl": "15.2.0", + "@next/swc-win32-arm64-msvc": "15.2.0", + "@next/swc-win32-x64-msvc": "15.2.0", + "@swc/counter": "0.1.3", + "@swc/helpers": "0.5.15", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "sharp": "^0.33.5", + "styled-jsx": "5.1.6" + } }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "requires": { - "setimmediate": "^1.0.4" + "whatwg-url": "^5.0.0" } }, - "tiny-warning": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + "picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "popper.js": { + "version": "1.16.1-lts", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", + "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" }, - "to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + "possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "requires": { - "is-number": "^7.0.0" + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" } }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "asap": "~2.0.3" } }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", "requires": { - "punycode": "^2.1.0" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" } }, - "ts-pnp": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", "requires": { - "safe-buffer": "^5.0.1" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" } }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, - "type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" } }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", "requires": { - "is-typedarray": "^1.0.0" + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" } }, - "ua-parser-js": { - "version": "0.7.24", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz", - "integrity": "sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==" - }, - "ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" }, - "unbox-primitive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", - "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", + "safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", "requires": { - "function-bind": "^1.1.1", - "has-bigints": "^1.0.0", - "has-symbols": "^1.0.0", - "which-boxed-primitive": "^1.0.1" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" } }, - "underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "optional": true }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "requires": { - "punycode": "^2.1.0" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" } }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "sharp": { + "version": "0.33.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz", + "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==", + "optional": true, "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - } + "@img/sharp-darwin-arm64": "0.33.5", + "@img/sharp-darwin-x64": "0.33.5", + "@img/sharp-libvips-darwin-arm64": "1.0.4", + "@img/sharp-libvips-darwin-x64": "1.0.4", + "@img/sharp-libvips-linux-arm": "1.0.5", + "@img/sharp-libvips-linux-arm64": "1.0.4", + "@img/sharp-libvips-linux-s390x": "1.0.4", + "@img/sharp-libvips-linux-x64": "1.0.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4", + "@img/sharp-libvips-linuxmusl-x64": "1.0.4", + "@img/sharp-linux-arm": "0.33.5", + "@img/sharp-linux-arm64": "0.33.5", + "@img/sharp-linux-s390x": "0.33.5", + "@img/sharp-linux-x64": "0.33.5", + "@img/sharp-linuxmusl-arm64": "0.33.5", + "@img/sharp-linuxmusl-x64": "0.33.5", + "@img/sharp-wasm32": "0.33.5", + "@img/sharp-win32-ia32": "0.33.5", + "@img/sharp-win32-x64": "0.33.5", + "color": "^4.2.3", + "detect-libc": "^2.0.3", + "semver": "^7.6.3" } }, - "url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "optional": true, "requires": { - "prepend-http": "^2.0.0" + "is-arrayish": "^0.3.1" } }, - "url-set-query": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", - "integrity": "sha1-AW6M/Xwg7gXK/neV6JK9BwL6ozk=" - }, - "url-to-options": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=" + "source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" }, - "use-subscription": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/use-subscription/-/use-subscription-1.5.1.tgz", - "integrity": "sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==", - "requires": { - "object-assign": "^4.1.1" - } + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" }, - "utf-8-validate": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.4.tgz", - "integrity": "sha512-MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q==", + "styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", "requires": { - "node-gyp-build": "^4.2.0" + "client-only": "0.0.1" } }, - "utf8": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", - "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "swr": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz", + "integrity": "sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w==", "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } + "dequal": "2.0.2" } }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, - "varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" + "tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "typescript": { + "version": "5.8.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", + "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "peer": true }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } + "ua-parser-js": { + "version": "0.7.40", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz", + "integrity": "sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ==" }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "undici-types": { + "version": "6.20.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", + "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==" }, - "watchpack": { - "version": "2.0.0-beta.13", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.0.0-beta.13.tgz", - "integrity": "sha512-ZEFq2mx/k5qgQwgi6NOm+2ImICb8ngAkA/rZ6oyXZ7SgPn3pncf+nfhYTCrs3lmHwOxnPtGLTOuFLfpSMh1VMA==", + "util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, "web3": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3/-/web3-1.3.4.tgz", - "integrity": "sha512-D6cMb2EtTMLHgdGbkTPGl/Qi7DAfczR+Lp7iFX3bcu/bsD9V8fZW69hA8v5cRPNGzXUwVQebk3bS17WKR4cD2w==", - "requires": { - "web3-bzz": "1.3.4", - "web3-core": "1.3.4", - "web3-eth": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-shh": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-bzz": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.3.4.tgz", - "integrity": "sha512-DBRVQB8FAgoAtZCpp2GAGPCJjgBgsuwOKEasjV044AAZiONpXcKHbkO6G1SgItIixnrJsRJpoGLGw52Byr6FKw==", - "requires": { - "@types/node": "^12.12.6", - "got": "9.6.0", - "swarm-js": "^0.1.40", - "underscore": "1.9.1" + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/web3/-/web3-4.16.0.tgz", + "integrity": "sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ==", + "requires": { + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-contract": "^4.7.2", + "web3-eth-ens": "^4.4.0", + "web3-eth-iban": "^4.0.7", + "web3-eth-personal": "^4.1.0", + "web3-net": "^4.1.0", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-rpc-providers": "^1.0.0-rc.4", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-core": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.3.4.tgz", - "integrity": "sha512-7OJu46RpCEfTerl+gPvHXANR2RkLqAfW7l2DAvQ7wN0pnCzl9nEfdgW6tMhr31k3TR2fWucwKzCyyxMGzMHeSA==", - "requires": { - "@types/bn.js": "^4.11.5", - "@types/node": "^12.12.6", - "bignumber.js": "^9.0.0", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-requestmanager": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-core-helpers": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.3.4.tgz", - "integrity": "sha512-n7BqDalcTa1stncHMmrnFtyTgDhX5Fy+avNaHCf6qcOP2lwTQC8+mdHVBONWRJ6Yddvln+c8oY/TAaB6PzWK0A==", - "requires": { - "underscore": "1.9.1", - "web3-eth-iban": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-core-method": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.3.4.tgz", - "integrity": "sha512-JxmQrujsAWYRRN77P/RY7XuZDCzxSiiQJrgX/60Lfyf7FF1Y0le4L/UMCi7vUJnuYkbU1Kfl9E0udnqwyPqlvQ==", - "requires": { - "@ethersproject/transactions": "^5.0.0-beta.135", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-utils": "1.3.4" - } - }, - "web3-core-promievent": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.3.4.tgz", - "integrity": "sha512-V61dZIeBwogg6hhZZUt0qL9hTp1WDhnsdjP++9fhTDr4vy/Gz8T5vibqT2LLg6lQC8i+Py33yOpMeMNjztaUaw==", - "requires": { - "eventemitter3": "4.0.4" - } - }, - "web3-core-requestmanager": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.3.4.tgz", - "integrity": "sha512-xriouCrhVnVDYQ04TZXdEREZm0OOJzkSEsoN5bu4JYsA6e/HzROeU+RjDpMUxFMzN4wxmFZ+HWbpPndS3QwMag==", + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-4.7.1.tgz", + "integrity": "sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ==", "requires": { - "underscore": "1.9.1", - "util": "^0.12.0", - "web3-core-helpers": "1.3.4", - "web3-providers-http": "1.3.4", - "web3-providers-ipc": "1.3.4", - "web3-providers-ws": "1.3.4" - }, - "dependencies": { - "util": { - "version": "0.12.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.3.tgz", - "integrity": "sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==", - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "safe-buffer": "^5.1.2", - "which-typed-array": "^1.1.2" - } - } + "web3-errors": "^1.3.1", + "web3-eth-accounts": "^4.3.1", + "web3-eth-iban": "^4.0.7", + "web3-providers-http": "^4.2.0", + "web3-providers-ipc": "^4.0.7", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, - "web3-core-subscriptions": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.3.4.tgz", - "integrity": "sha512-drVHVDxh54hv7xmjIm44g4IXjfGj022fGw4/meB5R2D8UATFI40F73CdiBlyqk3DysP9njDOLTJFSQvEkLFUOg==", + "web3-errors": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/web3-errors/-/web3-errors-1.3.1.tgz", + "integrity": "sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ==", "requires": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" + "web3-types": "^1.10.0" } }, "web3-eth": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.3.4.tgz", - "integrity": "sha512-8OIVMLbvmx+LB5RZ4tDhXuFGWSdNMrCZ4HM0+PywQ08uEcmAcqTMFAn4vdPii+J8gCatZR501r1KdzX3SDLoPw==", + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-4.11.1.tgz", + "integrity": "sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w==", "requires": { - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-accounts": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-eth-ens": "1.3.4", - "web3-eth-iban": "1.3.4", - "web3-eth-personal": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" + "setimmediate": "^1.0.5", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth-abi": "^4.4.1", + "web3-eth-accounts": "^4.3.1", + "web3-net": "^4.1.0", + "web3-providers-ws": "^4.0.8", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-eth-abi": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.3.4.tgz", - "integrity": "sha512-PVSLXJ2dzdXsC+R24llIIEOS6S1KhG5qwNznJjJvXZFe3sqgdSe47eNvwUamZtCBjcrdR/HQr+L/FTxqJSf80Q==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-4.4.1.tgz", + "integrity": "sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg==", "requires": { - "@ethersproject/abi": "5.0.7", - "underscore": "1.9.1", - "web3-utils": "1.3.4" + "abitype": "0.7.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-eth-accounts": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.3.4.tgz", - "integrity": "sha512-gz9ReSmQEjqbYAjpmAx+UZF4CVMbyS4pfjSYWGAnNNI+Xz0f0u0kCIYXQ1UEaE+YeLcYiE+ZlZdgg6YoatO5nA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-4.3.1.tgz", + "integrity": "sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ==", "requires": { - "crypto-browserify": "3.12.0", - "eth-lib": "0.2.8", - "ethereumjs-common": "^1.3.2", - "ethereumjs-tx": "^2.1.1", - "scrypt-js": "^3.0.1", - "underscore": "1.9.1", - "uuid": "3.3.2", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" - } + "@ethereumjs/rlp": "^4.0.1", + "crc-32": "^1.2.2", + "ethereum-cryptography": "^2.0.0", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, "web3-eth-contract": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.3.4.tgz", - "integrity": "sha512-Fvy8ZxUksQY2ePt+XynFfOiSqxgQtMn4m2NJs6VXRl2Inl17qyRi/nIJJVKTcENLocm+GmZ/mxq2eOE5u02nPg==", - "requires": { - "@types/bn.js": "^4.11.5", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-utils": "1.3.4" + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-4.7.2.tgz", + "integrity": "sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA==", + "requires": { + "@ethereumjs/rlp": "^5.0.2", + "web3-core": "^4.7.1", + "web3-errors": "^1.3.1", + "web3-eth": "^4.11.1", + "web3-eth-abi": "^4.4.1", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" + }, + "dependencies": { + "@ethereumjs/rlp": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz", + "integrity": "sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==" + } } }, "web3-eth-ens": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.3.4.tgz", - "integrity": "sha512-b0580tQyQwpV2wyacwQiBEfQmjCUln5iPhge3IBIMXaI43BUNtH3lsCL9ERFQeOdweB4o+6rYyNYr6xbRcSytg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-4.4.0.tgz", + "integrity": "sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ==", "requires": { - "content-hash": "^2.5.2", - "eth-ens-namehash": "2.0.8", - "underscore": "1.9.1", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-promievent": "1.3.4", - "web3-eth-abi": "1.3.4", - "web3-eth-contract": "1.3.4", - "web3-utils": "1.3.4" + "@adraffy/ens-normalize": "^1.8.8", + "web3-core": "^4.5.0", + "web3-errors": "^1.2.0", + "web3-eth": "^4.8.0", + "web3-eth-contract": "^4.5.0", + "web3-net": "^4.1.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.0", + "web3-validator": "^2.0.6" } }, "web3-eth-iban": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.3.4.tgz", - "integrity": "sha512-Y7/hLjVvIN/OhaAyZ8L/hxbTqVX6AFTl2RwUXR6EEU9oaLydPcMjAx/Fr8mghUvQS3QJSr+UGubP3W4SkyNiYw==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-4.0.7.tgz", + "integrity": "sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ==", "requires": { - "bn.js": "^4.11.9", - "web3-utils": "1.3.4" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7", + "web3-validator": "^2.0.3" } }, "web3-eth-personal": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.3.4.tgz", - "integrity": "sha512-JiTbaktYVk1j+S2EDooXAhw5j/VsdvZfKRmHtXUe/HizPM9ETXmj1+ne4RT6m+950jQ7DJwUF3XU1FKYNtEDwQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-4.1.0.tgz", + "integrity": "sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ==", "requires": { - "@types/node": "^12.12.6", - "web3-core": "1.3.4", - "web3-core-helpers": "1.3.4", - "web3-core-method": "1.3.4", - "web3-net": "1.3.4", - "web3-utils": "1.3.4" + "web3-core": "^4.6.0", + "web3-eth": "^4.9.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.8.0", + "web3-utils": "^4.3.1", + "web3-validator": "^2.0.6" } }, "web3-net": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.3.4.tgz", - "integrity": "sha512-wVyqgVC3Zt/0uGnBiR3GpnsS8lvOFTDgWZMxAk9C6Guh8aJD9MUc7pbsw5rHrPUVe6S6RUfFJvh/Xq8oMIQgSw==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-4.1.0.tgz", + "integrity": "sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA==", "requires": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-utils": "1.3.4" + "web3-core": "^4.4.0", + "web3-rpc-methods": "^1.3.0", + "web3-types": "^1.6.0", + "web3-utils": "^4.3.0" } }, "web3-providers-http": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.3.4.tgz", - "integrity": "sha512-aIg/xHXvxpqpFU70sqfp+JC3sGkLfAimRKTUhG4oJZ7U+tTcYTHoxBJj+4A3Id4JAoKiiv0k1/qeyQ8f3rMC3g==", - "requires": { - "web3-core-helpers": "1.3.4", - "xhr2-cookies": "1.1.0" - } - }, - "web3-providers-ipc": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.3.4.tgz", - "integrity": "sha512-E0CvXEJElr/TIlG1YfJeO3Le5NI/4JZM+1SsEdiPIfBUAJN18oOoum138EBGKv5+YaLKZUtUuJSXWjIIOR/0Ig==", - "requires": { - "oboe": "2.1.5", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4" - } - }, - "web3-providers-ws": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.3.4.tgz", - "integrity": "sha512-WBd9hk2fUAdrbA3kUyUk94ZeILtE6txLeoVVvIKAw2bPegx+RjkLyxC1Du0oceKgQ/qQWod8CCzl1E/GgTP+MQ==", - "requires": { - "eventemitter3": "4.0.4", - "underscore": "1.9.1", - "web3-core-helpers": "1.3.4", - "websocket": "^1.0.32" - } - }, - "web3-shh": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.3.4.tgz", - "integrity": "sha512-zoeww5mxLh3xKcqbX85irQbtFe5pc5XwrgjvmdMkhkOdZzPASlWOgqzUFtaPykpLwC3yavVx4jG5RqifweXLUA==", - "requires": { - "web3-core": "1.3.4", - "web3-core-method": "1.3.4", - "web3-core-subscriptions": "1.3.4", - "web3-net": "1.3.4" - } - }, - "web3-utils": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.4.tgz", - "integrity": "sha512-/vC2v0MaZNpWooJfpRw63u0Y3ag2gNjAWiLtMSL6QQLmCqCy4SQIndMt/vRyx0uMoeGt1YTwSXEcHjUzOhLg0A==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-4.2.0.tgz", + "integrity": "sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ==", "requires": { - "bn.js": "^4.11.9", - "eth-lib": "0.2.8", - "ethereum-bloom-filters": "^1.0.6", - "ethjs-unit": "0.1.6", - "number-to-bn": "1.7.0", - "randombytes": "^2.1.0", - "underscore": "1.9.1", - "utf8": "3.0.0" + "cross-fetch": "^4.0.0", + "web3-errors": "^1.3.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1" }, "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", + "cross-fetch": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz", + "integrity": "sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw==", "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" + "node-fetch": "^2.7.0" } } } }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "websocket": { - "version": "1.0.33", - "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.33.tgz", - "integrity": "sha512-XwNqM2rN5eh3G2CUQE3OHZj+0xfdH42+OFK6LdC2yqiC0YU8e5UK0nYre220T0IyyN031V/XOvtHvXozvJYFWA==", - "requires": { - "bufferutil": "^4.0.1", - "debug": "^2.2.0", - "es5-ext": "^0.10.50", - "typedarray-to-buffer": "^3.1.5", - "utf-8-validate": "^5.0.2", - "yaeti": "^0.0.6" - } - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "web3-providers-ipc": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-4.0.7.tgz", + "integrity": "sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g==", + "optional": true, "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" + "web3-errors": "^1.1.3", + "web3-types": "^1.3.0", + "web3-utils": "^4.0.7" } }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "web3-providers-ws": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-4.0.8.tgz", + "integrity": "sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw==", "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "@types/ws": "8.5.3", + "isomorphic-ws": "^5.0.0", + "web3-errors": "^1.2.0", + "web3-types": "^1.7.0", + "web3-utils": "^4.3.1", + "ws": "^8.17.1" } }, - "which-pm-runs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", - "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=", - "optional": true - }, - "which-typed-array": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", - "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", + "web3-rpc-methods": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/web3-rpc-methods/-/web3-rpc-methods-1.3.0.tgz", + "integrity": "sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig==", "requires": { - "available-typed-arrays": "^1.0.2", - "call-bind": "^1.0.0", - "es-abstract": "^1.18.0-next.1", - "foreach": "^2.0.5", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.1", - "is-typed-array": "^1.1.3" + "web3-core": "^4.4.0", + "web3-types": "^1.6.0", + "web3-validator": "^2.0.6" } }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "optional": true, + "web3-rpc-providers": { + "version": "1.0.0-rc.4", + "resolved": "https://registry.npmjs.org/web3-rpc-providers/-/web3-rpc-providers-1.0.0-rc.4.tgz", + "integrity": "sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw==", "requires": { - "string-width": "^1.0.2 || 2" + "web3-errors": "^1.3.1", + "web3-providers-http": "^4.2.0", + "web3-providers-ws": "^4.0.8", + "web3-types": "^1.10.0", + "web3-utils": "^4.3.3", + "web3-validator": "^2.0.6" } }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "web3-types": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/web3-types/-/web3-types-1.10.0.tgz", + "integrity": "sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw==" }, - "ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "web3-utils": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-4.3.3.tgz", + "integrity": "sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw==", "requires": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "ethereum-cryptography": "^2.0.0", + "eventemitter3": "^5.0.1", + "web3-errors": "^1.3.1", + "web3-types": "^1.10.0", + "web3-validator": "^2.0.6" } }, - "xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", + "web3-validator": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/web3-validator/-/web3-validator-2.0.6.tgz", + "integrity": "sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg==", "requires": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" + "ethereum-cryptography": "^2.0.0", + "util": "^0.12.5", + "web3-errors": "^1.2.0", + "web3-types": "^1.6.0", + "zod": "^3.21.4" } }, - "xhr-request": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", - "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", - "requires": { - "buffer-to-arraybuffer": "^0.0.5", - "object-assign": "^4.1.1", - "query-string": "^5.0.1", - "simple-get": "^2.7.0", - "timed-out": "^4.0.1", - "url-set-query": "^1.0.0", - "xhr": "^2.0.4" - }, - "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - }, - "simple-get": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.1.tgz", - "integrity": "sha512-lSSHRSw3mQNUGPAYRqo7xy9dhKmxFXIjLjp4KHpf99GEH2VH7C3AM+Qfx6du6jhfUi6Vm7XnbEVEf7Wb6N8jRw==", - "requires": { - "decompress-response": "^3.3.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - } - } + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, - "xhr-request-promise": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", - "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "requires": { - "xhr-request": "^1.1.0" + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "xhr2-cookies": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr2-cookies/-/xhr2-cookies-1.1.0.tgz", - "integrity": "sha1-fXdEnQmZGX8VXLc7I99yUF7YnUg=", + "which-typed-array": { + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", "requires": { - "cookiejar": "^2.1.1" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" } }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, - "yaeti": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", - "integrity": "sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc=" - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "optional": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + "ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", + "requires": {} + }, + "zod": { + "version": "3.24.2", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", + "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==" } } } diff --git a/package-prepare_job-lock.JSON b/package-prepare_job-lock.JSON new file mode 100644 index 000000000..4e5aff41d --- /dev/null +++ b/package-prepare_job-lock.JSON @@ -0,0 +1,81 @@ + +{ + "command": "prepare_job", + "responseFile": "/users/octocat/runner/_work/{guid}.json", + "state": {}, + "args": { + "jobContainer": { + "image": "node:18" + "workingDirectory": "/__w/octocat-test2/octocat-test2", + "createOptions": "--cpus 1", + "environmentVariables": { + "NODE_ENV": "development" + }, + "userMountVolumes": [ + { + "sourceVolumePath": "my_docker_volume", + "targetVolumePath": "/volume_mount", + "readOnly": false + } + ], + "systemMountVolumes": [ + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work", + "targetVolumePath": "/__w", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/externals", + "targetVolumePath": "/__e", + "readOnly": true + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp", + "targetVolumePath": "/__w/_temp", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_actions", + "targetVolumePath": "/__w/_actions", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_tool", + "targetVolumePath": "/__w/_tool", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_home", + "targetVolumePath": "/github/home", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_workflow", + "targetVolumePath": "/github/workflow", + "readOnly": false + } + ], + "registry": { + "username": "octocat", + "password": "examplePassword", + "serverUrl": "https://index.docker.io/v1" + }, + "portMappings": { "80": "801" } + }, + "services": [ + { + "contextName": "redis", + "image": "redis", + "createOptions": "--cpus 1", + "environmentVariables": {}, + "userMountVolumes": [], + "portMappings": { "80": "801" }, + "registry": { + "username": "octocat", + "password": "examplePassword", + "serverUrl": "https://index.docker.io/v1" + } + } + ] + } +} diff --git a/package-prepare_job_ responseFile.JSON b/package-prepare_job_ responseFile.JSON new file mode 100644 index 000000000..2675bb0c0 --- /dev/null +++ b/package-prepare_job_ responseFile.JSON @@ -0,0 +1,26 @@ + +{ + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "context": { + "container": { + "id": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "network": "example_network_53269bd575972817b43f7733536b200c" + }, + "services": { + "redis": { + "id": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105", + "ports": { + "8080": "8080" + }, + "network": "example_network_53269bd575972817b43f7733536b200c" + } + }, + "isAlpine": true + } +} diff --git a/package-run_container_step_or_docker_image.JSON b/package-run_container_step_or_docker_image.JSON new file mode 100644 index 000000000..b96841d8c --- /dev/null +++ b/package-run_container_step_or_docker_image.JSON @@ -0,0 +1,70 @@ + +{ + "command": "run_container_step", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": { + "image": "node:18", + "dockerfile": null, + "entryPointArgs": ["-f", "/dev/null"], + "entryPoint": "tail", + "workingDirectory": "/__w/octocat-test2/octocat-test2", + "createOptions": "--cpus 1", + "environmentVariables": { + "NODE_ENV": "development" + }, + "prependPath": ["/foo/bar", "bar/foo"], + "userMountVolumes": [ + { + "sourceVolumePath": "my_docker_volume", + "targetVolumePath": "/volume_mount", + "readOnly": false + } + ], + "systemMountVolumes": [ + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work", + "targetVolumePath": "/__w", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/externals", + "targetVolumePath": "/__e", + "readOnly": true + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp", + "targetVolumePath": "/__w/_temp", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_actions", + "targetVolumePath": "/__w/_actions", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_tool", + "targetVolumePath": "/__w/_tool", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_home", + "targetVolumePath": "/github/home", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_workflow", + "targetVolumePath": "/github/workflow", + "readOnly": false + } + ], + "registry": null, + "portMappings": { "80": "801" } + } +} diff --git a/package-run_container_step_or_dockerfile.JSON b/package-run_container_step_or_dockerfile.JSON new file mode 100644 index 000000000..0f217479e --- /dev/null +++ b/package-run_container_step_or_dockerfile.JSON @@ -0,0 +1,69 @@ +{ + "command": "run_container_step", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "services": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": { + "image": null, + "dockerfile": "/__w/_actions/foo/dockerfile", + "entryPointArgs": ["hello world"], + "entryPoint": "echo", + "workingDirectory": "/__w/octocat-test2/octocat-test2", + "createOptions": "--cpus 1", + "environmentVariables": { + "NODE_ENV": "development" + }, + "prependPath": ["/foo/bar", "bar/foo"], + "userMountVolumes": [ + { + "sourceVolumePath": "my_docker_volume", + "targetVolumePath": "/volume_mount", + "readOnly": false + } + ], + "systemMountVolumes": [ + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work", + "targetVolumePath": "/__w", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/externals", + "targetVolumePath": "/__e", + "readOnly": true + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp", + "targetVolumePath": "/__w/_temp", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_actions", + "targetVolumePath": "/__w/_actions", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_tool", + "targetVolumePath": "/__w/_tool", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_home", + "targetVolumePath": "/github/home", + "readOnly": false + }, + { + "sourceVolumePath": "/home/octocat/git/runner/_layout/_work/_temp/_github_workflow", + "targetVolumePath": "/github/workflow", + "readOnly": false + } + ], + "registry": null, + "portMappings": { "80": "801" } + } +} diff --git a/package-run_script_step-lock.JSON b/package-run_script_step-lock.JSON new file mode 100644 index 000000000..86cdee9cf --- /dev/null +++ b/package-run_script_step-lock.JSON @@ -0,0 +1,20 @@ +{ + "command": "run_script_step", + "responseFile": null, + "state": { + "network": "example_network_53269bd575972817b43f7733536b200c", + "jobContainer": "82e8219701fe096a35941d869cf3d71af1d943b5d8bdd718857fb87ac3042480", + "serviceContainers": { + "redis": "60972d9aa486605e66b0dad4abb678dc3d9116f536579e418176eedb8abb9105" + } + }, + "args": { + "entryPointArgs": ["-e", "/runner/temp/example.sh"], + "entryPoint": "bash", + "environmentVariables": { + "NODE_ENV": "development" + }, + "prependPath": ["/foo/bar", "bar/foo"], + "workingDirectory": "/__w/octocat-test2/octocat-test2" + } +} diff --git a/package.json b/package.json index 03cb75713..da9d23ab0 100644 --- a/package.json +++ b/package.json @@ -14,10 +14,10 @@ "@material-ui/icons": "^4.11.2", "@material-ui/lab": "^4.0.0-alpha.57", "flux": "^4.0.1", - "next": "10.0.7", + "next": "^15.2.0", "react": "17.0.1", "react-dom": "17.0.1", "swr": "^0.5.6", - "web3": "^1.3.4" + "web3": "^4.16.0" } } diff --git a/verify_signature.js b/verify_signature.js new file mode 100644 index 000000000..bc2323e22 --- /dev/null +++ b/verify_signature.js @@ -0,0 +1,44 @@ +let encoder = new TextEncoder(); + +async function verifySignature(secret, header, payload) { + let parts = header.split("="); + let sigHex = parts[1]; + + let algorithm = { name: "HMAC", hash: { name: 'SHA-256' } }; + + let keyBytes = encoder.encode(secret); + let extractable = false; + let key = await crypto.subtle.importKey( + "raw", + keyBytes, + algorithm, + extractable, + [ "sign", "verify" ], + ); + + let sigBytes = hexToBytes(sigHex); + let dataBytes = encoder.encode(payload); + let equal = await crypto.subtle.verify( + algorithm.name, + key, + sigBytes, + dataBytes, + ); + + return equal; +} + +function hexToBytes(hex) { + let len = hex.length / 2; + let bytes = new Uint8Array(len); + + let index = 0; + for (let i = 0; i < hex.length; i += 2) { + let c = hex.slice(i, i + 2); + let b = parseInt(c, 16); + bytes[index] = b; + index += 1; + } + + return bytes; +} diff --git a/xx.json b/xx.json new file mode 100644 index 000000000..622b2d8cc --- /dev/null +++ b/xx.json @@ -0,0 +1,43160 @@ +[ + { + "name": "Ethereum Mainnet", + "chainId": 1, + "shortName": "eth", + "chain": "ETH", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://mainnet.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "https://api.mycryptoapi.com/eth", + "https://cloudflare-eth.com" + ], + "faucets": [], + "infoURL": "https://ethereum.org" + }, + { + "name": "Optimistic Ethereum", + "chainId": 10, + "shortName": "oeth", + "chain": "ETH", + "network": "mainnet", + "networkId": 10, + "nativeCurrency": { + "name": "Ether", + "symbol": "OETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.optimism.io/" + ], + "faucets": [], + "infoURL": "https://optimism.io", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/OptimisticEthereum/0.png", + "color_chain_bg": "0xF54B49" + } + }, + { + "name": "Polygon (Matic) Mainnet", + "chainId": 137, + "shortName": "matic", + "chain": "Matic", + "network": "mainnet", + "networkId": 137, + "nativeCurrency": { + "name": "Matic", + "symbol": "MATIC", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.matic.network", + "wss://ws-mainnet.matic.network" + ], + "faucets": [], + "infoURL": "https://matic.network/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Polygon/0.png", + "color_chain_bg": "0x7F4CDE" + } + }, + { + "name": "Avalanche Mainnet", + "chainId": 43114, + "shortName": "Avalanche", + "chain": "AVAX", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "rpc": [ + "https://api.avax.network/ext/bc/C/rpc" + ], + "faucets": [], + "infoURL": "https://cchain.explorer.avax.network/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Avalanche/0.png", + "color_chain_bg": "0xE92734" + } + }, + { + "name": "Cronos Mainnet", + "chainId": 25, + "shortName": "CRO", + "chain": "CRO", + "network": "mainnet", + "networkId": 25, + "nativeCurrency": { + "name": "CRO", + "symbol": "CRO", + "decimals": 18 + }, + "rpc": [ + "https://evm.cronos.org", + "https://cronosrpc-1.xstaking.sg", + "https://evm-cronos.crypto.org", + "https://cronos-rpc.heavenswail.one", + "https://cronos-rpc.elk.finance" + ], + "faucets": [], + "infoURL": "https://cronos.crypto.org/explorer" + }, + { + "name": "Fusion Mainnet", + "chainId": 32659, + "shortName": "fsn", + "chain": "FSN", + "network": "mainnet", + "networkId": 32659, + "nativeCurrency": { + "name": "Fusion", + "symbol": "FSN", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.anyswap.exchange" + ], + "faucets": [], + "infoURL": "https://fsnex.com/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/0.png", + "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fusion/2.png", + "color_chain_bg": "0x2E3B4A" + } + }, + { + "name": "ThunderCore Mainnet", + "chainId": 108, + "shortName": "TT", + "chain": "TT", + "network": "mainnet", + "networkId": 108, + "nativeCurrency": { + "name": "ThunderCore Mainnet Ether", + "symbol": "TT", + "decimals": 18 + }, + "rpc": [ + "https://mainnet-rpc.thundercore.com" + ], + "faucets": [ + "https://faucet.thundercore.com" + ], + "infoURL": "https://thundercore.com", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/0.png", + "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/ThunderCore/2.png", + "color_chain_bg": "0xEAC541" + } + }, + { + "name": "FON Smart Chain", + "chainId": 201022, + "shortName": "FON", + "chain": "FON", + "network": "mainnet", + "networkId": 201022, + "nativeCurrency": { + "name": "FON", + "symbol": "FON", + "decimals": 18 + }, + "rpc": [ + "https://fsc-dataseed2.fonscan.io" + ], + "faucets": [], + "explorers": [ + { + "name": "FONScan", + "url": "https://fonscan.io/", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1698387395064.png", + "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1698387436381.png", + "color_chain_bg": "0x343434", + "color_chain_text": "0xFFFFFF", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1675422074776.png", + "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1675422139280.png" + } + }, + { + "name": "Fraxtal", + "chain": "FRAX", + "rpc": [ + "https://rpc.frax.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 + }, + "infoURL": "https://mainnet.frax.com", + "shortName": "Fraxtal", + "chainId": 252, + "networkId": 252, + "explorers": [ + { + "name": "FraxScan", + "url": "https://fraxscan.com", + "icon": "Frax", + "standard": "EIP3091" + } + ], + "status": "active", + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1710309559685.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1710309496700.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xFFFFFF", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1710309512399.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1710309529426.png" + } + }, + { + "name": "Viction Mainnet", + "chainId": 88, + "shortName": "vic", + "chain": "VIC", + "network": "mainnet", + "networkId": 88, + "nativeCurrency": { + "name": "Viction Ether", + "symbol": "VIC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.tomochain.com" + ], + "faucets": [], + "infoURL": "https://www.vicscan.xyz/", + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1701074390781.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1701074408625.png", + "color_chain_bg": "0xF5F2C4", + "color_chain_text": "0x1E1E1E", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1701074424755.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1701074444858.png" + } + }, + { + "name": "smartBCH Mainnet", + "chainId": 10000, + "shortName": "smartBCH", + "chain": "smartBCH", + "network": "mainnet", + "networkId": 10000, + "nativeCurrency": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "rpc": [ + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" + ], + "faucets": [], + "infoURL": "https://smartbch.org/", + "app_resource": { + "ic_chain_select": "https://assets.smartbch.org/img/bch_active_88px.png", + "ic_chain_unselect": "https://assets.smartbch.org/img/bch_inactive_88px.png", + "color_chain_bg": "0x4cc947" + } + }, + { + "name": "Aurora Mainnet", + "chainId": 1313161554, + "shortName": "Aurora", + "chain": "NEAR", + "network": "mainnet", + "networkId": 1313161554, + "nativeCurrency": { + "name": "Ether", + "symbol": "aETH", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.aurora.dev" + ], + "faucets": [], + "infoURL": "https://aurora.dev", + "app_resource": { + "ic_home_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390444550.png", + "ic_chain_select": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390457950.png", + "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390467132.png", + "ic_all_whitelist_logo": "https://tp-statics.tokenpocket.pro/dapp/tokenpocket-1641390477377.png", + "color_chain_bg": "0x78d64b", + "color_chain_text": "0xFFFFFF" + } + }, + { + "name": "PulseChain Mainnet", + "shortName": "pls", + "chain": "PLS", + "chainId": 369, + "networkId": 369, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.pulsechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pulse", + "symbol": "PLS", + "decimals": 18 + }, + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1684207110566.png", + "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1684207099184.png", + "color_chain_bg": "0x1A1A1A", + "color_chain_text": "0xFFFFFF", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1684207056831.png", + "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1684207085917.png" + } + }, + { + "name": "Kortho Chain Mainnet", + "chainId": 2559, + "shortName": "KTO", + "chain": "KTO", + "network": "mainnet", + "networkId": 2559, + "nativeCurrency": { + "name": "KORTHO", + "symbol": "KTO", + "decimals": 18 + }, + "rpc": [ + "https://www.kortho-chain.com", + "https://www.kortho-chain.co", + "https://www.kortho-chain.org", + "https://www.kortho-chain.xyz" + ], + "faucets": [], + "infoURL": "https://www.kortho.io", + "app_resource": { + "ic_chain_select": "https://www.kortho.io/static/image/1.png", + "ic_chain_unselect": "https://www.kortho.io/static/image/0.png", + "color_chain_bg": "0x748ee3", + "txUrl": " https://www.kortho.io/" + } + }, + { + "name": "Endurance Smart Chain Mainnet", + "chain": "ACE", + "rpc": [ + "https://rpc-endurance.fusionist.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Endurance Chain Native Token", + "symbol": "ACE", + "decimals": 18 + }, + "infoURL": "https://ace.fusionist.io/", + "shortName": "ace", + "chainId": 648, + "networkId": 648, + "explorers": [ + { + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709886151485.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709886075208.png", + "color_chain_bg": "0x050504", + "color_chain_text": "0xFFC783", + "ic_home_logo": "hhttps://hk.tpstatic.net/token/tokenpocket-1709886106935.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709886092252.png" + } + }, + { + "name": "Zora", + "chain": "ETH", + "rpc": [ + "https://rpc.zora.energy/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "zora", + "infoURL": "https://zora.energy", + "shortName": "zora", + "chainId": 7777777, + "networkId": 7777777, + "explorers": [ + { + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899028504.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899005184.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xFFFFFF", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899016829.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899043712.png" + } + }, + { + "name": "Morph Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc-testnet.morphl2.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://morphl2.io", + "shortName": "tmorph", + "chainId": 2710, + "networkId": 2710, + "slip44": 1, + "explorers": [ + { + "name": "Morph Testnet Explorer", + "url": "https://explorer-testnet.morphl2.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge-testnet.morphl2.io" + } + ] + }, + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709898729370.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709898717628.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0x6AF495", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709898740826.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709898759382.png" + } + }, + { + "name": "Mode", + "chain": "ETH", + "rpc": [ + "https://mainnet.mode.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.mode.network/", + "shortName": "mode", + "chainId": 34443, + "networkId": 34443, + "icon": "mode", + "explorers": [ + { + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709899308595.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709899325224.png", + "color_chain_bg": "0xD9F417", + "color_chain_text": "0x000000", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709899339092.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709899353868.png" + } + }, + { + "name": "Berachain Artio", + "chain": "Berachain Artio", + "rpc": [ + "https://artio.rpc.berachain.com", + "https://rpc.ankr.com/berachain_testnet" + ], + "faucets": [ + "https://artio.faucet.berachain.com" + ], + "nativeCurrency": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachainArtio", + "chainId": 80085, + "networkId": 80085, + "icon": "berachain", + "explorers": [ + { + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709885929619.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709885915602.png", + "color_chain_bg": "0xEF821F", + "color_chain_text": "0x050504", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709885984851.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709885969274.png" + } + }, + { + "name": "BounceBit Testnet", + "chainId": 6000, + "shortName": "BBT", + "chain": "BounceBit Testnet", + "network": "testnet", + "networkId": 6000, + "nativeCurrency": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "rpc": [ + "https://fullnode-testnet.bouncebitapi.com" + ], + "faucets": [], + "explorers": [ + { + "name": "BBScan", + "url": "https://bbscan.io", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901807789.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709901770114.png", + "color_chain_bg": "0xEDEAE4", + "color_chain_text": "0x000000", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709901795926.png" + } + }, + { + "name": "zkLink Nova Mainnet", + "chainId": 810180, + "shortName": "zkLink Nova", + "chain": "zkLink Nova Mainnet", + "network": "Mainnet", + "networkId": 810180, + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rpc.zklink.io", + "wss://rpc.zklink.io" + ], + "faucets": [], + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://explorer.zklink.io/", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711359675534.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711359694827.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xffffff", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709901821832.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711359711634.png" + } + }, + { + "name": "xDAI Chain", + "chainId": 100, + "shortName": "xdai", + "chain": "XDAI", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xdaichain.com", + "https://xdai.poanetwork.dev", + "wss://rpc.xdaichain.com/wss", + "wss://xdai.poanetwork.dev/wss", + "http://xdai.poanetwork.dev", + "https://dai.poa.network", + "ws://xdai.poanetwork.dev:8546" + ], + "faucets": [], + "infoURL": "https://forum.poa.network/c/xdai-chain", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/xDAI/0.png", + "color_chain_bg": "0x58B2AF" + } + }, + { + "name": "zkSync Era Testnet", + "chain": "ETH", + "rpc": [ + "https://zksync2-testnet.zksync.dev" + ], + "faucets": [ + "https://goerli.portal.zksync.io/faucet" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://era.zksync.io/docs/", + "shortName": "zksync-goerli", + "chainId": 280, + "networkId": 280, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://goerli.explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://goerli.portal.zksync.io/bridge" + } + ] + } + }, + { + "name": "zkSync Era Mainnet", + "chain": "ETH", + "rpc": [ + "https://zksync2-mainnet.zksync.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zksync.io/", + "shortName": "zksync", + "chainId": 324, + "networkId": 324, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.zksync.io/bridge" + } + ] + } + }, + { + "name": "Merlin Mainnet", + "chainId": 4200, + "shortName": "Merlin Mainnet", + "chain": "Merlin Mainnet", + "network": "mainnet", + "networkId": 4200, + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.merlinchain.io" + ], + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.merlinchain.io/" + } + ] + }, + { + "name": "BTA Chain", + "chainId": 1657, + "shortName": "btachain", + "chain": "BTA", + "network": "mainnet", + "networkId": 1657, + "nativeCurrency": { + "name": "btachain", + "symbol": "BTA", + "decimals": 18 + }, + "rpc": [ + "https://dataseed1.btachain.com", + "https://dataseed2.btachain.com", + "wss://dataseed1.btachain.com/wss", + "wss://dataseed2.btachain.com/wss", + "ws://dataseed1.btachain.com:8861" + ], + "faucets": [], + "infoURL": "https://btachain.com", + "app_resource": { + "ic_chain_select": "https://btachain.com/images/favicon/logo.png", + "ic_chain_unselect": "https://btachain.com/images/favicon/logo-0x.png", + "color_chain_bg": "0x0777cf" + } + }, + { + "name": "Cycle StarFish Testnet", + "chain": "ETH", + "status": "active", + "icon": "Cycle", + "network": "testnet", + "rpc": [ + "https://rpc-testnet.cyclenetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://cycle-network.gitbook.io/cycle-network-docs/welcome/testnet-starfish", + "shortName": "Cycle StarFish Testnet", + "chainId": 1221, + "networkId": 1221, + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1711525328453.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1711564983535.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1711565004213.png" + } + }, + { + "name": "Arbitrum One", + "chainId": 42161, + "shortName": "Arbitrum", + "chain": "Arbitrum", + "network": "mainnet", + "networkId": 42161, + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://arb1.arbitrum.io/rpc" + ], + "faucets": [], + "infoURL": "https://arbitrum.io/" + }, + { + "name": "Fuse Mainnet", + "chainId": 122, + "shortName": "fuse", + "chain": "FUSE", + "network": "mainnet", + "networkId": 122, + "nativeCurrency": { + "name": "Fuse", + "symbol": "FUSE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.fuse.io" + ], + "faucets": [], + "infoURL": "https://fuse.io/", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/0.png", + "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fuse/2.png", + "color_chain_bg": "0x62D970" + } + }, + { + "name": "Fantom Opera", + "chainId": 250, + "shortName": "ftm", + "chain": "FTM", + "network": "mainnet", + "networkId": 250, + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "rpc": [ + "https://rpcapi.fantom.network", + "https://fantomscan.io/rpc" + ], + "faucets": [], + "infoURL": "https://fantom.foundation", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Fantom/0.png", + "color_chain_bg": "0x1969FF" + } + }, + { + "name": "Ethereum Classic Mainnet", + "chainId": 61, + "shortName": "etc", + "chain": "ETC", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ethereum Classic Ether", + "symbol": "ETC", + "decimals": 18 + }, + "rpc": [ + "https://www.ethercluster.com/etc" + ], + "faucets": [], + "infoURL": "https://ethereumclassic.org", + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/0.png", + "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/EthereumClassic/2.png", + "color_chain_bg": "0x3CBA3B" + } + }, + { + "name": "MVS", + "chainId": 23, + "shortName": "MVS", + "chain": "MVS", + "network": "mainnet", + "networkId": 23, + "nativeCurrency": { + "name": "ETP", + "symbol": "ETP", + "decimals": 18 + }, + "rpc": [ + "https://vm.mvs.org/mainnet/381e0fe4-e67d-4714-9c8c-69c7bd960e54" + ], + "faucets": [], + "infoURL": "" + }, + { + "name": "Catecoin Chain Mainnet", + "chainId": 1618, + "shortName": "cate", + "chain": "Catechain", + "network": "mainnet", + "networkId": 1618, + "nativeCurrency": { + "name": "Catecoin", + "symbol": "CATE", + "decimals": 18 + }, + "rpc": [ + "https://send.catechain.com" + ], + "faucets": [], + "infoURL": "https://catechain.com" + }, + { + "name": "Ethereum Testnet Ropsten", + "chainId": 3, + "shortName": "rop", + "chain": "ETH", + "network": "ropsten", + "networkId": 3, + "nativeCurrency": { + "name": "Ropsten Ether", + "symbol": "ROP", + "decimals": 18 + }, + "rpc": [ + "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://ropsten.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" + ], + "faucets": [ + "https://faucet.ropsten.be?${ADDRESS}" + ], + "infoURL": "https://github.com/ethereum/ropsten" + }, + { + "name": "Ethereum Testnet Kovan", + "chainId": 42, + "shortName": "kov", + "chain": "ETH", + "network": "kovan", + "networkId": 42, + "nativeCurrency": { + "name": "Kovan Ether", + "symbol": "KOV", + "decimals": 18 + }, + "rpc": [ + "https://kovan.poa.network", + "http://kovan.poa.network:8545", + "https://kovan.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://kovan.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "ws://kovan.poa.network:8546" + ], + "faucets": [ + "https://faucet.kovan.network", + "https://gitter.im/kovan-testnet/faucet" + ], + "infoURL": "https://kovan-testnet.github.io/website" + }, + { + "name": "Ethereum Testnet Rinkeby", + "chainId": 4, + "shortName": "rin", + "chain": "ETH", + "network": "rinkeby", + "networkId": 4, + "nativeCurrency": { + "name": "Rinkeby Ether", + "symbol": "RIN", + "decimals": 18 + }, + "rpc": [ + "https://rinkeby.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "wss://rinkeby.infura.io/ws/v3/9aa3d95b3bc440fa88ea12eaa4456161" + ], + "faucets": [ + "https://faucet.rinkeby.io" + ], + "infoURL": "https://www.rinkeby.io" + }, + { + "name": "Ethereum Testnet Goerli", + "chainId": 5, + "shortName": "gor", + "chain": "ETH", + "network": "goerli", + "networkId": 5, + "nativeCurrency": { + "name": "Görli Ether", + "symbol": "GOR", + "decimals": 18 + }, + "rpc": [ + "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "https://rpc.goerli.mudit.blog/", + "https://rpc.slock.it/goerli ", + "https://goerli.prylabs.net/" + ], + "faucets": [ + "https://goerli-faucet.slock.it/?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "infoURL": "https://goerli.net/#about" + }, + { + "name": "Klaytn Testnet Baobab", + "chainId": 1001, + "shortName": "Baobab", + "chain": "KLAY", + "network": "baobab", + "networkId": 1001, + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "rpc": [ + "https://node-api.klaytnapi.com/v1/klaytn" + ], + "faucets": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" + ], + "infoURL": "https://www.klaytn.com/" + }, + { + "name": "Arbitrum Testnet V5", + "chainId": 144545313136048, + "shortName": "Arbitrum Test", + "chain": "Arbitrum Test", + "network": "testnet", + "networkId": 144545313136048, + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://kovan5.arbitrum.io/rpc" + ], + "faucets": [], + "infoURL": "" + }, + { + "name": "Zenith Smart Chain", + "chainId": 20212, + "shortName": "ZSC", + "chain": "ZSC", + "network": "mainnet", + "networkId": 20212, + "nativeCurrency": { + "name": "ZTB", + "symbol": "ZTB", + "decimals": 18 + }, + "rpc": [ + "https://zsc.one/rpc" + ], + "faucets": [], + "infoURL": "" + }, + { + "name": "Newton Testnet", + "chainId": 1007, + "shortName": "tnew", + "chain": "NEW", + "network": "testnet", + "networkId": 1007, + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "rpc": [ + "https://rpc1.newchain.newtonproject.org" + ], + "faucets": [], + "infoURL": "https://www.newtonproject.org/" + }, + { + "name": "EtherInc", + "chainId": 101, + "shortName": "eti", + "chain": "ETI", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "EtherInc Ether", + "symbol": "ETI", + "decimals": 18 + }, + "rpc": [ + "https://api.einc.io/jsonrpc/mainnet" + ], + "faucets": [], + "infoURL": "https://einc.io" + }, + { + "name": "Evrice Network", + "chainId": 1010, + "shortName": "EVC", + "chain": "EVC", + "network": "Evrice", + "networkId": 1010, + "nativeCurrency": { + "name": "Evrice", + "symbol": "EVC", + "decimals": 18 + }, + "rpc": [ + "https://meta.evrice.com" + ], + "faucets": [], + "infoURL": "https://evrice.com" + }, + { + "name": "Newton", + "chainId": 1012, + "shortName": "new", + "chain": "NEW", + "network": "mainnet", + "networkId": 1012, + "nativeCurrency": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "rpc": [ + "https://global.rpc.mainnet.newtonproject.org" + ], + "faucets": [], + "infoURL": "https://www.newtonproject.org/" + }, + { + "name": "Web3Games Testnet", + "chainId": 102, + "shortName": "w3g", + "chain": "Web3Games", + "network": "Web3Games testnet", + "networkId": 102, + "nativeCurrency": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "rpc": [ + "https://substrate.org.cn" + ], + "faucets": [], + "infoURL": "https://web3games.org/", + "app_resource": { + "ic_chain_select": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-02.png", + "ic_chain_unselect": "https://web3games-public.oss-ap-northeast-1.aliyuncs.com/web3games-token-pocket-01.png", + "color_chain_bg": "0x2A31FB" + } + }, + { + "name": "Clover Testnet", + "chainId": 1023, + "shortName": "tclv", + "chain": "Clover", + "network": "clover testnet", + "networkId": 1023, + "nativeCurrency": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://clover.finance" + }, + { + "name": "Clover Mainnet", + "chainId": 1024, + "shortName": "clv", + "chain": "Clover", + "network": "clover mainnet", + "networkId": 1024, + "nativeCurrency": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://clover.finance" + }, + { + "name": "Metadium Mainnet", + "chainId": 11, + "shortName": "meta", + "chain": "META", + "network": "mainnet", + "networkId": 11, + "nativeCurrency": { + "name": "Metadium Mainnet Ether", + "symbol": "META", + "decimals": 18 + }, + "rpc": [ + "https://api.metadium.com/prod" + ], + "faucets": [], + "infoURL": "https://metadium.com" + }, + { + "name": "IPOS Network", + "chainId": 1122334455, + "shortName": "ipos", + "chain": "IPOS", + "network": "mainnet", + "networkId": 1122334455, + "nativeCurrency": { + "name": "IPOS Network Ether", + "symbol": "IPOS", + "decimals": 18 + }, + "rpc": [ + "https://rpc.iposlab.com", + "https://rpc2.iposlab.com" + ], + "faucets": [], + "infoURL": "https://iposlab.com" + }, + { + "name": "MathChain", + "chainId": 1139, + "shortName": "MATH", + "chain": "MATH", + "network": "mainnet", + "networkId": 1139, + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://mathwallet.org" + }, + { + "name": "MathChain Testnet", + "chainId": 1140, + "shortName": "tMATH", + "chain": "MATH", + "network": "testnet", + "networkId": 1140, + "nativeCurrency": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://mathwallet.org/" + }, + { + "name": "Metadium Testnet", + "chainId": 12, + "shortName": "kal", + "chain": "META", + "network": "testnet", + "networkId": 12, + "nativeCurrency": { + "name": "Metadium Testnet Ether", + "symbol": "KAL", + "decimals": 18 + }, + "rpc": [ + "https://api.metadium.com/dev" + ], + "faucets": [], + "infoURL": "https://metadium.com" + }, + { + "name": "Huobi ECO Chain Mainnet", + "chainId": 128, + "shortName": "heco", + "chain": "Heco", + "network": "mainnet", + "networkId": 128, + "nativeCurrency": { + "name": "Huobi ECO Chain Native Token", + "symbol": "HT", + "decimals": 18 + }, + "rpc": [ + "https://http-mainnet.hecochain.com", + "wss://ws-mainnet.hecochain.com" + ], + "faucets": [], + "infoURL": "https://www.hecochain.com" + }, + { + "name": "Moonbeam Polkadot", + "chainId": 1284, + "shortName": "mbeam", + "chain": "MOON", + "network": "moonbeam", + "networkId": 1284, + "nativeCurrency": { + "name": "Glimmer", + "symbol": "GLMR", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://moonbeam.network/networks/moonbeam/" + }, + { + "name": "Moonriver", + "chainId": 1285, + "shortName": "Moonriver", + "chain": "MOVR", + "network": "MOVR", + "networkId": 1285, + "nativeCurrency": { + "name": "MOVR", + "symbol": "MOVR", + "decimals": 18 + }, + "rpc": [ + "https://rpc.moonriver.moonbeam.network" + ], + "faucets": [], + "infoURL": "https://moonbeam.network/networks/moonriver/" + }, + { + "name": "Moonrock Rococo", + "chainId": 1286, + "shortName": "mrock", + "chain": "MOON", + "network": "moonrock", + "networkId": 1286, + "nativeCurrency": { + "name": "Rocs", + "symbol": "ROC", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "" + }, + { + "name": "Moonbeam Testnet Moonbase Alpha", + "chainId": 1287, + "shortName": "mbase", + "chain": "MOON", + "network": "moonbase", + "networkId": 1287, + "nativeCurrency": { + "name": "Dev", + "symbol": "DEV", + "decimals": 18 + }, + "rpc": [ + "https://rpc.testnet.moonbeam.network", + "wss://wss.testnet.moonbeam.network" + ], + "faucets": [], + "infoURL": "https://docs.moonbeam.network/networks/testnet/" + }, + { + "name": "Diode Testnet Staging", + "chainId": 13, + "shortName": "dstg", + "chain": "DIODE", + "network": "testnet", + "networkId": 13, + "nativeCurrency": { + "name": "Staging Diodes", + "symbol": "sDIODE", + "decimals": 18 + }, + "rpc": [ + "https://staging.diode.io:8443/", + "wss://staging.diode.io:8443/ws" + ], + "faucets": [], + "infoURL": "https://diode.io/staging" + }, + { + "name": "Ether-1", + "chainId": 1313114, + "shortName": "etho", + "chain": "ETHO", + "network": "mainnet", + "networkId": 1313114, + "nativeCurrency": { + "name": "Ether-1 Ether", + "symbol": "ETHO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.ether1.org" + ], + "faucets": [], + "infoURL": "https://ether1.org" + }, + { + "name": "NEAR TestNet", + "chainId": 1313161555, + "shortName": "neart", + "chain": "NEAR", + "network": "testnet", + "networkId": 1313161555, + "nativeCurrency": { + "name": "NEAR", + "symbol": "tNEAR", + "decimals": 24 + }, + "rpc": [], + "faucets": [ + "https://wallet.testnet.near.org" + ], + "infoURL": "https://near.org/" + }, + { + "name": "NEAR BetaNet", + "chainId": 1313161556, + "shortName": "nearb", + "chain": "NEAR", + "network": "betanet", + "networkId": 1313161556, + "nativeCurrency": { + "name": "NEAR", + "symbol": "bNEAR", + "decimals": 24 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://near.org/" + }, + { + "name": "Xerom", + "chainId": 1313500, + "shortName": "xero", + "chain": "XERO", + "network": "mainnet", + "networkId": 1313500, + "nativeCurrency": { + "name": "Xerom Ether", + "symbol": "XERO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xerom.org" + ], + "faucets": [], + "infoURL": "https://xerom.org" + }, + { + "name": "PepChain Churchill", + "chainId": 13371337, + "shortName": "tpep", + "chain": "PEP", + "network": "testnet", + "networkId": 13371337, + "nativeCurrency": { + "name": "PepChain Churchill Ether", + "symbol": "TPEP", + "decimals": 18 + }, + "rpc": [ + "https://churchill-rpc.pepchain.io" + ], + "faucets": [], + "infoURL": "https://pepchain.io" + }, + { + "name": "Flare Mainnet", + "chainId": 14, + "shortName": "flr", + "chain": "FLR", + "network": "flare", + "networkId": 14, + "nativeCurrency": { + "name": "Spark", + "symbol": "FLR", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://flare.xyz" + }, + { + "name": "Diode Prenet", + "chainId": 15, + "shortName": "diode", + "chain": "DIODE", + "network": "mainnet", + "networkId": 15, + "nativeCurrency": { + "name": "Diodes", + "symbol": "DIODE", + "decimals": 18 + }, + "rpc": [ + "https://prenet.diode.io:8443/", + "wss://prenet.diode.io:8443/ws" + ], + "faucets": [], + "infoURL": "https://diode.io/prenet" + }, + { + "name": "Flare Testnet Coston", + "chainId": 16, + "shortName": "cflr", + "chain": "FLR", + "network": "coston", + "networkId": 16, + "nativeCurrency": { + "name": "Coston Spark", + "symbol": "CFLR", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://github.com/flare-eng/coston" + }, + { + "name": "Lightstreams Testnet", + "chainId": 162, + "shortName": "tpht", + "chain": "PHT", + "network": "sirius", + "networkId": 162, + "nativeCurrency": { + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 + }, + "rpc": [ + "https://node.sirius.lightstreams.io" + ], + "faucets": [ + "https://discuss.lightstreams.network/t/request-test-tokens" + ], + "infoURL": "https://explorer.sirius.lightstreams.io" + }, + { + "name": "Atheios", + "chainId": 1620, + "shortName": "ath", + "chain": "ATH", + "network": "mainnet", + "networkId": 11235813, + "nativeCurrency": { + "name": "Atheios Ether", + "symbol": "ATH", + "decimals": 18 + }, + "rpc": [ + "https://wallet.atheios.com:8797" + ], + "faucets": [], + "infoURL": "https://atheios.com" + }, + { + "name": "Lightstreams Mainnet", + "chainId": 163, + "shortName": "pht", + "chain": "PHT", + "network": "mainnet", + "networkId": 163, + "nativeCurrency": { + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 + }, + "rpc": [ + "https://node.mainnet.lightstreams.io" + ], + "faucets": [], + "infoURL": "https://explorer.lightstreams.io" + }, + { + "name": "Harmony Mainnet Shard 0", + "chainId": 1666600000, + "shortName": "hmy-s0", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600000, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s0.t.hmny.io" + ], + "faucets": [], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "Harmony Mainnet Shard 1", + "chainId": 1666600001, + "shortName": "hmy-s1", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600001, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s1.t.hmny.io" + ], + "faucets": [], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "Harmony Mainnet Shard 2", + "chainId": 1666600002, + "shortName": "hmy-s2", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600002, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s2.t.hmny.io" + ], + "faucets": [], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "Harmony Mainnet Shard 3", + "chainId": 1666600003, + "shortName": "hmy-s3", + "chain": "Harmony", + "network": "mainnet", + "networkId": 1666600003, + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.s3.t.hmny.io" + ], + "faucets": [], + "infoURL": "https://www.harmony.one/" + }, + { + "name": "ThaiChain 2.0 ThaiFi", + "chainId": 17, + "shortName": "tfi", + "chain": "TCH", + "network": "thaifi", + "networkId": 17, + "nativeCurrency": { + "name": "Thaifi Ether", + "symbol": "TFI", + "decimals": 18 + }, + "rpc": [ + "https://rpc.thaifi.com" + ], + "faucets": [], + "infoURL": "https://exp.thaifi.com" + }, + { + "name": "ThunderCore Testnet", + "chainId": 18, + "shortName": "TST", + "chain": "TST", + "network": "testnet", + "networkId": 18, + "nativeCurrency": { + "name": "ThunderCore Testnet Ether", + "symbol": "TST", + "decimals": 18 + }, + "rpc": [ + "https://testnet-rpc.thundercore.com" + ], + "faucets": [ + "https://faucet-testnet.thundercore.com" + ], + "infoURL": "https://thundercore.com" + }, + { + "name": "IOLite", + "chainId": 18289463, + "shortName": "ilt", + "chain": "ILT", + "network": "mainnet", + "networkId": 18289463, + "nativeCurrency": { + "name": "IOLite Ether", + "symbol": "ILT", + "decimals": 18 + }, + "rpc": [ + "https://net.iolite.io" + ], + "faucets": [], + "infoURL": "https://iolite.io" + }, + { + "name": "Teslafunds", + "chainId": 1856, + "shortName": "tsf", + "chain": "TSF", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Teslafunds Ether", + "symbol": "TSF", + "decimals": 18 + }, + "rpc": [ + "https://tsfapi.europool.me" + ], + "faucets": [], + "infoURL": "https://teslafunds.io" + }, + { + "name": "EtherGem", + "chainId": 1987, + "shortName": "egem", + "chain": "EGEM", + "network": "mainnet", + "networkId": 1987, + "nativeCurrency": { + "name": "EtherGem Ether", + "symbol": "EGEM", + "decimals": 18 + }, + "rpc": [ + "https://jsonrpc.egem.io/custom" + ], + "faucets": [], + "infoURL": "https://egem.io" + }, + { + "name": "Expanse Network", + "chainId": 2, + "shortName": "exp", + "chain": "EXP", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Expanse Network Ether", + "symbol": "EXP", + "decimals": 18 + }, + "rpc": [ + "https://node.expanse.tech" + ], + "faucets": [], + "infoURL": "https://expanse.tech" + }, + { + "name": "ELA-ETH-Sidechain Mainnet", + "chainId": 20, + "shortName": "elaeth", + "chain": "ETH", + "network": "mainnet", + "networkId": 20, + "nativeCurrency": { + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 + }, + "rpc": [ + "https://mainrpc.elaeth.io" + ], + "faucets": [], + "infoURL": "https://www.elastos.org/" + }, + { + "name": "Akroma", + "chainId": 200625, + "shortName": "aka", + "chain": "AKA", + "network": "mainnet", + "networkId": 200625, + "nativeCurrency": { + "name": "Akroma Ether", + "symbol": "AKA", + "decimals": 18 + }, + "rpc": [ + "https://remote.akroma.io" + ], + "faucets": [], + "infoURL": "https://akroma.io" + }, + { + "name": "420coin", + "chainId": 2020, + "shortName": "420", + "chain": "420", + "network": "mainnet", + "networkId": 2020, + "nativeCurrency": { + "name": "Fourtwenty", + "symbol": "420", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://420integrated.com" + }, + { + "name": "Edgeware Mainnet", + "chainId": 2021, + "shortName": "edg", + "chain": "EDG", + "network": "mainnet", + "networkId": 2021, + "nativeCurrency": { + "name": "Edge", + "symbol": "EDG", + "decimals": 18 + }, + "rpc": [ + "https://mainnet1.edgewa.re" + ], + "faucets": [], + "infoURL": "http://edgewa.re" + }, + { + "name": "Beresheet Testnet", + "chainId": 2022, + "shortName": "edgt", + "chain": "EDG", + "network": "beresheet", + "networkId": 2022, + "nativeCurrency": { + "name": "Testnet Edge", + "symbol": "tEDG", + "decimals": 18 + }, + "rpc": [ + "https://beresheet1.edgewa.re" + ], + "faucets": [], + "infoURL": "http://edgewa.re" + }, + { + "name": "ELA-ETH-Sidechain Testnet", + "chainId": 21, + "shortName": "elaetht", + "chain": "ETH", + "network": "testnet", + "networkId": 21, + "nativeCurrency": { + "name": "Elastos", + "symbol": "tELA", + "decimals": 18 + }, + "rpc": [ + "https://rpc.elaeth.io" + ], + "faucets": [ + "https://faucet.elaeth.io/" + ], + "infoURL": "https://elaeth.io/" + }, + { + "name": "Freight Trust Network", + "chainId": 211, + "shortName": "EDI", + "chain": "EDI", + "network": "freight & trade network", + "networkId": 0, + "nativeCurrency": { + "name": "Freight Trust Native", + "symbol": "0xF", + "decimals": 18 + }, + "rpc": [ + "http://13.57.207.168:3435", + "https://app.freighttrust.net/ftn/${API_KEY}" + ], + "faucets": [ + "http://faucet.freight.sh" + ], + "infoURL": "https://freighttrust.com" + }, + { + "name": "Webchain", + "chainId": 24484, + "shortName": "web", + "chain": "WEB", + "network": "mainnet", + "networkId": 37129, + "nativeCurrency": { + "name": "Webchain Ether", + "symbol": "WEB", + "decimals": 18 + }, + "rpc": [ + "https://node1.webchain.network" + ], + "faucets": [], + "infoURL": "https://webchain.network" + }, + { + "name": "Energy Web Chain", + "chainId": 246, + "shortName": "ewt", + "chain": "Energy Web Chain", + "network": "mainnet", + "networkId": 246, + "nativeCurrency": { + "name": "Energy Web Token", + "symbol": "EWT", + "decimals": 18 + }, + "rpc": [ + "https://rpc.energyweb.org", + "wss://rpc.energyweb.org/ws" + ], + "faucets": [], + "infoURL": "https://energyweb.org" + }, + { + "name": "ARTIS sigma1", + "chainId": 246529, + "shortName": "ats", + "chain": "ARTIS", + "network": "sigma1", + "networkId": 246529, + "nativeCurrency": { + "name": "ARTIS sigma1 Ether", + "symbol": "ATS", + "decimals": 18 + }, + "rpc": [ + "https://rpc.sigma1.artis.network" + ], + "faucets": [], + "infoURL": "https://artis.eco" + }, + { + "name": "ARTIS Testnet tau1", + "chainId": 246785, + "shortName": "atstau", + "chain": "ARTIS", + "network": "tau1", + "networkId": 246785, + "nativeCurrency": { + "name": "ARTIS tau1 Ether", + "symbol": "tATS", + "decimals": 18 + }, + "rpc": [ + "https://rpc.tau1.artis.network" + ], + "faucets": [], + "infoURL": "https://artis.network" + }, + { + "name": "Huobi ECO Chain Testnet", + "chainId": 256, + "shortName": "hecot", + "chain": "Heco", + "network": "testnet", + "networkId": 256, + "nativeCurrency": { + "name": "Huobi ECO Chain Test Native Token", + "symbol": "htt", + "decimals": 18 + }, + "rpc": [ + "https://http-testnet.hecochain.com", + "wss://ws-testnet.hecochain.com" + ], + "faucets": [ + "https://scan-testnet.hecochain.com/faucet" + ], + "infoURL": "https://www.hecochain.com" + }, + { + "name": "Auxilium Network Mainnet", + "chainId": 28945486, + "shortName": "auxi", + "chain": "AUX", + "network": "mainnet", + "networkId": 28945486, + "nativeCurrency": { + "name": "Auxilium coin", + "symbol": "AUX", + "decimals": 18 + }, + "rpc": [ + "https://rpc.auxilium.global" + ], + "faucets": [], + "infoURL": "https://auxilium.global" + }, + { + "name": "RSK Mainnet", + "chainId": 30, + "shortName": "rsk", + "chain": "RSK", + "network": "mainnet", + "networkId": 30, + "nativeCurrency": { + "name": "RSK Mainnet Ether", + "symbol": "RBTC", + "decimals": 18 + }, + "rpc": [ + "https://public-node.rsk.co", + "https://mycrypto.rsk.co" + ], + "faucets": [], + "infoURL": "https://rsk.co" + }, + { + "name": "RSK Testnet", + "chainId": 31, + "shortName": "trsk", + "chain": "RSK", + "network": "testnet", + "networkId": 31, + "nativeCurrency": { + "name": "RSK Testnet Ether", + "symbol": "tRBTC", + "decimals": 18 + }, + "rpc": [ + "https://public-node.testnet.rsk.co", + "https://mycrypto.testnet.rsk.co" + ], + "faucets": [ + "https://faucet.testnet.rsk.co" + ], + "infoURL": "https://rsk.co" + }, + { + "name": "Ethersocial Network", + "chainId": 31102, + "shortName": "esn", + "chain": "ESN", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Ethersocial Network Ether", + "symbol": "ESN", + "decimals": 18 + }, + "rpc": [ + "https://api.esn.gonspool.com" + ], + "faucets": [], + "infoURL": "https://ethersocial.org" + }, + { + "name": "Pirl", + "chainId": 3125659152, + "shortName": "pirl", + "chain": "PIRL", + "network": "mainnet", + "networkId": 3125659152, + "nativeCurrency": { + "name": "Pirl Ether", + "symbol": "PIRL", + "decimals": 18 + }, + "rpc": [ + "https://wallrpc.pirl.io" + ], + "faucets": [], + "infoURL": "https://pirl.io" + }, + { + "name": "GoodData Mainnet", + "chainId": 33, + "shortName": "GooD", + "chain": "GooD", + "network": "mainnet", + "networkId": 33, + "nativeCurrency": { + "name": "GoodData Mainnet Ether", + "symbol": "GooD", + "decimals": 18 + }, + "rpc": [ + "https://rpc.goodata.io" + ], + "faucets": [], + "infoURL": "https://www.goodata.org" + }, + { + "name": "TBWG Chain", + "chainId": 35, + "shortName": "tbwg", + "chain": "TBWG", + "network": "mainnet", + "networkId": 35, + "nativeCurrency": { + "name": "TBWG Ether", + "symbol": "TBG", + "decimals": 18 + }, + "rpc": [ + "https://rpc.tbwg.io" + ], + "faucets": [], + "infoURL": "https://tbwg.io" + }, + { + "name": "Joys Digital Mainnet", + "chainId": 35855456, + "shortName": "JOYS", + "chain": "JOYS", + "network": "mainnet", + "networkId": 35855456, + "nativeCurrency": { + "name": "JOYS", + "symbol": "JOYS", + "decimals": 18 + }, + "rpc": [ + "https://node.joys.digital" + ], + "faucets": [], + "infoURL": "https://joys.digital" + }, + { + "name": "Valorbit", + "chainId": 38, + "shortName": "val", + "chain": "VAL", + "network": "mainnet", + "networkId": 38, + "nativeCurrency": { + "name": "Valorbit", + "symbol": "VAL", + "decimals": 18 + }, + "rpc": [ + "https://rpc.valorbit.com/v2" + ], + "faucets": [], + "infoURL": "https://valorbit.com" + }, + { + "name": "Lisinski", + "chainId": 385, + "shortName": "lisinski", + "chain": "CRO", + "network": "mainnet", + "networkId": 385, + "nativeCurrency": { + "name": "Lisinski Ether", + "symbol": "LISINSKI", + "decimals": 18 + }, + "rpc": [ + "https://rpc-bitfalls1.lisinski.online" + ], + "faucets": [ + "https://pipa.lisinski.online" + ], + "infoURL": "https://lisinski.online" + }, + { + "name": "Energi Mainnet", + "chainId": 39797, + "shortName": "nrg", + "chain": "NRG", + "network": "mainnet", + "networkId": 39797, + "nativeCurrency": { + "name": "Energi", + "symbol": "NRG", + "decimals": 18 + }, + "rpc": [ + "https://nodeapi.gen3.energi.network" + ], + "faucets": [], + "infoURL": "https://www.energi.world/" + }, + { + "name": "Telos EVM Mainnet", + "chainId": 40, + "shortName": "Telos EVM", + "chain": "TLOS", + "network": "mainnet", + "networkId": 40, + "nativeCurrency": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.telos.net/evm" + ], + "faucets": [], + "infoURL": "https://telos.net" + }, + { + "name": "Telos EVM Testnet", + "chainId": 41, + "shortName": "Telos EVM Testnet", + "chain": "TLOS", + "network": "testnet", + "networkId": 41, + "nativeCurrency": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "rpc": [ + "https://testnet.telos.net/evm" + ], + "faucets": [ + "https://app.telos.net/testnet/developers" + ], + "infoURL": "https://telos.net" + }, + { + "name": "Optimistic Ethereum Testnet Goerli", + "chainId": 420, + "shortName": "ogor", + "chain": "ETH", + "network": "goerli", + "networkId": 420, + "nativeCurrency": { + "name": "Görli Ether", + "symbol": "GOR", + "decimals": 18 + }, + "rpc": [ + "https://goerli.optimism.io/" + ], + "faucets": [], + "infoURL": "https://optimism.io" + }, + { + "name": "pegglecoin", + "chainId": 42069, + "shortName": "PC", + "chain": "42069", + "network": "mainnet", + "networkId": 42069, + "nativeCurrency": { + "name": "pegglecoin", + "symbol": "peggle", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://teampeggle.com" + }, + { + "name": "Celo Mainnet", + "chainId": 42220, + "shortName": "CELO", + "chain": "CELO", + "network": "Mainnet", + "networkId": 42220, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://forno.celo.org", + "wss://forno.celo.org/ws" + ], + "faucets": [], + "infoURL": "https://docs.celo.org/" + }, + { + "name": "Darwinia Pangolin Testnet", + "chainId": 43, + "shortName": "darwinia", + "chain": "pangolin", + "network": "free testnet", + "networkId": 43, + "nativeCurrency": { + "name": "Pangolin RING", + "symbol": "PRING", + "decimals": 9 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://darwinia.network/" + }, + { + "name": "Athereum", + "chainId": 43110, + "shortName": "avaeth", + "chain": "ATH", + "network": "athereum", + "networkId": 43110, + "nativeCurrency": { + "name": "Athereum Ether", + "symbol": "ATH", + "decimals": 18 + }, + "rpc": [ + "https://ava.network:21015/ext/evm/rpc" + ], + "faucets": [ + "http://athfaucet.ava.network//?address=${ADDRESS}" + ], + "infoURL": "https://athereum.ava.network" + }, + { + "name": "Avalanche Fuji Testnet", + "chainId": 43113, + "shortName": "Fuji", + "chain": "AVAX", + "network": "testnet", + "networkId": 1, + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "rpc": [ + "https://api.avax-test.network/ext/bc/C/rpc" + ], + "faucets": [ + "https://faucet.avax-test.network/" + ], + "infoURL": "https://cchain.explorer.avax-test.network" + }, + { + "name": "Celo Alfajores Testnet", + "chainId": 44787, + "shortName": "ALFA", + "chain": "CELO", + "network": "Alfajores", + "networkId": 44787, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://alfajores-forno.celo-testnet.org", + "wss://alfajores-forno.celo-testnet.org/ws" + ], + "faucets": [ + "https://celo.org/developers/faucet", + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" + ], + "infoURL": "https://docs.celo.org/" + }, + { + "name": "Energi Testnet", + "chainId": 49797, + "shortName": "tnrg", + "chain": "NRG", + "network": "testnet", + "networkId": 49797, + "nativeCurrency": { + "name": "Energi", + "symbol": "tNRG", + "decimals": 18 + }, + "rpc": [ + "https://nodeapi.test3.energi.network" + ], + "faucets": [], + "infoURL": "https://www.energi.world/" + }, + { + "name": "Rupaya", + "chainId": 499, + "shortName": "rupx", + "chain": "RUPX", + "network": "mainnet", + "networkId": 499, + "nativeCurrency": { + "name": "Rupaya", + "symbol": "RUPX", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://www.rupx.io" + }, + { + "name": "XinFin Network Mainnet", + "chainId": 50, + "shortName": "xdc", + "chain": "XDC", + "network": "mainnet", + "networkId": 50, + "nativeCurrency": { + "name": "XinFin", + "symbol": "XDC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.xinfin.network" + ], + "faucets": [], + "infoURL": "https://xinfin.org" + }, + { + "name": "XinFin Apothem Testnet", + "chainId": 51, + "shortName": "TXDC", + "chain": "TXDC", + "network": "testnet", + "networkId": 51, + "nativeCurrency": { + "name": "XinFinTest", + "symbol": "TXDC", + "decimals": 18 + }, + "rpc": [ + "https://rpc.apothem.network" + ], + "faucets": [], + "infoURL": "https://xinfin.org" + }, + { + "name": "CoinEx Smart Chain Mainnet", + "chainId": 52, + "shortName": "cet", + "chain": "CSC", + "network": "mainnet", + "networkId": 52, + "nativeCurrency": { + "name": "CoinEx Chain Native Token", + "symbol": "cet", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.coinex.net" + ], + "faucets": [], + "infoURL": "http://www.coinex.org/" + }, + { + "name": "CoinEx Smart Chain Testnet", + "chainId": 53, + "shortName": "tcet", + "chain": "CSC", + "network": "testnet", + "networkId": 53, + "nativeCurrency": { + "name": "CoinEx Chain Test Native Token", + "symbol": "cett", + "decimals": 18 + }, + "rpc": [ + "https://rpc-testnet.coinex.net" + ], + "faucets": [], + "infoURL": "http://www.coinex.org/" + }, + { + "name": "Tao Network", + "chainId": 558, + "shortName": "tao", + "chain": "TAO", + "network": "core", + "networkId": 558, + "nativeCurrency": { + "name": "Tao", + "symbol": "TAO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.testnet.tao.network", + "http://rpc.testnet.tao.network:8545", + "https://rpc.tao.network", + "wss://rpc.tao.network" + ], + "faucets": [], + "infoURL": "https://tao.network" + }, + { + "name": "Binance Smart Chain Mainnet", + "chainId": 56, + "shortName": "bnb", + "chain": "BSC", + "network": "mainnet", + "networkId": 56, + "nativeCurrency": { + "name": "Binance Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "rpc": [ + "https://bsc-dataseed1.binance.org", + "https://bsc-dataseed2.binance.org", + "https://bsc-dataseed3.binance.org", + "https://bsc-dataseed4.binance.org", + "https://bsc-dataseed1.defibit.io", + "https://bsc-dataseed2.defibit.io", + "https://bsc-dataseed3.defibit.io", + "https://bsc-dataseed4.defibit.io", + "https://bsc-dataseed1.ninicoin.io", + "https://bsc-dataseed2.ninicoin.io", + "https://bsc-dataseed3.ninicoin.io", + "https://bsc-dataseed4.ninicoin.io", + "wss://bsc-ws-node.nariox.org" + ], + "faucets": [], + "infoURL": "https://www.binance.org" + }, + { + "name": "Wegochain Rubidium Mainnet", + "chainId": 5869, + "shortName": "rbd", + "chain": "RBD", + "network": "mainnet", + "networkId": 5869, + "nativeCurrency": { + "name": "Rubid", + "symbol": "RBD", + "decimals": 18 + }, + "rpc": [ + "https://proxy.wegochain.io", + "http://wallet.wegochain.io:7764" + ], + "faucets": [], + "infoURL": "http://wegochain.io" + }, + { + "name": "Acala Mandala Testnet", + "chainId": 595, + "shortName": "maca", + "chain": "mACA", + "network": "testnet", + "networkId": 595, + "nativeCurrency": { + "name": "Acala Mandala Token", + "symbol": "mACA", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://acala.network" + }, + { + "name": "Ethereum Classic Testnet Kotti", + "chainId": 6, + "shortName": "kot", + "chain": "ETC", + "network": "kotti", + "networkId": 6, + "nativeCurrency": { + "name": "Kotti Ether", + "symbol": "KOT", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://explorer.jade.builders/?network=kotti" + }, + { + "name": "GoChain", + "chainId": 60, + "shortName": "go", + "chain": "GO", + "network": "mainnet", + "networkId": 60, + "nativeCurrency": { + "name": "GoChain Ether", + "symbol": "GO", + "decimals": 18 + }, + "rpc": [ + "https://rpc.gochain.io" + ], + "faucets": [], + "infoURL": "https://gochain.io" + }, + { + "name": "Aquachain", + "chainId": 61717561, + "shortName": "aqua", + "chain": "AQUA", + "network": "mainnet", + "networkId": 61717561, + "nativeCurrency": { + "name": "Aquachain Ether", + "symbol": "AQUA", + "decimals": 18 + }, + "rpc": [ + "https://c.onical.org", + "https://tx.aquacha.in/api" + ], + "faucets": [ + "https://aquacha.in/faucet" + ], + "infoURL": "https://aquachain.github.io" + }, + { + "name": "Ethereum Classic Testnet Morden", + "chainId": 62, + "shortName": "tetc", + "chain": "ETC", + "network": "testnet", + "networkId": 2, + "nativeCurrency": { + "name": "Ethereum Classic Testnet Ether", + "symbol": "TETC", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://ethereumclassic.org" + }, + { + "name": "Celo Baklava Testnet", + "chainId": 62320, + "shortName": "BKLV", + "chain": "CELO", + "network": "Baklava", + "networkId": 62320, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://baklava-forno.celo-testnet.org" + ], + "faucets": [ + "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", + "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + ], + "infoURL": "https://docs.celo.org/" + }, + { + "name": "Ethereum Classic Testnet Mordor", + "chainId": 63, + "shortName": "metc", + "chain": "ETC", + "network": "testnet", + "networkId": 7, + "nativeCurrency": { + "name": "Mordor Classic Testnet Ether", + "symbol": "METC", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://github.com/eth-classic/mordor/" + }, + { + "name": "Ellaism", + "chainId": 64, + "shortName": "ella", + "chain": "ELLA", + "network": "mainnet", + "networkId": 64, + "nativeCurrency": { + "name": "Ellaism Ether", + "symbol": "ELLA", + "decimals": 18 + }, + "rpc": [ + "https://jsonrpc.ellaism.org" + ], + "faucets": [], + "infoURL": "https://ellaism.org" + }, + { + "name": "OKExChain Testnet", + "chainId": 65, + "shortName": "tokt", + "chain": "okexchain", + "network": "testnet", + "networkId": 65, + "nativeCurrency": { + "name": "OKExChain Global Utility Token in testnet", + "symbol": "OKT", + "decimals": 18 + }, + "rpc": [ + "https://exchaintestrpc.okex.org" + ], + "faucets": [ + "https://www.okex.com/drawdex" + ], + "infoURL": "https://www.okex.com/okexchain", + "app_resource": { + "ic_home_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_home_bg.png", + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_select.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_chain_unselect.png", + "ic_all_whitelist_logo": "https://tp-upload.cdn.bcebos.com/v1/blockChain/okt/ic_okt_whitelist_logo.png", + "color_chain_bg": "0x1E2D5D", + "color_chain_text": "0xFFFFFF" + } + }, + { + "name": "OKExChain Mainnet", + "chainId": 66, + "shortName": "okt", + "chain": "okexchain", + "network": "mainnet", + "networkId": 66, + "nativeCurrency": { + "name": "OKExChain Global Utility Token", + "symbol": "OKT", + "decimals": 18 + }, + "rpc": [ + "https://exchain.okexcn.com" + ], + "faucets": [], + "infoURL": "https://www.okex.com/okexchain" + }, + { + "name": "DBChain Testnet", + "chainId": 67, + "shortName": "dbm", + "chain": "DBM", + "network": "testnet", + "networkId": 67, + "nativeCurrency": { + "name": "DBChain Testnet", + "symbol": "DBM", + "decimals": 18 + }, + "rpc": [ + "http://test-rpc.dbmbp.com" + ], + "faucets": [], + "infoURL": "http://test.dbmbp.com" + }, + { + "name": "SoterOne Mainnet", + "chainId": 68, + "shortName": "SO1", + "chain": "SOTER", + "network": "mainnet", + "networkId": 68, + "nativeCurrency": { + "name": "SoterOne Mainnet Ether", + "symbol": "SOTER", + "decimals": 18 + }, + "rpc": [ + "https://rpc.soter.one" + ], + "faucets": [], + "infoURL": "https://www.soterone.com" + }, + { + "name": "Karura Network", + "chainId": 686, + "shortName": "kar", + "chain": "KAR", + "network": "mainnet", + "networkId": 686, + "nativeCurrency": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://karura.network" + }, + { + "name": "Optimistic Ethereum Testnet Kovan", + "chainId": 69, + "shortName": "okov", + "chain": "ETH", + "network": "kovan", + "networkId": 69, + "nativeCurrency": { + "name": "Kovan Ether", + "symbol": "KOR", + "decimals": 18 + }, + "rpc": [ + "https://kovan.optimism.io/" + ], + "faucets": [], + "infoURL": "https://optimism.io" + }, + { + "name": "ThaiChain", + "chainId": 7, + "shortName": "tch", + "chain": "TCH", + "network": "mainnet", + "networkId": 7, + "nativeCurrency": { + "name": "ThaiChain Ether", + "symbol": "TCH", + "decimals": 18 + }, + "rpc": [ + "https://rpc.dome.cloud" + ], + "faucets": [], + "infoURL": "https://thaichain.io" + }, + { + "name": "Energy Web Volta Testnet", + "chainId": 73799, + "shortName": "vt", + "chain": "Volta", + "network": "testnet", + "networkId": 73799, + "nativeCurrency": { + "name": "Volta Token", + "symbol": "VT", + "decimals": 18 + }, + "rpc": [ + "https://volta-rpc.energyweb.org", + "wss://volta-rpc.energyweb.org/ws" + ], + "faucets": [ + "https://voltafaucet.energyweb.org" + ], + "infoURL": "https://energyweb.org" + }, + { + "name": "Mix", + "chainId": 76, + "shortName": "mix", + "chain": "MIX", + "network": "mainnet", + "networkId": 76, + "nativeCurrency": { + "name": "Mix Ether", + "symbol": "MIX", + "decimals": 18 + }, + "rpc": [ + "https://rpc2.mix-blockchain.org:8647" + ], + "faucets": [], + "infoURL": "https://mix-blockchain.org" + }, + { + "name": "POA Network Sokol", + "chainId": 77, + "shortName": "poa", + "chain": "POA", + "network": "sokol", + "networkId": 77, + "nativeCurrency": { + "name": "POA Sokol Ether", + "symbol": "POA", + "decimals": 18 + }, + "rpc": [ + "https://sokol.poa.network", + "wss://sokol.poa.network/wss", + "ws://sokol.poa.network:8546" + ], + "faucets": [ + "https://faucet-sokol.herokuapp.com" + ], + "infoURL": "https://poa.network" + }, + { + "name": "Musicoin", + "chainId": 7762959, + "shortName": "music", + "chain": "MUSIC", + "network": "mainnet", + "networkId": 7762959, + "nativeCurrency": { + "name": "Musicoin", + "symbol": "MUSIC", + "decimals": 18 + }, + "rpc": [ + "https://mewapi.musicoin.tw" + ], + "faucets": [], + "infoURL": "https://musicoin.tw" + }, + { + "name": "Mint Testnet", + "chain": "ETH", + "rpc": [ + "https://testnet-rpc.mintchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.mintchain.io", + "shortName": "minttest", + "chainId": 1686, + "networkId": 1686, + "icon": "mintTestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.mintchain.io", + "icon": "mintTestnet", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://testnet-bridge.mintchain.io" + } + ] + } + }, + { + "name": "Mint Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-testnet-rpc.mintchain.io" + ], + "nativeCurrency": { + "name": "Mint Sepolia Testnet", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.mintchain.io", + "shortName": "Mint Testnet", + "chainId": 1687, + "networkId": 1687, + "icon": "mintTestnet", + "explorers": [ + { + "name": "blockscout", + "url": "hhttps://sepolia-testnet-explorer.mintchain.io", + "icon": "mintTestnet", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://sepolia-testnet-bridge.mintchain.io" + } + ] + }, + "faucets": [ + "http://mintchain.io/faucet" + ] + }, + { + "name": "Ethermint Testnet", + "chainId": 777, + "shortName": "emint", + "chain": "ETHERMINT", + "network": "testnet", + "networkId": 777, + "nativeCurrency": { + "name": "Photon", + "symbol": "Photon", + "decimals": 18 + }, + "rpc": [ + "http://54.210.246.165:8545" + ], + "faucets": [], + "infoURL": "https://docs.ethermint.zone" + }, + { + "name": "PrimusChain mainnet", + "chainId": 78, + "shortName": "primuschain", + "chain": "PC", + "network": "mainnet", + "networkId": 78, + "nativeCurrency": { + "name": "Primus Ether", + "symbol": "PETH", + "decimals": 18 + }, + "rpc": [ + "https://ethnode.primusmoney.com/mainnet" + ], + "faucets": [], + "infoURL": "https://primusmoney.com" + }, + { + "name": "Firenze test network", + "chainId": 78110, + "shortName": "firenze", + "chain": "ETH", + "network": "testnet", + "networkId": 78110, + "nativeCurrency": { + "name": "Firenze Ether", + "symbol": "FIN", + "decimals": 18 + }, + "rpc": [ + "https://ethnode.primusmoney.com/firenze" + ], + "faucets": [], + "infoURL": "https://primusmoney.com" + }, + { + "name": "Acala Network", + "chainId": 787, + "shortName": "aca", + "chain": "ACA", + "network": "mainnet", + "networkId": 787, + "nativeCurrency": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://acala.network" + }, + { + "name": "GateChain Mainnet", + "chainId": 86, + "shortName": "gt", + "chain": "GT", + "network": "mainnet", + "networkId": 86, + "nativeCurrency": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "rpc": [ + "https://evm.gatenode.cc", + "https://evm-cn1.gatenode.cc:6061" + ], + "faucets": [ + "https://www.gatescan.org/faucet" + ], + "infoURL": "https://www.gatechain.io" + }, + { + "name": "Ubiq Network Mainnet", + "chainId": 8, + "shortName": "ubq", + "chain": "UBQ", + "network": "mainnet", + "networkId": 88, + "nativeCurrency": { + "name": "Ubiq Ether", + "symbol": "UBQ", + "decimals": 18 + }, + "rpc": [ + "https://rpc.octano.dev", + "https://pyrus2.ubiqscan.io" + ], + "faucets": [], + "infoURL": "https://ubiqsmart.com" + }, + { + "name": "Matic Testnet Mumbai", + "chainId": 80001, + "shortName": "maticmum", + "chain": "Matic", + "network": "testnet", + "networkId": 80001, + "nativeCurrency": { + "name": "Matic", + "symbol": "tMATIC", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mumbai.matic.today", + "wss://ws-mumbai.matic.today" + ], + "faucets": [ + "https://faucet.matic.network/" + ], + "infoURL": "https://matic.network/" + }, + { + "name": "Meter Mainnet", + "chainId": 82, + "shortName": "Meter", + "chain": "METER", + "network": "mainnet", + "networkId": 82, + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "rpc": [ + "https://rpc.meter.io" + ], + "faucets": [], + "infoURL": "https://www.meter.io" + }, + { + "name": "Callisto Mainnet", + "chainId": 820, + "shortName": "clo", + "chain": "CLO", + "network": "mainnet", + "networkId": 1, + "nativeCurrency": { + "name": "Callisto Mainnet Ether", + "symbol": "CLO", + "decimals": 18 + }, + "rpc": [ + "https://clo-geth.0xinfra.com" + ], + "faucets": [], + "infoURL": "https://callisto.network" + }, + { + "name": "Callisto Testnet", + "chainId": 821, + "shortName": "tclo", + "chain": "CLO", + "network": "testnet", + "networkId": 2, + "nativeCurrency": { + "name": "Callisto Testnet Ether", + "symbol": "TCLO", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://callisto.network" + }, + { + "name": "Klaytn Mainnet Cypress", + "chainId": 8217, + "shortName": "Cypress", + "chain": "KLAY", + "network": "cypress", + "networkId": 8217, + "nativeCurrency": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "rpc": [ + "https://node-api.klaytnapi.com/v1/klaytn" + ], + "faucets": [], + "infoURL": "https://www.klaytn.com/" + }, + { + "name": "Wanchain", + "chainId": 888, + "shortName": "wan", + "chain": "WAN", + "network": "mainnet", + "networkId": 888, + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "rpc": [ + "https://gwan-ssl.wandevs.org:56891/" + ], + "faucets": [], + "infoURL": "https://www.wanscan.org" + }, + { + "name": "bloxberg", + "chainId": 8995, + "shortName": "berg", + "chain": "bloxberg", + "network": "mainnet", + "networkId": 8995, + "nativeCurrency": { + "name": "BERG", + "symbol": "U+25B3", + "decimals": 18 + }, + "rpc": [ + "https://core.bloxberg.org" + ], + "faucets": [ + "https://faucet.bloxberg.org/" + ], + "infoURL": "https://bloxberg.org" + }, + { + "name": "Ubiq Network Testnet", + "chainId": 9, + "shortName": "tubq", + "chain": "UBQ", + "network": "mainnet", + "networkId": 2, + "nativeCurrency": { + "name": "Ubiq Testnet Ether", + "symbol": "TUBQ", + "decimals": 18 + }, + "rpc": [], + "faucets": [], + "infoURL": "https://ethersocial.org" + }, + { + "name": "Binance Smart Chain Testnet", + "chainId": 97, + "shortName": "bnbt", + "chain": "BSC", + "network": "Chapel", + "networkId": 97, + "nativeCurrency": { + "name": "Binance Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "rpc": [ + "https://data-seed-prebsc-1-s1.binance.org:8545", + "https://data-seed-prebsc-2-s1.binance.org:8545", + "https://data-seed-prebsc-1-s2.binance.org:8545", + "https://data-seed-prebsc-2-s2.binance.org:8545", + "https://data-seed-prebsc-1-s3.binance.org:8545", + "https://data-seed-prebsc-2-s3.binance.org:8545" + ], + "faucets": [ + "https://testnet.binance.org/faucet-smart" + ], + "infoURL": "https://testnet.binance.org/" + }, + { + "name": "Nepal Blockchain Network", + "chainId": 977, + "shortName": "yeti", + "chain": "YETI", + "network": "mainnet", + "networkId": 977, + "nativeCurrency": { + "name": "Nepal Blockchain Network Ether", + "symbol": "YETI", + "decimals": 18 + }, + "rpc": [ + "https://api.nepalblockchain.dev", + "https://api.nepalblockchain.network" + ], + "faucets": [ + "https://faucet.nepalblockchain.network" + ], + "infoURL": "https://nepalblockchain.network" + }, + { + "name": "POA Network Core", + "chainId": 99, + "shortName": "skl", + "chain": "POA", + "network": "core", + "networkId": 99, + "nativeCurrency": { + "name": "POA Network Core Ether", + "symbol": "SKL", + "decimals": 18 + }, + "rpc": [ + "https://core.poanetwork.dev", + "http://core.poanetwork.dev:8545", + "https://core.poa.network", + "ws://core.poanetwork.dev:8546" + ], + "faucets": [], + "infoURL": "https://poa.network" + }, + { + "name": "Joys Digital TestNet", + "chainId": 99415706, + "shortName": "TOYS", + "chain": "TOYS", + "network": "testnet", + "networkId": 99415706, + "nativeCurrency": { + "name": "TOYS", + "symbol": "TOYS", + "decimals": 18 + }, + "rpc": [ + "https://toys.joys.cash/" + ], + "faucets": [ + "https://faucet.joys.digital/" + ], + "infoURL": "https://joys.digital" + }, + { + "name": "Wanchain Testnet", + "chainId": 999, + "shortName": "twan", + "chain": "WAN", + "network": "testnet", + "networkId": 999, + "nativeCurrency": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "rpc": [ + "https://gwan-ssl.wandevs.org:46891/" + ], + "faucets": [], + "infoURL": "https://testnet.wanscan.org" + }, + { + "name": "HPB Mainnet", + "chainId": 269, + "shortName": "HPB", + "chain": "HPB", + "network": "mainnet", + "networkId": 100, + "nativeCurrency": { + "name": "HPB", + "symbol": "HPB", + "decimals": 18 + }, + "rpc": [ + "https://hpbnode.com" + ], + "faucets": [], + "infoURL": "https://hpb.io" + }, + { + "name": "KCC Mainnet", + "chainId": 321, + "shortName": "kcc", + "chain": "KCC", + "network": "mainnet", + "networkId": 321, + "nativeCurrency": { + "name": "KuCoin Token", + "symbol": "KCS", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.kcc.network", + "wss://rpc-ws-mainnet.kcc.network" + ], + "faucets": [], + "infoURL": "https://kcc.io", + "app_resource": { + "ic_chain_select": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-0.png", + "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/images/kcc/kcc-1.png", + "color_chain_bg": "0x27CD96" + }, + "explorers": [ + { + "name": "KCC Scan (Blockscout)", + "url": "https://scan.kcc.io", + "standard": "EIP3091" + }, + { + "name": "KCC Explorer", + "url": "https://explorer.kcc.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "HALO Mainnet", + "chainId": 1280, + "shortName": "HO", + "chain": "HALO", + "network": "mainnet", + "networkId": 1280, + "nativeCurrency": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "rpc": [ + "https://nodes.halo.land" + ], + "faucets": [], + "infoURL": "https://halo.land/#/", + "app_resource": { + "ic_chain_select": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371652515.png", + "ic_chain_unselect": "https://tp-statics.tokenpocket.pro/token/tokenpocket-1632371627579.png", + "color_chain_bg": "0xB1232C" + } + }, + { + "name": "UN Chain", + "chainId": 1681681688, + "shortName": "un", + "chain": "UN", + "network": "mainnet", + "networkId": 1681681688, + "nativeCurrency": { + "name": "UN", + "symbol": "UN", + "decimals": 18 + }, + "rpc": [ + "http://116.62.244.90:50121", + "ws://116.62.244.90:60121" + ], + "faucets": [], + "infoURL": "http://www.untokencan.com/#/", + "app_resource": { + "ic_chain_select": "https://files.moacchina.info/2021/12/14/e618eec7-4fb0-4210-bbee-6d0cee2c1650_1.png", + "ic_chain_unselect": "https://files.moacchina.info/2021/12/14/ede37514-9792-443b-897f-01d1377256e0_2.png", + "color_chain_bg": "0x58B2AF" + } + }, + { + "name": "Vision Mainnet", + "chainId": 888888, + "shortName": "Vision", + "chain": "Vision - Mainnet", + "network": "mainnet", + "networkId": 888888, + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "rpc": [ + "https://infragrid.v.network/ethereum/compatible" + ], + "faucets": [], + "infoURL": "https://visionscan.org", + "app_resource": { + "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", + "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", + "color_chain_bg": "0x000000" + } + }, + { + "name": "Vision - Vpioneer Testnet", + "chainId": 666666, + "shortName": "Vpioneer", + "chain": "Vision - Vpioneer", + "network": "Vpioneer", + "networkId": 666666, + "nativeCurrency": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "rpc": [ + "https://vpioneer.infragrid.v.network/ethereum/compatible" + ], + "faucets": [ + "https://vpioneerfaucet.visionscan.org" + ], + "infoURL": "https://visionscan.org", + "app_resource": { + "ic_chain_select": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/d23f7961d62743aa8b3926d3917c232e12a188eadc0b4dffa4b7ba4e4dcb4059.png", + "ic_chain_unselect": "https://vision-1.oss-accelerate.aliyuncs.com/u/0/0/202201/o/798239fa73f24eb2977e17e0b0d0a6e8ee8826007995420aa93a213ab06695c0.png", + "color_chain_bg": "0x000000" + } + }, + { + "name": "SAT L2 Chain", + "chainId": 123778899, + "shortName": "SL2", + "chain": "SL2", + "network": "testnet", + "networkId": 123778899, + "nativeCurrency": { + "name": "SL2", + "symbol": "SL2", + "decimals": 18 + }, + "rpc": [ + "http://123.58.210.13:8546" + ], + "faucets": [], + "infoURL": "", + "app_resource": { + "ic_chain_select": "http://106.75.144.161/icon/Smartx_H.png", + "ic_chain_unselect": "http://106.75.144.161/icon/Smartx_U.png", + "color_chain_bg": "0x8250df" + } + }, + { + "name": "Evmos Testnet", + "chain": "Evmos", + "rpc": [ + "https://evmos-archive-testnet.api.bdnodes.net:8545" + ], + "faucets": [ + "https://faucet.evmos.dev" + ], + "nativeCurrency": { + "name": "test-Evmos", + "symbol": "tEVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos-testnet", + "chainId": 9000, + "networkId": 9000, + "icon": "evmos", + "explorers": [ + { + "name": "Evmos EVM Explorer (Blockscout)", + "url": "https://evm.evmos.dev", + "standard": "none", + "icon": "evmos" + }, + { + "name": "Evmos Cosmos Explorer", + "url": "https://explorer.evmos.dev", + "standard": "none", + "icon": "evmos" + } + ] + }, + { + "name": "Evmos", + "chain": "Evmos", + "rpc": [ + "https://eth.bd.evmos.org:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos", + "chainId": 9001, + "networkId": 9001, + "icon": "evmos", + "explorers": [ + { + "name": "Evmos EVM Explorer (Blockscout)", + "url": "https://evm.evmos.org", + "standard": "none", + "icon": "evmos" + }, + { + "name": "Evmos Cosmos Explorer (Mintscan)", + "url": "https://www.mintscan.io/evmos", + "standard": "none", + "icon": "evmos" + } + ] + }, + { + "name": "Songbird Canary-Network", + "chain": "SGB", + "icon": "songbird", + "rpc": [ + "https://songbird.towolabs.com/rpc", + "https://sgb.ftso.com.au/ext/bc/C/rpc", + "https://sgb.lightft.so/rpc", + "https://sgb-rpc.ftso.eu" + ], + "faucets": [], + "nativeCurrency": { + "name": "Songbird", + "symbol": "SGB", + "decimals": 18 + }, + "infoURL": "https://flare.xyz", + "shortName": "sgb", + "chainId": 19, + "networkId": 19, + "explorers": [ + { + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "ELA-DID-Sidechain Mainnet", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 + }, + "infoURL": "https://www.elastos.org/", + "shortName": "eladid", + "chainId": 22, + "networkId": 22 + }, + { + "name": "Dithereum Mainnet", + "chain": "DTH", + "icon": "dithereum", + "rpc": [ + "https://node-mainnet.dithereum.io" + ], + "faucets": [ + "https://faucet.dithereum.org" + ], + "nativeCurrency": { + "name": "Dither", + "symbol": "DTH", + "decimals": 18 + }, + "infoURL": "https://dithereum.org", + "shortName": "dthmainnet", + "chainId": 24, + "networkId": 24 + }, + { + "name": "Genesis L1 testnet", + "chain": "genesis", + "rpc": [ + "https://testrpc.genesisl1.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "L1 testcoin", + "symbol": "L1test", + "decimals": 18 + }, + "infoURL": "https://www.genesisl1.com", + "shortName": "L1test", + "chainId": 26, + "networkId": 26, + "explorers": [ + { + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org", + "standard": "none" + } + ] + }, + { + "name": "ShibaChain", + "chain": "SHIB", + "rpc": [ + "https://rpc.shibachain.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "SHIBA INU COIN", + "symbol": "SHIB", + "decimals": 18 + }, + "infoURL": "https://www.shibachain.net", + "shortName": "shib", + "chainId": 27, + "networkId": 27, + "explorers": [ + { + "name": "Shiba Explorer", + "url": "https://exp.shibachain.net", + "standard": "none" + } + ] + }, + { + "name": "Boba Network Rinkeby Testnet", + "chain": "ETH", + "rpc": [ + "https://rinkeby.boba.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba Rinkeby", + "chainId": 28, + "networkId": 28, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockexplorer.rinkeby.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://gateway.rinkeby.boba.network" + } + ] + } + }, + { + "name": "Genesis L1", + "chain": "genesis", + "rpc": [ + "https://rpc.genesisl1.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "L1 coin", + "symbol": "L1", + "decimals": 18 + }, + "infoURL": "https://www.genesisl1.com", + "shortName": "L1", + "chainId": 29, + "networkId": 29, + "explorers": [ + { + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org", + "standard": "none" + } + ] + }, + { + "name": "GoodData Testnet", + "chain": "GooD", + "rpc": [ + "https://test2.goodata.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GoodData Testnet Ether", + "symbol": "GooD", + "decimals": 18 + }, + "infoURL": "https://www.goodata.org", + "shortName": "GooDT", + "chainId": 32, + "networkId": 32 + }, + { + "name": "Dithereum Testnet", + "chain": "DTH", + "icon": "dithereum", + "rpc": [ + "https://node-testnet.dithereum.io" + ], + "faucets": [ + "https://faucet.dithereum.org" + ], + "nativeCurrency": { + "name": "Dither", + "symbol": "DTH", + "decimals": 18 + }, + "infoURL": "https://dithereum.org", + "shortName": "dth", + "chainId": 34, + "networkId": 34 + }, + { + "name": "Darwinia Crab Network", + "chain": "crab", + "rpc": [ + "http://crab-rpc.darwinia.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crab Network Native Token", + "symbol": "CRAB", + "decimals": 18 + }, + "infoURL": "https://crab.network/", + "shortName": "crab", + "chainId": 44, + "networkId": 44, + "explorers": [ + { + "name": "subscan", + "url": "https://crab.subscan.io", + "standard": "none" + } + ] + }, + { + "name": "Darwinia Pangoro Testnet", + "chain": "pangoro", + "rpc": [ + "http://pangoro-rpc.darwinia.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pangoro Network Native Token”", + "symbol": "ORING", + "decimals": 18 + }, + "infoURL": "https://darwinia.network/", + "shortName": "pangoro", + "chainId": 45, + "networkId": 45, + "explorers": [ + { + "name": "subscan", + "url": "https://pangoro.subscan.io", + "standard": "none" + } + ] + }, + { + "name": "Zyx Mainnet", + "chain": "ZYX", + "rpc": [ + "https://rpc-1.zyx.network/", + "https://rpc-2.zyx.network/", + "https://rpc-3.zyx.network/", + "https://rpc-4.zyx.network/", + "https://rpc-5.zyx.network/", + "https://rpc-6.zyx.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zyx", + "symbol": "ZYX", + "decimals": 18 + }, + "infoURL": "https://zyx.network/", + "shortName": "ZYX", + "chainId": 55, + "networkId": 55, + "explorers": [ + { + "name": "zyxscan", + "url": "https://zyxscan.com", + "standard": "none" + } + ] + }, + { + "name": "Syscoin Mainnet", + "chain": "SYS", + "rpc": [ + "https://rpc.syscoin.org", + "wss://rpc.syscoin.org/wss" + ], + "faucets": [ + "https://faucet.syscoin.org" + ], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://www.syscoin.org", + "shortName": "sys", + "chainId": 57, + "networkId": 57, + "explorers": [ + { + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ontology Mainnet", + "chain": "Ontology", + "rpc": [ + "https://dappnode1.ont.io:20339", + "https://dappnode2.ont.io:20339", + "https://dappnode3.ont.io:20339", + "https://dappnode4.ont.io:20339" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONG", + "symbol": "ONG", + "decimals": 9 + }, + "infoURL": "https://ont.io/", + "shortName": "Ontology Mainnet", + "chainId": 58, + "networkId": 58, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.ont.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "EOS Mainnet", + "chain": "EOS", + "rpc": [ + "https://api.eosargentina.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eoscommunity.org/", + "shortName": "EOS Mainnet", + "chainId": 59, + "networkId": 59, + "explorers": [ + { + "name": "bloks", + "url": "https://bloks.eosargentina.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Conflux eSpace (Testnet)", + "chain": "Conflux", + "network": "testnet", + "rpc": [ + "https://evmtestnet.confluxrpc.com" + ], + "faucets": [ + "https://faucet.confluxnetwork.org" + ], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfxtest", + "chainId": 71, + "networkId": 71, + "icon": "conflux", + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" + } + ] + }, + { + "name": "IDChain Mainnet", + "chain": "IDChain", + "network": "mainnet", + "rpc": [ + "https://idchain.one/rpc/", + "wss://idchain.one/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "EIDI", + "symbol": "EIDI", + "decimals": 18 + }, + "infoURL": "https://idchain.one/begin/", + "shortName": "idchain", + "chainId": 74, + "networkId": 74, + "icon": "idchain", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.idchain.one", + "icon": "etherscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "GeneChain", + "chain": "GeneChain", + "rpc": [ + "https://rpc.genechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "RNA", + "symbol": "RNA", + "decimals": 18 + }, + "infoURL": "https://scan.genechain.io/", + "shortName": "GeneChain", + "chainId": 80, + "networkId": 80, + "explorers": [ + { + "name": "GeneChain Scan", + "url": "https://scan.genechain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Meter Testnet", + "chain": "METER Testnet", + "rpc": [ + "https://rpctest.meter.io" + ], + "faucets": [ + "https://faucet-warringstakes.meter.io" + ], + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "infoURL": "https://www.meter.io", + "shortName": "MeterTest", + "chainId": 83, + "networkId": 83, + "explorers": [ + { + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "GateChain Testnet", + "chainId": 85, + "shortName": "gttest", + "chain": "GTTEST", + "networkId": 85, + "nativeCurrency": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "rpc": [ + "https://testnet.gatenode.cc" + ], + "faucets": [ + "https://www.gatescan.org/testnet/faucet" + ], + "explorers": [ + { + "name": "GateScan", + "url": "https://www.gatescan.org/testnet", + "standard": "EIP3091" + } + ], + "infoURL": "https://www.gatechain.io" + }, + { + "name": "Nova Network", + "chain": "NNW", + "icon": "novanetwork", + "rpc": [ + "https://rpc.novanetwork.io:9070", + "http://nova.genyrpc.info:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Supernova", + "symbol": "SNT", + "decimals": 18 + }, + "infoURL": "https://novanetwork.io", + "shortName": "nnw", + "chainId": 87, + "networkId": 87, + "explorers": [ + { + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "TomoChain Testnet", + "chain": "TOMO", + "rpc": [ + "https://rpc.testnet.tomochain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "TomoChain", + "symbol": "TOMO", + "decimals": 18 + }, + "infoURL": "https://tomochain.com", + "shortName": "tomot", + "chainId": 89, + "networkId": 89, + "slip44": 889 + }, + { + "name": "Garizon Stage0", + "chain": "GAR", + "network": "mainnet", + "icon": "garizon", + "rpc": [ + "https://s0.garizon.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-s0", + "chainId": 90, + "networkId": 90, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ] + }, + { + "name": "Garizon Stage1", + "chain": "GAR", + "network": "mainnet", + "icon": "garizon", + "rpc": [ + "https://s1.garizon.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-s1", + "chainId": 91, + "networkId": 91, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-90", + "type": "shard" + } + }, + { + "name": "Garizon Stage2", + "chain": "GAR", + "network": "mainnet", + "icon": "garizon", + "rpc": [ + "https://s2.garizon.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-s2", + "chainId": 92, + "networkId": 92, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-90", + "type": "shard" + } + }, + { + "name": "Garizon Stage3", + "chain": "GAR", + "network": "mainnet", + "icon": "garizon", + "rpc": [ + "https://s3.garizon.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-s3", + "chainId": 93, + "networkId": 93, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-90", + "type": "shard" + } + }, + { + "name": "CryptoKylin Testnet", + "chain": "EOS", + "rpc": [ + "https://kylin.eosargentina.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://www.cryptokylin.io/", + "shortName": "Kylin Testnet", + "chainId": 95, + "networkId": 95, + "explorers": [ + { + "name": "eosq", + "url": "https://kylin.eosargentina.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "NEXT Smart Chain", + "chain": "NSC", + "rpc": [ + "https://rpc.nextsmartchain.com" + ], + "faucets": [ + "https://faucet.nextsmartchain.com" + ], + "nativeCurrency": { + "name": "NEXT", + "symbol": "NEXT", + "decimals": 18 + }, + "infoURL": "https://www.nextsmartchain.com/", + "shortName": "nsc", + "chainId": 96, + "networkId": 96, + "explorers": [ + { + "name": "Next Smart Chain Explorer", + "url": "https://explorer.nextsmartchain.com", + "standard": "none" + } + ] + }, + { + "name": "Velas EVM Mainnet", + "chain": "Velas", + "icon": "velas", + "rpc": [ + "https://evmexplorer.velas.com/rpc", + "https://explorer.velas.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Velas", + "symbol": "VLX", + "decimals": 18 + }, + "infoURL": "https://velas.com", + "shortName": "vlx", + "chainId": 106, + "networkId": 106, + "explorers": [ + { + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nebula Testnet", + "chain": "NTN", + "icon": "nebulatestnet", + "rpc": [ + "https://testnet.rpc.novanetwork.io:9070", + "http://testnet.rpc.novanetwork.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nebula X", + "symbol": "NBX", + "decimals": 18 + }, + "infoURL": "https://novanetwork.io", + "shortName": "ntn", + "chainId": 107, + "networkId": 107, + "explorers": [ + { + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Proton Testnet", + "chain": "XPR", + "rpc": [ + "https://protontestnet.greymass.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Proton", + "symbol": "XPR", + "decimals": 4 + }, + "infoURL": "https://protonchain.com", + "shortName": "xpr", + "chainId": 110, + "networkId": 110 + }, + { + "name": "Fuse Sparknet", + "chain": "fuse", + "rpc": [ + "https://rpc.fusespark.io" + ], + "faucets": [ + "https://get.fusespark.io" + ], + "nativeCurrency": { + "name": "Spark", + "symbol": "SPARK", + "decimals": 18 + }, + "infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet", + "shortName": "spark", + "chainId": 123, + "networkId": 123 + }, + { + "name": "Decentralized Web Mainnet", + "shortName": "dwu", + "chain": "DWU", + "chainId": 124, + "networkId": 124, + "rpc": [ + "https://decentralized-web.tech/dw_rpc.php" + ], + "faucets": [], + "infoURL": "https://decentralized-web.tech/dw_chain.php", + "nativeCurrency": { + "name": "Decentralized Web Utility", + "symbol": "DWU", + "decimals": 18 + } + }, + { + "name": "OYchain Testnet", + "chain": "OYchain", + "rpc": [ + "https://rpc.testnet.oychain.io" + ], + "faucets": [ + "https://faucet.oychain.io" + ], + "nativeCurrency": { + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 + }, + "infoURL": "https://www.oychain.io", + "shortName": "oychain testnet", + "chainId": 125, + "networkId": 125, + "slip44": 125, + "explorers": [ + { + "name": "OYchain Testnet Explorer", + "url": "https://explorer.testnet.oychain.io", + "standard": "none" + } + ] + }, + { + "name": "OYchain Mainnet", + "chain": "OYchain", + "icon": "oychain", + "rpc": [ + "https://rpc.mainnet.oychain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 + }, + "infoURL": "https://www.oychain.io", + "shortName": "oychain mainnet", + "chainId": 126, + "networkId": 126, + "slip44": 126, + "explorers": [ + { + "name": "OYchain Mainnet Explorer", + "url": "https://explorer.oychain.io", + "standard": "none" + } + ] + }, + { + "name": "Factory 127 Mainnet", + "chain": "FETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Factory 127 Token", + "symbol": "FETH", + "decimals": 18 + }, + "infoURL": "https://www.factory127.com", + "shortName": "feth", + "chainId": 127, + "networkId": 127, + "slip44": 127 + }, + { + "name": "DAX CHAIN", + "chain": "DAX", + "rpc": [ + "https://rpc.prodax.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Prodax", + "symbol": "DAX", + "decimals": 18 + }, + "infoURL": "https://prodax.io/", + "shortName": "dax", + "chainId": 142, + "networkId": 142 + }, + { + "name": "Latam-Blockchain Resil Testnet", + "chain": "Resil", + "rpc": [ + "https://rpc.latam-blockchain.com", + "wss://ws.latam-blockchain.com" + ], + "faucets": [ + "https://faucet.latam-blockchain.com" + ], + "nativeCurrency": { + "name": "Latam-Blockchain Resil Test Native Token", + "symbol": "usd", + "decimals": 18 + }, + "infoURL": "https://latam-blockchain.com", + "shortName": "resil", + "chainId": 172, + "networkId": 172 + }, + { + "name": "Seele Mainnet", + "chain": "Seele", + "rpc": [ + "https://rpc.seelen.pro/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Seele", + "symbol": "Seele", + "decimals": 18 + }, + "infoURL": "https://seelen.pro/", + "shortName": "Seele", + "chainId": 186, + "networkId": 186, + "explorers": [ + { + "name": "seeleview", + "url": "https://seeleview.net", + "standard": "none" + } + ] + }, + { + "name": "BMC Mainnet", + "chain": "BMC", + "rpc": [ + "https://mainnet.bmcchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTM", + "symbol": "BTM", + "decimals": 18 + }, + "infoURL": "https://bmc.bytom.io/", + "shortName": "BMC", + "chainId": 188, + "networkId": 188, + "explorers": [ + { + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com", + "standard": "none" + } + ] + }, + { + "name": "BMC Testnet", + "chain": "BMC", + "rpc": [ + "https://testnet.bmcchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTM", + "symbol": "BTM", + "decimals": 18 + }, + "infoURL": "https://bmc.bytom.io/", + "shortName": "BMCT", + "chainId": 189, + "networkId": 189, + "explorers": [ + { + "name": "Blockmeta", + "url": "https://bmctestnet.blockmeta.com", + "standard": "none" + } + ] + }, + { + "name": "BitTorrent Chain Mainnet", + "chain": "BTTC", + "rpc": [ + "https://rpc.bittorrentchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "infoURL": "https://bittorrentchain.io/", + "shortName": "BTT", + "chainId": 199, + "networkId": 199, + "explorers": [ + { + "name": "bttcscan", + "url": "https://scan.bittorrentchain.io", + "standard": "none" + } + ] + }, + { + "name": "Arbitrum on xDai", + "chain": "AOX", + "rpc": [ + "https://arbitrum.xdaichain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "infoURL": "https://xdaichain.com", + "shortName": "aox", + "chainId": 200, + "networkId": 200, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/xdai/arbitrum", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-100", + "type": "L2" + } + }, + { + "name": "Permission", + "chain": "ASK", + "rpc": [ + "https://blockchain-api-mainnet.permission.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "ASK", + "symbol": "ASK", + "decimals": 18 + }, + "infoURL": "https://permission.io/", + "shortName": "ASK", + "chainId": 222, + "networkId": 2221, + "slip44": 2221 + }, + { + "name": "SUR Blockchain Network", + "chain": "SUR", + "rpc": [ + "https://sur.nilin.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Suren", + "symbol": "SRN", + "decimals": 18 + }, + "infoURL": "https://surnet.org", + "shortName": "SUR", + "chainId": 262, + "networkId": 1, + "icon": "SUR", + "explorers": [ + { + "name": "Surnet Explorer", + "url": "https://explorer.surnet.org", + "icon": "SUR", + "standard": "EIP3091" + } + ] + }, + { + "name": "Boba Network", + "chain": "ETH", + "rpc": [ + "https://mainnet.boba.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba", + "chainId": 288, + "networkId": 288, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockexplorer.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + } + }, + { + "name": "KCC Testnet", + "chain": "KCC", + "rpc": [ + "https://rpc-testnet.kcc.network", + "wss://rpc-ws-testnet.kcc.network" + ], + "faucets": [ + "https://faucet-testnet.kcc.network" + ], + "nativeCurrency": { + "name": "KuCoin Testnet Token", + "symbol": "tKCS", + "decimals": 18 + }, + "infoURL": "https://scan-testnet.kcc.network", + "shortName": "kcst", + "chainId": 322, + "networkId": 322, + "explorers": [ + { + "name": "kcc-scan", + "url": "https://scan-testnet.kcc.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Web3Q Mainnet", + "chain": "Web3Q", + "rpc": [ + "https://mainnet.web3q.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://web3q.io/home.w3q/", + "shortName": "w3q", + "chainId": 333, + "networkId": 333, + "explorers": [ + { + "name": "w3q-mainnet", + "url": "https://explorer.mainnet.web3q.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Shiden", + "chain": "SDN", + "rpc": [ + "https://rpc.shiden.astar.network:8545", + "wss://shiden.api.onfinality.io/public-ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shiden", + "symbol": "SDN", + "decimals": 18 + }, + "infoURL": "https://shiden.astar.network/", + "shortName": "sdn", + "chainId": 336, + "networkId": 336, + "explorers": [ + { + "name": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none" + } + ] + }, + { + "name": "Cronos Testnet", + "chain": "CRO", + "rpc": [ + "https://cronos-testnet-3.crypto.org:8545", + "wss://cronos-testnet-3.crypto.org:8546" + ], + "faucets": [ + "https://cronos.crypto.org/faucet" + ], + "nativeCurrency": { + "name": "Crypto.org Test Coin", + "symbol": "TCRO", + "decimals": 18 + }, + "infoURL": "https://cronos.crypto.org", + "shortName": "tcro", + "chainId": 338, + "networkId": 338, + "explorers": [ + { + "name": "Cronos Testnet Explorer", + "url": "https://cronos.crypto.org/explorer/testnet3", + "standard": "none" + } + ] + }, + { + "name": "Theta Mainnet", + "chain": "Theta", + "rpc": [ + "https://eth-rpc-api.thetatoken.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "infoURL": "https://www.thetatoken.org/", + "shortName": "theta-mainnet", + "chainId": 361, + "networkId": 361, + "explorers": [ + { + "name": "Theta Mainnet Explorer", + "url": "https://explorer.thetatoken.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Theta Sapphire Testnet", + "chain": "Theta", + "rpc": [ + "https://eth-rpc-api-sapphire.thetatoken.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "infoURL": "https://www.thetatoken.org/", + "shortName": "theta-sapphire", + "chainId": 363, + "networkId": 363, + "explorers": [ + { + "name": "Theta Sapphire Testnet Explorer", + "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Theta Amber Testnet", + "chain": "Theta", + "rpc": [ + "https://eth-rpc-api-amber.thetatoken.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "infoURL": "https://www.thetatoken.org/", + "shortName": "theta-amber", + "chainId": 364, + "networkId": 364, + "explorers": [ + { + "name": "Theta Amber Testnet Explorer", + "url": "https://guardian-testnet-amber-explorer.thetatoken.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Theta Testnet", + "chain": "Theta", + "rpc": [ + "https://eth-rpc-api-testnet.thetatoken.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "infoURL": "https://www.thetatoken.org/", + "shortName": "theta-testnet", + "chainId": 365, + "networkId": 365, + "explorers": [ + { + "name": "Theta Testnet Explorer", + "url": "https://testnet-explorer.thetatoken.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vela1 Chain Mainnet", + "chain": "VELA1", + "rpc": [ + "https://rpc.velaverse.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "CLASS COIN", + "symbol": "CLASS", + "decimals": 18 + }, + "infoURL": "https://velaverse.io", + "shortName": "CLASS", + "chainId": 555, + "networkId": 555, + "explorers": [ + { + "name": "Vela1 Chain Mainnet Explorer", + "url": "https://exp.velaverse.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metis Stardust Testnet", + "chain": "ETH", + "rpc": [ + "https://stardust.metis.io/?owner=588" + ], + "faucets": [], + "nativeCurrency": { + "name": "tMetis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-stardust", + "chainId": 588, + "networkId": 588, + "explorers": [ + { + "name": "blockscout", + "url": "https://stardust-explorer.metis.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://bridge.metis.io" + } + ] + } + }, + { + "name": "Meshnyan testnet", + "chain": "MeshTestChain", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Meshnyan Testnet Native Token", + "symbol": "MESHT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "mesh-chain-testnet", + "chainId": 600, + "networkId": 600 + }, + { + "name": "Pixie Chain Testnet", + "chain": "PixieChain", + "rpc": [ + "https://http-testnet.chain.pixie.xyz", + "wss://ws-testnet.chain.pixie.xyz" + ], + "faucets": [ + "https://chain.pixie.xyz/faucet" + ], + "nativeCurrency": { + "name": "Pixie Chain Testnet Native Token", + "symbol": "PCTT", + "decimals": 18 + }, + "infoURL": "https://scan-testnet.chain.pixie.xyz", + "shortName": "pixie-chain-testnet", + "chainId": 666, + "networkId": 666 + }, + { + "name": "BlockChain Station Mainnet", + "chain": "BCS", + "rpc": [ + "https://rpc-mainnet.bcsdev.io", + "wss://rpc-ws-mainnet.bcsdev.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BCS Token", + "symbol": "BCS", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "bcs", + "chainId": 707, + "networkId": 707, + "explorers": [ + { + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "BlockChain Station Testnet", + "chain": "BCS", + "rpc": [ + "https://rpc-testnet.bcsdev.io", + "wss://rpc-ws-testnet.bcsdev.io" + ], + "faucets": [ + "https://faucet.bcsdev.io" + ], + "nativeCurrency": { + "name": "BCS Testnet Token", + "symbol": "tBCS", + "decimals": 18 + }, + "infoURL": "https://blockchainstation.io", + "shortName": "tbcs", + "chainId": 708, + "networkId": 708, + "explorers": [ + { + "name": "BlockChain Station Explorer", + "url": "https://testnet.bcsdev.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Factory 127 Testnet", + "chain": "FETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Factory 127 Token", + "symbol": "FETH", + "decimals": 18 + }, + "infoURL": "https://www.factory127.com", + "shortName": "tfeth", + "chainId": 721, + "networkId": 721, + "slip44": 721 + }, + { + "name": "Haic", + "chain": "Haic", + "rpc": [ + "https://orig.haichain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Haicoin", + "symbol": "HAIC", + "decimals": 18 + }, + "infoURL": "https://www.haichain.io/", + "shortName": "haic", + "chainId": 803, + "networkId": 803 + }, + { + "name": "Ambros Chain Mainnet", + "chain": "ambroschain", + "rpc": [ + "https://mainnet.ambroschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "AMBROS", + "symbol": "AMBR", + "decimals": 18 + }, + "infoURL": "https://bcmhunt.com/", + "shortName": "ambros", + "chainId": 880, + "networkId": 880, + "explorers": [ + { + "name": "Ambros Chain Explorer", + "url": "https://explorer.ambroschain.com", + "standard": "none" + } + ] + }, + { + "name": "Garizon Testnet Stage0", + "chain": "GAR", + "network": "testnet", + "icon": "garizon", + "rpc": [ + "https://s0-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s0", + "chainId": 900, + "networkId": 900, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ] + }, + { + "name": "Garizon Testnet Stage1", + "chain": "GAR", + "network": "testnet", + "icon": "garizon", + "rpc": [ + "https://s1-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s1", + "chainId": 901, + "networkId": 901, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-900", + "type": "shard" + } + }, + { + "name": "Garizon Testnet Stage2", + "chain": "GAR", + "network": "testnet", + "icon": "garizon", + "rpc": [ + "https://s2-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s2", + "chainId": 902, + "networkId": 902, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-900", + "type": "shard" + } + }, + { + "name": "Garizon Testnet Stage3", + "chain": "GAR", + "network": "testnet", + "icon": "garizon", + "rpc": [ + "https://s3-testnet.garizon.net/rpc" + ], + "faucets": [ + "https://faucet-testnet.garizon.com" + ], + "nativeCurrency": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "infoURL": "https://garizon.com", + "shortName": "gar-test-s3", + "chainId": 903, + "networkId": 903, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-900", + "type": "shard" + } + }, + { + "name": "PulseChain Testnet", + "shortName": "tpls", + "chain": "tPLS", + "chainId": 940, + "networkId": 940, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.testnet.pulsechain.com/v1/${PULSECHAIN_API_KEY}", + "wss://rpc.testnet.pulsechain.com/ws/v1/${PULSECHAIN_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + } + }, + { + "name": "Lucky Network", + "chain": "LN", + "rpc": [ + "https://rpc.luckynetwork.org", + "wss://ws.lnscan.org", + "https://rpc.lnscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lucky", + "symbol": "L99", + "decimals": 18 + }, + "infoURL": "https://luckynetwork.org", + "shortName": "ln", + "chainId": 998, + "networkId": 998, + "icon": "lucky", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" + }, + { + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" + } + ] + }, + { + "name": "Sakura", + "chain": "Sakura", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sakura", + "symbol": "SKU", + "decimals": 18 + }, + "infoURL": "https://clover.finance/sakura", + "shortName": "sku", + "chainId": 1022, + "networkId": 1022 + }, + { + "name": "BitTorrent Chain Testnet", + "chain": "BTTC", + "rpc": [ + "https://testrpc.bittorrentchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "infoURL": "https://bittorrentchain.io/", + "shortName": "tbtt", + "chainId": 1028, + "networkId": 1028, + "explorers": [ + { + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", + "standard": "none" + } + ] + }, + { + "name": "Conflux eSpace", + "chain": "Conflux", + "network": "mainnet", + "rpc": [ + "https://evm.confluxrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfx", + "chainId": 1030, + "networkId": 1030, + "icon": "conflux", + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } + ] + }, + { + "name": "Metis Andromeda Mainnet", + "chain": "ETH", + "rpc": [ + "https://andromeda.metis.io/?owner=1088" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-andromeda", + "chainId": 1088, + "networkId": 1088, + "explorers": [ + { + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.metis.io" + } + ] + } + }, + { + "name": "Iora Chain", + "chain": "IORA", + "network": "iorachain", + "icon": "iorachain", + "rpc": [ + "https://dataseed.iorachain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Iora", + "symbol": "IORA", + "decimals": 18 + }, + "infoURL": "https://iorachain.com", + "shortName": "iora", + "chainId": 1197, + "networkId": 1197, + "explorers": [ + { + "name": "ioraexplorer", + "url": "https://explorer.iorachain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Evanesco Testnet", + "chain": "Evanesco Testnet", + "network": "avis", + "rpc": [ + "https://seed5.evanesco.org:8547" + ], + "faucets": [], + "nativeCurrency": { + "name": "AVIS", + "symbol": "AVIS", + "decimals": 18 + }, + "infoURL": "https://evanesco.org/", + "shortName": "avis", + "chainId": 1201, + "networkId": 1201 + }, + { + "name": "World Trade Technical Chain Mainnet", + "chain": "WTT", + "rpc": [ + "https://rpc.cadaut.com", + "wss://rpc.cadaut.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "World Trade Token", + "symbol": "WTT", + "decimals": 18 + }, + "infoURL": "http://www.cadaut.com", + "shortName": "wtt", + "chainId": 1202, + "networkId": 2048, + "explorers": [ + { + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Popcateum Mainnet", + "chain": "POPCATEUM", + "rpc": [ + "https://dataseed.popcateum.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Popcat", + "symbol": "POP", + "decimals": 18 + }, + "infoURL": "https://popcateum.org", + "shortName": "popcat", + "chainId": 1213, + "networkId": 1213, + "explorers": [ + { + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" + } + ] + }, + { + "name": "EnterChain Mainnet", + "chain": "ENTER", + "network": "mainnet", + "rpc": [ + "https://tapi.entercoin.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "EnterCoin", + "symbol": "ENTER", + "decimals": 18 + }, + "infoURL": "https://entercoin.net", + "shortName": "enter", + "chainId": 1214, + "networkId": 1214, + "icon": "enter", + "explorers": [ + { + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": "enter", + "standard": "EIP3091" + } + ] + }, + { + "name": "Moonrock", + "chain": "MOON", + "rpc": [ + "https://rpc.api.moonrock.moonbeam.network", + "wss://wss.api.moonrock.moonbeam.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rocs", + "symbol": "ROC", + "decimals": 18 + }, + "infoURL": "https://docs.moonbeam.network/learn/platform/networks/overview/", + "shortName": "mrock", + "chainId": 1288, + "networkId": 1288 + }, + { + "name": "Rangers Protocol Mainnet", + "chain": "Rangers", + "icon": "rangers", + "rpc": [ + "https://mainnet.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "RPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "rpg", + "chainId": 2025, + "networkId": 2025, + "slip44": 1008, + "explorers": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ] + }, + { + "name": "Ecoball Mainnet", + "chain": "ECO", + "rpc": [ + "https://api.ecoball.org/ecoball/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ecoball Coin", + "symbol": "ECO", + "decimals": 18 + }, + "infoURL": "https://ecoball.org", + "shortName": "eco", + "chainId": 2100, + "networkId": 2100, + "explorers": [ + { + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ecoball Testnet Espuma", + "chain": "ECO", + "rpc": [ + "https://api.ecoball.org/espuma/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Espuma Coin", + "symbol": "ECO", + "decimals": 18 + }, + "infoURL": "https://ecoball.org", + "shortName": "esp", + "chainId": 2101, + "networkId": 2101, + "explorers": [ + { + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Evanesco Mainnet", + "chain": "EVA", + "network": "mainnet", + "rpc": [ + "https://seed4.evanesco.org:8546" + ], + "faucets": [], + "nativeCurrency": { + "name": "EVA", + "symbol": "EVA", + "decimals": 18 + }, + "infoURL": "https://evanesco.org/", + "shortName": "evanesco", + "chainId": 2213, + "networkId": 2213, + "icon": "evanesco", + "explorers": [ + { + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", + "standard": "none" + } + ] + }, + { + "name": "ZCore Testnet", + "chain": "Beach", + "icon": "zcore", + "rpc": [ + "https://rpc-testnet.zcore.cash" + ], + "faucets": [ + "https://faucet.zcore.cash" + ], + "nativeCurrency": { + "name": "ZCore", + "symbol": "ZCR", + "decimals": 18 + }, + "infoURL": "https://zcore.cash", + "shortName": "zcrbeach", + "chainId": 3331, + "networkId": 3331 + }, + { + "name": "Web3Q Testnet", + "chain": "Web3Q", + "rpc": [ + "https://testnet.web3q.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://web3q.io/home.w3q/", + "shortName": "w3q-t", + "chainId": 3333, + "networkId": 3333, + "explorers": [ + { + "name": "w3q-testnet", + "url": "https://explorer.testnet.web3q.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bittex Mainnet", + "chain": "BTX", + "rpc": [ + "https://rpc1.bittexscan.info", + "https://rpc2.bittexscan.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bittex", + "symbol": "BTX", + "decimals": 18 + }, + "infoURL": "https://bittexscan.com", + "shortName": "btx", + "chainId": 3690, + "networkId": 3690, + "icon": "ethereum", + "explorers": [ + { + "name": "bittexscan", + "url": "https://bittexscan.com", + "icon": "etherscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "Fantom Testnet", + "chain": "FTM", + "rpc": [ + "https://rpc.testnet.fantom.network" + ], + "faucets": [ + "https://faucet.fantom.network" + ], + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", + "shortName": "tftm", + "chainId": 4002, + "networkId": 4002, + "icon": "fantom", + "explorers": [ + { + "name": "ftmscan", + "url": "https://testnet.ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "IoTeX Network Mainnet", + "chain": "iotex.io", + "rpc": [ + "https://babel-api.mainnet.iotex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "infoURL": "https://iotex.io", + "shortName": "iotex-mainnet", + "chainId": 4689, + "networkId": 4689, + "explorers": [ + { + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "IoTeX Network Testnet", + "chain": "iotex.io", + "rpc": [ + "https://babel-api.testnet.iotex.io" + ], + "faucets": [ + "https://faucet.iotex.io/" + ], + "nativeCurrency": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "infoURL": "https://iotex.io", + "shortName": "iotex-testnet", + "chainId": 4690, + "networkId": 4690, + "explorers": [ + { + "name": "testnet iotexscan", + "url": "https://testnet.iotexscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "EraSwap Mainnet", + "chain": "ESN", + "icon": "eraswap", + "rpc": [ + "https://mainnet.eraswap.network", + "https://rpc-mumbai.mainnet.eraswap.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "EraSwap", + "symbol": "ES", + "decimals": 18 + }, + "infoURL": "https://eraswap.info/", + "shortName": "es", + "chainId": 5197, + "networkId": 5197 + }, + { + "name": "Uzmi Network Mainnet", + "chain": "UZMI", + "rpc": [ + "https://network.uzmigames.com.br/" + ], + "faucets": [], + "nativeCurrency": { + "name": "UZMI", + "symbol": "UZMI", + "decimals": 18 + }, + "infoURL": "https://uzmigames.com.br/", + "shortName": "UZMI", + "chainId": 5315, + "networkId": 5315 + }, + { + "name": "Syscoin Tanenbaum Testnet", + "chain": "SYS", + "rpc": [ + "https://rpc.tanenbaum.io", + "wss://rpc.tanenbaum.io/wss" + ], + "faucets": [ + "https://faucet.tanenbaum.io" + ], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "tSYS", + "decimals": 18 + }, + "infoURL": "https://syscoin.org", + "shortName": "tsys", + "chainId": 5700, + "networkId": 5700, + "explorers": [ + { + "name": "Syscoin Testnet Block Explorer", + "url": "https://tanenbaum.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ontology Testnet", + "chain": "Ontology", + "rpc": [ + "https://polaris1.ont.io:20339", + "https://polaris2.ont.io:20339", + "https://polaris3.ont.io:20339", + "https://polaris4.ont.io:20339" + ], + "faucets": [ + "https://developer.ont.io/" + ], + "nativeCurrency": { + "name": "ONG", + "symbol": "ONG", + "decimals": 9 + }, + "infoURL": "https://ont.io/", + "shortName": "Ontology Testnet", + "chainId": 5851, + "networkId": 5851, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.ont.io/testnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "Pixie Chain Mainnet", + "chain": "PixieChain", + "rpc": [ + "https://http-mainnet.chain.pixie.xyz", + "wss://ws-mainnet.chain.pixie.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pixie Chain Native Token", + "symbol": "PIX", + "decimals": 18 + }, + "infoURL": "https://chain.pixie.xyz", + "shortName": "pixie-chain", + "chainId": 6626, + "networkId": 6626, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + } + ] + }, + { + "name": "Shyft Mainnet", + "chain": "SHYFT", + "icon": "shyft", + "rpc": [ + "https://rpc.shyft.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shyft", + "symbol": "SHYFT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyft", + "chainId": 7341, + "networkId": 7341, + "slip44": 2147490989, + "explorers": [ + { + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hazlor Testnet", + "chain": "SCAS", + "rpc": [ + "https://hatlas.rpc.hazlor.com:8545", + "wss://hatlas.rpc.hazlor.com:8546" + ], + "faucets": [ + "https://faucet.hazlor.com" + ], + "nativeCurrency": { + "name": "Hazlor Test Coin", + "symbol": "TSCAS", + "decimals": 18 + }, + "infoURL": "https://hazlor.com", + "shortName": "tscas", + "chainId": 7878, + "networkId": 7878, + "explorers": [ + { + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + } + ] + }, + { + "name": "Teleport", + "chain": "Teleport", + "rpc": [ + "https://evm-rpc.teleport.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "infoURL": "https://teleport.network", + "shortName": "teleport", + "chainId": 8000, + "networkId": 8000, + "icon": "teleport", + "explorers": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.teleport.network", + "standard": "none", + "icon": "teleport" + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.teleport.network", + "standard": "none", + "icon": "teleport" + } + ] + }, + { + "name": "Teleport Testnet", + "chain": "Teleport", + "rpc": [ + "https://evm-rpc.testnet.teleport.network" + ], + "faucets": [ + "https://chain-docs.teleport.network/testnet/faucet.html" + ], + "nativeCurrency": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "infoURL": "https://teleport.network", + "shortName": "teleport-testnet", + "chainId": 8001, + "networkId": 8001, + "icon": "teleport", + "explorers": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" + } + ] + }, + { + "name": "MDGL Testnet", + "chain": "MDGL", + "rpc": [ + "https://testnet.mdgl.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MDGL Token", + "symbol": "MDGLT", + "decimals": 18 + }, + "infoURL": "https://mdgl.io", + "shortName": "mdgl", + "chainId": 8029, + "networkId": 8029 + }, + { + "name": "GeneChain Adenine Testnet", + "chain": "GeneChain", + "rpc": [ + "https://rpc-testnet.genechain.io" + ], + "faucets": [ + "https://faucet.genechain.io" + ], + "nativeCurrency": { + "name": "Testnet RNA", + "symbol": "tRNA", + "decimals": 18 + }, + "infoURL": "https://scan-testnet.genechain.io/", + "shortName": "GeneChainAdn", + "chainId": 8080, + "networkId": 8080, + "explorers": [ + { + "name": "GeneChain Adenine Testnet Scan", + "url": "https://scan-testnet.genechain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "TOOL Global Mainnet", + "chain": "OLO", + "rpc": [ + "https://mainnet-web3.wolot.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 + }, + "infoURL": "https://ibdt.io", + "shortName": "olo", + "chainId": 8723, + "networkId": 8723, + "slip44": 479, + "explorers": [ + { + "name": "OLO Block Explorer", + "url": "https://www.olo.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "TOOL Global Testnet", + "chain": "OLO", + "rpc": [ + "https://testnet-web3.wolot.io" + ], + "faucets": [ + "https://testnet-explorer.wolot.io" + ], + "nativeCurrency": { + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.wolot.io", + "shortName": "tolo", + "chainId": 8724, + "networkId": 8724, + "slip44": 479 + }, + { + "name": "Ambros Chain Testnet", + "chain": "ambroschain", + "rpc": [ + "https://testnet.ambroschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "AMBROS", + "symbol": "AMBR", + "decimals": 18 + }, + "infoURL": "https://bcmhunt.com/", + "shortName": "ambrostestnet", + "chainId": 8888, + "networkId": 8888, + "explorers": [ + { + "name": "Ambros Chain Explorer", + "url": "https://testexplorer.ambroschain.com", + "standard": "none" + } + ] + }, + { + "name": "Genesis Coin", + "chain": "Genesis", + "rpc": [ + "https://genesis-gn.com", + "wss://genesis-gn.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GN Coin", + "symbol": "GNC", + "decimals": 18 + }, + "infoURL": "https://genesis-gn.com", + "shortName": "GENEC", + "chainId": 9100, + "networkId": 9100 + }, + { + "name": "Rangers Protocol Testnet Robin", + "chain": "Rangers", + "icon": "rangers", + "rpc": [ + "https://robin.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [ + "https://robin-faucet.rangersprotocol.com" + ], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "tRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "trpg", + "chainId": 9527, + "networkId": 9527, + "explorers": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ] + }, + { + "name": "myOwn Testnet", + "chain": "myOwn", + "rpc": [ + "https://geth.dev.bccloud.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "MYN", + "symbol": "MYN", + "decimals": 18 + }, + "infoURL": "https://docs.bccloud.net/", + "shortName": "myn", + "chainId": 9999, + "networkId": 9999 + }, + { + "name": "Blockchain Genesis Mainnet", + "chain": "GEN", + "rpc": [ + "https://eu.mainnet.xixoio.com", + "https://us.mainnet.xixoio.com", + "https://asia.mainnet.xixoio.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GEN", + "symbol": "GEN", + "decimals": 18 + }, + "infoURL": "https://www.xixoio.com/", + "shortName": "GEN", + "chainId": 10101, + "networkId": 10101 + }, + { + "name": "WAGMI", + "chain": "WAGMI", + "icon": "wagmi", + "rpc": [ + "https://api.trywagmi.xyz/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "WAGMI", + "symbol": "WGM", + "decimals": 18 + }, + "infoURL": "https://trywagmi.xyz", + "shortName": "WAGMI", + "chainId": 11111, + "networkId": 11111, + "explorers": [ + { + "name": "WAGMI Explorer", + "url": "https://trywagmi.xyz", + "standard": "none" + } + ] + }, + { + "name": "Shyft Testnet", + "chain": "SHYFTT", + "icon": "shyft", + "rpc": [ + "https://rpc.testnet.shyft.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shyft Test Token", + "symbol": "SHYFTT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyftt", + "chainId": 11437, + "networkId": 11437, + "explorers": [ + { + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Singularity ZERO Testnet", + "chain": "ZERO", + "rpc": [ + "https://betaenv.singularity.gold:18545" + ], + "faucets": [ + "https://nft.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "tZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "tZERO", + "chainId": 12051, + "networkId": 12051, + "explorers": [ + { + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + } + ] + }, + { + "name": "Singularity ZERO Mainnet", + "chain": "ZERO", + "rpc": [ + "https://zerorpc.singularity.gold" + ], + "faucets": [ + "https://zeroscan.singularity.gold" + ], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://www.singularity.gold", + "shortName": "ZERO", + "chainId": 12052, + "networkId": 12052, + "slip44": 621, + "explorers": [ + { + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + } + ] + }, + { + "name": "Phoenix Mainnet", + "chain": "Phoenix", + "network": "mainnet", + "rpc": [ + "https://rpc.phoenixplorer.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Phoenix", + "symbol": "PHX", + "decimals": 18 + }, + "infoURL": "https://cryptophoenix.org/phoenix", + "shortName": "Phoenix", + "chainId": 13381, + "networkId": 13381, + "icon": "phoenix", + "explorers": [ + { + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "icon": "phoenixplorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "MetaDot Mainnet", + "chain": "MTT", + "rpc": [ + "https://mainnet.metadot.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "MetaDot Token", + "symbol": "MTT", + "decimals": 18 + }, + "infoURL": "https://metadot.network", + "shortName": "mtt", + "chainId": 16000, + "networkId": 16000 + }, + { + "name": "MetaDot Testnet", + "chain": "MTTTest", + "rpc": [ + "https://testnet.metadot.network" + ], + "faucets": [ + "https://faucet.metadot.network/" + ], + "nativeCurrency": { + "name": "MetaDot Token TestNet", + "symbol": "MTT-test", + "decimals": 18 + }, + "infoURL": "https://metadot.network", + "shortName": "mtttest", + "chainId": 16001, + "networkId": 16001 + }, + { + "name": "BTCIX Network", + "chain": "BTCIX", + "rpc": [ + "https://seed.btcix.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTCIX Network", + "symbol": "BTCIX", + "decimals": 18 + }, + "infoURL": "https://bitcolojix.org", + "shortName": "btcix", + "chainId": 19845, + "networkId": 19845, + "explorers": [ + { + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" + } + ] + }, + { + "name": "MintMe.com Coin", + "chain": "MINTME", + "rpc": [ + "https://node1.mintme.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MintMe.com Coin", + "symbol": "MINTME", + "decimals": 18 + }, + "infoURL": "https://www.mintme.com", + "shortName": "mintme", + "chainId": 24734, + "networkId": 37480 + }, + { + "name": "GoChain Testnet", + "chain": "GO", + "rpc": [ + "https://testnet-rpc.gochain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GoChain Coin", + "symbol": "GO", + "decimals": 18 + }, + "infoURL": "https://gochain.io", + "shortName": "got", + "chainId": 31337, + "networkId": 31337, + "slip44": 6060, + "explorers": [ + { + "name": "GoChain Testnet Explorer", + "url": "https://testnet-explorer.gochain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Emerald Paratime Testnet", + "chain": "Emerald", + "icon": "oasis", + "rpc": [ + "https://testnet.emerald.oasis.dev/", + "wss://testnet.emerald.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", + "shortName": "emerald", + "chainId": 42261, + "networkId": 42261, + "explorers": [ + { + "name": "Emerald Paratime Testnet Explorer", + "url": "https://testnet.explorer.emerald.oasis.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "Emerald Paratime Mainnet", + "chain": "Emerald", + "icon": "oasis", + "rpc": [ + "https://emerald.oasis.dev", + "wss://emerald.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.dev/general/developer-resources/overview", + "shortName": "oasis", + "chainId": 42262, + "networkId": 42262, + "explorers": [ + { + "name": "Emerald Paratime Mainnet Explorer", + "url": "https://explorer.emerald.oasis.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "REI Network", + "chain": "REI", + "rpc": [ + "https://rpc.rei.network", + "wss://rpc.rei.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "REI", + "symbol": "REI", + "decimals": 18 + }, + "infoURL": "https://rei.network/", + "shortName": "REI", + "chainId": 47805, + "networkId": 47805, + "explorers": [ + { + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } + ] + }, + { + "name": "REI Chain Mainnet", + "chain": "REI", + "icon": "reichain", + "rpc": [ + "https://rei-rpc.moonrhythm.io" + ], + "faucets": [ + "http://kururu.finance/faucet?chainId=55555" + ], + "nativeCurrency": { + "name": "Rei", + "symbol": "REI", + "decimals": 18 + }, + "infoURL": "https://reichain.io", + "shortName": "rei", + "chainId": 55555, + "networkId": 55555, + "explorers": [ + { + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "REI Chain Testnet", + "chain": "REI", + "icon": "reichain", + "rpc": [ + "https://rei-testnet-rpc.moonrhythm.io" + ], + "faucets": [ + "http://kururu.finance/faucet?chainId=55556" + ], + "nativeCurrency": { + "name": "tRei", + "symbol": "tREI", + "decimals": 18 + }, + "infoURL": "https://reichain.io", + "shortName": "trei", + "chainId": 55556, + "networkId": 55556, + "explorers": [ + { + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Testnet Chain 0", + "chain": "Thinkium", + "rpc": [ + "https://test.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test0", + "chainId": 60000, + "networkId": 60000, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Testnet Chain 1", + "chain": "Thinkium", + "rpc": [ + "https://test1.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test1", + "chainId": 60001, + "networkId": 60001, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Testnet Chain 2", + "chain": "Thinkium", + "rpc": [ + "https://test2.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test2", + "chainId": 60002, + "networkId": 60002, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Testnet Chain 103", + "chain": "Thinkium", + "rpc": [ + "https://test103.thinkiumrpc.net/" + ], + "faucets": [ + "https://www.thinkiumdev.net/faucet" + ], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM-test103", + "chainId": 60103, + "networkId": 60103, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "eCredits Mainnet", + "chain": "ECS", + "network": "mainnet", + "rpc": [ + "https://rpc.ecredits.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "infoURL": "https://ecredits.com", + "shortName": "ecs", + "chainId": 63000, + "networkId": 63000, + "explorers": [ + { + "name": "eCredits MainNet Explorer", + "url": "https://explorer.ecredits.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "eCredits Testnet", + "chain": "ECS", + "network": "testnet", + "rpc": [ + "https://rpc.tst.ecredits.com" + ], + "faucets": [ + "https://faucet.tst.ecredits.com" + ], + "nativeCurrency": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "infoURL": "https://ecredits.com", + "shortName": "ecs-testnet", + "chainId": 63001, + "networkId": 63001, + "explorers": [ + { + "name": "eCredits TestNet Explorer", + "url": "https://explorer.tst.ecredits.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Mainnet Chain 0", + "chain": "Thinkium", + "rpc": [ + "https://proxy.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM0", + "chainId": 70000, + "networkId": 70000, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Mainnet Chain 1", + "chain": "Thinkium", + "rpc": [ + "https://proxy1.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM1", + "chainId": 70001, + "networkId": 70001, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Mainnet Chain 2", + "chain": "Thinkium", + "rpc": [ + "https://proxy2.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM2", + "chainId": 70002, + "networkId": 70002, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Thinkium Mainnet Chain 103", + "chain": "Thinkium", + "rpc": [ + "https://proxy103.thinkiumrpc.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "infoURL": "https://thinkium.net/", + "shortName": "TKM103", + "chainId": 70103, + "networkId": 70103, + "explorers": [ + { + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Polyjuice Testnet", + "chain": "CKB", + "icon": "polyjuice", + "rpc": [ + "https://godwoken-testnet-web3-rpc.ckbapp.dev", + "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" + ], + "faucets": [ + "https://faucet.nervos.org/" + ], + "nativeCurrency": { + "name": "CKB", + "symbol": "CKB", + "decimals": 8 + }, + "infoURL": "https://github.com/nervosnetwork/godwoken", + "shortName": "ckb", + "chainId": 71393, + "networkId": 1 + }, + { + "name": "UB Smart Chain(testnet)", + "chain": "USC", + "network": "testnet", + "rpc": [ + "https://testnet.rpc.uschain.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "UBC", + "symbol": "UBC", + "decimals": 18 + }, + "infoURL": "https://www.ubchain.site", + "shortName": "usctest", + "chainId": 99998, + "networkId": 99998 + }, + { + "name": "UB Smart Chain", + "chain": "USC", + "network": "mainnet", + "rpc": [ + "https://rpc.uschain.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "UBC", + "symbol": "UBC", + "decimals": 18 + }, + "infoURL": "https://www.ubchain.site/", + "shortName": "usc", + "chainId": 99999, + "networkId": 99999 + }, + { + "name": "QuarkChain Mainnet Root", + "chain": "QuarkChain", + "rpc": [ + "http://jrpc.mainnet.quarkchain.io:38391/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-r", + "chainId": 100000, + "networkId": 100000 + }, + { + "name": "QuarkChain Mainnet Shard 0", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s0-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39000/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s0", + "chainId": 100001, + "networkId": 100001, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 1", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s1-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39001/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s1", + "chainId": 100002, + "networkId": 100002, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 2", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s2-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39002/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s2", + "chainId": 100003, + "networkId": 100003, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 3", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s3-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39003/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s3", + "chainId": 100004, + "networkId": 100004, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 4", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s4-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39004/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s4", + "chainId": 100005, + "networkId": 100005, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 5", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s5-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39005/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s5", + "chainId": 100006, + "networkId": 100006, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 6", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s6-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39006/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s6", + "chainId": 100007, + "networkId": 100007, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Mainnet Shard 7", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-s7-ethapi.quarkchain.io", + "http://eth-jrpc.mainnet.quarkchain.io:39007/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-s7", + "chainId": 100008, + "networkId": 100008, + "parent": { + "chain": "eip155-100000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } + ] + }, + { + "name": "BROChain Mainnet", + "chain": "BRO", + "network": "mainnet", + "rpc": [ + "https://rpc.brochain.org", + "http://rpc.brochain.org", + "https://rpc.brochain.org/mainnet", + "http://rpc.brochain.org/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Brother", + "symbol": "BRO", + "decimals": 18 + }, + "infoURL": "https://brochain.org", + "shortName": "bro", + "chainId": 108801, + "networkId": 108801, + "explorers": [ + { + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Root", + "chain": "QuarkChain", + "rpc": [ + "http://jrpc.devnet.quarkchain.io:38391/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-r", + "chainId": 110000, + "networkId": 110000 + }, + { + "name": "QuarkChain Devnet Shard 0", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s0-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39900/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s0", + "chainId": 110001, + "networkId": 110001, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 1", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s1-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39901/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s1", + "chainId": 110002, + "networkId": 110002, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 2", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s2-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39902/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s2", + "chainId": 110003, + "networkId": 110003, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 3", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s3-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39903/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s3", + "chainId": 110004, + "networkId": 110004, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 4", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s4-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39904/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s4", + "chainId": 110005, + "networkId": 110005, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 5", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s5-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39905/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s5", + "chainId": 110006, + "networkId": 110006, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 6", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s6-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39906/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s6", + "chainId": 110007, + "networkId": 110007, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain Devnet Shard 7", + "chain": "QuarkChain", + "rpc": [ + "https://devnet-s7-ethapi.quarkchain.io", + "http://eth-jrpc.devnet.quarkchain.io:39907/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io/", + "shortName": "qkc-d-s7", + "chainId": 110008, + "networkId": 110008, + "parent": { + "chain": "eip155-110000", + "type": "shard" + }, + "explorers": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/7", + "standard": "EIP3091" + } + ] + }, + { + "name": "Alaya Mainnet", + "chain": "Alaya", + "rpc": [ + "https://openapi.alaya.network/rpc", + "wss://openapi.alaya.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alaya", + "chainId": 201018, + "networkId": 1, + "icon": "alaya", + "explorers": [ + { + "name": "alaya explorer", + "url": "https://scan.alaya.network", + "standard": "none" + } + ] + }, + { + "name": "Alaya Dev Testnet", + "chain": "Alaya", + "rpc": [ + "https://devnetopenapi.alaya.network/rpc", + "wss://devnetopenapi.alaya.network/ws" + ], + "faucets": [ + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + ], + "nativeCurrency": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "infoURL": "https://www.alaya.network/", + "shortName": "alayadev", + "chainId": 201030, + "networkId": 1, + "icon": "alaya", + "explorers": [ + { + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } + ] + }, + { + "name": "PlatON Dev Testnet", + "chain": "PlatON", + "rpc": [ + "https://devnetopenapi.platon.network/rpc", + "wss://devnetopenapi.platon.network/ws" + ], + "faucets": [ + "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" + ], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platondev", + "chainId": 210309, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://devnetscan.platon.network", + "standard": "none" + } + ] + }, + { + "name": "PlatON Mainnet", + "chain": "PlatON", + "network": "mainnet", + "rpc": [ + "https://openapi2.platon.network/rpc", + "https://openapi.platon.network/rpc", + "wss://openapi.platon.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platon", + "chainId": 210425, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } + ] + }, + { + "name": "Social Smart Chain Mainnet", + "chain": "SoChain", + "rpc": [ + "https://socialsmartchain.digitalnext.business" + ], + "faucets": [], + "nativeCurrency": { + "name": "SoChain", + "symbol": "$OC", + "decimals": 18 + }, + "infoURL": "https://digitalnext.business/SocialSmartChain", + "shortName": "SoChain", + "chainId": 281121, + "networkId": 281121, + "explorers": [] + }, + { + "name": "Polis Testnet", + "chain": "Sparta", + "icon": "polis", + "rpc": [ + "https://sparta-rpc.polis.tech" + ], + "faucets": [ + "https://faucet.polis.tech" + ], + "nativeCurrency": { + "name": "tPolis", + "symbol": "tPOLIS", + "decimals": 18 + }, + "infoURL": "https://polis.tech", + "shortName": "sparta", + "chainId": 333888, + "networkId": 333888 + }, + { + "name": "Polis Mainnet", + "chain": "Olympus", + "icon": "polis", + "rpc": [ + "https://rpc.polis.tech" + ], + "faucets": [ + "https://faucet.polis.tech" + ], + "nativeCurrency": { + "name": "Polis", + "symbol": "POLIS", + "decimals": 18 + }, + "infoURL": "https://polis.tech", + "shortName": "olympus", + "chainId": 333999, + "networkId": 333999 + }, + { + "name": "Arbitrum Rinkeby", + "title": "Arbitrum Testnet Rinkeby", + "chainId": 421611, + "shortName": "arb-rinkeby", + "chain": "ETH", + "networkId": 421611, + "nativeCurrency": { + "name": "Arbitrum Rinkeby Ether", + "symbol": "ARETH", + "decimals": 18 + }, + "rpc": [ + "https://rinkeby.arbitrum.io/rpc", + "wss://rinkeby.arbitrum.io/ws" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" + ], + "infoURL": "https://arbitrum.io", + "explorers": [ + { + "name": "arbitrum-rinkeby", + "url": "https://rinkeby-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } + }, + { + "name": "Eluvio Content Fabric", + "chain": "Eluvio", + "rpc": [ + "https://host-76-74-28-226.contentfabric.io/eth/", + "https://host-76-74-28-232.contentfabric.io/eth/", + "https://host-76-74-29-2.contentfabric.io/eth/", + "https://host-76-74-29-8.contentfabric.io/eth/", + "https://host-76-74-29-34.contentfabric.io/eth/", + "https://host-76-74-29-35.contentfabric.io/eth/", + "https://host-154-14-211-98.contentfabric.io/eth/", + "https://host-154-14-192-66.contentfabric.io/eth/", + "https://host-60-240-133-202.contentfabric.io/eth/", + "https://host-64-235-250-98.contentfabric.io/eth/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ELV", + "symbol": "ELV", + "decimals": 18 + }, + "infoURL": "https://eluv.io", + "shortName": "elv", + "chainId": 955305, + "networkId": 955305, + "slip44": 1011, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kintsugi", + "title": "Kintsugi merge testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.kintsugi.themerge.dev" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", + "https://faucet.kintsugi.themerge.dev" + ], + "nativeCurrency": { + "name": "kintsugi Ethere", + "symbol": "kiETH", + "decimals": 18 + }, + "infoURL": "https://kintsugi.themerge.dev/", + "shortName": "kintsugi", + "chainId": 1337702, + "networkId": 1337702, + "explorers": [ + { + "name": "kintsugi explorer", + "url": "https://explorer.kintsugi.themerge.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "Sepolia", + "title": "Ethereum Testnet Sepolia", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "SEP", + "decimals": 18 + }, + "infoURL": "https://sepolia.otterscan.io", + "shortName": "sep", + "chainId": 11155111, + "networkId": 11155111, + "explorers": [ + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "quarkblockchain", + "chain": "QKI", + "rpc": [ + "https://hz.rpc.qkiscan.cn", + "https://rpc1.qkiscan.cn", + "https://rpc2.qkiscan.cn", + "https://rpc3.qkiscan.cn", + "https://rpc1.qkiscan.io", + "https://rpc2.qkiscan.io", + "https://rpc3.qkiscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "quarkblockchain Native Token", + "symbol": "QKI", + "decimals": 18 + }, + "infoURL": "https://qkiscan.io", + "shortName": "qki", + "chainId": 20181205, + "networkId": 20181205 + }, + { + "name": "Gather Mainnet Network", + "chain": "GTH", + "rpc": [ + "https://mainnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "GTH", + "chainId": 192837465, + "networkId": 192837465, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.gather.network", + "standard": "none" + } + ] + }, + { + "name": "Neon EVM DevNet", + "chain": "Solana", + "rpc": [ + "https://proxy.devnet.neonlabs.org/solana" + ], + "faucets": [ + "https://neonswap.live/#/get-tokens" + ], + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org/", + "shortName": "neonevm-devnet", + "chainId": 245022926, + "networkId": 245022926 + }, + { + "name": "Neon EVM MainNet", + "chain": "Solana", + "rpc": [ + "https://proxy.mainnet.neonlabs.org/solana" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org/", + "shortName": "neonevm-mainnet", + "chainId": 245022934, + "networkId": 245022934 + }, + { + "name": "Neon EVM TestNet", + "chain": "Solana", + "rpc": [ + "https://proxy.testnet.neonlabs.org/solana" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org/", + "shortName": "neonevm-testnet", + "chainId": 245022940, + "networkId": 245022940 + }, + { + "name": "OneLedger Mainnet", + "chain": "OLT", + "icon": "oneledger", + "rpc": [ + "https://mainnet-rpc.oneledger.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OLT", + "symbol": "OLT", + "decimals": 18 + }, + "infoURL": "https://oneledger.io", + "shortName": "oneledger", + "chainId": 311752642, + "networkId": 311752642, + "explorers": [ + { + "name": "OneLedger Block Explorer", + "url": "https://mainnet-explorer.oneledger.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gather Tesnet Network", + "chain": "GTH", + "rpc": [ + "https://testnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "tGTH", + "chainId": 356256156, + "networkId": 356256156, + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "standard": "none" + } + ] + }, + { + "name": "Gather Devnet Network", + "chain": "GTH", + "rpc": [ + "https://devnet.gather.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "infoURL": "https://gather.network", + "shortName": "dGTH", + "chainId": 486217935, + "networkId": 486217935, + "explorers": [ + { + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } + ] + }, + { + "name": "Harmony Testnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://api.s0.b.hmny.io" + ], + "faucets": [ + "https://faucet.pops.one" + ], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s0", + "chainId": 1666700000, + "networkId": 1666700000, + "explorers": [ + { + "name": "Harmony Testnet Block Explorer", + "url": "https://explorer.pops.one", + "standard": "EIP3091" + } + ] + }, + { + "name": "Harmony Testnet Shard 1", + "chain": "Harmony", + "rpc": [ + "https://api.s1.b.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s1", + "chainId": 1666700001, + "networkId": 1666700001 + }, + { + "name": "Harmony Testnet Shard 2", + "chain": "Harmony", + "rpc": [ + "https://api.s2.b.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s2", + "chainId": 1666700002, + "networkId": 1666700002 + }, + { + "name": "Harmony Testnet Shard 3", + "chain": "Harmony", + "rpc": [ + "https://api.s3.b.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s3", + "chainId": 1666700003, + "networkId": 1666700003 + }, + { + "name": "DataHopper", + "chain": "HOP", + "rpc": [ + "https://23.92.21.121:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "DataHoppers", + "symbol": "HOP", + "decimals": 18 + }, + "infoURL": "https://www.DataHopper.com", + "shortName": "hop", + "chainId": 2021121117, + "networkId": 2021121117 + }, + { + "name": "OneLedger Testnet Frankenstein", + "chain": "OLT", + "icon": "oneledger", + "rpc": [ + "https://frankenstein-rpc.oneledger.network" + ], + "faucets": [ + "https://frankenstein-faucet.oneledger.network" + ], + "nativeCurrency": { + "name": "OLT", + "symbol": "OLT", + "decimals": 18 + }, + "infoURL": "https://oneledger.io", + "shortName": "frankenstein", + "chainId": 4216137055, + "networkId": 4216137055, + "explorers": [ + { + "name": "OneLedger Block Explorer", + "url": "https://frankenstein-explorer.oneledger.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Palm Testnet", + "chain": "Palm", + "icon": "palm", + "rpc": [ + "https://palm-testnet.infura.io/v3/{INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palm.io", + "shortName": "tpalm", + "chainId": 11297108099, + "networkId": 11297108099, + "explorers": [ + { + "name": "Palm Testnet Explorer", + "url": "https://explorer.palm-uat.xyz", + "standard": "EIP3091", + "icon": "palm" + } + ] + }, + { + "name": "Palm", + "chain": "Palm", + "icon": "palm", + "rpc": [ + "https://palm-mainnet.infura.io/v3/{INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palm.io", + "shortName": "palm", + "chainId": 11297108109, + "networkId": 11297108109, + "explorers": [ + { + "name": "Palm Explorer", + "url": "https://explorer.palm.io", + "standard": "EIP3091", + "icon": "palm" + } + ] + }, + { + "name": "Ntity Mainnet", + "chain": "Ntity", + "rpc": [ + "https://rpc.ntity.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ntity", + "symbol": "NTT", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt", + "chainId": 197710212030, + "networkId": 197710212030, + "icon": "ntity", + "explorers": [ + { + "name": "Ntity Blockscout", + "url": "https://blockscout.ntity.io", + "icon": "ntity", + "standard": "EIP3091" + } + ] + }, + { + "name": "Haradev Testnet", + "chain": "Ntity", + "rpc": [ + "https://blockchain.haradev.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ntity Haradev", + "symbol": "NTTH", + "decimals": 18 + }, + "infoURL": "https://ntity.io", + "shortName": "ntt-haradev", + "chainId": 197710212031, + "networkId": 197710212031, + "icon": "ntity", + "explorers": [ + { + "name": "Ntity Haradev Blockscout", + "url": "https://blockscout.haradev.com", + "icon": "ntity", + "standard": "EIP3091" + } + ] + }, + { + "name": "Molereum Network", + "chain": "ETH", + "rpc": [ + "https://molereum.jdubedition.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Molereum Ether", + "symbol": "MOLE", + "decimals": 18 + }, + "infoURL": "https://github.com/Jdubedition/molereum", + "shortName": "mole", + "chainId": 6022140761023, + "networkId": 6022140761023 + }, + { + "name": "Trust Network Testnet Preview", + "chainId": 15555, + "shortName": "Trust testnet", + "chain": "Trust testnet", + "network": "testnet", + "networkId": 15555, + "nativeCurrency": { + "name": "EVM", + "symbol": "EVM", + "decimals": 18 + }, + "rpc": [ + "https://api.testnet-dev.trust.one" + ], + "explorers": [ + { + "name": "TRUST Explorer", + "url": "https://trustscan.one", + "standard": "EIP3091" + } + ] + }, + { + "name": "MetaChain", + "chainId": 20028, + "shortName": "MTC", + "chain": "MetaChain", + "network": "mainnet", + "networkId": 20028, + "shortName": "meta", + "nativeCurrency": { + "name": "MTC", + "symbol": "MTC", + "decimals": 18 + }, + "rpc": [ + "https://seed1.metachain1.com", + "https://seed2.metachain1.com", + "https://seed3.metachain1.com" + ], + "faucets": [], + "infoURL": "http://www.metachain1.com/", + "app_resource": { + "ic_chain_select": "https://block.metachain1.com/tokenmetas/meta1.png", + "ic_chain_unselect": "https://block.metachain1.com/tokenmetas/meta0.png", + "color_chain_bg": "0xf3d275" + } + }, + { + "name": "Openpiece Mainnet", + "chain": "OPENPIECE", + "icon": "openpiece", + "network": "mainnet", + "rpc": [ + "https://mainnet.openpiece.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 + }, + "infoURL": "https://cryptopiece.online", + "shortName": "OP", + "chainId": 54, + "networkId": 54, + "explorers": [ + { + "name": "Belly Scan", + "url": "https://bellyscan.com", + "standard": "none" + } + ] + }, + { + "name": "Hoo Smart Chain", + "chain": "HSC", + "rpc": [ + "https://http-mainnet.hoosmartchain.com", + "https://http-mainnet2.hoosmartchain.com", + "wss://ws-mainnet.hoosmartchain.com", + "wss://ws-mainnet2.hoosmartchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hoo Smart Chain Native Token", + "symbol": "HOO", + "decimals": 18 + }, + "infoURL": "https://www.hoosmartchain.com", + "shortName": "hsc", + "chainId": 70, + "networkId": 70, + "slip44": 1170, + "explorers": [ + { + "name": "hooscan", + "url": "https://www.hooscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zenith Mainnet", + "chain": "Zenith", + "rpc": [ + "https://dataserver-us-1.zenithchain.co/", + "https://dataserver-asia-3.zenithchain.co/", + "https://dataserver-asia-4.zenithchain.co/", + "https://dataserver-asia-2.zenithchain.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ZENITH", + "symbol": "ZENITH", + "decimals": 18 + }, + "infoURL": "https://www.zenithchain.co/", + "chainId": 79, + "networkId": 79, + "shortName": "zenith", + "explorers": [ + { + "name": "zenith scan", + "url": "https://scan.zenithchain.co", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zenith Testnet (Vilnius)", + "chain": "Zenith", + "rpc": [ + "https://vilnius.zenithchain.co/http" + ], + "faucets": [ + "https://faucet.zenithchain.co/" + ], + "nativeCurrency": { + "name": "Vilnius", + "symbol": "VIL", + "decimals": 18 + }, + "infoURL": "https://www.zenithchain.co/", + "chainId": 81, + "networkId": 81, + "shortName": "VIL", + "explorers": [ + { + "name": "vilnius scan", + "url": "https://vilnius.scan.zenithchain.co", + "standard": "EIP3091" + } + ] + }, + { + "name": "Web3Games Devnet", + "chain": "Web3Games", + "icon": "web3games", + "rpc": [ + "https://devnet.web3games.org/evm" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "infoURL": "https://web3games.org/", + "shortName": "dw3g", + "chainId": 105, + "networkId": 105, + "explorers": [ + { + "name": "Web3Games Explorer", + "url": "https://explorer-devnet.web3games.org", + "standard": "none" + } + ] + }, + { + "name": "Openpiece Testnet", + "chain": "OPENPIECE", + "icon": "openpiece", + "network": "testnet", + "rpc": [ + "https://testnet.openpiece.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 + }, + "infoURL": "https://cryptopiece.online", + "shortName": "OPtest", + "chainId": 141, + "networkId": 141, + "explorers": [ + { + "name": "Belly Scan", + "url": "https://testnet.bellyscan.com", + "standard": "none" + } + ] + }, + { + "name": "AIOZ Network", + "chain": "AIOZ", + "network": "mainnet", + "icon": "aioz", + "rpc": [ + "https://eth-dataseed.aioz.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "AIOZ", + "symbol": "AIOZ", + "decimals": 18 + }, + "infoURL": "https://aioz.network", + "shortName": "aioz", + "chainId": 168, + "networkId": 168, + "slip44": 60, + "explorers": [ + { + "name": "AIOZ Network Explorer", + "url": "https://explorer.aioz.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "SoterOne Mainnet old", + "chain": "SOTER", + "rpc": [ + "https://rpc.soter.one" + ], + "faucets": [], + "nativeCurrency": { + "name": "SoterOne Mainnet Ether", + "symbol": "SOTER", + "decimals": 18 + }, + "infoURL": "https://www.soterone.com", + "shortName": "SO1-old", + "chainId": 218, + "networkId": 218, + "status": "deprecated" + }, + { + "name": "LACHAIN Mainnet", + "chain": "LA", + "icon": "lachain", + "rpc": [ + "https://rpc-mainnet.lachain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "LA", + "symbol": "LA", + "decimals": 18 + }, + "infoURL": "https://lachain.io", + "shortName": "LA", + "chainId": 225, + "networkId": 225, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.lachain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "LACHAIN Testnet", + "chain": "TLA", + "icon": "lachain", + "rpc": [ + "https://rpc-testnet.lachain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TLA", + "symbol": "TLA", + "decimals": 18 + }, + "infoURL": "https://lachain.io", + "shortName": "TLA", + "chainId": 226, + "networkId": 226, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan-test.lachain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Setheum", + "chain": "Setheum", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Setheum", + "symbol": "SETM", + "decimals": 18 + }, + "infoURL": "https://setheum.xyz", + "shortName": "setm", + "chainId": 258, + "networkId": 258 + }, + { + "name": "Optimism on Gnosis Chain", + "chain": "OGC", + "rpc": [ + "https://optimism.gnosischain.com", + "wss://optimism.gnosischain.com/wss" + ], + "faucets": [ + "https://faucet.gimlu.com/gnosis" + ], + "nativeCurrency": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "infoURL": "https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc", + "shortName": "ogc", + "chainId": 300, + "networkId": 300, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/xdai/optimism", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "DFK Chain Test", + "chain": "DFK", + "icon": "dfk", + "network": "testnet", + "rpc": [ + "https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 + }, + "infoURL": "https://defikingdoms.com", + "shortName": "DFKTEST", + "chainId": 335, + "networkId": 335, + "explorers": [ + { + "name": "ethernal", + "url": "https://explorer-test.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } + ] + }, + { + "name": "Double-A Chain Mainnet", + "chain": "AAC", + "rpc": [ + "https://rpc.acuteangle.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aac", + "chainId": 512, + "networkId": 512, + "slip44": 1512, + "explorers": [ + { + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" + } + ], + "icon": "aac" + }, + { + "name": "Double-A Chain Testnet", + "chain": "AAC", + "icon": "aac", + "rpc": [ + "https://rpc-testnet.acuteangle.com" + ], + "faucets": [ + "https://scan-testnet.acuteangle.com/faucet" + ], + "nativeCurrency": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "infoURL": "https://www.acuteangle.com/", + "shortName": "aact", + "chainId": 513, + "networkId": 513, + "explorers": [ + { + "name": "aacscan-testnet", + "url": "https://scan-testnet.acuteangle.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Candle Mainnet", + "chain": "Candle", + "rpc": [ + "https://candle-rpc.com/", + "https://rpc.cndlchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "CANDLE", + "symbol": "CNDL", + "decimals": 18 + }, + "infoURL": "https://candlelabs.org/", + "shortName": "CNDL", + "chainId": 534, + "networkId": 534, + "slip44": 674, + "explorers": [ + { + "name": "candlescan", + "url": "https://cndlchain.com", + "standard": "none" + } + ] + }, + { + "name": "Astar", + "chain": "ASTR", + "rpc": [ + "https://rpc.astar.network:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Astar", + "symbol": "ASTR", + "decimals": 18 + }, + "infoURL": "https://astar.network/", + "shortName": "astr", + "chainId": 592, + "networkId": 592, + "icon": "astar", + "explorers": [ + { + "name": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": "subscan" + } + ] + }, + { + "name": "Karura Network Testnet", + "chain": "KAR", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "infoURL": "https://karura.network", + "shortName": "tkar", + "chainId": 596, + "networkId": 596, + "slip44": 596 + }, + { + "name": "Acala Network Testnet", + "chain": "ACA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "infoURL": "https://acala.network", + "shortName": "taca", + "chainId": 597, + "networkId": 597, + "slip44": 597 + }, + { + "name": "Star Social Testnet", + "chain": "SNS", + "rpc": [ + "https://avastar.cc/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Social", + "symbol": "SNS", + "decimals": 18 + }, + "infoURL": "https://info.avastar.cc", + "shortName": "SNS", + "chainId": 700, + "networkId": 700, + "explorers": [ + { + "name": "starscan", + "url": "https://avastar.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "OpenChain Testnet", + "chain": "OpenChain Testnet", + "rpc": [ + "http://mainnet.openchain.info:8545", + "https://mainnet1.openchain.info" + ], + "faucets": [ + "https://faucet.openchain.info/" + ], + "nativeCurrency": { + "name": "Openchain Testnet", + "symbol": "TOPC", + "decimals": 18 + }, + "infoURL": "https://testnet.openchain.info/", + "shortName": "opc", + "chainId": 776, + "networkId": 776, + "explorers": [ + { + "name": "OPEN CHAIN TESTNET", + "url": "https://testnet.openchain.info", + "standard": "none" + } + ] + }, + { + "name": "Aerochain Testnet", + "chain": "Aerochain", + "network": "testnet", + "rpc": [ + "https://testnet-rpc.aerochain.id/" + ], + "faucets": [ + "https://faucet.aerochain.id/" + ], + "nativeCurrency": { + "name": "Aerochain Testnet", + "symbol": "TAero", + "decimals": 18 + }, + "infoURL": "https://aerochaincoin.org/", + "shortName": "taero", + "chainId": 788, + "networkId": 788, + "explorers": [ + { + "name": "aeroscan", + "url": "https://testnet.aeroscan.id", + "standard": "EIP3091" + } + ] + }, + { + "name": "PulseChain Testnet v2b", + "shortName": "t2bpls", + "chain": "t2bPLS", + "network": "testnet-2b", + "chainId": 941, + "networkId": 941, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.v2b.testnet.pulsechain.com/", + "wss://rpc.v2b.testnet.pulsechain.com/" + ], + "faucets": [ + "https://faucet.v2b.testnet.pulsechain.com/" + ], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + } + }, + { + "name": "PulseChain Testnet v3", + "shortName": "t3pls", + "chain": "t3PLS", + "network": "testnet-3", + "chainId": 942, + "networkId": 942, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.v3.testnet.pulsechain.com/", + "wss://rpc.v3.testnet.pulsechain.com/" + ], + "faucets": [ + "https://faucet.v3.testnet.pulsechain.com/" + ], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + } + }, + { + "name": "Eurus Mainnet", + "chain": "EUN", + "network": "eurus", + "rpc": [ + "https://mainnet.eurus.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "eun", + "chainId": 1008, + "networkId": 1008, + "icon": "eurus", + "explorers": [ + { + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ] + }, + { + "name": "CENNZnet old", + "chain": "CENNZnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-old", + "chainId": 1337, + "networkId": 1337, + "status": "deprecated" + }, + { + "name": "Sherpax Mainnet", + "chain": "Sherpax Mainnet", + "rpc": [ + "https://mainnet.sherpax.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KSX", + "symbol": "KSX", + "decimals": 18 + }, + "infoURL": "https://sherpax.io/", + "shortName": "Sherpax", + "chainId": 1506, + "networkId": 1506, + "explorers": [ + { + "name": "Sherpax Mainnet Explorer", + "url": "https://evm.sherpax.io", + "standard": "none" + } + ] + }, + { + "name": "Sherpax Testnet", + "chain": "Sherpax Testnet", + "rpc": [ + "https://sherpax-testnet.chainx.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KSX", + "symbol": "KSX", + "decimals": 18 + }, + "infoURL": "https://sherpax.io/", + "shortName": "Sherpax Testnet", + "chainId": 1507, + "networkId": 1507, + "explorers": [ + { + "name": "Sherpax Testnet Explorer", + "url": "https://evm-pre.sherpax.io", + "standard": "none" + } + ] + }, + { + "name": "LUDAN Mainnet", + "chain": "LUDAN", + "rpc": [ + "https://rpc.ludan.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "LUDAN", + "symbol": "LUDAN", + "decimals": 18 + }, + "infoURL": "https://www.ludan.org/", + "shortName": "LUDAN", + "icon": "ludan", + "chainId": 1688, + "networkId": 1688 + }, + { + "name": "BON Network", + "chain": "BON", + "network": "testnet", + "rpc": [ + "http://rpc.boyanet.org:8545", + "ws://rpc.boyanet.org:8546" + ], + "faucets": [], + "nativeCurrency": { + "name": "BOYACoin", + "symbol": "BOY", + "decimals": 18 + }, + "infoURL": "https://boyanet.org", + "shortName": "boya", + "chainId": 1898, + "networkId": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", + "standard": "EIP3091" + } + ] + }, + { + "name": "Eurus Testnet", + "chain": "EUN", + "network": "eurus-testnet", + "rpc": [ + "https://testnet.eurus.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "euntest", + "chainId": 1984, + "networkId": 1984, + "icon": "eurus", + "explorers": [ + { + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ] + }, + { + "name": "Milkomeda C1 Mainnet", + "chain": "milkAda", + "icon": "milkomeda", + "network": "mainnet", + "rpc": [ + "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkAda", + "symbol": "mADA", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkAda", + "chainId": 2001, + "networkId": 2001, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ] + }, + { + "name": "CloudWalk Testnet", + "chain": "CloudWalk Testnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "infoURL": "https://cloudwalk.io", + "shortName": "cloudwalk_testnet", + "chainId": 2008, + "networkId": 2008, + "explorers": [ + { + "name": "CloudWalk Testnet Explorer", + "url": "https://explorer.testnet.cloudwalk.io", + "standard": "none" + } + ] + }, + { + "name": "CloudWalk Mainnet", + "chain": "CloudWalk Mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "infoURL": "https://cloudwalk.io", + "shortName": "cloudwalk_mainnet", + "chainId": 2009, + "networkId": 2009, + "explorers": [ + { + "name": "CloudWalk Mainnet Explorer", + "url": "https://explorer.mainnet.cloudwalk.io", + "standard": "none" + } + ] + }, + { + "name": "Taycan Testnet", + "chain": "Taycan", + "rpc": [ + "https://test-taycan.hupayx.io" + ], + "faucets": [ + "https://ttaycan-faucet.hupayx.io/" + ], + "nativeCurrency": { + "name": "test-Shuffle", + "symbol": "tSFL", + "decimals": 18 + }, + "infoURL": "https://hupayx.io", + "shortName": "taycan-testnet", + "chainId": 2023, + "networkId": 2023, + "explorers": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://evmscan-test.hupayx.io", + "standard": "none" + }, + { + "name": "Taycan Cosmos Explorer", + "url": "https://cosmoscan-test.hupayx.io", + "standard": "none" + } + ] + }, + { + "name": "Findora Mainnet", + "chain": "Findora", + "network": "mainnet", + "rpc": [ + "https://prod-mainnet.prod.findora.org:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "fra", + "chainId": 2152, + "networkId": 2152, + "explorers": [ + { + "name": "findorascan", + "url": "https://evm.findorascan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Findora Testnet", + "chain": "Testnet-anvil", + "network": "testnet", + "rpc": [ + "https://prod-testnet.prod.findora.org:8545/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "findora-testnet", + "chainId": 2153, + "networkId": 2153, + "explorers": [ + { + "name": "findorascan", + "url": "https://testnet-anvil.evm.findorascan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kava EVM Testnet", + "chain": "KAVA", + "network": "testnet", + "rpc": [ + "https://evm.evm-alpha.kava.io", + "wss://evm-ws.evm-alpha.kava.io" + ], + "faucets": [ + "https://faucet.kava.io" + ], + "nativeCurrency": { + "name": "Kava", + "symbol": "KAVA", + "decimals": 18 + }, + "infoURL": "https://www.kava.io", + "shortName": "kava", + "chainId": 2221, + "networkId": 2221, + "icon": "kava", + "explorers": [ + { + "name": "Kava Testnet Explorer", + "url": "https://explorer.evm-alpha.kava.io", + "standard": "EIP3091", + "icon": "kava" + } + ] + }, + { + "name": "VChain Mainnet", + "chain": "VChain", + "rpc": [ + "https://bc.vcex.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "VNDT", + "symbol": "VNDT", + "decimals": 18 + }, + "infoURL": "https://bo.vcex.xyz/", + "shortName": "VChain", + "chainId": 2223, + "networkId": 2223, + "explorers": [ + { + "name": "VChain Scan", + "url": "https://scan.vcex.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "TechPay Mainnet", + "chain": "TPC", + "network": "mainnet", + "rpc": [ + "https://api.techpay.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TechPay", + "symbol": "TPC", + "decimals": 18 + }, + "infoURL": "https://techpay.io/", + "shortName": "tpc", + "chainId": 2569, + "networkId": 2569, + "icon": "techpay", + "explorers": [ + { + "name": "tpcscan", + "url": "https://tpcscan.com", + "icon": "techpay", + "standard": "EIP3091" + } + ] + }, + { + "name": "EZChain C-Chain Mainnet", + "chain": "EZC", + "rpc": [ + "https://api.ezchain.com/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 + }, + "infoURL": "https://ezchain.com", + "shortName": "EZChain", + "chainId": 2612, + "networkId": 2612, + "icon": "ezchain", + "explorers": [ + { + "name": "ezchain", + "url": "https://cchain-explorer.ezchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "EZChain C-Chain Testnet", + "chain": "EZC", + "rpc": [ + "https://testnet-api.ezchain.com/ext/bc/C/rpc" + ], + "faucets": [ + "https://testnet-faucet.ezchain.com" + ], + "nativeCurrency": { + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 + }, + "infoURL": "https://ezchain.com", + "shortName": "Fuji-EZChain", + "chainId": 2613, + "networkId": 2613, + "icon": "ezchain", + "explorers": [ + { + "name": "ezchain", + "url": "https://testnet-cchain-explorer.ezchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "CENNZnet Rata", + "chain": "CENNZnet", + "network": "rata", + "rpc": [ + "https://rata.centrality.me/public" + ], + "faucets": [ + "https://app-faucet.centrality.me" + ], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-r", + "chainId": 3000, + "networkId": 3000, + "icon": "cennz" + }, + { + "name": "CENNZnet Nikau", + "chain": "CENNZnet", + "network": "nikau", + "rpc": [ + "https://nikau.centrality.me/public" + ], + "faucets": [ + "https://app-faucet.centrality.me" + ], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-n", + "chainId": 3001, + "networkId": 3001, + "icon": "cennz", + "explorers": [ + { + "name": "UNcover", + "url": "https://www.uncoverexplorer.com/?network=Nikau", + "standard": "none" + } + ] + }, + { + "name": "Web3Q Galileo", + "chain": "Web3Q", + "rpc": [ + "https://galileo.web3q.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "infoURL": "https://galileo.web3q.io/home.w3q/", + "shortName": "w3q-g", + "chainId": 3334, + "networkId": 3334, + "explorers": [ + { + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Paribu Net Mainnet", + "chain": "PRB", + "network": "Paribu Net", + "rpc": [ + "https://rpc.paribu.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "PRB", + "symbol": "PRB", + "decimals": 18 + }, + "infoURL": "https://net.paribu.com", + "shortName": "prb", + "chainId": 3400, + "networkId": 3400, + "icon": "prb", + "explorers": [ + { + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", + "icon": "explorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Paribu Net Testnet", + "chain": "PRB", + "network": "Paribu Net", + "rpc": [ + "https://rpc.testnet.paribuscan.com" + ], + "faucets": [ + "https://faucet.paribuscan.com" + ], + "nativeCurrency": { + "name": "PRB", + "symbol": "PRB", + "decimals": 18 + }, + "infoURL": "https://net.paribu.com", + "shortName": "prbtestnet", + "chainId": 3500, + "networkId": 3500, + "icon": "prb", + "explorers": [ + { + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", + "icon": "explorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "DYNO Mainnet", + "chain": "DYNO", + "rpc": [ + "https://api.dynoprotocol.com" + ], + "faucets": [ + "https://faucet.dynoscan.io" + ], + "nativeCurrency": { + "name": "DYNO Token", + "symbol": "DYNO", + "decimals": 18 + }, + "infoURL": "https://dynoprotocol.com", + "shortName": "dyno", + "chainId": 3966, + "networkId": 3966, + "explorers": [ + { + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "DYNO Testnet", + "chain": "DYNO", + "rpc": [ + "https://tapi.dynoprotocol.com" + ], + "faucets": [ + "https://faucet.dynoscan.io" + ], + "nativeCurrency": { + "name": "DYNO Token", + "symbol": "tDYNO", + "decimals": 18 + }, + "infoURL": "https://dynoprotocol.com", + "shortName": "tdyno", + "chainId": 3967, + "networkId": 3967, + "explorers": [ + { + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "AIOZ Network Testnet", + "chain": "AIOZ", + "network": "testnet", + "icon": "aioz", + "rpc": [ + "https://eth-ds.testnet.aioz.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "testAIOZ", + "symbol": "AIOZ", + "decimals": 18 + }, + "infoURL": "https://aioz.network", + "shortName": "aioz-testnet", + "chainId": 4102, + "networkId": 4102, + "slip44": 60, + "explorers": [ + { + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "PHI Network", + "chain": "PHI", + "network": "mainnet", + "rpc": [ + "https://rpc1.phi.network", + "https://rpc2.phi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "PHI", + "symbol": "Φ", + "decimals": 18 + }, + "infoURL": "https://phi.network", + "shortName": "PHI", + "chainId": 4181, + "networkId": 4181, + "icon": "phi", + "explorers": [ + { + "name": "PHI Explorer", + "url": "https://explorer.phi.network", + "icon": "phi", + "standard": "none" + } + ] + }, + { + "name": "Venidium Testnet", + "chain": "XVM", + "rpc": [ + "https://rpc-evm-testnet.venidium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "xvm", + "chainId": 4918, + "networkId": 4918, + "explorers": [ + { + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nahmii Mainnet", + "chain": "Nahmii", + "network": "mainnet", + "rpc": [ + "https://l2.nahmii.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii", + "chainId": 5551, + "networkId": 5551, + "icon": "nahmii", + "explorers": [ + { + "name": "Nahmii mainnet explorer", + "url": "https://explorer.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] + } + }, + { + "name": "Nahmii Testnet", + "chain": "Nahmii", + "network": "testnet", + "rpc": [ + "https://l2.testnet.nahmii.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii testnet", + "chainId": 5553, + "networkId": 5553, + "icon": "nahmii", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.testnet.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3", + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] + } + }, + { + "name": "Digest Swarm Chain", + "chain": "DSC", + "icon": "swarmchain", + "rpc": [ + "https://rpc.digestgroup.ltd" + ], + "faucets": [], + "nativeCurrency": { + "name": "DigestCoin", + "symbol": "DGCC", + "decimals": 18 + }, + "infoURL": "https://digestgroup.ltd", + "shortName": "dgcc", + "chainId": 5777, + "networkId": 5777, + "explorers": [ + { + "name": "swarmexplorer", + "url": "https://explorer.digestgroup.ltd", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mammoth Mainnet", + "title": "Mammoth Chain", + "chain": "MMT", + "rpc": [ + "https://dataseed.mmtscan.io", + "https://dataseed1.mmtscan.io", + "https://dataseed2.mmtscan.io" + ], + "faucets": [ + "https://faucet.mmtscan.io/" + ], + "nativeCurrency": { + "name": "Mammoth Token", + "symbol": "MMT", + "decimals": 18 + }, + "infoURL": "https://mmtchain.io/", + "shortName": "mmt", + "chainId": 8898, + "networkId": 8898, + "icon": "mmt", + "explorers": [ + { + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": "mmt" + } + ] + }, + { + "name": "CryptoCoinPay", + "chain": "CCP", + "rpc": [ + "http://node106.cryptocoinpay.info:8545", + "ws://node106.cryptocoinpay.info:8546" + ], + "faucets": [], + "icon": "ccp", + "nativeCurrency": { + "name": "CryptoCoinPay", + "symbol": "CCP", + "decimals": 18 + }, + "infoURL": "https://www.cryptocoinpay.co", + "shortName": "CCP", + "chainId": 10823, + "networkId": 10823, + "explorers": [ + { + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Quadrans Blockchain", + "chain": "QDC", + "network": "mainnet", + "icon": "quadrans", + "rpc": [ + "https://rpc.quadrans.io", + "https://rpcna.quadrans.io", + "https://explorer.quadrans.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quadrans Coin", + "symbol": "QDC", + "decimals": 18 + }, + "infoURL": "https://quadrans.io", + "shortName": "quadrans", + "chainId": 10946, + "networkId": 10946, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } + ] + }, + { + "name": "Quadrans Blockchain Testnet", + "chain": "tQDC", + "network": "testnet", + "icon": "quadrans", + "rpc": [ + "https://rpctest.quadrans.io", + "https://explorer.testnet.quadrans.io" + ], + "faucets": [ + "https://faucetpage.quadrans.io" + ], + "nativeCurrency": { + "name": "Quadrans Testnet Coin", + "symbol": "tQDC", + "decimals": 18 + }, + "infoURL": "https://quadrans.io", + "shortName": "quadranstestnet", + "chainId": 10947, + "networkId": 10947, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.testnet.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } + ] + }, + { + "name": "CENNZnet Azalea", + "chain": "CENNZnet", + "network": "azalea", + "rpc": [ + "https://cennznet.unfrastructure.io/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "infoURL": "https://cennz.net", + "shortName": "cennz-a", + "chainId": 21337, + "networkId": 21337, + "icon": "cennz", + "explorers": [ + { + "name": "UNcover", + "url": "https://uncoverexplorer.com", + "standard": "none" + } + ] + }, + { + "name": "omChain Mainnet", + "chain": "OML", + "icon": "omlira", + "rpc": [ + "https://seed.omchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "omChain", + "symbol": "OMC", + "decimals": 18 + }, + "infoURL": "https://omchain.io", + "shortName": "omc", + "chainId": 21816, + "networkId": 21816, + "explorers": [ + { + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taycan", + "chain": "Taycan", + "network": "mainnet", + "rpc": [ + "https://taycan-rpc.hupayx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "shuffle", + "symbol": "SFL", + "decimals": 18 + }, + "infoURL": "https://hupayx.io", + "shortName": "SFL", + "chainId": 22023, + "networkId": 22023, + "explorers": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://taycan-evmscan.hupayx.io", + "standard": "none" + }, + { + "name": "Taycan Cosmos Explorer(BigDipper)", + "url": "https://taycan-cosmoscan.hupayx.io", + "standard": "none" + } + ] + }, + { + "name": "OasisChain Mainnet", + "chain": "OasisChain", + "rpc": [ + "https://rpc1.oasischain.io", + "https://rpc2.oasischain.io", + "https://rpc3.oasischain.io" + ], + "faucets": [ + "http://faucet.oasischain.io" + ], + "nativeCurrency": { + "name": "OAC", + "symbol": "OAC", + "decimals": 18 + }, + "infoURL": "https://scan.oasischain.io", + "shortName": "OAC", + "chainId": 26863, + "networkId": 26863, + "explorers": [ + { + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Piece testnet", + "chain": "PieceNetwork", + "icon": "piecechain", + "rpc": [ + "https://testnet-rpc0.piecenetwork.com" + ], + "faucets": [ + "https://piecenetwork.com/faucet" + ], + "nativeCurrency": { + "name": "ECE", + "symbol": "ECE", + "decimals": 18 + }, + "infoURL": "https://piecenetwork.com", + "shortName": "Piece", + "chainId": 30067, + "networkId": 30067, + "explorers": [ + { + "name": "Piece Scan", + "url": "https://testnet-scan.piecenetwork.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitgert Mainnet", + "chain": "Brise", + "rpc": [ + "https://mainnet-rpc.brisescan.com", + "https://chainrpc.com", + "https://serverrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitrise Token", + "symbol": "Brise", + "decimals": 18 + }, + "infoURL": "https://bitgert.com/", + "shortName": "Brise", + "chainId": 32520, + "networkId": 32520, + "icon": "brise", + "explorers": [ + { + "name": "Brise Scan", + "url": "https://brisescan.com", + "icon": "brise", + "standard": "EIP3091" + } + ] + }, + { + "name": "Autobahn Network", + "chain": "TXL", + "network": "mainnet", + "rpc": [ + "https://rpc.autobahn.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "TXL", + "symbol": "TXL", + "decimals": 18 + }, + "infoURL": "https://autobahn.network", + "shortName": "Autobahn Network", + "chainId": 45000, + "networkId": 45000, + "icon": "autobahn", + "explorers": [ + { + "name": "autobahn explorer", + "url": "https://explorer.autobahn.network", + "icon": "autobahn", + "standard": "EIP3091" + } + ] + }, + { + "name": "DFK Chain", + "chain": "DFK", + "icon": "dfk", + "network": "mainnet", + "rpc": [ + "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 + }, + "infoURL": "https://defikingdoms.com", + "shortName": "DFK", + "chainId": 53935, + "networkId": 53935, + "explorers": [ + { + "name": "ethernal", + "url": "https://explorer.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } + ] + }, + { + "name": "MultiVAC Mainnet", + "chain": "MultiVAC", + "icon": "multivac", + "rpc": [ + "https://rpc.mtv.ac", + "https://rpc-eu.mtv.ac" + ], + "faucets": [], + "nativeCurrency": { + "name": "MultiVAC", + "symbol": "MTV", + "decimals": 18 + }, + "infoURL": "https://mtv.ac", + "shortName": "mtv", + "chainId": 62621, + "networkId": 62621, + "explorers": [ + { + "name": "MultiVAC Explorer", + "url": "https://e.mtv.ac", + "standard": "none" + } + ] + }, + { + "name": "Condrieu", + "title": "Ethereum Verkle Testnet Condrieu", + "chain": "ETH", + "rpc": [ + "https://rpc.condrieu.ethdevops.io:8545" + ], + "faucets": [ + "https://faucet.condrieu.ethdevops.io" + ], + "nativeCurrency": { + "name": "Condrieu Testnet Ether", + "symbol": "CTE", + "decimals": 18 + }, + "infoURL": "https://condrieu.ethdevops.io", + "shortName": "cndr", + "chainId": 69420, + "networkId": 69420, + "explorers": [ + { + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } + ] + }, + { + "name": "Godwoken Testnet (V1.1)", + "chain": "GWT", + "rpc": [ + "https://godwoken-testnet-v1.ckbapp.dev" + ], + "faucets": [ + "https://testnet.bridge.godwoken.io" + ], + "nativeCurrency": { + "name": "CKB", + "symbol": "CKB", + "decimals": 18 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-testnet-v1", + "chainId": 71401, + "networkId": 71401, + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.aggron.gwscan.com", + "standard": "none" + } + ] + }, + { + "name": "Godwoken Mainnet", + "chain": "GWT", + "rpc": [ + "https://godwoken-testnet-v1.ckbapp.dev" + ], + "faucets": [ + "https://testnet.bridge.godwoken.io" + ], + "nativeCurrency": { + "name": "CKB", + "symbol": "CKB", + "decimals": 18 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-mainnet-v1", + "chainId": 71402, + "networkId": 71402, + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.aggron.gwscan.com", + "standard": "none" + } + ] + }, + { + "name": "Milkomeda C1 Testnet", + "chain": "milkTAda", + "icon": "milkomeda", + "network": "testnet", + "rpc": [ + "https://rpc-devnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkTAda", + "symbol": "mTAda", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAda", + "chainId": 200101, + "networkId": 200101, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ] + }, + { + "name": "Haymo Testnet", + "chain": "tHYM", + "network": "testnet", + "rpc": [ + "https://testnet1.haymo.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAYMO", + "symbol": "HYM", + "decimals": 18 + }, + "infoURL": "https://haymoswap.web.app/", + "shortName": "hym", + "chainId": 234666, + "networkId": 234666 + }, + { + "name": "Dexalot Testnet", + "chain": "DEXALOT", + "network": "testnet", + "rpc": [ + "https://subnets.avax.network/dexalot/testnet/rpc" + ], + "faucets": [ + "https://sfaucet.dexalot-test.com" + ], + "nativeCurrency": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "infoURL": "https://dexalot.com", + "shortName": "Dexalot", + "chainId": 432201, + "networkId": 432201, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets.avax.network/dexalot/testnet/explorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Weelink Testnet", + "chain": "WLK", + "rpc": [ + "https://weelinknode1c.gw002.oneitfarm.com" + ], + "faucets": [ + "https://faucet.weelink.gw002.oneitfarm.com" + ], + "nativeCurrency": { + "name": "Weelink Chain Token", + "symbol": "tWLK", + "decimals": 18 + }, + "infoURL": "https://weelink.cloud", + "shortName": "wlkt", + "chainId": 444900, + "networkId": 444900, + "explorers": [ + { + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } + ] + }, + { + "name": "OpenChain Mainnet", + "chain": "OpenChain", + "rpc": [ + "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" + ], + "faucets": [], + "nativeCurrency": { + "name": "OpenCoin", + "symbol": "OPC", + "decimals": 10 + }, + "infoURL": "https://www.openchain.live", + "shortName": "oc", + "chainId": 474142, + "networkId": 474142, + "explorers": [ + { + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } + ] + }, + { + "name": "CMP-Testnet", + "chain": "CMP", + "network": "testnet", + "rpc": [ + "https://galaxy.block.caduceus.foundation", + "wss://galaxy.block.caduceus.foundation" + ], + "faucets": [ + "https://dev.caduceus.foundation/testNetwork" + ], + "nativeCurrency": { + "name": "Caduceus Testnet Token", + "symbol": "CMP", + "decimals": 18 + }, + "infoURL": "https://caduceus.foundation/", + "shortName": "cmp", + "chainId": 512512, + "networkId": 512512, + "explorers": [ + { + "name": "Galaxy Scan", + "url": "https://galaxy.scan.caduceus.foundation", + "standard": "none" + } + ] + }, + { + "name": "Kiln", + "chain": "ETH", + "network": "testnet", + "rpc": [ + "https://rpc.kiln.themerge.dev" + ], + "faucets": [ + "https://faucet.kiln.themerge.dev", + "https://kiln-faucet.pk910.de", + "https://kilnfaucet.com" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kiln.themerge.dev/", + "shortName": "kiln", + "chainId": 1337802, + "networkId": 1337802, + "icon": "ethereum", + "explorers": [ + { + "name": "Kiln Explorer", + "url": "https://explorer.kiln.themerge.dev", + "icon": "ethereum", + "standard": "EIP3091" + } + ] + }, + { + "name": "PlatON Dev Testnet", + "chain": "PlatON", + "rpc": [ + "https://devnetopenapi2.platon.network/rpc", + "wss://devnetopenapi2.platon.network/ws" + ], + "faucets": [ + "https://faucet.platon.network/faucet/?id=e5d32df10aee11ec911142010a667c03" + ], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platondev", + "chainId": 2203181, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://devnetscan.platon.network", + "standard": "none" + } + ] + }, + { + "name": "SmartMesh Mainnet", + "chain": "Spectrum", + "rpc": [ + "https://jsonapi1.smartmesh.cn" + ], + "faucets": [], + "nativeCurrency": { + "name": "SmartMesh Native Token", + "symbol": "SMT", + "decimals": 18 + }, + "infoURL": "https://smartmesh.io", + "shortName": "spectrum", + "chainId": 20180430, + "networkId": 1, + "explorers": [ + { + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } + ] + }, + { + "name": "Cube Chain Mainnet", + "chain": "Cube", + "icon": "cube", + "rpc": [ + "https://http-mainnet.cube.network", + "wss://ws-mainnet.cube.network", + "https://http-mainnet-sg.cube.network", + "wss://ws-mainnet-sg.cube.network", + "https://http-mainnet-us.cube.network", + "wss://ws-mainnet-us.cube.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cube Chain Native Token", + "symbol": "CUBE", + "decimals": 18 + }, + "infoURL": "https://www.cube.network", + "shortName": "cube", + "chainId": 1818, + "networkId": 1818, + "slip44": 1818, + "explorers": [ + { + "name": "cube-scan", + "url": "https://cubescan.network", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/0.png", + "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/Cube/2.png", + "color_chain_bg": "0x3FC3C3" + } + }, + { + "name": "Cube Chain Testnet", + "chain": "Cube", + "rpc": [ + "https://http-testnet.cube.network", + "wss://ws-testnet.cube.network", + "https://http-testnet-sg.cube.network", + "wss://ws-testnet-sg.cube.network", + "https://http-testnet-jp.cube.network", + "wss://ws-testnet-jp.cube.network", + "https://http-testnet-us.cube.network", + "wss://ws-testnet-us.cube.network" + ], + "faucets": [ + "https://faucet.cube.network" + ], + "nativeCurrency": { + "name": "Cube Chain Test Native Token", + "symbol": "CUBET", + "decimals": 18 + }, + "infoURL": "https://www.cube.network", + "shortName": "cubet", + "chainId": 1819, + "networkId": 1819, + "slip44": 1819, + "explorers": [ + { + "name": "cubetest-scan", + "url": "https://testnet.cubescan.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Godwoken Testnet (V1)", + "chain": "GWT", + "rpc": [ + "https://godwoken-testnet-web3-v1-rpc.ckbapp.dev" + ], + "faucets": [ + "https://homura.github.io/light-godwoken" + ], + "nativeCurrency": { + "name": "CKB", + "symbol": "CKB", + "decimals": 8 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-testnet-v1-deprecated", + "chainId": 868455272153094, + "networkId": 868455272153094, + "status": "deprecated", + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.aggron.gwscan.com", + "standard": "none" + } + ] + }, + { + "name": "Dxchain Mainnet", + "chain": "Dxchain", + "rpc": [ + "https://mainnet.dxchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dxchain", + "symbol": "DX", + "decimals": 18 + }, + "infoURL": "https://www.dxchain.com/", + "shortName": "dx", + "chainId": 36, + "networkId": 36 + }, + { + "name": "Darwinia Network", + "chain": "darwinia", + "network": "darwinia network", + "rpc": [ + "https://darwinia-rpc.darwinia.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Darwinia Network Native Token", + "symbol": "RING", + "decimals": 18 + }, + "infoURL": "https://darwinia.network/", + "shortName": "darwinia", + "chainId": 46, + "networkId": 46, + "explorers": [ + { + "name": "subscan", + "url": "https://darwinia.subscan.io", + "standard": "none" + } + ] + }, + { + "name": "DxChain Testnet", + "chain": "DxChain", + "rpc": [ + "https://testnet-http.dxchain.com" + ], + "faucets": [ + "https://faucet.dxscan.io" + ], + "nativeCurrency": { + "name": "DxChain Testnet", + "symbol": "DX", + "decimals": 18 + }, + "infoURL": "https://testnet.dxscan.io/", + "shortName": "dxc", + "chainId": 72, + "networkId": 72 + }, + { + "name": "Kaiba Lightning Chain Testnet", + "chain": "tKLC", + "network": "testnet", + "rpc": [ + "https://klc.live/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kaiba Testnet Token", + "symbol": "tKAIBA", + "decimals": 18 + }, + "infoURL": "https://kaibadefi.com", + "shortName": "tklc", + "chainId": 104, + "networkId": 104, + "icon": "kaiba", + "explorers": [ + { + "name": "kaibascan", + "url": "https://kaibascan.io", + "icon": "kaibascan", + "standard": "EIP3091" + } + ] + }, + { + "name": "AME Chain Mainnet", + "chain": "AME", + "rpc": [ + "https://node1.amechain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "AME", + "symbol": "AME", + "decimals": 18 + }, + "infoURL": "https://amechain.io/", + "shortName": "ame", + "chainId": 180, + "networkId": 180, + "explorers": [ + { + "name": "AME Scan", + "url": "https://amescan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Crypto Emergency", + "chain": "CEM", + "rpc": [ + "https://cemchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crypto Emergency", + "symbol": "CEM", + "decimals": 18 + }, + "infoURL": "https://cemblockchain.com/", + "shortName": "cem", + "chainId": 193, + "networkId": 193, + "explorers": [ + { + "name": "cemscan", + "url": "https://cemscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SX Network Mainnet", + "chain": "SX", + "icon": "SX", + "network": "mainnet", + "rpc": [ + "https://rpc.sx.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "infoURL": "https://www.sx.technology", + "shortName": "SX", + "chainId": 416, + "networkId": 416, + "explorers": [ + { + "name": "SX Network Explorer", + "url": "https://explorer.sx.technology", + "standard": "EIP3091" + } + ] + }, + { + "name": "XT Smart Chain Mainnet", + "chain": "XSC", + "icon": "xsc", + "rpc": [ + "https://datarpc1.xsc.pub", + "https://datarpc2.xsc.pub", + "https://datarpc3.xsc.pub" + ], + "faucets": [ + "https://xsc.pub/faucet" + ], + "nativeCurrency": { + "name": "XT Smart Chain Native Token", + "symbol": "XT", + "decimals": 18 + }, + "infoURL": "https://xsc.pub/", + "shortName": "xt", + "chainId": 520, + "networkId": 1024, + "explorers": [ + { + "name": "xscscan", + "url": "https://xscscan.pub", + "standard": "EIP3091" + } + ] + }, + { + "name": "F(x)Core Mainnet Network", + "chain": "Fxcore", + "network": "mainnet", + "rpc": [ + "https://fx-json-web3.functionx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "infoURL": "https://functionx.io/", + "shortName": "f(x)Core", + "chainId": 530, + "networkId": 530, + "icon": "fxcore", + "explorers": [ + { + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "SX Network Testnet", + "chain": "SX", + "icon": "SX", + "network": "testnet", + "rpc": [ + "https://rpc.toronto.sx.technology" + ], + "faucets": [ + "https://faucet.toronto.sx.technology" + ], + "nativeCurrency": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "infoURL": "https://www.sx.technology", + "shortName": "SX-Testnet", + "chainId": 647, + "networkId": 647, + "explorers": [ + { + "name": "SX Network Toronto Explorer", + "url": "https://explorer.toronto.sx.technology", + "standard": "EIP3091" + } + ] + }, + { + "name": "Portal Fantasy Chain Test", + "chain": "PF", + "icon": "pf", + "network": "testnet", + "rpc": [ + "https://subnets.avax.network/portal-fantasy/testnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "infoURL": "https://portalfantasy.io", + "shortName": "PFTEST", + "chainId": 808, + "networkId": 808, + "explorers": [] + }, + { + "name": "Portal Fantasy Chain", + "chain": "PF", + "icon": "pf", + "network": "mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "infoURL": "https://portalfantasy.io", + "shortName": "PF", + "chainId": 909, + "networkId": 909, + "explorers": [], + "status": "incubating" + }, + { + "name": "TOP Mainnet EVM", + "chain": "TOP", + "icon": "top", + "rpc": [ + "ethapi.topnetwork.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.topnetwork.org/", + "shortName": "top_evm", + "chainId": 980, + "networkId": 0, + "explorers": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ] + }, + { + "name": "TOP Mainnet", + "chain": "TOP", + "icon": "top", + "rpc": [ + "topapi.topnetwork.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "TOP", + "symbol": "TOP", + "decimals": 6 + }, + "infoURL": "https://www.topnetwork.org/", + "shortName": "top", + "chainId": 989, + "networkId": 0, + "explorers": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ] + }, + { + "name": "GTON Mainnet", + "chain": "GTON", + "rpc": [ + "https://rpc.gton.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "infoURL": "https://gton.capital", + "shortName": "gton", + "chainId": 1000, + "networkId": 1000, + "explorers": [ + { + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } + }, + { + "name": "OM Platform Mainnet", + "chain": "omplatform", + "network": "mainnet", + "rpc": [ + "https://rpc-cnx.omplatform.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OMCOIN", + "symbol": "OM", + "decimals": 18 + }, + "infoURL": "https://omplatform.com/", + "shortName": "om", + "chainId": 1246, + "networkId": 1246, + "explorers": [ + { + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", + "standard": "none" + } + ] + }, + { + "name": "Boba Network Bobabase", + "chain": "Bobabase", + "rpc": [ + "https://bobabase.boba.network", + "wss://wss.bobabase.boba.network", + "https://replica.bobabase.boba.network", + "wss://replica-wss.bobabase.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabase", + "chainId": 1297, + "networkId": 1297, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockexplorer.bobabase.boba.network", + "standard": "none" + } + ] + }, + { + "name": "AIA Mainnet", + "chainId": 1319, + "shortName": "aia", + "chain": "AIA Chain", + "network": "mainnet", + "networkId": 1319, + "nativeCurrency": { + "name": "AIA Mainnet", + "symbol": "AIA", + "decimals": 18 + }, + "rpc": [ + "https://aia-dataseed1.aiachain.org", + "https://aia-dataseed2.aiachain.org", + "https://aia-dataseed3.aiachain.org", + "https://aia-dataseed4.aiachain.org" + ], + "faucets": [], + "infoURL": "https://www.aiachain.org", + "app_resource": { + "ic_chain_select": "https://images.aiachain.org/AIA/AIA1.png", + "ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2.png", + "color_chain_bg": "0x080134" + }, + "explorers": [ + { + "name": "AIA Chain Explorer Mainnet", + "url": "https://aiascan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "AIA Testnet", + "chainId": 1320, + "shortName": "aiatestnet", + "chain": "AIA Chain", + "network": "testnet", + "networkId": 1320, + "nativeCurrency": { + "name": "AIA Testnet", + "symbol": "AIA", + "decimals": 18 + }, + "rpc": [ + "https://aia-dataseed1-testnet.aiachain.org" + ], + "faucets": [ + "https://aia-faucet-testnet.aiachain.org" + ], + "infoURL": "https://www.aiachain.org", + "app_resource": { + "ic_chain_select": "https://images.aiachain.org/AIA/AIA1-test.png", + "ic_chain_unselect": "https://images.aiachain.org/AIA/AIA2-test.png", + "color_chain_bg": "0xA1473B" + }, + "explorers": [ + { + "name": "AIA Chain Explorer Testnet", + "url": "https://testnet.aiascan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kava EVM", + "chain": "KAVA", + "network": "mainnet", + "rpc": [ + "https://evm.kava.io", + "https://evm2.kava.io", + "wss://wevm.kava.io", + "wss://wevm2.kava.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kava", + "symbol": "KAVA", + "decimals": 18 + }, + "infoURL": "https://www.kava.io", + "shortName": "kava", + "chainId": 2222, + "networkId": 2222, + "icon": "kava", + "explorers": [ + { + "name": "Kava EVM Explorer", + "url": "https://explorer.kava.io", + "standard": "EIP3091", + "icon": "kava" + } + ] + }, + { + "name": "JFIN Chain", + "chain": "JFIN", + "rpc": [ + "https://rpc.jfinchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "JFIN Coin", + "symbol": "jfin", + "decimals": 18 + }, + "infoURL": "https://jfinchain.com", + "shortName": "jfin", + "chainId": 3501, + "networkId": 3501, + "explorers": [ + { + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Crossbell", + "chain": "Crossbell", + "network": "mainnet", + "rpc": [ + "https://rpc.crossbell.io" + ], + "faucets": [ + "https://faucet.crossbell.io" + ], + "nativeCurrency": { + "name": "Crossbell Token", + "symbol": "CSB", + "decimals": 18 + }, + "infoURL": "https://crossbell.io", + "shortName": "csb", + "chainId": 3737, + "networkId": 3737, + "icon": "crossbell", + "explorers": [ + { + "name": "Crossbell Explorer", + "url": "https://scan.crossbell.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "YuanChain Mainnet", + "chain": "YCC", + "network": "mainnet", + "rpc": [ + "https://mainnet.yuan.org/eth" + ], + "faucets": [], + "nativeCurrency": { + "name": "YCC", + "symbol": "YCC", + "decimals": 18 + }, + "infoURL": "https://www.yuan.org", + "shortName": "ycc", + "chainId": 3999, + "networkId": 3999, + "icon": "ycc", + "explorers": [ + { + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" + } + ] + }, + { + "name": "Boba Network Bobaopera Testnet", + "chain": "Bobaopera Testnet", + "rpc": [ + "https://testnet.bobaopera.boba.network", + "wss://wss.testnet.bobaopera.boba.network", + "https://replica.testnet.bobaopera.boba.network", + "wss://replica-wss.testnet.bobaopera.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobaopera Testnet", + "chainId": 4051, + "networkId": 4051, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockexplorer.testnet.bobaopera.boba.network", + "standard": "none" + } + ] + }, + { + "name": "Venidium Mainnet", + "chain": "XVM", + "icon": "venidium", + "rpc": [ + "https://rpc.venidium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "xvm", + "chainId": 4919, + "networkId": 4919, + "explorers": [ + { + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "TLChain Network Mainnet", + "chain": "TLC", + "icon": "tlc", + "rpc": [ + "https://mainnet-rpc.tlxscan.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TLChain Network", + "symbol": "TLC", + "decimals": 18 + }, + "infoURL": "https://tlchain.network/", + "shortName": "tlc", + "chainId": 5177, + "networkId": 5177, + "explorers": [ + { + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", + "standard": "none" + } + ] + }, + { + "name": "Tomb Chain Mainnet", + "chain": "Tomb Chain", + "rpc": [ + "https://rpc.tombchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tomb", + "symbol": "TOMB", + "decimals": 18 + }, + "infoURL": "https://tombchain.com/", + "shortName": "tombchain", + "chainId": 6969, + "networkId": 6969, + "explorers": [ + { + "name": "tombscout", + "url": "https://tombscout.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-250", + "bridges": [ + { + "url": "https://beta-bridge.lif3.com/" + } + ] + } + }, + { + "name": "Ella the heart", + "chain": "ella", + "icon": "ella", + "rpc": [ + "https://rpc.ella.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ella", + "symbol": "ELLA", + "decimals": 18 + }, + "infoURL": "https://ella.network", + "shortName": "ELLA", + "chainId": 7027, + "networkId": 7027, + "explorers": [ + { + "name": "Ella", + "url": "https://ella.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rise of the Warbots Testnet", + "chain": "nmactest", + "rpc": [ + "https://testnet1.riseofthewarbots.com", + "https://testnet2.riseofthewarbots.com", + "https://testnet3.riseofthewarbots.com", + "https://testnet4.riseofthewarbots.com", + "https://testnet5.riseofthewarbots.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nano Machines", + "symbol": "NMAC", + "decimals": 18 + }, + "infoURL": "https://riseofthewarbots.com/", + "shortName": "Rise of the Warbots Testnet", + "chainId": 7777, + "networkId": 7777, + "explorers": [ + { + "name": "avascan", + "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + "standard": "none" + } + ] + }, + { + "name": "BerylBit Mainnet", + "chain": "BRB", + "rpc": [ + "https://mainnet.berylbit.io" + ], + "faucets": [ + "https://t.me/BerylBit" + ], + "nativeCurrency": { + "name": "BerylBit Chain Native Token", + "symbol": "BRB", + "decimals": 18 + }, + "infoURL": "https://www.beryl-bit.com", + "shortName": "brb", + "chainId": 9012, + "networkId": 9012, + "icon": "berylbit", + "explorers": [ + { + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "IVAR Chain Testnet", + "chain": "IVAR", + "icon": "ivar", + "rpc": [ + "https://testnet-rpc.ivarex.com" + ], + "faucets": [ + "https://tfaucet.ivarex.com/" + ], + "nativeCurrency": { + "name": "tIvar", + "symbol": "tIVAR", + "decimals": 18 + }, + "infoURL": "https://ivarex.com", + "shortName": "tivar", + "chainId": 16888, + "networkId": 16888, + "explorers": [ + { + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Q Mainnet", + "chain": "Q", + "network": "mainnet", + "rpc": [ + "https://rpc.q.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "https://q.org", + "shortName": "q", + "chainId": 35441, + "networkId": 35441, + "icon": "q", + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.q.org", + "icon": "q", + "standard": "EIP3091" + } + ] + }, + { + "name": "Q Testnet", + "chain": "Q", + "network": "testnet", + "rpc": [ + "https://rpc.qtestnet.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "https://q.org/", + "shortName": "q-testnet", + "chainId": 35443, + "networkId": 35443, + "icon": "q", + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arbitrum Nova", + "chainId": 42170, + "shortName": "arb-nova", + "chain": "ETH", + "networkId": 42170, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://nova.arbitrum.io/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Arbitrum Nova Chain Explorer", + "url": "https://nova-explorer.arbitrum.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } + }, + { + "name": "GTON Testnet", + "chain": "GTON Testnet", + "rpc": [ + "https://testnet.gton.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "infoURL": "https://gton.capital", + "shortName": "tgton", + "chainId": 50021, + "networkId": 50021, + "explorers": [ + { + "name": "GTON Testnet Network Explorer", + "url": "https://explorer.testnet.gton.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3" + } + }, + { + "name": "Mixin Virtual Machine", + "chain": "MVM", + "network": "mainnet", + "rpc": [ + "https://geth.mvm.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://mvm.dev", + "shortName": "mvm", + "chainId": 73927, + "networkId": 73927, + "icon": "mvm", + "explorers": [ + { + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": "mvm", + "standard": "EIP3091" + } + ] + }, + { + "name": "ResinCoin Mainnet", + "chain": "RESIN", + "rpc": [ + "https://mainnet.resincoin.ml" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "RESIN", + "decimals": 18 + }, + "infoURL": "https://resincoin.ml", + "shortName": "resin", + "chainId": 75000, + "networkId": 75000, + "explorers": [ + { + "name": "ResinScan", + "url": "https://explorer.resincoin.ml", + "standard": "none" + } + ] + }, + { + "name": "IVAR Chain Mainnet", + "chain": "IVAR", + "icon": "ivar", + "rpc": [ + "https://mainnet-rpc.ivarex.com" + ], + "faucets": [ + "https://faucet.ivarex.com/" + ], + "nativeCurrency": { + "name": "Ivar", + "symbol": "IVAR", + "decimals": 18 + }, + "infoURL": "https://ivarex.com", + "shortName": "ivar", + "chainId": 88888, + "networkId": 88888, + "explorers": [ + { + "name": "ivarscan", + "url": "https://ivarscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Crystaleum", + "chain": "crystal", + "network": "mainnet", + "rpc": [ + "https://evm.cryptocurrencydevs.org", + "https://rpc.crystaleum.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "CRFI", + "symbol": "◈", + "decimals": 18 + }, + "infoURL": "https://crystaleum.org", + "shortName": "CRFI", + "chainId": 103090, + "networkId": 1, + "icon": "crystal", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.crystaleum.org", + "icon": "crystal", + "standard": "EIP3091" + } + ] + }, + { + "name": "ETND Chain Mainnets", + "chain": "ETND", + "network": "mainnet", + "rpc": [ + "https://rpc.node1.etnd.pro/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETND", + "symbol": "ETND", + "decimals": 18 + }, + "infoURL": "https://www.etnd.pro", + "shortName": "ETND", + "chainId": 131419, + "networkId": 131419, + "icon": "ETND", + "explorers": [ + { + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": "ETND", + "standard": "none" + } + ] + }, + { + "name": "Arbitrum Görli", + "title": "Arbitrum Görli Rollup Testnet", + "chainId": 421613, + "shortName": "arb-goerli", + "chain": "ETH", + "networkId": 421613, + "nativeCurrency": { + "name": "Arbitrum Görli Ether", + "symbol": "AGOR", + "decimals": 18 + }, + "rpc": [ + "https://goerli-rollup.arbitrum.io/rpc/" + ], + "faucets": [], + "infoURL": "https://arbitrum.io/", + "explorers": [ + { + "name": "Arbitrum Görli Rollup Explorer", + "url": "https://goerli-rollup-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://bridge.arbitrum.io/" + } + ] + } + }, + { + "name": "4GoodNetwork", + "chain": "4GN", + "rpc": [ + "https://chain.deptofgood.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "APTA", + "symbol": "APTA", + "decimals": 18 + }, + "infoURL": "https://bloqs4good.com", + "shortName": "bloqs4good", + "chainId": 846000, + "networkId": 846000 + }, + { + "name": "PlatON Dev Testnet2", + "chain": "PlatON", + "rpc": [ + "https://devnet2openapi.platon.network/rpc", + "wss://devnet2openapi.platon.network/ws" + ], + "faucets": [ + "https://devnet2faucet.platon.network/faucet" + ], + "nativeCurrency": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "infoURL": "https://www.platon.network", + "shortName": "platondev2", + "chainId": 2206132, + "networkId": 1, + "icon": "platon", + "explorers": [ + { + "name": "PlatON explorer", + "url": "https://devnet2scan.platon.network", + "standard": "none" + } + ] + }, + { + "name": "CANTO", + "chain": "CANTO", + "rpc": [ + "https://canto.evm.chandrastation.com", + "https://canto.slingshot.finance", + "https://jsonrpc.canto.nodestake.top" + ], + "nativeCurrency": { + "name": "CANTO", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io/", + "shortName": "CANTO", + "chainId": 7700, + "networkId": 7700, + "icon": "CANTO", + "explorers": [ + { + "name": "CANTO explorer", + "url": "https://evm.explorer.canto.io", + "standard": "none" + } + ] + }, + { + "name": "EthereumFair ETHF", + "chainId": 513100, + "shortName": "ETHF", + "chain": "ETHF", + "network": "mainnet", + "networkId": 513100, + "nativeCurrency": { + "name": "ETHF", + "symbol": "ETHF", + "decimals": 18 + }, + "rpc": [ + "https://rpc.etherfair.org" + ], + "faucets": [], + "infoURL": "", + "explorers": [ + { + "name": "ETHF scan", + "url": "https://explorer.etherfair.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "ETHW Mainnet", + "chainId": 10001, + "shortName": "ETHW", + "chain": "ETHW", + "network": "mainnet", + "networkId": 10001, + "nativeCurrency": { + "name": "ETHW", + "symbol": "ETHW", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.ethereumpow.org" + ], + "faucets": [], + "infoURL": "https://ethereumpow.org/", + "explorers": [ + { + "name": "ETHW Scan", + "url": "https://mainnet.ethwscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Core Blockchain", + "chainId": 1116, + "shortName": "CORE", + "chain": "CORE", + "network": "mainnet", + "networkId": 1116, + "nativeCurrency": { + "name": "CORE", + "symbol": "CORE", + "decimals": 18 + }, + "rpc": [ + "https://rpc.coredao.org/" + ], + "faucets": [], + "explorers": [ + { + "name": "Core Scan", + "url": "https://scan.coredao.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "SeedCoin-Network", + "chain": "SeedCoin-Network", + "rpc": [ + "https://node.seedcoin.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "SeedCoin", + "symbol": "SEED", + "decimals": 18 + }, + "infoURL": "https://www.seedcoin.network/", + "shortName": "SEED", + "icon": "seedcoin", + "chainId": 37, + "networkId": 37 + }, + { + "name": "Unicorn Ultra Testnet", + "chain": "u2u", + "rpc": [ + "https://rpc-testnet.uniultra.xyz" + ], + "faucets": [ + "https://faucet.uniultra.xyz" + ], + "nativeCurrency": { + "name": "Unicorn Ultra", + "symbol": "U2U", + "decimals": 18 + }, + "infoURL": "https://uniultra.xyz", + "shortName": "u2u", + "chainId": 39, + "networkId": 39, + "icon": "u2u", + "explorers": [ + { + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://testnet.uniultra.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ennothem Mainnet Proterozoic", + "chain": "ETMP", + "rpc": [ + "https://rpc.etm.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 + }, + "infoURL": "https://etm.network", + "shortName": "etmp", + "chainId": 48, + "networkId": 48, + "icon": "etmp", + "explorers": [ + { + "name": "etmpscan", + "url": "https://etmscan.network", + "icon": "etmp", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ennothem Testnet Pioneer", + "chain": "ETMP", + "rpc": [ + "https://rpc.pioneer.etm.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 + }, + "infoURL": "https://etm.network", + "shortName": "etmpTest", + "chainId": 49, + "networkId": 49, + "icon": "etmp", + "explorers": [ + { + "name": "etmp", + "url": "https://pioneer.etmscan.network", + "icon": "etmpscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "FNCY", + "chain": "FNCY", + "rpc": [ + "https://fncy-seed1.fncy.world" + ], + "faucets": [ + "https://faucet-testnet.fncy.world" + ], + "nativeCurrency": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "infoURL": "https://fncyscan.fncy.world", + "shortName": "FNCY", + "chainId": 73, + "networkId": 73, + "icon": "fncy", + "explorers": [ + { + "name": "fncy scan", + "url": "https://fncyscan.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } + ] + }, + { + "name": "Decimal Smart Chain Mainnet", + "chain": "DSC", + "rpc": [ + "https://node.decimalchain.com/web3" + ], + "faucets": [], + "nativeCurrency": { + "name": "Decimal", + "symbol": "DEL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://decimalchain.com", + "shortName": "DSC", + "chainId": 75, + "networkId": 75, + "icon": "dsc", + "explorers": [ + { + "name": "DSC Explorer Mainnet", + "url": "https://explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dehvo", + "chain": "Dehvo", + "rpc": [ + "https://connect.dehvo.com", + "https://rpc.dehvo.com", + "https://rpc1.dehvo.com", + "https://rpc2.dehvo.com" + ], + "faucets": [ + "https://buy.dehvo.com" + ], + "nativeCurrency": { + "name": "Dehvo", + "symbol": "Deh", + "decimals": 18 + }, + "infoURL": "https://dehvo.com", + "shortName": "deh", + "chainId": 113, + "networkId": 113, + "slip44": 714, + "explorers": [ + { + "name": "Dehvo Explorer", + "url": "https://explorer.dehvo.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Flare Testnet Coston2", + "chain": "FLR", + "icon": "coston2", + "rpc": [ + "https://coston2-api.flare.network/ext/bc/C/rpc" + ], + "faucets": [ + "https://coston2-faucet.towolabs.com" + ], + "nativeCurrency": { + "name": "Coston2 Flare", + "symbol": "C2FLR", + "decimals": 18 + }, + "infoURL": "https://flare.xyz", + "shortName": "c2flr", + "chainId": 114, + "networkId": 114, + "explorers": [ + { + "name": "blockscout", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeBank Testnet", + "chain": "DeBank", + "rpc": [], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://debank.com", + "shortName": "debank-testnet", + "chainId": 115, + "networkId": 115, + "explorers": [] + }, + { + "name": "DeBank Mainnet", + "chain": "DeBank", + "rpc": [], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://debank.com", + "shortName": "debank-mainnet", + "chainId": 116, + "networkId": 116, + "explorers": [] + }, + { + "name": "Arcology Testnet", + "chain": "Arcology", + "icon": "acolicon", + "rpc": [ + "https://testnet.arcology.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Arcology Coin", + "symbol": "Acol", + "decimals": 18 + }, + "infoURL": "https://arcology.network/", + "shortName": "arcology", + "chainId": 118, + "networkId": 118, + "explorers": [ + { + "name": "arcology", + "url": "https://testnet.arcology.network/explorer", + "standard": "none" + } + ] + }, + { + "name": "ENULS Mainnet", + "chain": "ENULS", + "rpc": [ + "https://evmapi.nuls.io", + "https://evmapi2.nuls.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "NULS", + "symbol": "NULS", + "decimals": 18 + }, + "infoURL": "https://nuls.io", + "shortName": "enuls", + "chainId": 119, + "networkId": 119, + "icon": "enuls", + "explorers": [ + { + "name": "enulsscan", + "url": "https://evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } + ] + }, + { + "name": "ENULS Testnet", + "chain": "ENULS", + "rpc": [ + "https://beta.evmapi.nuls.io", + "https://beta.evmapi2.nuls.io" + ], + "faucets": [ + "http://faucet.nuls.io" + ], + "nativeCurrency": { + "name": "NULS", + "symbol": "NULS", + "decimals": 18 + }, + "infoURL": "https://nuls.io", + "shortName": "enulst", + "chainId": 120, + "networkId": 120, + "icon": "enuls", + "explorers": [ + { + "name": "enulsscan", + "url": "https://beta.evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } + ] + }, + { + "name": "Realchain Mainnet", + "chain": "REAL", + "rpc": [ + "https://rcl-dataseed1.rclsidechain.com", + "https://rcl-dataseed2.rclsidechain.com", + "https://rcl-dataseed3.rclsidechain.com", + "https://rcl-dataseed4.rclsidechain.com", + "wss://rcl-dataseed1.rclsidechain.com/v1/", + "wss://rcl-dataseed2.rclsidechain.com/v1/", + "wss://rcl-dataseed3.rclsidechain.com/v1/", + "wss://rcl-dataseed4.rclsidechain.com/v1/" + ], + "faucets": [ + "https://faucet.rclsidechain.com" + ], + "nativeCurrency": { + "name": "Realchain", + "symbol": "REAL", + "decimals": 18 + }, + "infoURL": "https://www.rclsidechain.com/", + "shortName": "REAL", + "chainId": 121, + "networkId": 121, + "slip44": 714, + "explorers": [ + { + "name": "realscan", + "url": "https://rclscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Alyx Chain Testnet", + "chain": "Alyx Chain Testnet", + "rpc": [ + "https://testnet-rpc.alyxchain.com" + ], + "faucets": [ + "https://faucet.alyxchain.com" + ], + "nativeCurrency": { + "name": "Alyx Testnet Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "infoURL": "https://www.alyxchain.com", + "shortName": "AlyxTestnet", + "chainId": 135, + "networkId": 135, + "explorers": [ + { + "name": "alyx testnet scan", + "url": "https://testnet.alyxscan.com", + "standard": "EIP3091" + } + ], + "icon": "alyx" + }, + { + "name": "PHI Network v2", + "chain": "PHI", + "rpc": [ + "https://connect.phi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "PHI", + "symbol": "Φ", + "decimals": 18 + }, + "infoURL": "https://phi.network", + "shortName": "PHI", + "chainId": 144, + "networkId": 144, + "icon": "phi", + "explorers": [ + { + "name": "Phiscan", + "url": "https://phiscan.com", + "icon": "phi", + "standard": "none" + } + ] + }, + { + "name": "Armonia Eva Chain Mainnet", + "chain": "Eva", + "rpc": [ + "https://evascan.io/api/eth-rpc/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 + }, + "infoURL": "https://amax.network", + "shortName": "eva", + "chainId": 160, + "networkId": 160, + "status": "incubating" + }, + { + "name": "Armonia Eva Chain Testnet", + "chain": "Wall-e", + "rpc": [ + "https://testnet.evascan.io/api/eth-rpc/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 + }, + "infoURL": "https://amax.network", + "shortName": "wall-e", + "chainId": 161, + "networkId": 161, + "explorers": [ + { + "name": "blockscout - evascan", + "url": "https://testnet.evascan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Atoshi Testnet", + "chain": "ATOSHI", + "icon": "atoshi", + "rpc": [ + "https://node.atoshi.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATOSHI", + "symbol": "ATOS", + "decimals": 18 + }, + "infoURL": "https://atoshi.org", + "shortName": "atoshi", + "chainId": 167, + "networkId": 167, + "explorers": [ + { + "name": "atoshiscan", + "url": "https://scan.atoverse.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "MOAC testnet", + "chain": "MOAC", + "rpc": [ + "https://gateway.moac.io/testnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "infoURL": "https://moac.io", + "shortName": "moactest", + "chainId": 201, + "networkId": 201, + "explorers": [ + { + "name": "moac testnet explorer", + "url": "https://testnet.moac.io", + "standard": "none" + } + ] + }, + { + "name": "MAPO Makalu", + "title": "MAPO Testnet Makalu", + "chain": "MAPO", + "rpc": [ + "https://testnet-rpc.maplabs.io" + ], + "faucets": [ + "https://faucet.mapprotocol.io" + ], + "nativeCurrency": { + "name": "Makalu MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "infoURL": "https://mapprotocol.io/", + "shortName": "makalu", + "chainId": 212, + "networkId": 212, + "explorers": [ + { + "name": "maposcan", + "url": "https://testnet.maposcan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "SiriusNet V2", + "chain": "SIN2", + "faucets": [], + "rpc": [ + "https://rpc2.siriusnet.io" + ], + "icon": "siriusnet", + "nativeCurrency": { + "name": "MCD", + "symbol": "MCD", + "decimals": 18 + }, + "infoURL": "https://siriusnet.io", + "shortName": "SIN2", + "chainId": 217, + "networkId": 217, + "explorers": [ + { + "name": "siriusnet explorer", + "url": "https://scan.siriusnet.io", + "standard": "none" + } + ] + }, + { + "name": "Oasys Mainnet", + "chain": "Oasys", + "icon": "oasys", + "rpc": [ + "https://rpc.mainnet.oasys.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://oasys.games", + "shortName": "OAS", + "chainId": 248, + "networkId": 248, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.oasys.games", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hedera Mainnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": [ + "https://mainnet.hashio.io/api" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 8 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-mainnet", + "chainId": 295, + "networkId": 295, + "slip44": 3030, + "explorers": [ + { + "name": "HashScan", + "url": "https://hashscan.io/mainnet/dashboard", + "standard": "none" + }, + { + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" + }, + { + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" + }, + { + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" + }, + { + "name": "Ledger Works Explore", + "url": "https://explore.lworks.io", + "standard": "none" + } + ] + }, + { + "name": "Hedera Testnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": [ + "https://testnet.hashio.io/api" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://portal.hedera.com" + ], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 8 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-testnet", + "chainId": 296, + "networkId": 296, + "slip44": 3030, + "explorers": [ + { + "name": "HashScan", + "url": "https://hashscan.io/testnet/dashboard", + "standard": "none" + }, + { + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" + }, + { + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" + }, + { + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" + }, + { + "name": "Ledger Works Explore", + "url": "https://explore.lworks.io", + "standard": "none" + } + ] + }, + { + "name": "Hedera Previewnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": [ + "https://previewnet.hashio.io/api" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://portal.hedera.com" + ], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 8 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-previewnet", + "chainId": 297, + "networkId": 297, + "slip44": 3030, + "explorers": [ + { + "name": "HashScan", + "url": "https://hashscan.io/previewnet/dashboard", + "standard": "none" + } + ] + }, + { + "name": "Hedera Localnet", + "chain": "Hedera", + "icon": "hedera", + "rpc": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 8 + }, + "infoURL": "https://hedera.com", + "shortName": "hedera-localnet", + "chainId": 298, + "networkId": 298, + "slip44": 3030, + "explorers": [] + }, + { + "name": "Bobaopera", + "chain": "Bobaopera", + "rpc": [ + "https://bobaopera.boba.network", + "wss://wss.bobaopera.boba.network", + "https://replica.bobaopera.boba.network", + "wss://replica-wss.bobaopera.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobaopera", + "chainId": 301, + "networkId": 301, + "explorers": [ + { + "name": "Bobaopera block explorer", + "url": "https://blockexplorer.bobaopera.boba.network", + "standard": "none" + } + ] + }, + { + "name": "Omax Mainnet", + "chain": "OMAX Chain", + "rpc": [ + "https://mainapi.omaxray.com" + ], + "faucets": [ + "https://faucet.omaxray.com/" + ], + "nativeCurrency": { + "name": "OMAX COIN", + "symbol": "OMAX", + "decimals": 18 + }, + "infoURL": "https://www.omaxcoin.com/", + "shortName": "omax", + "chainId": 311, + "networkId": 311, + "icon": "omaxchain", + "explorers": [ + { + "name": "Omax Chain Explorer", + "url": "https://omaxray.com", + "icon": "omaxray", + "standard": "EIP3091" + } + ] + }, + { + "name": "Filecoin - Mainnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.node.glif.io/", + "https://rpc.ankr.com/filecoin" + ], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin", + "chainId": 314, + "networkId": 314, + "slip44": 461, + "explorers": [ + { + "name": "Filfox", + "url": "https://filfox.info/en", + "standard": "none" + }, + { + "name": "Filscan", + "url": "https://filscan.io", + "standard": "none" + }, + { + "name": "Filscout", + "url": "https://filscout.io/en", + "standard": "none" + } + ] + }, + { + "name": "Consta Testnet", + "chain": "tCNT", + "rpc": [ + "https://rpc-testnet.theconsta.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "tCNT", + "symbol": "tCNT", + "decimals": 18 + }, + "infoURL": "http://theconsta.com", + "shortName": "tCNT", + "chainId": 371, + "networkId": 371, + "icon": "constachain", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-testnet.theconsta.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "HyperonChain TestNet", + "chain": "HPN", + "icon": "hyperonchain", + "rpc": [ + "https://testnet-rpc.hyperonchain.com" + ], + "faucets": [ + "https://faucet.hyperonchain.com" + ], + "nativeCurrency": { + "name": "HyperonChain", + "symbol": "HPN", + "decimals": 18 + }, + "infoURL": "https://docs.hyperonchain.com", + "shortName": "hpn", + "chainId": 400, + "networkId": 400, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.hyperonchain.com", + "icon": "hyperonchain", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zeeth Chain", + "chain": "ZeethChain", + "rpc": [ + "https://rpc.zeeth.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "zeeth", + "chainId": 427, + "networkId": 427, + "explorers": [ + { + "name": "Zeeth Explorer", + "url": "https://explorer.zeeth.io", + "standard": "none" + } + ] + }, + { + "name": "Frenchain Testnet", + "chain": "tfren", + "rpc": [ + "https://rpc-01tn.frenchain.app" + ], + "faucets": [], + "nativeCurrency": { + "name": "tFREN", + "symbol": "FtREN", + "decimals": 18 + }, + "infoURL": "https://frenchain.app", + "shortName": "tFREN", + "chainId": 444, + "networkId": 444, + "icon": "fren", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } + ] + }, + { + "name": "Camino C-Chain", + "chain": "CAM", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "infoURL": "https://camino.foundation/", + "shortName": "Camino", + "chainId": 500, + "networkId": 1000, + "icon": "camino", + "explorers": [ + { + "name": "blockexplorer", + "url": "https://explorer.camino.foundation/mainnet", + "standard": "none" + } + ] + }, + { + "name": "Columbus Test Network", + "chain": "CAM", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "infoURL": "https://camino.foundation/", + "shortName": "Columbus", + "chainId": 501, + "networkId": 1001, + "icon": "camino", + "explorers": [ + { + "name": "blockexplorer", + "url": "https://explorer.camino.foundation", + "standard": "none" + } + ] + }, + { + "name": "Gear Zero Network Mainnet", + "chain": "GearZero", + "rpc": [ + "https://gzn.linksme.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "infoURL": "https://token.gearzero.ca/mainnet", + "shortName": "gz-mainnet", + "chainId": 516, + "networkId": 516, + "slip44": 516, + "explorers": [] + }, + { + "name": "Firechain Mainnet", + "chain": "FIRE", + "icon": "firechain", + "rpc": [ + "https://mainnet.rpc1.thefirechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "infoURL": "https://thefirechain.com", + "shortName": "fire", + "chainId": 529, + "networkId": 529, + "explorers": [], + "status": "incubating" + }, + { + "name": "Dogechain Testnet", + "chain": "DC", + "icon": "dogechain", + "rpc": [ + "https://rpc-testnet.dogechain.dog" + ], + "faucets": [ + "https://faucet.dogechain.dog" + ], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dct", + "chainId": 568, + "networkId": 568, + "explorers": [ + { + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metis Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.gateway.metisdevops.link" + ], + "faucets": [ + "https://goerli.faucet.metisdevops.link" + ], + "nativeCurrency": { + "name": "Goerli Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-goerli", + "chainId": 599, + "networkId": 599, + "explorers": [ + { + "name": "blockscout", + "url": "https://goerli.explorer.metisdevops.link", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://testnet-bridge.metis.io" + } + ] + } + }, + { + "name": "Graphlinq Blockchain Mainnet", + "chain": "GLQ Blockchain", + "rpc": [ + "https://glq-dataseed.graphlinq.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GLQ", + "symbol": "GLQ", + "decimals": 18 + }, + "infoURL": "https://graphlinq.io", + "shortName": "glq", + "chainId": 614, + "networkId": 614, + "explorers": [ + { + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" + } + ] + }, + { + "name": "Canto Testnet", + "chain": "Canto Tesnet", + "rpc": [ + "https://eth.plexnode.wtf/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "tcanto", + "chainId": 740, + "networkId": 740, + "explorers": [ + { + "name": "Canto Tesnet Explorer (Neobase)", + "url": "http://testnet-explorer.canto.neobase.one", + "standard": "none" + } + ] + }, + { + "name": "Vention Smart Chain Testnet", + "chain": "VSCT", + "icon": "ventionTestnet", + "rpc": [ + "https://node-testnet.vention.network" + ], + "faucets": [ + "https://faucet.vention.network" + ], + "nativeCurrency": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "infoURL": "https://testnet.ventionscan.io", + "shortName": "vsct", + "chainId": 741, + "networkId": 741, + "explorers": [ + { + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "QL1", + "chain": "QOM", + "status": "incubating", + "rpc": [ + "https://rpc.qom.one" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "infoURL": "https://qom.one", + "shortName": "qom", + "chainId": 766, + "networkId": 766, + "icon": "qom", + "explorers": [ + { + "name": "QL1 Mainnet Explorer", + "url": "https://mainnet.qom.one", + "icon": "qom", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lucid Blockchain", + "chain": "Lucid Blockchain", + "icon": "lucid", + "rpc": [ + "https://rpc.lucidcoin.io" + ], + "faucets": [ + "https://faucet.lucidcoin.io" + ], + "nativeCurrency": { + "name": "LUCID", + "symbol": "LUCID", + "decimals": 18 + }, + "infoURL": "https://lucidcoin.io", + "shortName": "LUCID", + "chainId": 800, + "networkId": 800, + "explorers": [ + { + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" + } + ] + }, + { + "name": "Qitmeer", + "chain": "MEER", + "rpc": [ + "https://qng.rpc.qitmeer.io", + "https://rpc.woowow.io", + "https://mainnet.meerlabs.com", + "https://rpc.dimai.ai", + "https://evm-dataseed1.meerscan.io", + "https://evm-dataseed2.meerscan.io", + "https://evm-dataseed3.meerscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meer", + "chainId": 813, + "networkId": 813, + "slip44": 813, + "icon": "meer", + "explorers": [ + { + "name": "meerscan", + "url": "https://qng.meerscan.io", + "standard": "none" + }, + { + "name": "QNG Mainnet Qitmeer Explorer", + "url": "https://qng.qitmneer.io", + "standard": "none" + } + ] + }, + { + "name": "Taraxa Mainnet", + "chain": "Tara", + "icon": "taraxa", + "rpc": [ + "https://rpc.mainnet.taraxa.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "infoURL": "https://taraxa.io", + "shortName": "tara", + "chainId": 841, + "networkId": 841, + "explorers": [ + { + "name": "Taraxa Explorer", + "url": "https://explorer.mainnet.taraxa.io", + "standard": "none" + } + ] + }, + { + "name": "Taraxa Testnet", + "chain": "Tara", + "icon": "taraxa", + "rpc": [ + "https://rpc.testnet.taraxa.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "infoURL": "https://taraxa.io", + "shortName": "taratest", + "chainId": 842, + "networkId": 842, + "explorers": [ + { + "name": "Taraxa Explorer", + "url": "https://explorer.testnet.taraxa.io", + "standard": "none" + } + ] + }, + { + "name": "Zeeth Chain Dev", + "chain": "ZeethChainDev", + "rpc": [ + "https://rpc.dev.zeeth.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "zeethdev", + "chainId": 859, + "networkId": 859, + "explorers": [ + { + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", + "standard": "none" + } + ] + }, + { + "name": "Fantasia Chain Mainnet", + "chain": "FSC", + "rpc": [ + "https://mainnet-data1.fantasiachain.com/", + "https://mainnet-data2.fantasiachain.com/", + "https://mainnet-data3.fantasiachain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FST", + "symbol": "FST", + "decimals": 18 + }, + "infoURL": "https://fantasia.technology/", + "shortName": "FSCMainnet", + "chainId": 868, + "networkId": 868, + "explorers": [ + { + "name": "FSCScan", + "url": "https://explorer.fantasiachain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bandai Namco Research Verse Mainnet", + "chain": "Bandai Namco Research Verse", + "icon": "bnken", + "rpc": [ + "https://rpc.main.oasvrs.bnken.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.bandainamco-mirai.com/en/", + "shortName": "BNKEN", + "chainId": 876, + "networkId": 876, + "explorers": [ + { + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Dexit Network", + "chain": "DXT", + "rpc": [ + "https://dxt.dexit.network" + ], + "faucets": [ + "https://faucet.dexit.network" + ], + "nativeCurrency": { + "name": "Dexit network", + "symbol": "DXT", + "decimals": 18 + }, + "infoURL": "https://dexit.network", + "shortName": "DXT", + "chainId": 877, + "networkId": 877, + "explorers": [ + { + "name": "dxtscan", + "url": "https://dxtscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rinia Testnet", + "chain": "FIRE", + "icon": "rinia", + "rpc": [ + "https://rinia.rpc1.thefirechain.com" + ], + "faucets": [ + "https://faucet.thefirechain.com" + ], + "nativeCurrency": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "infoURL": "https://thefirechain.com", + "shortName": "tfire", + "chainId": 917, + "networkId": 917, + "explorers": [], + "status": "incubating" + }, + { + "name": "muNode Testnet", + "chain": "munode", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://munode.dev/", + "shortName": "munode", + "chainId": 956, + "networkId": 956 + }, + { + "name": "Oort Mainnet", + "chain": "Oort Mainnet", + "rpc": [ + "https://rpc.oortech.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "ccn", + "chainId": 970, + "networkId": 970, + "icon": "ccn" + }, + { + "name": "Oort Huygens", + "chain": "Huygens", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "Huygens", + "chainId": 971, + "networkId": 971, + "icon": "ccn" + }, + { + "name": "Oort Ascraeus", + "title": "Oort Ascraeus", + "chain": "Ascraeus", + "rpc": [ + "https://ascraeus-rpc.oortech.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCNA", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "Ascraeus", + "chainId": 972, + "networkId": 972, + "icon": "ccn" + }, + { + "name": "Memo Smart Chain Mainnet", + "chain": "MEMO", + "rpc": [ + "https://chain.metamemo.one:8501", + "wss://chain.metamemo.one:16801" + ], + "faucets": [ + "https://faucet.metamemo.one/" + ], + "nativeCurrency": { + "name": "Memo", + "symbol": "CMEMO", + "decimals": 18 + }, + "infoURL": "www.memolabs.org", + "shortName": "memochain", + "chainId": 985, + "networkId": 985, + "icon": "memo", + "explorers": [ + { + "name": "Memo Mainnet Explorer", + "url": "https://scan.metamemo.one:8080", + "icon": "memoscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "T-EKTA", + "title": "EKTA Testnet T-EKTA", + "chain": "T-EKTA", + "rpc": [ + "https://test.ekta.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "T-EKTA", + "symbol": "T-EKTA", + "decimals": 18 + }, + "infoURL": "https://www.ekta.io", + "shortName": "t-ekta", + "chainId": 1004, + "networkId": 1004, + "icon": "ekta", + "explorers": [ + { + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } + ] + }, + { + "name": "Proxy Network Testnet", + "chain": "Proxy Network", + "rpc": [ + "http://128.199.94.183:8041" + ], + "faucets": [], + "nativeCurrency": { + "name": "PRX", + "symbol": "PRX", + "decimals": 18 + }, + "infoURL": "https://theproxy.network", + "shortName": "prx", + "chainId": 1031, + "networkId": 1031, + "explorers": [ + { + "name": "proxy network testnet", + "url": "http://testnet-explorer.theproxy.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bronos Testnet", + "chain": "Bronos", + "rpc": [ + "https://evm-testnet.bronos.org" + ], + "faucets": [ + "https://faucet.bronos.org" + ], + "nativeCurrency": { + "name": "tBRO", + "symbol": "tBRO", + "decimals": 18 + }, + "infoURL": "https://bronos.org", + "shortName": "bronos-testnet", + "chainId": 1038, + "networkId": 1038, + "icon": "bronos", + "explorers": [ + { + "name": "Bronos Testnet Explorer", + "url": "https://tbroscan.bronos.org", + "standard": "none", + "icon": "bronos" + } + ] + }, + { + "name": "Bronos Mainnet", + "chain": "Bronos", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BRO", + "symbol": "BRO", + "decimals": 18 + }, + "infoURL": "https://bronos.org", + "shortName": "bronos-mainnet", + "chainId": 1039, + "networkId": 1039, + "icon": "bronos", + "explorers": [ + { + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", + "standard": "none", + "icon": "bronos" + } + ] + }, + { + "name": "MOAC mainnet", + "chain": "MOAC", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "infoURL": "https://moac.io", + "shortName": "moac", + "chainId": 1099, + "networkId": 1099, + "slip44": 314, + "explorers": [ + { + "name": "moac explorer", + "url": "https://explorer.moac.io", + "standard": "none" + } + ] + }, + { + "name": "WEMIX3.0 Mainnet", + "chain": "WEMIX", + "rpc": [ + "https://api.wemix.com", + "wss://ws.wemix.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "WEMIX", + "symbol": "WEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "wemix", + "chainId": 1111, + "networkId": 1111, + "explorers": [ + { + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "WEMIX3.0 Testnet", + "chain": "TWEMIX", + "rpc": [ + "https://api.test.wemix.com", + "wss://ws.test.wemix.com" + ], + "faucets": [ + "https://wallet.test.wemix.com/faucet" + ], + "nativeCurrency": { + "name": "TestnetWEMIX", + "symbol": "tWEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "twemix", + "chainId": 1112, + "networkId": 1112, + "explorers": [ + { + "name": "WEMIX Testnet Microscope", + "url": "https://microscope.test.wemix.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Core Blockchain Testnet", + "chain": "Core", + "icon": "core", + "rpc": [ + "https://rpc.test.btcs.network/" + ], + "faucets": [ + "https://scan.test.btcs.network/faucet" + ], + "nativeCurrency": { + "name": "Core Blockchain Testnet Native Token", + "symbol": "tCORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "tcore", + "chainId": 1115, + "networkId": 1115, + "explorers": [ + { + "name": "Core Scan Testnet", + "url": "https://scan.test.btcs.network", + "icon": "core", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dogcoin Mainnet", + "chain": "DOGS", + "icon": "dogs", + "rpc": [ + "https://mainnet-rpc.dogcoin.network" + ], + "faucets": [ + "https://faucet.dogcoin.network" + ], + "nativeCurrency": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "infoURL": "https://dogcoin.network", + "shortName": "DOGSm", + "chainId": 1117, + "networkId": 1117, + "explorers": [ + { + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeFiChain EVM Network Mainnet", + "chain": "defichain-evm", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com/", + "shortName": "DFI", + "chainId": 1130, + "networkId": 1130, + "slip44": 1130, + "icon": "defichain-network", + "explorers": [] + }, + { + "name": "DeFiChain EVM Network Testnet", + "chain": "defichain-evm-testnet", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://meta.defichain.com/", + "shortName": "DFI-T", + "chainId": 1131, + "networkId": 1131, + "icon": "defichain-network", + "explorers": [] + }, + { + "name": "AmStar Testnet", + "chain": "AmStar", + "icon": "amstar", + "rpc": [ + "https://testnet-rpc.amstarscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "infoURL": "https://sinso.io", + "shortName": "ASARt", + "chainId": 1138, + "networkId": 1138, + "explorers": [ + { + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Smart Host Teknoloji TESTNET", + "chain": "SHT", + "rpc": [ + "https://s2.tl.web.tr:4041" + ], + "faucets": [], + "nativeCurrency": { + "name": "Smart Host Teknoloji TESTNET", + "symbol": "tSHT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://smart-host.com.tr", + "shortName": "sht", + "chainId": 1177, + "networkId": 1177, + "icon": "smarthost", + "explorers": [ + { + "name": "Smart Host Teknoloji TESTNET Explorer", + "url": "https://s2.tl.web.tr:4000", + "icon": "smarthost", + "standard": "EIP3091" + } + ] + }, + { + "name": "Exzo Network Mainnet", + "chain": "EXZO", + "icon": "exzo", + "rpc": [ + "https://mainnet.exzo.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "Exzo", + "symbol": "XZO", + "decimals": 18 + }, + "infoURL": "https://exzo.network", + "shortName": "xzo", + "chainId": 1229, + "networkId": 1229, + "explorers": [ + { + "name": "blockscout", + "url": "https://exzoscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ultron Testnet", + "chain": "Ultron", + "icon": "ultron", + "rpc": [ + "https://ultron-dev.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UltronTestnet", + "chainId": 1230, + "networkId": 1230, + "explorers": [ + { + "name": "Ultron Testnet Explorer", + "url": "https://explorer.ultron-dev.io", + "icon": "ultron", + "standard": "none" + } + ] + }, + { + "name": "Ultron Mainnet", + "chain": "Ultron", + "icon": "ultron", + "rpc": [ + "https://ultron-rpc.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UtronMainnet", + "chainId": 1231, + "networkId": 1231, + "explorers": [ + { + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" + } + ] + }, + { + "name": "Step Network", + "title": "Step Main Network", + "chain": "STEP", + "icon": "step", + "rpc": [ + "https://rpc.step.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "infoURL": "https://step.network", + "shortName": "step", + "chainId": 1234, + "networkId": 1234, + "explorers": [ + { + "name": "StepScan", + "url": "https://stepscan.io", + "icon": "step", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-43114", + "bridges": [ + { + "url": "https://bridge.step.network" + } + ] + } + }, + { + "name": "CIC Chain Testnet", + "chain": "CICT", + "rpc": [ + "https://testapi.cicscan.com" + ], + "faucets": [ + "https://cicfaucet.com" + ], + "nativeCurrency": { + "name": "Crazy Internet Coin", + "symbol": "CICT", + "decimals": 18 + }, + "infoURL": "https://www.cicchain.net", + "shortName": "CICT", + "chainId": 1252, + "networkId": 1252, + "icon": "cicchain", + "explorers": [ + { + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bobabeam", + "chain": "Bobabeam", + "rpc": [ + "https://bobabeam.boba.network", + "wss://wss.bobabeam.boba.network", + "https://replica.bobabeam.boba.network", + "wss://replica-wss.bobabeam.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabeam", + "chainId": 1294, + "networkId": 1294, + "explorers": [ + { + "name": "Bobabeam block explorer", + "url": "https://blockexplorer.bobabeam.boba.network", + "standard": "none" + } + ] + }, + { + "name": "Dos Fuji Subnet", + "chain": "DOS", + "rpc": [ + "https://test.doschain.com/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dos Native Token", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "http://doschain.io/", + "shortName": "DOS", + "chainId": 1311, + "networkId": 1311, + "explorers": [ + { + "name": "dos-testnet", + "url": "https://test.doscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Alyx Mainnet", + "chain": "ALYX", + "rpc": [ + "https://rpc.alyxchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Alyx Chain Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "infoURL": "https://www.alyxchain.com", + "shortName": "alyx", + "chainId": 1314, + "networkId": 1314, + "explorers": [ + { + "name": "alyxscan", + "url": "https://www.alyxscan.com", + "standard": "EIP3091" + } + ], + "icon": "alyx" + }, + { + "name": "Elysium Testnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Elysium", + "rpc": [ + "https://elysium-test-rpc.vulcanforged.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "infoURL": "https://elysiumscan.vulcanforged.com", + "shortName": "ELST", + "chainId": 1338, + "networkId": 1338, + "explorers": [ + { + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" + } + ] + }, + { + "name": "Elysium Mainnet", + "title": "An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged", + "chain": "Elysium", + "rpc": [ + "https://elysium-rpc.vulcanforged.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "infoURL": "https://elysiumscan.vulcanforged.com", + "shortName": "ELSM", + "chainId": 1339, + "networkId": 1339, + "explorers": [ + { + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" + } + ] + }, + { + "name": "CIC Chain Mainnet", + "chain": "CIC", + "rpc": [ + "https://xapi.cicscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crazy Internet Coin", + "symbol": "CIC", + "decimals": 18 + }, + "infoURL": "https://www.cicchain.net", + "shortName": "CIC", + "chainId": 1353, + "networkId": 1353, + "icon": "cicchain", + "explorers": [ + { + "name": "CICscan", + "url": "https://cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } + ] + }, + { + "name": "AmStar Mainnet", + "chain": "AmStar", + "icon": "amstar", + "rpc": [ + "https://mainnet-rpc.amstarscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "infoURL": "https://sinso.io", + "shortName": "ASAR", + "chainId": 1388, + "networkId": 1388, + "explorers": [ + { + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Polygon zkEVM Testnet old", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "zkevmtest", + "chainId": 1402, + "networkId": 1402, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ], + "status": "deprecated" + }, + { + "name": "Polygon zkEVM Testnet", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [ + "https://rpc.public.zkevm-test.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "testnet-zkEVM-mango", + "chainId": 1422, + "networkId": 1422, + "explorers": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ctex Scan Blockchain", + "chain": "Ctex Scan Blockchain", + "icon": "ctex", + "rpc": [ + "https://mainnet-rpc.ctexscan.com/" + ], + "faucets": [ + "https://faucet.ctexscan.com" + ], + "nativeCurrency": { + "name": "CTEX", + "symbol": "CTEX", + "decimals": 18 + }, + "infoURL": "https://ctextoken.io", + "shortName": "CTEX", + "chainId": 1455, + "networkId": 1455, + "explorers": [ + { + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" + } + ] + }, + { + "name": "Beagle Messaging Chain", + "chain": "BMC", + "rpc": [ + "https://beagle.chat/eth" + ], + "faucets": [ + "https://faucet.beagle.chat/" + ], + "nativeCurrency": { + "name": "Beagle", + "symbol": "BG", + "decimals": 18 + }, + "infoURL": "https://beagle.chat/", + "shortName": "beagle", + "chainId": 1515, + "networkId": 1515, + "explorers": [ + { + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", + "standard": "EIP3091" + } + ] + }, + { + "name": "Horizen Yuma Testnet", + "shortName": "Yuma", + "chain": "Yuma", + "icon": "eon", + "rpc": [ + "https://yuma-testnet.horizenlabs.io/ethv1" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://yuma-testnet-faucet.horizen.io" + ], + "nativeCurrency": { + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 1662, + "networkId": 1662, + "slip44": 121, + "explorers": [ + { + "name": "Yuma Testnet Block Explorer", + "url": "https://yuma-explorer.horizen.io", + "icon": "eon", + "standard": "EIP3091" + } + ] + }, + { + "name": "Anytype EVM Chain", + "chain": "ETH", + "icon": "any", + "rpc": [ + "https://geth.anytype.io" + ], + "faucets": [ + "https://evm.anytype.io/faucet" + ], + "nativeCurrency": { + "name": "ANY", + "symbol": "ANY", + "decimals": 18 + }, + "infoURL": "https://evm.anytype.io", + "shortName": "AnytypeChain", + "chainId": 1701, + "networkId": 1701, + "explorers": [ + { + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": "any", + "standard": "EIP3091" + } + ] + }, + { + "name": "TBSI Mainnet", + "title": "Thai Blockchain Service Infrastructure Mainnet", + "chain": "TBSI", + "rpc": [ + "https://rpc.blockchain.or.th" + ], + "faucets": [], + "nativeCurrency": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "infoURL": "https://blockchain.or.th", + "shortName": "TBSI", + "chainId": 1707, + "networkId": 1707 + }, + { + "name": "TBSI Testnet", + "title": "Thai Blockchain Service Infrastructure Testnet", + "chain": "TBSI", + "rpc": [ + "https://rpc.testnet.blockchain.or.th" + ], + "faucets": [ + "https://faucet.blockchain.or.th" + ], + "nativeCurrency": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "infoURL": "https://blockchain.or.th", + "shortName": "tTBSI", + "chainId": 1708, + "networkId": 1708 + }, + { + "name": "Kerleano", + "title": "Proof of Carbon Reduction testnet", + "chain": "CRC", + "status": "active", + "rpc": [ + "https://cacib-saturn-test.francecentral.cloudapp.azure.com", + "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" + ], + "faucets": [ + "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" + ], + "nativeCurrency": { + "name": "Carbon Reduction Coin", + "symbol": "CRC", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum-pocr/kerleano", + "shortName": "kerleano", + "chainId": 1804, + "networkId": 1804, + "explorers": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/kerleano", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rabbit Analog Testnet Chain", + "chain": "rAna", + "icon": "rabbit", + "rpc": [ + "https://rabbit.analog-rpc.com" + ], + "faucets": [ + "https://analogfaucet.com" + ], + "nativeCurrency": { + "name": "Rabbit Analog Test Chain Native Token ", + "symbol": "rAna", + "decimals": 18 + }, + "infoURL": "https://rabbit.analogscan.com", + "shortName": "rAna", + "chainId": 1807, + "networkId": 1807, + "explorers": [ + { + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } + ] + }, + { + "name": "Gitshock Cartenz Testnet", + "chain": "Gitshock Cartenz", + "icon": "gitshockchain", + "rpc": [ + "https://rpc.cartenz.works" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Gitshock Cartenz", + "symbol": "tGTFX", + "decimals": 18 + }, + "infoURL": "https://gitshock.com", + "shortName": "gitshockchain", + "chainId": 1881, + "networkId": 1881, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.cartenz.works", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitcichain Mainnet", + "chain": "BITCI", + "icon": "bitci", + "rpc": [ + "https://rpc.bitci.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitci", + "symbol": "BITCI", + "decimals": 18 + }, + "infoURL": "https://www.bitcichain.com", + "shortName": "bitci", + "chainId": 1907, + "networkId": 1907, + "explorers": [ + { + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitcichain Testnet", + "chain": "TBITCI", + "icon": "bitci", + "rpc": [ + "https://testnet.bitcichain.com" + ], + "faucets": [ + "https://faucet.bitcichain.com" + ], + "nativeCurrency": { + "name": "Test Bitci", + "symbol": "TBITCI", + "decimals": 18 + }, + "infoURL": "https://www.bitcichain.com", + "shortName": "tbitci", + "chainId": 1908, + "networkId": 1908, + "explorers": [ + { + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "ONUS Chain Testnet", + "title": "ONUS Chain Testnet", + "chain": "onus", + "rpc": [ + "https://rpc-testnet.onuschain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "infoURL": "https://onuschain.io", + "shortName": "onus-testnet", + "chainId": 1945, + "networkId": 1945, + "explorers": [ + { + "name": "Onus explorer testnet", + "url": "https://explorer-testnet.onuschain.io", + "icon": "onus", + "standard": "EIP3091" + } + ] + }, + { + "name": "D-Chain Mainnet", + "chain": "D-Chain", + "rpc": [ + "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" + ], + "nativeCurrency": { + "name": "DOINX", + "symbol": "DOINX", + "decimals": 18 + }, + "shortName": "dchain-mainnet", + "chainId": 1951, + "networkId": 1951, + "icon": "dchain", + "faucets": [], + "infoURL": "" + }, + { + "name": "Atelier", + "title": "Atelier Test Network", + "chain": "ALTR", + "rpc": [ + "https://1971.network/atlr", + "wss://1971.network/atlr" + ], + "faucets": [], + "nativeCurrency": { + "name": "ATLR", + "symbol": "ATLR", + "decimals": 18 + }, + "infoURL": "https://1971.network/", + "shortName": "atlr", + "chainId": 1971, + "networkId": 1971, + "icon": "atlr" + }, + { + "name": "ONUS Chain Mainnet", + "title": "ONUS Chain Mainnet", + "chain": "onus", + "rpc": [ + "https://rpc.onuschain.io", + "wss://ws.onuschain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "infoURL": "https://onuschain.io", + "shortName": "onus-mainnet", + "chainId": 1975, + "networkId": 1975, + "explorers": [ + { + "name": "Onus explorer mainnet", + "url": "https://explorer.onuschain.io", + "icon": "onus", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ekta", + "chain": "EKTA", + "rpc": [ + "https://main.ekta.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "EKTA", + "symbol": "EKTA", + "decimals": 18 + }, + "infoURL": "https://www.ekta.io", + "shortName": "ekta", + "chainId": 1994, + "networkId": 1994, + "icon": "ekta", + "explorers": [ + { + "name": "ektascan", + "url": "https://ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } + ] + }, + { + "name": "edeXa Testnet", + "chain": "edeXa TestNetwork", + "rpc": [ + "https://testnet.edexa.com/rpc", + "https://io-dataseed1.testnet.edexa.io-market.com/rpc" + ], + "faucets": [ + "https://faucet.edexa.com/" + ], + "nativeCurrency": { + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 + }, + "infoURL": "https://edexa.com/", + "shortName": "edx", + "chainId": 1995, + "networkId": 1995, + "icon": "edexa", + "explorers": [ + { + "name": "edexa-testnet", + "url": "https://explorer.edexa.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dogechain Mainnet", + "chain": "DC", + "icon": "dogechain", + "rpc": [ + "https://rpc.dogechain.dog", + "https://rpc-us.dogechain.dog", + "https://rpc01.dogechain.dog" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dc", + "chainId": 2000, + "networkId": 2000, + "explorers": [ + { + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } + ] + }, + { + "name": "Milkomeda A1 Mainnet", + "chain": "milkALGO", + "icon": "milkomeda", + "rpc": [ + "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", + "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkALGO", + "symbol": "mALGO", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkALGO", + "chainId": 2002, + "networkId": 2002, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ] + }, + { + "name": "MainnetZ Mainnet", + "chain": "NetZ", + "icon": "mainnetz", + "rpc": [ + "https://mainnet-rpc.mainnetz.io" + ], + "faucets": [ + "https://faucet.mainnetz.io" + ], + "nativeCurrency": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "infoURL": "https://mainnetz.io", + "shortName": "NetZm", + "chainId": 2016, + "networkId": 2016, + "explorers": [ + { + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "PublicMint Devnet", + "title": "Public Mint Devnet", + "chain": "PublicMint", + "rpc": [ + "https://rpc.dev.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_dev", + "chainId": 2018, + "networkId": 2018, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "PublicMint Testnet", + "title": "Public Mint Testnet", + "chain": "PublicMint", + "rpc": [ + "https://rpc.tst.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_test", + "chainId": 2019, + "networkId": 2019, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "OriginTrail Parachain", + "chain": "OTP", + "rpc": [ + "https://astrosat.origintrail.network", + "wss://parachain-rpc.origin-trail.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OriginTrail Parachain Token", + "symbol": "OTP", + "decimals": 12 + }, + "infoURL": "https://parachain.origintrail.io", + "shortName": "otp", + "chainId": 2043, + "networkId": 2043 + }, + { + "name": "Stratos Testnet", + "chain": "STOS", + "rpc": [ + "https://web3-testnet-rpc.thestratos.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "infoURL": "https://www.thestratos.org", + "shortName": "stos-testnet", + "chainId": 2047, + "networkId": 2047, + "explorers": [ + { + "name": "Stratos EVM Explorer (Blockscout)", + "url": "https://web3-testnet-explorer.thestratos.org", + "standard": "none" + }, + { + "name": "Stratos Cosmos Explorer (BigDipper)", + "url": "https://big-dipper-dev.thestratos.org", + "standard": "none" + } + ] + }, + { + "name": "Stratos Mainnet", + "chain": "STOS", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "infoURL": "https://www.thestratos.org", + "shortName": "stos-mainnet", + "chainId": 2048, + "networkId": 2048, + "status": "incubating" + }, + { + "name": "Quokkacoin Mainnet", + "chain": "Qkacoin", + "rpc": [ + "https://rpc.qkacoin.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Qkacoin", + "symbol": "QKA", + "decimals": 18 + }, + "infoURL": "https://qkacoin.org", + "shortName": "QKA", + "chainId": 2077, + "networkId": 2077, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.qkacoin.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Exosama Network", + "chain": "EXN", + "rpc": [ + "https://rpc.exosama.com", + "wss://rpc.exosama.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "infoURL": "https://moonsama.com", + "shortName": "exn", + "chainId": 2109, + "networkId": 2109, + "slip44": 2109, + "icon": "exn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.exosama.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metaplayerone Mainnet", + "chain": "METAD", + "icon": "metad", + "rpc": [ + "https://rpc.metaplayer.one/" + ], + "faucets": [], + "nativeCurrency": { + "name": "METAD", + "symbol": "METAD", + "decimals": 18 + }, + "infoURL": "https://docs.metaplayer.one/", + "shortName": "Metad", + "chainId": 2122, + "networkId": 2122, + "explorers": [ + { + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": "metad", + "standard": "EIP3091" + } + ] + }, + { + "name": "BOSagora Mainnet", + "chain": "ETH", + "rpc": [ + "https://mainnet.bosagora.org", + "https://rpc.bosagora.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BOSAGORA", + "symbol": "BOA", + "decimals": 18 + }, + "infoURL": "https://docs.bosagora.org", + "shortName": "boa", + "chainId": 2151, + "networkId": 2151, + "icon": "agora", + "explorers": [ + { + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": "agora", + "standard": "EIP3091" + } + ] + }, + { + "name": "Findora Forge", + "chain": "Testnet-forge", + "rpc": [ + "https://prod-forge.prod.findora.org:8545/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "infoURL": "https://findora.org/", + "shortName": "findora-forge", + "chainId": 2154, + "networkId": 2154, + "explorers": [ + { + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitcoin EVM", + "chain": "Bitcoin EVM", + "rpc": [ + "https://connect.bitcoinevm.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "eBTC", + "decimals": 18 + }, + "infoURL": "https://bitcoinevm.com", + "shortName": "eBTC", + "chainId": 2203, + "networkId": 2203, + "icon": "ebtc", + "explorers": [ + { + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": "ebtc", + "standard": "none" + } + ] + }, + { + "name": "BOMB Chain", + "chain": "BOMB", + "rpc": [ + "https://rpc.bombchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BOMB Token", + "symbol": "BOMB", + "decimals": 18 + }, + "infoURL": "https://www.bombchain.com", + "shortName": "bomb", + "chainId": 2300, + "networkId": 2300, + "icon": "bomb", + "explorers": [ + { + "name": "bombscan", + "icon": "bomb", + "url": "https://bombscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arevia", + "chain": "Arevia", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Arev", + "symbol": "ARÉV", + "decimals": 18 + }, + "infoURL": "", + "shortName": "arevia", + "chainId": 2309, + "networkId": 2309, + "explorers": [], + "status": "incubating" + }, + { + "name": "Altcoinchain", + "chain": "mainnet", + "rpc": [ + "https://rpc0.altcoinchain.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Altcoin", + "symbol": "ALT", + "decimals": 18 + }, + "infoURL": "https://altcoinchain.org", + "shortName": "alt", + "chainId": 2330, + "networkId": 2330, + "icon": "altcoinchain", + "status": "active", + "explorers": [ + { + "name": "expedition", + "url": "http://expedition.altcoinchain.org", + "icon": "altcoinchain", + "standard": "none" + } + ] + }, + { + "name": "BOMB Chain Testnet", + "chain": "BOMB", + "rpc": [ + "https://bombchain-testnet.ankr.com/bas_full_rpc_1" + ], + "faucets": [ + "https://faucet.bombchain-testnet.ankr.com/" + ], + "nativeCurrency": { + "name": "BOMB Token", + "symbol": "tBOMB", + "decimals": 18 + }, + "infoURL": "https://www.bombmoney.com", + "shortName": "bombt", + "chainId": 2399, + "networkId": 2399, + "icon": "bomb", + "explorers": [ + { + "name": "bombscan-testnet", + "icon": "bomb", + "url": "https://explorer.bombchain-testnet.ankr.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "TCG Verse Mainnet", + "chain": "TCG Verse", + "icon": "tcg_verse", + "rpc": [ + "https://rpc.tcgverse.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://tcgverse.xyz/", + "shortName": "TCGV", + "chainId": 2400, + "networkId": 2400, + "explorers": [ + { + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "XODEX", + "chain": "XODEX", + "rpc": [ + "https://mainnet.xo-dex.com/rpc", + "https://xo-dex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "XODEX Native Token", + "symbol": "XODEX", + "decimals": 18 + }, + "infoURL": "https://xo-dex.com", + "shortName": "xodex", + "chainId": 2415, + "networkId": 10, + "icon": "xodex", + "explorers": [ + { + "name": "XODEX Explorer", + "url": "https://explorer.xo-dex.com", + "standard": "EIP3091", + "icon": "xodex" + } + ] + }, + { + "name": "PoCRNet", + "title": "Proof of Carbon Reduction mainnet", + "chain": "CRC", + "status": "active", + "rpc": [ + "https://pocrnet.westeurope.cloudapp.azure.com/http", + "wss://pocrnet.westeurope.cloudapp.azure.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Carbon Reduction Coin", + "symbol": "CRC", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum-pocr/pocrnet", + "shortName": "pocrnet", + "chainId": 2606, + "networkId": 2606, + "explorers": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/pocrnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "Redlight Chain Mainnet", + "chain": "REDLC", + "rpc": [ + "https://dataseed2.redlightscan.finance" + ], + "faucets": [], + "nativeCurrency": { + "name": "Redlight Coin", + "symbol": "REDLC", + "decimals": 18 + }, + "infoURL": "https://redlight.finance/", + "shortName": "REDLC", + "chainId": 2611, + "networkId": 2611, + "explorers": [ + { + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", + "standard": "EIP3091" + } + ] + }, + { + "name": "Boba Network Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.boba.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobagoerli", + "chainId": 2888, + "networkId": 2888, + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.goerli.boba.network" + } + ] + } + }, + { + "name": "BitYuan Mainnet", + "chain": "BTY", + "rpc": [ + "https://mainnet.bityuan.com/eth" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTY", + "symbol": "BTY", + "decimals": 18 + }, + "infoURL": "https://www.bityuan.com", + "shortName": "bty", + "chainId": 2999, + "networkId": 2999, + "icon": "bty", + "explorers": [ + { + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" + } + ] + }, + { + "name": "Orlando Chain", + "chain": "ORL", + "rpc": [ + "https://rpc-testnet.orlchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Orlando", + "symbol": "ORL", + "decimals": 18 + }, + "infoURL": "https://orlchain.com", + "shortName": "ORL", + "chainId": 3031, + "networkId": 3031, + "icon": "orl", + "explorers": [ + { + "name": "Orlando (ORL) Explorer", + "url": "https://orlscan.com", + "icon": "orl", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bifrost Mainnet", + "title": "The Bifrost Mainnet network", + "chain": "BFC", + "rpc": [ + "https://public-01.mainnet.thebifrost.io/rpc", + "https://public-02.mainnet.thebifrost.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "infoURL": "https://thebifrost.io", + "shortName": "bfc", + "chainId": 3068, + "networkId": 3068, + "icon": "bifrost", + "explorers": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.mainnet.thebifrost.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Filecoin - Hyperspace testnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.hyperspace.node.glif.io/rpc/v1", + "https://filecoin-hyperspace.chainstacklabs.com/rpc/v1" + ], + "faucets": [ + "https://hyperspace.yoga/#faucet" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-hyperspace", + "chainId": 3141, + "networkId": 3141, + "slip44": 1, + "explorers": [ + { + "name": "Filfox - Hyperspace", + "url": "https://hyperspace.filfox.info/en", + "standard": "none" + }, + { + "name": "Glif Explorer - Hyperspace", + "url": "https://explorer.glif.io/?network=hyperspace", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + }, + { + "name": "Filmine", + "url": "https://explorer.filmine.io", + "standard": "none" + }, + { + "name": "Filscan - Hyperspace", + "url": "https://hyperspace.filscan.io", + "standard": "none" + } + ] + }, + { + "name": "Debounce Subnet Testnet", + "chain": "Debounce Network", + "icon": "debounce", + "rpc": [ + "https://dev-rpc.debounce.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Debounce Network", + "symbol": "DB", + "decimals": 18 + }, + "infoURL": "https://debounce.network", + "shortName": "debounce-devnet", + "chainId": 3306, + "networkId": 3306, + "explorers": [ + { + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "PandoProject Mainnet", + "chain": "PandoProject", + "icon": "pando", + "rpc": [ + "https://eth-rpc-api.pandoproject.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "infoURL": "https://www.pandoproject.org/", + "shortName": "pando-mainnet", + "chainId": 3601, + "networkId": 3601, + "explorers": [ + { + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", + "standard": "none" + } + ] + }, + { + "name": "PandoProject Testnet", + "chain": "PandoProject", + "icon": "pando", + "rpc": [ + "https://testnet.ethrpc.pandoproject.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "infoURL": "https://www.pandoproject.org/", + "shortName": "pando-testnet", + "chainId": 3602, + "networkId": 3602, + "explorers": [ + { + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" + } + ] + }, + { + "name": "Metacodechain", + "chain": "metacode", + "rpc": [ + "https://j.blockcoach.com:8503" + ], + "faucets": [], + "nativeCurrency": { + "name": "J", + "symbol": "J", + "decimals": 18 + }, + "infoURL": "https://j.blockcoach.com:8089", + "shortName": "metacode", + "chainId": 3666, + "networkId": 3666, + "explorers": [ + { + "name": "meta", + "url": "https://j.blockcoach.com:8089", + "standard": "EIP3091" + } + ] + }, + { + "name": "Empire Network", + "chain": "EMPIRE", + "rpc": [ + "https://rpc.empirenetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Empire", + "symbol": "EMPIRE", + "decimals": 18 + }, + "infoURL": "https://www.empirenetwork.io/", + "shortName": "empire", + "chainId": 3693, + "networkId": 3693, + "explorers": [ + { + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", + "standard": "none" + } + ] + }, + { + "name": "DRAC Network", + "chain": "DRAC", + "rpc": [ + "https://www.dracscan.com/rpc" + ], + "faucets": [ + "https://www.dracscan.io/faucet" + ], + "nativeCurrency": { + "name": "DRAC", + "symbol": "DRAC", + "decimals": 18 + }, + "infoURL": "https://drac.io/", + "shortName": "drac", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "chainId": 3912, + "networkId": 3912, + "icon": "drac", + "explorers": [ + { + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "icon": "DRAC", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitindi Testnet", + "chain": "BNI", + "icon": "bitindiTestnet", + "rpc": [ + "https://testnet-rpc.bitindi.org" + ], + "faucets": [ + "https://faucet.bitindi.org" + ], + "nativeCurrency": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "infoURL": "https://bitindi.org", + "shortName": "BNIt", + "chainId": 4096, + "networkId": 4096, + "explorers": [ + { + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitindi Mainnet", + "chain": "BNI", + "icon": "bitindi", + "rpc": [ + "https://mainnet-rpc.bitindi.org" + ], + "faucets": [ + "https://faucet.bitindi.org" + ], + "nativeCurrency": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "infoURL": "https://bitindi.org", + "shortName": "BNIm", + "chainId": 4099, + "networkId": 4099, + "explorers": [ + { + "name": "Bitindi", + "url": "https://bitindiscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bobafuji Testnet", + "chain": "Bobafuji Testnet", + "rpc": [ + "https://testnet.avax.boba.network", + "wss://wss.testnet.avax.boba.network", + "https://replica.testnet.avax.boba.network", + "wss://replica-wss.testnet.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaFujiTestnet", + "chainId": 4328, + "networkId": 4328, + "explorers": [ + { + "name": "Bobafuji Testnet block explorer", + "url": "https://blockexplorer.testnet.avax.boba.network", + "standard": "none" + } + ] + }, + { + "name": "Htmlcoin Mainnet", + "chain": "mainnet", + "rpc": [ + "https://janus.htmlcoin.com/api/" + ], + "faucets": [ + "https://gruvin.me/htmlcoin" + ], + "nativeCurrency": { + "name": "Htmlcoin", + "symbol": "HTML", + "decimals": 8 + }, + "infoURL": "https://htmlcoin.com", + "shortName": "html", + "chainId": 4444, + "networkId": 4444, + "icon": "htmlcoin", + "status": "active", + "explorers": [ + { + "name": "htmlcoin", + "url": "https://explorer.htmlcoin.com", + "icon": "htmlcoin", + "standard": "none" + } + ] + }, + { + "name": "BlackFort Exchange Network Testnet", + "chain": "TBXN", + "rpc": [ + "https://testnet.blackfort.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Testnet Token", + "symbol": "TBXN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://blackfort.exchange", + "shortName": "TBXN", + "chainId": 4777, + "networkId": 4777, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "BlackFort Exchange Network", + "chain": "BXN", + "rpc": [ + "https://mainnet.blackfort.network/rpc", + "https://mainnet-1.blackfort.network/rpc", + "https://mainnet-2.blackfort.network/rpc", + "https://mainnet-3.blackfort.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlackFort Token", + "symbol": "BXN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://blackfort.exchange", + "shortName": "BXN", + "chainId": 4999, + "networkId": 4999, + "icon": "bxn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mantle", + "chain": "ETH", + "rpc": [ + "https://rpc.mantle.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitDAO", + "symbol": "BIT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle", + "chainId": 5000, + "networkId": 5000, + "explorers": [ + { + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mantle Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.testnet.mantle.xyz" + ], + "faucets": [ + "https://faucet.testnet.mantle.xyz" + ], + "nativeCurrency": { + "name": "Testnet BitDAO", + "symbol": "BIT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle-testnet", + "chainId": 5001, + "networkId": 5001, + "explorers": [ + { + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Humanode Mainnet", + "chain": "HMND", + "rpc": [ + "https://explorer-rpc-http.mainnet.stages.humanode.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "HMND", + "symbol": "HMND", + "decimals": 18 + }, + "infoURL": "https://humanode.io", + "shortName": "hmnd", + "chainId": 5234, + "networkId": 5234, + "explorers": [] + }, + { + "name": "Firechain Mainnet Old", + "chain": "FIRE", + "icon": "firechain", + "rpc": [ + "https://mainnet.rpc1.thefirechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "infoURL": "https://thefirechain.com", + "shortName": "_old_fire", + "chainId": 5290, + "networkId": 5290, + "explorers": [], + "status": "deprecated" + }, + { + "name": "Chain Verse Mainnet", + "chain": "CVERSE", + "icon": "chain_verse", + "rpc": [ + "https://rpc.chainverse.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://chainverse.info", + "shortName": "cverse", + "chainId": 5555, + "networkId": 5555, + "explorers": [ + { + "name": "Chain Verse Explorer", + "url": "https://explorer.chainverse.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hika Network Testnet", + "title": "Hika Network Testnet", + "chain": "HIK", + "icon": "hik", + "rpc": [ + "https://rpc-testnet.hika.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hik Token", + "symbol": "HIK", + "decimals": 18 + }, + "infoURL": "https://hika.network/", + "shortName": "hik", + "chainId": 5729, + "networkId": 5729, + "explorers": [ + { + "name": "Hika Network Testnet Explorer", + "url": "https://scan-testnet.hika.network", + "standard": "none" + } + ] + }, + { + "name": "Tres Testnet", + "chain": "TresLeches", + "rpc": [ + "https://rpc-test.tresleches.finance/" + ], + "faucets": [ + "http://faucet.tresleches.finance:8080" + ], + "nativeCurrency": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "infoURL": "https://treschain.com", + "shortName": "TRESTEST", + "chainId": 6065, + "networkId": 6065, + "icon": "tresleches", + "explorers": [ + { + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Tres Mainnet", + "chain": "TresLeches", + "rpc": [ + "https://rpc.tresleches.finance/", + "https://rpc.treschain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "infoURL": "https://treschain.com", + "shortName": "TRESMAIN", + "chainId": 6066, + "networkId": 6066, + "icon": "tresleches", + "explorers": [ + { + "name": "treslechesexplorer", + "url": "https://explorer.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gold Smart Chain Mainnet", + "chain": "STAND", + "icon": "stand", + "rpc": [ + "https://rpc-mainnet.goldsmartchain.com" + ], + "faucets": [ + "https://faucet.goldsmartchain.com" + ], + "nativeCurrency": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "infoURL": "https://goldsmartchain.com", + "shortName": "STANDm", + "chainId": 6789, + "networkId": 6789, + "explorers": [ + { + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "PolySmartChain", + "chain": "PSC", + "rpc": [ + "https://seed0.polysmartchain.com/", + "https://seed1.polysmartchain.com/", + "https://seed2.polysmartchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "PSC", + "symbol": "PSC", + "decimals": 18 + }, + "infoURL": "https://www.polysmartchain.com/", + "shortName": "psc", + "chainId": 6999, + "networkId": 6999 + }, + { + "name": "ZetaChain Mainnet", + "chain": "ZetaChain", + "icon": "zetachain", + "rpc": [ + "https://api.mainnet.zetachain.com/evm" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "infoURL": "https://docs.zetachain.com/", + "shortName": "zetachain-mainnet", + "chainId": 7000, + "networkId": 7000, + "status": "incubating", + "explorers": [ + { + "name": "ZetaChain Mainnet Explorer", + "url": "https://explorer.mainnet.zetachain.com", + "standard": "none" + } + ] + }, + { + "name": "ZetaChain Athens Testnet", + "chain": "ZetaChain", + "icon": "zetachain", + "rpc": [ + "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", + "https://rpc.ankr.com/zetachain_evm_athens_testnet" + ], + "faucets": [ + "https://labs.zetachain.com/get-zeta" + ], + "nativeCurrency": { + "name": "ZETA", + "symbol": "tZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs", + "shortName": "zetachain-athens", + "chainId": 7001, + "networkId": 7001, + "status": "active", + "explorers": [ + { + "name": "ZetaChain Athens Testnet Explorer", + "url": "https://explorer.zetachain.com", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1695111759609.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1695111789559.png", + "color_chain_bg": "0x005741", + "color_chain_text": "0xFFFFFF", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1695181451439.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1695181482445.png" + } + }, + { + "name": "Planq Mainnet", + "chain": "Planq", + "icon": "planq", + "rpc": [ + "https://evm-rpc.planq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Planq", + "symbol": "PLQ", + "decimals": 18 + }, + "infoURL": "https://planq.network", + "shortName": "planq", + "chainId": 7070, + "networkId": 7070, + "explorers": [ + { + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" + }, + { + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" + } + ] + }, + { + "name": "Shardeum Liberty 2.X", + "chain": "Shardeum", + "icon": "shardeum", + "rpc": [ + "https://liberty20.shardeum.org/" + ], + "faucets": [ + "https://faucet.liberty20.shardeum.org" + ], + "nativeCurrency": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Liberty20", + "chainId": 8081, + "networkId": 8081, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-liberty20.shardeum.org", + "standard": "none" + } + ], + "redFlags": [ + "reusedChainId" + ] + }, + { + "name": "Shardeum Sphinx 1.X", + "chain": "Shardeum", + "icon": "shardeum", + "rpc": [ + "https://sphinx.shardeum.org/" + ], + "faucets": [ + "https://faucet-sphinx.shardeum.org/" + ], + "nativeCurrency": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "infoURL": "https://docs.shardeum.org/", + "shortName": "Sphinx10", + "chainId": 8082, + "networkId": 8082, + "explorers": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-sphinx.shardeum.org", + "standard": "none" + } + ], + "redFlags": [ + "reusedChainId" + ] + }, + { + "name": "StreamuX Blockchain", + "chain": "StreamuX", + "rpc": [ + "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "StreamuX", + "symbol": "SmuX", + "decimals": 18 + }, + "infoURL": "https://www.streamux.cloud", + "shortName": "StreamuX", + "chainId": 8098, + "networkId": 8098 + }, + { + "name": "Qitmeer Network Testnet", + "chain": "MEER", + "rpc": [ + "https://testnet-qng.rpc.qitmeer.io", + "https://testnet.meerlabs.com", + "https://meer.testnet.meerfans.club" + ], + "faucets": [ + "https://faucet.qitmeer.io" + ], + "nativeCurrency": { + "name": "Qitmeer Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meertest", + "chainId": 8131, + "networkId": 8131, + "icon": "meer", + "explorers": [ + { + "name": "meerscan testnet", + "url": "https://testnet.qng.meerscan.io", + "standard": "none" + } + ] + }, + { + "name": "BeOne Chain Testnet", + "chain": "BOC", + "rpc": [ + "https://pre-boc1.beonechain.com", + "https://pre-boc2.beonechain.com", + "https://pre-boc3.beonechain.com" + ], + "faucets": [ + "https://testnet.beonescan.com/faucet" + ], + "nativeCurrency": { + "name": "BeOne Chain Testnet", + "symbol": "BOC", + "decimals": 18 + }, + "infoURL": "https://testnet.beonescan.com", + "shortName": "tBOC", + "chainId": 8181, + "networkId": 8181, + "icon": "beonechain", + "explorers": [ + { + "name": "BeOne Chain Testnet", + "url": "https://testnet.beonescan.com", + "icon": "beonechain", + "standard": "none" + } + ] + }, + { + "name": "Blockton Blockchain", + "chain": "Blockton Blockchain", + "icon": "bton", + "rpc": [ + "https://rpc.blocktonscan.com/" + ], + "faucets": [ + "https://faucet.blocktonscan.com/" + ], + "nativeCurrency": { + "name": "BLOCKTON", + "symbol": "BTON", + "decimals": 18 + }, + "infoURL": "https://blocktoncoin.com", + "shortName": "BTON", + "chainId": 8272, + "networkId": 8272, + "explorers": [ + { + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", + "standard": "none" + } + ] + }, + { + "name": "KorthoTest", + "chain": "Kortho", + "rpc": [ + "https://www.krotho-test.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kortho Test", + "symbol": "KTO", + "decimals": 11 + }, + "infoURL": "https://www.kortho.io/", + "shortName": "Kortho", + "chainId": 8285, + "networkId": 8285 + }, + { + "name": "Base", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "base", + "chainId": 8453, + "networkId": 8453, + "status": "incubating" + }, + { + "name": "Toki Network", + "chain": "TOKI", + "rpc": [ + "https://mainnet.buildwithtoki.com/v0/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "infoURL": "https://www.buildwithtoki.com", + "shortName": "toki", + "chainId": 8654, + "networkId": 8654, + "icon": "toki", + "explorers": [] + }, + { + "name": "Toki Testnet", + "chain": "TOKI", + "rpc": [ + "https://testnet.buildwithtoki.com/v0/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "infoURL": "https://www.buildwithtoki.com", + "shortName": "toki-testnet", + "chainId": 8655, + "networkId": 8655, + "icon": "toki", + "explorers": [] + }, + { + "name": "Alph Network", + "chain": "ALPH", + "rpc": [ + "https://rpc.alph.network", + "wss://rpc.alph.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Alph Network", + "symbol": "ALPH", + "decimals": 18 + }, + "infoURL": "https://alph.network", + "shortName": "alph", + "chainId": 8738, + "networkId": 8738, + "explorers": [ + { + "name": "alphscan", + "url": "https://explorer.alph.network", + "icon": "alphscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "TMY Chain", + "chain": "TMY", + "icon": "ethereum", + "rpc": [ + "https://node1.tmyblockchain.org/rpc" + ], + "faucets": [ + "https://faucet.tmychain.org/" + ], + "nativeCurrency": { + "name": "TMY", + "symbol": "TMY", + "decimals": 18 + }, + "infoURL": "https://tmychain.org/", + "shortName": "tmy", + "chainId": 8768, + "networkId": 8768 + }, + { + "name": "MARO Blockchain Mainnet", + "chain": "MARO Blockchain", + "icon": "MARO", + "rpc": [ + "https://rpc-mainnet.ma.ro" + ], + "faucets": [], + "nativeCurrency": { + "name": "MARO", + "symbol": "MARO", + "decimals": 18 + }, + "infoURL": "https://ma.ro/", + "shortName": "maro", + "chainId": 8848, + "networkId": 8848, + "explorers": [ + { + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" + } + ] + }, + { + "name": "Unique", + "icon": "unique", + "chain": "UNQ", + "rpc": [ + "https://rpc.unique.network", + "https://eu-rpc.unique.network", + "https://asia-rpc.unique.network", + "https://us-rpc.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Unique", + "symbol": "UNQ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "unq", + "chainId": 8880, + "networkId": 8880, + "explorers": [ + { + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" + } + ] + }, + { + "name": "Quartz by Unique", + "icon": "quartz", + "chain": "UNQ", + "rpc": [ + "https://rpc-quartz.unique.network", + "https://quartz.api.onfinality.io/public-ws", + "https://eu-rpc-quartz.unique.network", + "https://asia-rpc-quartz.unique.network", + "https://us-rpc-quartz.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "qtz", + "chainId": 8881, + "networkId": 8881, + "explorers": [ + { + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", + "standard": "none" + } + ] + }, + { + "name": "Opal testnet by Unique", + "icon": "opal", + "chain": "UNQ", + "rpc": [ + "https://rpc-opal.unique.network", + "https://us-rpc-opal.unique.network", + "https://eu-rpc-opal.unique.network", + "https://asia-rpc-opal.unique.network" + ], + "faucets": [ + "https://t.me/unique2faucet_opal_bot" + ], + "nativeCurrency": { + "name": "Opal", + "symbol": "UNQ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "opl", + "chainId": 8882, + "networkId": 8882, + "explorers": [ + { + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" + } + ] + }, + { + "name": "Sapphire by Unique", + "icon": "sapphire", + "chain": "UNQ", + "rpc": [ + "https://rpc-sapphire.unique.network", + "https://us-rpc-sapphire.unique.network", + "https://eu-rpc-sapphire.unique.network", + "https://asia-rpc-sapphire.unique.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "infoURL": "https://unique.network", + "shortName": "sph", + "chainId": 8883, + "networkId": 8883, + "explorers": [ + { + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" + } + ] + }, + { + "name": "Vyvo Smart Chain", + "chain": "VSC", + "rpc": [ + "https://vsc-dataseed.vyvo.org:8889" + ], + "faucets": [], + "nativeCurrency": { + "name": "VSC", + "symbol": "VSC", + "decimals": 18 + }, + "infoURL": "https://vsc-dataseed.vyvo.org", + "shortName": "vsc", + "chainId": 8889, + "networkId": 8889 + }, + { + "name": "JIBCHAIN L1", + "chain": "JBC", + "rpc": [ + "https://rpc-l1.jibchain.net" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "JIBCOIN", + "symbol": "JBC", + "decimals": 18 + }, + "infoURL": "https://jibchain.net", + "shortName": "jbc", + "chainId": 8899, + "networkId": 8899, + "explorers": [ + { + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Giant Mammoth Mainnet", + "title": "Giant Mammoth Chain", + "chain": "GMMT", + "rpc": [ + "https://rpc-asia.gmmtchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Giant Mammoth Coin", + "symbol": "GMMT", + "decimals": 18 + }, + "infoURL": "https://gmmtchain.io/", + "shortName": "gmmt", + "chainId": 8989, + "networkId": 8989, + "icon": "gmmt", + "explorers": [ + { + "name": "gmmtscan", + "url": "https://scan.gmmtchain.io", + "standard": "EIP3091", + "icon": "gmmt" + } + ] + }, + { + "name": "Rinia Testnet Old", + "chain": "FIRE", + "icon": "rinia", + "rpc": [], + "faucets": [ + "https://faucet.thefirechain.com" + ], + "nativeCurrency": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "infoURL": "https://thefirechain.com", + "shortName": "_old_tfire", + "chainId": 9170, + "networkId": 9170, + "explorers": [], + "status": "deprecated" + }, + { + "name": "Dogcoin Testnet", + "chain": "DOGS", + "icon": "dogs", + "rpc": [ + "https://testnet-rpc.dogcoin.network" + ], + "faucets": [ + "https://faucet.dogcoin.network" + ], + "nativeCurrency": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "infoURL": "https://dogcoin.network", + "shortName": "DOGSt", + "chainId": 9339, + "networkId": 9339, + "explorers": [ + { + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "QEasyWeb3 Testnet", + "chain": "QET", + "rpc": [ + "https://qeasyweb3.com" + ], + "faucets": [ + "http://faucet.qeasyweb3.com" + ], + "nativeCurrency": { + "name": "QET", + "symbol": "QET", + "decimals": 18 + }, + "infoURL": "https://www.qeasyweb3.com", + "shortName": "QETTest", + "chainId": 9528, + "networkId": 9528, + "explorers": [ + { + "name": "QEasyWeb3 Explorer", + "url": "https://www.qeasyweb3.com", + "icon": "qetscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "Oort MainnetDev", + "title": "Oort MainnetDev", + "chain": "MainnetDev", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "MainnetDev", + "chainId": 9700, + "networkId": 9700, + "icon": "ccn" + }, + { + "name": "Boba BNB Testnet", + "chain": "Boba BNB Testnet", + "rpc": [ + "https://testnet.bnb.boba.network", + "wss://wss.testnet.bnb.boba.network", + "https://replica.testnet.bnb.boba.network", + "wss://replica-wss.testnet.bnb.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnbTestnet", + "chainId": 9728, + "networkId": 9728, + "explorers": [ + { + "name": "Boba BNB Testnet block explorer", + "url": "https://blockexplorer.testnet.bnb.boba.network", + "standard": "none" + } + ] + }, + { + "name": "MainnetZ Testnet", + "chain": "NetZ", + "icon": "mainnetzTestnet", + "rpc": [ + "https://testnet-rpc.mainnetz.io" + ], + "faucets": [ + "https://faucet.mainnetz.io" + ], + "nativeCurrency": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "infoURL": "https://testnet.mainnetz.io", + "shortName": "NetZt", + "chainId": 9768, + "networkId": 9768, + "explorers": [ + { + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gon Chain", + "chain": "GonChain", + "icon": "gonchain", + "rpc": [ + "https://node1.testnet.gaiaopen.network", + "http://database1.gaiaopen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gon Token", + "symbol": "GT", + "decimals": 18 + }, + "infoURL": "", + "shortName": "gon", + "chainId": 10024, + "networkId": 10024, + "explorers": [ + { + "name": "Gon Explorer", + "url": "https://gonscan.com", + "standard": "none" + } + ] + }, + { + "name": "SJATSH", + "chain": "ETH", + "rpc": [ + "http://geth.free.idcfengye.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sjis.me", + "shortName": "SJ", + "chainId": 10086, + "networkId": 10086 + }, + { + "name": "Chiado Testnet", + "chain": "CHI", + "icon": "gnosis", + "rpc": [ + "https://rpc.chiadochain.net", + "https://rpc.eu-central-2.gateway.fm/v3/gnosis/archival/chiado" + ], + "faucets": [ + "https://gnosisfaucet.com" + ], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi", + "chainId": 10200, + "networkId": 10200, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "0XTade", + "chain": "0XTade Chain", + "rpc": [ + "https://node.0xtchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "0XT", + "symbol": "0XT", + "decimals": 18 + }, + "infoURL": "https://www.0xtrade.finance/", + "shortName": "0xt", + "chainId": 10248, + "networkId": 10248, + "explorers": [ + { + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" + } + ] + }, + { + "name": "Numbers Mainnet", + "chain": "NUM", + "icon": "num", + "rpc": [ + "https://mainnetrpc.num.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "infoURL": "https://numbersprotocol.io", + "shortName": "Jade", + "chainId": 10507, + "networkId": 10507, + "explorers": [ + { + "name": "ethernal", + "url": "https://mainnet.num.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Numbers Testnet", + "chain": "NUM", + "icon": "num", + "rpc": [ + "https://testnetrpc.num.network" + ], + "faucets": [ + "https://faucet.avax.network/?subnet=num", + "https://faucet.num.network" + ], + "nativeCurrency": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "infoURL": "https://numbersprotocol.io", + "shortName": "Snow", + "chainId": 10508, + "networkId": 10508, + "explorers": [ + { + "name": "ethernal", + "url": "https://testnet.num.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Astra", + "chain": "Astra", + "rpc": [ + "https://rpc.astranaut.io", + "https://rpc1.astranaut.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Astra", + "symbol": "ASA", + "decimals": 18 + }, + "infoURL": "https://astranaut.io", + "shortName": "astra", + "chainId": 11110, + "networkId": 11110, + "icon": "astra", + "explorers": [ + { + "name": "Astra EVM Explorer (Blockscout)", + "url": "https://explorer.astranaut.io", + "standard": "none", + "icon": "astra" + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.io/astra", + "standard": "none", + "icon": "astra" + } + ] + }, + { + "name": "Astra Testnet", + "chain": "Astra", + "rpc": [ + "https://rpc.astranaut.dev" + ], + "faucets": [ + "https://faucet.astranaut.dev" + ], + "nativeCurrency": { + "name": "test-Astra", + "symbol": "tASA", + "decimals": 18 + }, + "infoURL": "https://astranaut.io", + "shortName": "astra-testnet", + "chainId": 11115, + "networkId": 11115, + "icon": "astra", + "explorers": [ + { + "name": "Astra EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": "astra" + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": "astra" + } + ] + }, + { + "name": "Haqq Network", + "chain": "Haqq", + "rpc": [ + "https://rpc.eth.haqq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLM", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLM", + "chainId": 11235, + "networkId": 11235, + "explorers": [ + { + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Sardis Testnet", + "chain": "SRDX", + "icon": "sardisTestnet", + "rpc": [ + "https://testnet-rpc.sardisnetwork.com" + ], + "faucets": [ + "https://faucet.sardisnetwork.com" + ], + "nativeCurrency": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "infoURL": "https://mysardis.com", + "shortName": "SRDXt", + "chainId": 11612, + "networkId": 11612, + "explorers": [ + { + "name": "Sardis", + "url": "https://testnet.sardisnetwork.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SanR Chain", + "chain": "SanRChain", + "rpc": [ + "https://sanrchain-node.santiment.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "nSAN", + "symbol": "nSAN", + "decimals": 18 + }, + "infoURL": "https://sanr.app", + "shortName": "SAN", + "chainId": 11888, + "networkId": 11888, + "icon": "sanrchain", + "parent": { + "chain": "eip155-1", + "type": "L2", + "bridges": [ + { + "url": "https://sanr.app" + } + ] + }, + "explorers": [ + { + "name": "SanR Chain Explorer", + "url": "https://sanrchain-explorer.santiment.net", + "standard": "none" + } + ] + }, + { + "name": "BLG Testnet", + "chain": "BLG", + "icon": "blg", + "rpc": [ + "https://rpc.blgchain.com" + ], + "faucets": [ + "https://faucet.blgchain.com" + ], + "nativeCurrency": { + "name": "Blg", + "symbol": "BLG", + "decimals": 18 + }, + "infoURL": "https://blgchain.com", + "shortName": "blgchain", + "chainId": 12321, + "networkId": 12321 + }, + { + "name": "Step Testnet", + "title": "Step Test Network", + "chain": "STEP", + "icon": "step", + "rpc": [ + "https://rpc.testnet.step.network" + ], + "faucets": [ + "https://faucet.step.network" + ], + "nativeCurrency": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "infoURL": "https://step.network", + "shortName": "steptest", + "chainId": 12345, + "networkId": 12345, + "explorers": [ + { + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": "step", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-43113" + } + }, + { + "name": "SPS", + "chain": "SPS", + "rpc": [ + "https://rpc.ssquad.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "infoURL": "https://ssquad.games/", + "shortName": "SPS", + "chainId": 13000, + "networkId": 13000, + "explorers": [ + { + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", + "standard": "EIP3091" + } + ] + }, + { + "name": "Credit Smartchain Mainnet", + "chain": "CREDIT", + "rpc": [ + "https://mainnet-rpc.cscscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://creditsmartchain.com", + "shortName": "Credit", + "chainId": 13308, + "networkId": 1, + "icon": "credit", + "explorers": [ + { + "name": "CSC Scan", + "url": "https://explorer.cscscan.io", + "icon": "credit", + "standard": "EIP3091" + } + ] + }, + { + "name": "Susono", + "chain": "SUS", + "rpc": [ + "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Susono", + "symbol": "OPN", + "decimals": 18 + }, + "infoURL": "", + "shortName": "sus", + "chainId": 13812, + "networkId": 13812, + "explorers": [ + { + "name": "Susono", + "url": "http://explorer.opn.network", + "standard": "none" + } + ] + }, + { + "name": "SPS Testnet", + "chain": "SPS-Testnet", + "rpc": [ + "https://www.3sps.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "infoURL": "https://ssquad.games/", + "shortName": "SPS-Test", + "chainId": 14000, + "networkId": 14000, + "explorers": [ + { + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "AirDAO Mainnet", + "chain": "ambnet", + "icon": "airdao", + "rpc": [ + "https://network.ambrosus.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://airdao.io", + "shortName": "airdao", + "chainId": 16718, + "networkId": 16718, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } + ] + }, + { + "name": "Frontier of Dreams Testnet", + "chain": "Game Network", + "rpc": [ + "https://rpc.fod.games/" + ], + "nativeCurrency": { + "name": "ZKST", + "symbol": "ZKST", + "decimals": 18 + }, + "faucets": [], + "shortName": "ZKST", + "chainId": 18000, + "networkId": 18000, + "infoURL": "https://goexosphere.com", + "explorers": [ + { + "name": "Game Network", + "url": "https://explorer.fod.games", + "standard": "EIP3091" + } + ] + }, + { + "name": "Proof Of Memes", + "title": "Proof Of Memes Mainnet", + "chain": "POM", + "icon": "pom", + "rpc": [ + "https://mainnet-rpc.memescan.io", + "https://mainnet-rpc2.memescan.io", + "https://mainnet-rpc3.memescan.io", + "https://mainnet-rpc4.memescan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Proof Of Memes", + "symbol": "POM", + "decimals": 18 + }, + "infoURL": "https://proofofmemes.org", + "shortName": "pom", + "chainId": 18159, + "networkId": 18159, + "explorers": [ + { + "name": "explorer-proofofmemes", + "url": "https://memescan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "HOME Verse Mainnet", + "chain": "HOME Verse", + "icon": "home_verse", + "rpc": [ + "https://rpc.mainnet.oasys.homeverse.games/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.homeverse.games/", + "shortName": "HMV", + "chainId": 19011, + "networkId": 19011, + "explorers": [ + { + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Callisto Testnet", + "chain": "CLO", + "rpc": [ + "https://testnet-rpc.callisto.network/" + ], + "faucets": [ + "https://faucet.callisto.network/" + ], + "nativeCurrency": { + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 + }, + "infoURL": "https://callisto.network", + "shortName": "CLOTestnet", + "chainId": 20729, + "networkId": 79 + }, + { + "name": "P12 Chain", + "chain": "P12", + "icon": "p12", + "rpc": [ + "https://rpc-chain.p12.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hooked P2", + "symbol": "hP2", + "decimals": 18 + }, + "infoURL": "https://p12.network", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "shortName": "p12", + "chainId": 20736, + "networkId": 20736, + "explorers": [ + { + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", + "standard": "EIP3091" + } + ] + }, + { + "name": "AirDAO Testnet", + "chain": "ambnet-test", + "icon": "airdao", + "rpc": [ + "https://network.ambrosus-test.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "infoURL": "https://testnet.airdao.io", + "shortName": "airdao-test", + "chainId": 22040, + "networkId": 22040, + "explorers": [ + { + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } + ] + }, + { + "name": "MAP Protocol", + "chain": "MAPO", + "icon": "map", + "rpc": [ + "https://rpc.maplabs.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "infoURL": "https://mapprotocol.io/", + "shortName": "mapo", + "chainId": 22776, + "networkId": 22776, + "slip44": 60, + "explorers": [ + { + "name": "maposcan", + "url": "https://maposcan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Opside Testnet", + "chain": "Opside", + "rpc": [ + "https://testrpc.opside.network" + ], + "faucets": [ + "https://faucet.opside.network" + ], + "nativeCurrency": { + "name": "IDE", + "symbol": "IDE", + "decimals": 18 + }, + "infoURL": "https://opside.network", + "shortName": "opside", + "chainId": 23118, + "networkId": 23118, + "icon": "opside", + "explorers": [ + { + "name": "opsideInfo", + "url": "https://opside.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Oasis Sapphire", + "chain": "Sapphire", + "icon": "oasis", + "rpc": [ + "https://sapphire.oasis.io", + "wss://sapphire.oasis.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire", + "chainId": 23294, + "networkId": 23294, + "explorers": [ + { + "name": "Oasis Sapphire Explorer", + "url": "https://explorer.sapphire.oasis.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Oasis Sapphire Testnet", + "chain": "Sapphire", + "icon": "oasis", + "rpc": [ + "https://testnet.sapphire.oasis.dev", + "wss://testnet.sapphire.oasis.dev/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Test Rose", + "symbol": "TEST", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire-testnet", + "chainId": 23295, + "networkId": 23295, + "explorers": [ + { + "name": "Oasis Sapphire Testnet Explorer", + "url": "https://testnet.explorer.sapphire.oasis.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hammer Chain Mainnet", + "chain": "HammerChain", + "rpc": [ + "https://www.hammerchain.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "GOLDT", + "symbol": "GOLDT", + "decimals": 18 + }, + "infoURL": "https://www.hammerchain.io", + "shortName": "GOLDT", + "chainId": 25888, + "networkId": 25888, + "explorers": [ + { + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", + "standard": "none" + } + ] + }, + { + "name": "Bitkub Chain Testnet", + "chain": "BKC", + "icon": "bkc", + "rpc": [ + "https://rpc-testnet.bitkubchain.io", + "wss://wss-testnet.bitkubchain.io" + ], + "faucets": [ + "https://faucet.bitkubchain.com" + ], + "nativeCurrency": { + "name": "Bitkub Coin", + "symbol": "tKUB", + "decimals": 18 + }, + "infoURL": "https://www.bitkubchain.com/", + "shortName": "bkct", + "chainId": 25925, + "networkId": 25925, + "explorers": [ + { + "name": "bkcscan-testnet", + "url": "https://testnet.bkcscan.com", + "standard": "none", + "icon": "bkc" + } + ] + }, + { + "name": "Hertz Network Mainnet", + "chain": "HTZ", + "rpc": [ + "https://mainnet-rpc.hertzscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hertz", + "symbol": "HTZ", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.hertz-network.com", + "shortName": "HTZ", + "chainId": 26600, + "networkId": 26600, + "icon": "hertz-network", + "explorers": [ + { + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": "hertz-network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Optimism Bedrock (Goerli Alpha Testnet)", + "chain": "ETH", + "rpc": [ + "https://alpha-1-replica-0.bedrock-goerli.optimism.io", + "https://alpha-1-replica-1.bedrock-goerli.optimism.io", + "https://alpha-1-replica-2.bedrock-goerli.optimism.io", + "https://alpha-1-replica-2.bedrock-goerli.optimism.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://community.optimism.io/docs/developers/bedrock", + "shortName": "obgor", + "chainId": 28528, + "networkId": 28528, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", + "standard": "EIP3091" + } + ] + }, + { + "name": "CloudTx Mainnet", + "chain": "CLD", + "icon": "cloudtx", + "rpc": [ + "https://mainnet-rpc.cloudtx.finance" + ], + "faucets": [], + "nativeCurrency": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "infoURL": "https://cloudtx.finance", + "shortName": "CLDTX", + "chainId": 31223, + "networkId": 31223, + "explorers": [ + { + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", + "standard": "EIP3091" + } + ] + }, + { + "name": "CloudTx Testnet", + "chain": "CloudTx", + "icon": "cloudtx", + "rpc": [ + "https://testnet-rpc.cloudtx.finance" + ], + "faucets": [ + "https://faucet.cloudtx.finance" + ], + "nativeCurrency": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "infoURL": "https://cloudtx.finance/", + "shortName": "CLD", + "chainId": 31224, + "networkId": 31224, + "explorers": [ + { + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", + "standard": "EIP3091" + } + ] + }, + { + "name": "Filecoin - Wallaby testnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://wallaby.node.glif.io/rpc/v1" + ], + "faucets": [ + "https://wallaby.yoga/#faucet" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-wallaby", + "chainId": 31415, + "networkId": 31415, + "slip44": 1, + "explorers": [] + }, + { + "name": "Aves Mainnet", + "chain": "AVS", + "rpc": [ + "https://rpc.avescoin.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aves", + "symbol": "AVS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://avescoin.io", + "shortName": "avs", + "chainId": 33333, + "networkId": 33333, + "icon": "aves", + "explorers": [ + { + "name": "avescan", + "url": "https://avescan.io", + "icon": "avescan", + "standard": "EIP3091" + } + ] + }, + { + "name": "J2O Taro", + "chain": "TARO", + "rpc": [ + "https://rpc.j2o.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "TARO Coin", + "symbol": "taro", + "decimals": 18 + }, + "infoURL": "https://j2o.io", + "shortName": "j2o", + "chainId": 35011, + "networkId": 35011, + "explorers": [ + { + "name": "J2O Taro Explorer", + "url": "https://exp.j2o.io", + "icon": "j2otaro", + "standard": "EIP3091" + } + ] + }, + { + "name": "OHO Mainnet", + "chain": "OHO", + "rpc": [ + "https://mainnet.oho.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "OHO", + "symbol": "OHO", + "decimals": 18 + }, + "infoURL": "https://oho.ai", + "shortName": "oho", + "chainId": 39815, + "networkId": 39815, + "icon": "oho", + "explorers": [ + { + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": "ohoscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "Opulent-X BETA", + "chainId": 41500, + "shortName": "ox-beta", + "chain": "Opulent-X", + "networkId": 41500, + "nativeCurrency": { + "name": "Oxyn Gas", + "symbol": "OXYN", + "decimals": 18 + }, + "rpc": [ + "https://connect.opulent-x.com" + ], + "faucets": [], + "infoURL": "https://beta.opulent-x.com", + "explorers": [ + { + "name": "Opulent-X BETA Explorer", + "url": "https://explorer.opulent-x.com", + "standard": "none" + } + ] + }, + { + "name": "Boba Avax", + "chain": "Boba Avax", + "rpc": [ + "https://avax.boba.network", + "wss://wss.avax.boba.network", + "https://replica.avax.boba.network", + "wss://replica-wss.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://docs.boba.network/for-developers/network-avalanche", + "shortName": "bobaavax", + "chainId": 43288, + "networkId": 43288, + "explorers": [ + { + "name": "Boba Avax Explorer", + "url": "https://blockexplorer.avax.boba.network", + "standard": "none" + } + ] + }, + { + "name": "Frenchain", + "chain": "fren", + "rpc": [ + "https://rpc-02.frenscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "FREN", + "symbol": "FREN", + "decimals": 18 + }, + "infoURL": "https://frenchain.app", + "shortName": "FREN", + "chainId": 44444, + "networkId": 44444, + "icon": "fren", + "explorers": [ + { + "name": "blockscout", + "url": "https://frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } + ] + }, + { + "name": "Fusion Testnet", + "chain": "FSN", + "icon": "fusion", + "rpc": [ + "https://testnet.fusionnetwork.io", + "wss://testnet.fusionnetwork.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Fusion", + "symbol": "T-FSN", + "decimals": 18 + }, + "infoURL": "https://fusion.org", + "shortName": "tfsn", + "chainId": 46688, + "networkId": 46688, + "slip44": 288, + "explorers": [ + { + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "Floripa", + "title": "Wireshape Testnet Floripa", + "chain": "Wireshape", + "rpc": [ + "https://rpc-floripa.wireshape.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "WIRE", + "symbol": "WIRE", + "decimals": 18 + }, + "infoURL": "https://wireshape.org", + "shortName": "floripa", + "chainId": 49049, + "networkId": 49049, + "explorers": [ + { + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bifrost Testnet", + "title": "The Bifrost Testnet network", + "chain": "BFC", + "rpc": [ + "https://public-01.testnet.thebifrost.io/rpc", + "https://public-02.testnet.thebifrost.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "infoURL": "https://thebifrost.io", + "shortName": "tbfc", + "chainId": 49088, + "networkId": 49088, + "icon": "bifrost", + "explorers": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.thebifrost.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Liveplex OracleEVM", + "chain": "Liveplex OracleEVM Network", + "rpc": [ + "https://rpc.oracle.liveplex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "LOE", + "chainId": 50001, + "networkId": 50001, + "explorers": [] + }, + { + "name": "Sardis Mainnet", + "chain": "SRDX", + "icon": "sardis", + "rpc": [ + "https://mainnet-rpc.sardisnetwork.com" + ], + "faucets": [ + "https://faucet.sardisnetwork.com" + ], + "nativeCurrency": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "infoURL": "https://mysardis.com", + "shortName": "SRDXm", + "chainId": 51712, + "networkId": 51712, + "explorers": [ + { + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Haqq Chain Testnet", + "chain": "TestEdge2", + "rpc": [ + "https://rpc.eth.testedge2.haqq.network" + ], + "faucets": [ + "https://testedge2.haqq.network" + ], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLMT", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLMT", + "chainId": 54211, + "networkId": 54211, + "explorers": [ + { + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Boba BNB Mainnet", + "chain": "Boba BNB Mainnet", + "rpc": [ + "https://bnb.boba.network", + "wss://wss.bnb.boba.network", + "https://replica.bnb.boba.network", + "wss://replica-wss.bnb.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnb", + "chainId": 56288, + "networkId": 56288, + "explorers": [ + { + "name": "Boba BNB block explorer", + "url": "https://blockexplorer.bnb.boba.network", + "standard": "none" + } + ] + }, + { + "name": "Etica Mainnet", + "chain": "Etica Protocol (ETI/EGAZ)", + "icon": "etica", + "rpc": [ + "https://eticamainnet.eticascan.org", + "https://eticamainnet.eticaprotocol.org" + ], + "faucets": [ + "http://faucet.etica-stats.org/" + ], + "nativeCurrency": { + "name": "EGAZ", + "symbol": "EGAZ", + "decimals": 18 + }, + "infoURL": "https://eticaprotocol.org", + "shortName": "Etica", + "chainId": 61803, + "networkId": 61803, + "explorers": [ + { + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" + }, + { + "name": "eticastats", + "url": "http://explorer.etica-stats.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "DoKEN Super Chain Mainnet", + "chain": "DoKEN Super Chain", + "rpc": [ + "https://sgrpc.doken.dev", + "https://nyrpc.doken.dev", + "https://ukrpc.doken.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "DoKEN", + "symbol": "DKN", + "decimals": 18 + }, + "infoURL": "https://doken.dev/", + "shortName": "DoKEN", + "chainId": 61916, + "networkId": 61916, + "icon": "doken", + "explorers": [ + { + "name": "DSC Scan", + "url": "https://explore.doken.dev", + "icon": "doken", + "standard": "EIP3091" + } + ] + }, + { + "name": "SiriusNet", + "chain": "SIN", + "status": "deprecated", + "rpc": [ + "https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MCD", + "symbol": "MCD", + "decimals": 18 + }, + "infoURL": "https://macaucasinolisboa.xyz", + "shortName": "mcl", + "chainId": 67390, + "networkId": 67390, + "explorers": [ + { + "name": "siriusnetscan", + "url": "https://siriusnet.tryethernal.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vention Smart Chain Mainnet", + "chain": "VSC", + "icon": "vention", + "rpc": [ + "https://mainnet-rpc.vention.network" + ], + "faucets": [ + "https://faucet.vention.network" + ], + "nativeCurrency": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "infoURL": "https://ventionscan.io", + "shortName": "vscm", + "chainId": 77612, + "networkId": 77612, + "explorers": [ + { + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gold Smart Chain Testnet", + "chain": "STAND", + "icon": "standTestnet", + "rpc": [ + "https://rpc-testnet.goldsmartchain.com" + ], + "faucets": [ + "https://faucet.goldsmartchain.com" + ], + "nativeCurrency": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "infoURL": "https://goldsmartchain.com", + "shortName": "STANDt", + "chainId": 79879, + "networkId": 79879, + "explorers": [ + { + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Base Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.base.org" + ], + "faucets": [ + "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" + ], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basegor", + "chainId": 84531, + "networkId": 84531, + "explorers": [ + { + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "standard": "none" + } + ] + }, + { + "name": "Chiliz Scoville Testnet", + "chain": "CHZ", + "rpc": [ + "https://scoville-rpc.chiliz.com" + ], + "faucets": [ + "https://scoville-faucet.chiliz.com" + ], + "nativeCurrency": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "icon": "chiliz", + "infoURL": "https://www.chiliz.com/en/chain", + "shortName": "chz", + "chainId": 88880, + "networkId": 88880, + "explorers": [ + { + "name": "scoville-explorer", + "url": "https://scoville-explorer.chiliz.com", + "standard": "none" + } + ] + }, + { + "name": "Beverly Hills", + "title": "Ethereum multi-client Verkle Testnet Beverly Hills", + "chain": "ETH", + "rpc": [ + "https://rpc.beverlyhills.ethdevops.io:8545" + ], + "faucets": [ + "https://faucet.beverlyhills.ethdevops.io" + ], + "nativeCurrency": { + "name": "Beverly Hills Testnet Ether", + "symbol": "BVE", + "decimals": 18 + }, + "infoURL": "https://beverlyhills.ethdevops.io", + "shortName": "bvhl", + "chainId": 90210, + "networkId": 90210, + "status": "incubating", + "explorers": [ + { + "name": "Beverly Hills explorer", + "url": "https://explorer.beverlyhills.ethdevops.io", + "standard": "none" + } + ] + }, + { + "name": "Lambda Testnet", + "chain": "Lambda", + "rpc": [ + "https://evm.lambda.top/" + ], + "faucets": [ + "https://faucet.lambda.top" + ], + "nativeCurrency": { + "name": "test-Lamb", + "symbol": "LAMB", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "lambda-testnet", + "chainId": 92001, + "networkId": 92001, + "icon": "lambda", + "explorers": [ + { + "name": "Lambda EVM Explorer", + "url": "https://explorer.lambda.top", + "standard": "EIP3091", + "icon": "lambda" + } + ] + }, + { + "name": "Boba BNB Mainnet Old", + "chain": "Boba BNB Mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnbOld", + "chainId": 97288, + "networkId": 97288, + "explorers": [ + { + "name": "Boba BNB block explorer", + "url": "https://blockexplorer.bnb.boba.network", + "standard": "none" + } + ], + "status": "deprecated" + }, + { + "name": "VeChain", + "chain": "VeChain", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain", + "chainId": 100009, + "networkId": 100009, + "explorers": [ + { + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" + }, + { + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } + ] + }, + { + "name": "VeChain Testnet", + "chain": "VeChain", + "rpc": [], + "faucets": [ + "https://faucet.vecha.in" + ], + "nativeCurrency": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "infoURL": "https://vechain.org", + "shortName": "vechain-testnet", + "chainId": 100010, + "networkId": 100010, + "explorers": [ + { + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } + ] + }, + { + "name": "Deprecated Chiado Testnet", + "chain": "CHI1", + "icon": "gnosis", + "rpc": [ + "https://rpc-chiado.gnosistestnet.com" + ], + "faucets": [ + "https://gnosisfaucet.com" + ], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi1", + "chainId": 100100, + "networkId": 100100, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout-chiado.gnosistestnet.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "deprecated" + }, + { + "name": "Soverun Testnet", + "chain": "SVRN", + "icon": "soverunTestnet", + "rpc": [ + "https://testnet-rpc.soverun.com" + ], + "faucets": [ + "https://faucet.soverun.com" + ], + "nativeCurrency": { + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 + }, + "infoURL": "https://soverun.com", + "shortName": "SVRNt", + "chainId": 101010, + "networkId": 101010, + "explorers": [ + { + "name": "Soverun", + "url": "https://testnet.soverun.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Condor Test Network", + "chain": "CONDOR", + "icon": "condor", + "rpc": [ + "https://testnet.condor.systems/rpc" + ], + "faucets": [ + "https://faucet.condor.systems" + ], + "nativeCurrency": { + "name": "Condor Native Token", + "symbol": "CONDOR", + "decimals": 18 + }, + "infoURL": "https://condor.systems", + "shortName": "condor", + "chainId": 188881, + "networkId": 188881, + "explorers": [ + { + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } + ] + }, + { + "name": "Milkomeda A1 Testnet", + "chain": "milkTAlgo", + "icon": "milkomeda", + "rpc": [ + "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkTAlgo", + "symbol": "mTAlgo", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAlgo", + "chainId": 200202, + "networkId": 200202, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ] + }, + { + "name": "Mythical Chain", + "chain": "MYTH", + "rpc": [ + "https://chain-rpc.mythicalgames.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Mythos", + "symbol": "MYTH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://mythicalgames.com/", + "shortName": "myth", + "chainId": 201804, + "networkId": 201804, + "icon": "mythical", + "explorers": [ + { + "name": "Mythical Chain Explorer", + "url": "https://explorer.mythicalgames.com", + "icon": "mythical", + "standard": "EIP3091" + } + ] + }, + { + "name": "Decimal Smart Chain Testnet", + "chain": "tDSC", + "rpc": [ + "https://testnet-val.decimalchain.com/web3" + ], + "faucets": [], + "nativeCurrency": { + "name": "Decimal", + "symbol": "tDEL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://decimalchain.com", + "shortName": "tDSC", + "chainId": 202020, + "networkId": 202020, + "icon": "dsc", + "explorers": [ + { + "name": "DSC Explorer Testnet", + "url": "https://testnet.explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ] + }, + { + "name": "Jellie", + "title": "Twala Testnet Jellie", + "shortName": "twl-jellie", + "chain": "ETH", + "chainId": 202624, + "networkId": 202624, + "icon": "twala", + "nativeCurrency": { + "name": "Twala Coin", + "symbol": "TWL", + "decimals": 18 + }, + "rpc": [ + "https://jellie-rpc.twala.io/", + "wss://jellie-rpc-wss.twala.io/" + ], + "faucets": [], + "infoURL": "https://twala.io/", + "explorers": [ + { + "name": "Jellie Blockchain Explorer", + "url": "https://jellie.twala.io", + "standard": "EIP3091", + "icon": "twala" + } + ] + }, + { + "name": "Mas Mainnet", + "chain": "MAS", + "rpc": [ + "http://node.masnet.ai:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Master Bank", + "symbol": "MAS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://masterbank.org", + "shortName": "mas", + "chainId": 220315, + "networkId": 220315, + "icon": "mas", + "explorers": [ + { + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "icon": "explorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Saakuru Testnet", + "chain": "Saakuru", + "icon": "saakuru", + "rpc": [ + "https://rpc-testnet.saakuru.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru-testnet", + "chainId": 247253, + "networkId": 247253, + "explorers": [ + { + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "CMP-Mainnet", + "chain": "CMP", + "rpc": [ + "https://mainnet.block.caduceus.foundation", + "wss://mainnet.block.caduceus.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Caduceus Token", + "symbol": "CMP", + "decimals": 18 + }, + "infoURL": "https://caduceus.foundation/", + "shortName": "cmp-mainnet", + "chainId": 256256, + "networkId": 256256, + "explorers": [ + { + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } + ] + }, + { + "name": "Gear Zero Network Testnet", + "chain": "GearZero", + "rpc": [ + "https://gzn-test.linksme.info" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "infoURL": "https://token.gearzero.ca/testnet", + "shortName": "gz-testnet", + "chainId": 266256, + "networkId": 266256, + "slip44": 266256, + "explorers": [] + }, + { + "name": "Filecoin - Calibration testnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.calibration.node.glif.io/rpc/v1" + ], + "faucets": [ + "https://faucet.calibration.fildev.network/" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-calibration", + "chainId": 314159, + "networkId": 314159, + "slip44": 1, + "explorers": [ + { + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" + }, + { + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" + } + ] + }, + { + "name": "Oone Chain Testnet", + "chain": "OONE", + "rpc": [ + "https://blockchain-test.adigium.world" + ], + "faucets": [ + "https://apps-test.adigium.com/faucet" + ], + "nativeCurrency": { + "name": "Oone", + "symbol": "tOONE", + "decimals": 18 + }, + "infoURL": "https://oone.world", + "shortName": "oonetest", + "chainId": 333777, + "networkId": 333777, + "explorers": [ + { + "name": "expedition", + "url": "https://explorer-test.adigium.world", + "standard": "none" + } + ] + }, + { + "name": "Metal C-Chain", + "chain": "Metal", + "rpc": [ + "https://api.metalblockchain.org/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "infoURL": "https://www.metalblockchain.org/", + "shortName": "metal", + "chainId": 381931, + "networkId": 381931, + "slip44": 9005, + "explorers": [ + { + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metal Tahoe C-Chain", + "chain": "Metal", + "rpc": [ + "https://tahoe.metalblockchain.org/ext/bc/C/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "infoURL": "https://www.metalblockchain.org/", + "shortName": "Tahoe", + "chainId": 381932, + "networkId": 381932, + "slip44": 9005, + "explorers": [ + { + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kekchain", + "chain": "kek", + "rpc": [ + "https://mainnet.kekchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "KEK", + "symbol": "KEK", + "decimals": 18 + }, + "infoURL": "https://kekchain.com", + "shortName": "KEK", + "chainId": 420420, + "networkId": 103090, + "icon": "kek", + "explorers": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kekchain (kektest)", + "chain": "kek", + "rpc": [ + "https://testnet.kekchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "tKEK", + "symbol": "tKEK", + "decimals": 18 + }, + "infoURL": "https://kekchain.com", + "shortName": "tKEK", + "chainId": 420666, + "networkId": 1, + "icon": "kek", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } + ] + }, + { + "name": "Fastex Chain testnet", + "chain": "FTN", + "title": "Fastex Chain testnet", + "rpc": [ + "https://rpc.testnet.fastexchain.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "infoURL": "https://fastex.com", + "shortName": "ftn", + "chainId": 424242, + "networkId": 424242, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } + ] + }, + { + "name": "Dexalot Subnet", + "chain": "DEXALOT", + "icon": "dexalot", + "rpc": [ + "https://subnets.avax.network/dexalot/mainnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "infoURL": "https://dexalot.com", + "shortName": "dexalot", + "chainId": 432204, + "networkId": 432204, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets.avax.network/dexalot", + "standard": "EIP3091" + } + ] + }, + { + "name": "Scroll", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr", + "chainId": 534352, + "networkId": 534352, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + } + }, + { + "name": "Scroll Alpha Testnet", + "chain": "ETH", + "status": "incubating", + "rpc": [ + "https://alpha-rpc.scroll.io/l2" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-alpha", + "chainId": 534353, + "networkId": 534353, + "explorers": [ + { + "name": "Scroll Alpha Testnet Block Explorer", + "url": "https://blockscout.scroll.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [] + } + }, + { + "name": "Scroll Pre-Alpha Testnet", + "chain": "ETH", + "rpc": [ + "https://prealpha-rpc.scroll.io/l2" + ], + "faucets": [ + "https://prealpha.scroll.io/faucet" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "TSETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-prealpha", + "chainId": 534354, + "networkId": 534354, + "explorers": [ + { + "name": "Scroll L2 Block Explorer", + "url": "https://l2scan.scroll.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bear Network Chain Mainnet", + "chain": "BRNKC", + "icon": "brnkc", + "rpc": [ + "https://brnkc-mainnet.bearnetwork.net", + "https://brnkc-mainnet1.bearnetwork.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bear Network Chain Native Token", + "symbol": "BRNKC", + "decimals": 18 + }, + "infoURL": "https://bearnetwork.net", + "shortName": "BRNKC", + "chainId": 641230, + "networkId": 641230, + "explorers": [ + { + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bear Network Chain Testnet", + "chain": "BRNKCTEST", + "icon": "brnkc", + "rpc": [ + "https://brnkc-test.bearnetwork.net" + ], + "faucets": [ + "https://faucet.bearnetwork.net" + ], + "nativeCurrency": { + "name": "Bear Network Chain Testnet Token", + "symbol": "tBRNKC", + "decimals": 18 + }, + "infoURL": "https://bearnetwork.net", + "shortName": "BRNKCTEST", + "chainId": 751230, + "networkId": 751230, + "explorers": [ + { + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "OctaSpace", + "chain": "OCTA", + "rpc": [ + "https://rpc.octa.space", + "wss://rpc.octa.space" + ], + "faucets": [], + "nativeCurrency": { + "name": "OctaSpace", + "symbol": "OCTA", + "decimals": 18 + }, + "infoURL": "https://octa.space", + "shortName": "octa", + "chainId": 800001, + "networkId": 800001, + "icon": "octaspace", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.octa.space", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Posichain Mainnet Shard 0", + "chain": "PSC", + "rpc": [ + "https://api.posichain.org", + "https://api.s0.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-s0", + "chainId": 900000, + "networkId": 900000, + "explorers": [ + { + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Posichain Testnet Shard 0", + "chain": "PSC", + "rpc": [ + "https://api.s0.t.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-t-s0", + "chainId": 910000, + "networkId": 910000, + "explorers": [ + { + "name": "Posichain Explorer Testnet", + "url": "https://explorer-testnet.posichain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Posichain Devnet Shard 0", + "chain": "PSC", + "rpc": [ + "https://api.s0.d.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-d-s0", + "chainId": 920000, + "networkId": 920000, + "explorers": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Posichain Devnet Shard 1", + "chain": "PSC", + "rpc": [ + "https://api.s1.d.posichain.org" + ], + "faucets": [ + "https://faucet.posichain.org/" + ], + "nativeCurrency": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "infoURL": "https://posichain.org", + "shortName": "psc-d-s1", + "chainId": 920001, + "networkId": 920001, + "explorers": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "FNCY Testnet", + "chain": "FNCY", + "rpc": [ + "https://fncy-testnet-seed.fncy.world" + ], + "faucets": [ + "https://faucet-testnet.fncy.world" + ], + "nativeCurrency": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "infoURL": "https://fncyscan-testnet.fncy.world", + "shortName": "tFNCY", + "chainId": 923018, + "networkId": 923018, + "icon": "fncy", + "explorers": [ + { + "name": "fncy scan testnet", + "url": "https://fncyscan-testnet.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zhejiang", + "chain": "ETH", + "rpc": [ + "https://rpc.zhejiang.ethpandaops.io" + ], + "faucets": [ + "https://faucet.zhejiang.ethpandaops.io", + "https://zhejiang-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zhejiang.ethpandaops.io", + "shortName": "zhejiang", + "chainId": 1337803, + "networkId": 1337803, + "icon": "ethereum", + "explorers": [ + { + "name": "Zhejiang Explorer", + "url": "https://zhejiang.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + } + ] + }, + { + "name": "Plian Mainnet Main", + "chain": "Plian", + "rpc": [ + "https://mainnet.plian.io/pchain" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "infoURL": "https://plian.org/", + "shortName": "plian-mainnet", + "chainId": 2099156, + "networkId": 2099156, + "explorers": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "standard": "EIP3091" + } + ] + }, + { + "name": "Filecoin - Butterfly testnet", + "chain": "FIL", + "status": "incubating", + "rpc": [], + "faucets": [ + "https://faucet.butterfly.fildev.network" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-butterfly", + "icon": "filecoin", + "chainId": 3141592, + "networkId": 3141592, + "slip44": 1, + "explorers": [] + }, + { + "name": "Imversed Mainnet", + "chain": "Imversed", + "rpc": [ + "https://jsonrpc.imversed.network", + "https://ws-jsonrpc.imversed.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "infoURL": "https://imversed.com", + "shortName": "imversed", + "chainId": 5555555, + "networkId": 5555555, + "icon": "imversed", + "explorers": [ + { + "name": "Imversed EVM explorer (Blockscout)", + "url": "https://txe.imversed.network", + "icon": "imversed", + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-c.imversed.com", + "icon": "imversed", + "standard": "none" + } + ] + }, + { + "name": "Imversed Testnet", + "chain": "Imversed", + "rpc": [ + "https://jsonrpc-test.imversed.network", + "https://ws-jsonrpc-test.imversed.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "infoURL": "https://imversed.com", + "shortName": "imversed-testnet", + "chainId": 5555558, + "networkId": 5555558, + "icon": "imversed", + "explorers": [ + { + "name": "Imversed EVM Explorer (Blockscout)", + "url": "https://txe-test.imversed.network", + "icon": "imversed", + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-t.imversed.com", + "icon": "imversed", + "standard": "none" + } + ] + }, + { + "name": "Saakuru Mainnet", + "chain": "Saakuru", + "icon": "saakuru", + "rpc": [ + "https://rpc.saakuru.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru", + "chainId": 7225878, + "networkId": 7225878, + "explorers": [ + { + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "OpenVessel", + "chain": "VSL", + "icon": "vsl", + "rpc": [ + "https://mainnet-external.openvessel.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Vessel ETH", + "symbol": "VETH", + "decimals": 18 + }, + "infoURL": "https://www.openvessel.io", + "shortName": "vsl", + "chainId": 7355310, + "networkId": 7355310, + "explorers": [ + { + "name": "openvessel-mainnet", + "url": "https://mainnet-explorer.openvessel.io", + "standard": "none" + } + ] + }, + { + "name": "QL1 Testnet", + "chain": "QOM", + "status": "incubating", + "rpc": [ + "https://rpc.testnet.qom.one" + ], + "faucets": [ + "https://faucet.qom.one" + ], + "nativeCurrency": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "infoURL": "https://qom.one", + "shortName": "tqom", + "chainId": 7668378, + "networkId": 7668378, + "icon": "qom", + "explorers": [ + { + "name": "QL1 Testnet Explorer", + "url": "https://testnet.qom.one", + "icon": "qom", + "standard": "EIP3091" + } + ] + }, + { + "name": "Plian Mainnet Subchain 1", + "chain": "Plian", + "rpc": [ + "https://mainnet.plian.io/child_0" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "infoURL": "https://plian.org", + "shortName": "plian-mainnet-l2", + "chainId": 8007736, + "networkId": 8007736, + "explorers": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/child_0", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-2099156", + "type": "L2" + } + }, + { + "name": "Plian Testnet Subchain 1", + "chain": "Plian", + "rpc": [ + "https://testnet.plian.io/child_test" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Token", + "symbol": "TPI", + "decimals": 18 + }, + "infoURL": "https://plian.org/", + "shortName": "plian-testnet-l2", + "chainId": 10067275, + "networkId": 10067275, + "explorers": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-16658437", + "type": "L2" + } + }, + { + "name": "Soverun Mainnet", + "chain": "SVRN", + "icon": "soverun", + "rpc": [ + "https://mainnet-rpc.soverun.com" + ], + "faucets": [ + "https://faucet.soverun.com" + ], + "nativeCurrency": { + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 + }, + "infoURL": "https://soverun.com", + "shortName": "SVRNm", + "chainId": 10101010, + "networkId": 10101010, + "explorers": [ + { + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Anduschain Mainnet", + "chain": "anduschain", + "rpc": [ + "https://rpc.anduschain.io/rpc", + "wss://rpc.anduschain.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "DAON", + "symbol": "DEB", + "decimals": 18 + }, + "infoURL": "https://anduschain.io/", + "shortName": "anduschain-mainnet", + "chainId": 14288640, + "networkId": 14288640, + "explorers": [ + { + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": "daon", + "standard": "none" + } + ] + }, + { + "name": "Plian Testnet Main", + "chain": "Plian", + "rpc": [ + "https://testnet.plian.io/testnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plian Testnet Token", + "symbol": "TPI", + "decimals": 18 + }, + "infoURL": "https://plian.org", + "shortName": "plian-testnet", + "chainId": 16658437, + "networkId": 16658437, + "explorers": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "Excelon Mainnet", + "chain": "XLON", + "icon": "xlon", + "rpc": [ + "https://edgewallet1.xlon.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Excelon", + "symbol": "xlon", + "decimals": 18 + }, + "infoURL": "https://xlon.org", + "shortName": "xlon", + "chainId": 22052002, + "networkId": 22052002, + "explorers": [ + { + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Excoincial Chain Volta-Testnet", + "chain": "TEXL", + "icon": "exl", + "rpc": [ + "https://testnet-rpc.exlscan.com" + ], + "faucets": [ + "https://faucet.exlscan.com" + ], + "nativeCurrency": { + "name": "TExlcoin", + "symbol": "TEXL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "exlvolta", + "chainId": 27082017, + "networkId": 27082017, + "explorers": [ + { + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } + ] + }, + { + "name": "Excoincial Chain Mainnet", + "chain": "EXL", + "icon": "exl", + "rpc": [ + "https://rpc.exlscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Exlcoin", + "symbol": "EXL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "exl", + "chainId": 27082022, + "networkId": 27082022, + "explorers": [ + { + "name": "exlscan", + "url": "https://exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } + ] + }, + { + "name": "Flachain Mainnet", + "chain": "FLX", + "icon": "flacoin", + "rpc": [ + "https://flachain.flaexchange.top/" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Flacoin", + "symbol": "FLA", + "decimals": 18 + }, + "infoURL": "https://www.flaexchange.top", + "shortName": "fla", + "chainId": 29032022, + "networkId": 29032022, + "explorers": [ + { + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } + ] + }, + { + "name": "Filecoin - Local testnet", + "chain": "FIL", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-local", + "icon": "filecoin", + "chainId": 31415926, + "networkId": 31415926, + "slip44": 1, + "explorers": [] + }, + { + "name": "maistestsubnet", + "chain": "MAI", + "rpc": [ + "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "maistestsubnet", + "symbol": "MAI", + "decimals": 18 + }, + "infoURL": "", + "shortName": "mais", + "chainId": 43214913, + "networkId": 43214913, + "explorers": [ + { + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } + ] + }, + { + "name": "Autonity Bakerloo (Thames) Testnet", + "chain": "AUT", + "rpc": [ + "https://rpc1.bakerloo.autonity.org/", + "wss://rpc1.bakerloo.autonity.org/ws/" + ], + "faucets": [ + "https://faucet.autonity.org/" + ], + "nativeCurrency": { + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "bakerloo-0", + "chainId": 65010000, + "networkId": 65010000, + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Autonity Piccadilly (Thames) Testnet", + "chain": "AUT", + "rpc": [ + "https://rpc1.piccadilly.autonity.org/", + "wss://rpc1.piccadilly.autonity.org/ws/" + ], + "faucets": [ + "https://faucet.autonity.org/" + ], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-0", + "chainId": 65100000, + "networkId": 65100000, + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Calypso NFT Hub (SKALE Testnet)", + "title": "Calypso NFT Hub Testnet", + "chain": "staging-utter-unripe-menkar", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar" + ], + "faucets": [ + "https://sfuel.dirtroad.dev/staging" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-testnet", + "chainId": 344106930, + "networkId": 344106930, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com", + "icon": "calypso", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nebula Staging", + "chain": "staging-faint-slimy-achird", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird", + "wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird" + ], + "faucets": [], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-staging", + "chainId": 503129905, + "networkId": 503129905, + "explorers": [ + { + "name": "nebula", + "url": "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com", + "icon": "nebula", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nebula Mainnet", + "chain": "green-giddy-denebola", + "rpc": [ + "https://mainnet.skalenodes.com/v1/green-giddy-denebola", + "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" + ], + "faucets": [], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-mainnet", + "chainId": 1482601649, + "networkId": 1482601649, + "explorers": [ + { + "name": "nebula", + "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", + "icon": "nebula", + "standard": "EIP3091" + } + ] + }, + { + "name": "Calypso NFT Hub (SKALE)", + "title": "Calypso NFT Hub Mainnet", + "chain": "honorable-steel-rasalhague", + "rpc": [ + "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" + ], + "faucets": [ + "https://sfuel.dirtroad.dev" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-mainnet", + "chainId": 1564830818, + "networkId": 1564830818, + "explorers": [ + { + "name": "Blockscout", + "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", + "icon": "calypso", + "standard": "EIP3091" + } + ] + }, + { + "name": "Harmony Devnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://api.s1.ps.hmny.io", + "https://api.s1.ps.hmny.io" + ], + "faucets": [ + "http://dev.faucet.easynode.one/" + ], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-ps-s0", + "chainId": 1666900000, + "networkId": 1666900000, + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.ps.hmny.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Europa SKALE Chain", + "chain": "europa", + "icon": "europa", + "rpc": [ + "https://mainnet.skalenodes.com/v1/elated-tan-skat", + "wss://mainnet.skalenodes.com/v1/elated-tan-skat" + ], + "faucets": [ + "https://ruby.exchange/faucet.html", + "https://sfuel.mylilius.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "europa", + "chainId": 2046399126, + "networkId": 2046399126, + "explorers": [ + { + "name": "Blockscout", + "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://ruby.exchange/bridge.html" + } + ] + } + }, + { + "name": "Zeniq", + "chain": "ZENIQ", + "rpc": [ + "https://smart.zeniq.network:9545" + ], + "faucets": [ + "https://faucet.zeniq.net/" + ], + "nativeCurrency": { + "name": "Zeniq", + "symbol": "ZENIQ", + "decimals": 18 + }, + "infoURL": "https://www.zeniq.dev/", + "shortName": "zeniq", + "chainId": 383414847825, + "networkId": 383414847825, + "explorers": [ + { + "name": "zeniq-smart-chain-explorer", + "url": "https://smart.zeniq.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "PDC Mainnet", + "chain": "IPDC", + "rpc": [ + "https://mainnet.ipdc.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "PDC", + "symbol": "PDC", + "decimals": 18 + }, + "infoURL": "https://ipdc.io", + "shortName": "ipdc", + "chainId": 666301171999, + "networkId": 666301171999, + "explorers": [ + { + "name": "ipdcscan", + "url": "https://scan.ipdc.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "AlveyChain Mainnet", + "chain": "ALV", + "rpc": [ + "https://elves-core1.alvey.io", + "https://elves-core2.alvey.io", + "https://elves-core3.alvey.io" + ], + "nativeCurrency": { + "name": "AlveyCoin", + "symbol": "ALV", + "decimals": 18 + }, + "infoURL": "https://www.alveychain.com/", + "shortName": "ALV", + "chainId": 3797, + "networkId": 3797, + "explorers": [ + { + "name": "AlveyScan", + "url": "https://alveyscan.com", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1685016287246.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1685016249560.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1685016218214.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1685016276305.png" + } + }, + { + "name": "PEGO Mainnet", + "chainId": 20201022, + "shortName": "PEGO", + "chain": "PEGO", + "network": "mainnet", + "networkId": 20201022, + "nativeCurrency": { + "name": "PEGO", + "symbol": "PG", + "decimals": 18 + }, + "rpc": [ + "https://pegorpc.com", + "https://node1.pegorpc.com", + " https://node2.pegorpc.com" + ], + "faucets": [], + "infoURL": "https://pego.network", + "app_resource": { + "ic_chain_select": "https://drive.google.com/file/d/1eoxLbi4CIXW_St3fkoctRwPrdD4-Nyb8/view?usp=drive_link", + "ic_chain_unselect": "https://drive.google.com/file/d/1_UgiAXINqJhMWloRz2W5dkBxmTtmugvM/view?usp=drive_link", + "color_chain_bg": "0xFF9D00" + } + }, + { + "name": "Acria IntelliChain", + "chain": "AIC", + "rpc": [ + "https://aic.acria.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "ACRIA", + "symbol": "ACRIA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://acria.ai", + "shortName": "aic", + "chainId": 47, + "networkId": 47, + "explorers": [ + { + "name": "Acria IntelliChain-Explorer", + "url": "https://explorer.acria.ai", + "standard": "EIP3091" + } + ] + }, + { + "name": "Linqto Devnet", + "chain": "LNQ", + "rpc": [ + "https://linqto-dev.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 18 + }, + "infoURL": "https://linqto.com", + "shortName": "linqto-devnet", + "chainId": 84, + "networkId": 84, + "explorers": [ + { + "name": "Linqto Devnet Explorer", + "url": "https://explorer.linqto-dev.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SwissDLT", + "chain": "SDLT", + "rpc": [ + "https://rpc.swissdlt.ch" + ], + "faucets": [], + "nativeCurrency": { + "name": "BCTS", + "symbol": "BCTS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://bcts.ch", + "shortName": "sdlt", + "chainId": 94, + "networkId": 94, + "icon": "bcts", + "explorers": [ + { + "name": "SwissDLT Explorer", + "url": "https://explorer.swissdlt.ch", + "icon": "bcts", + "standard": "EIP3091" + } + ] + }, + { + "name": "Six Protocol", + "chain": "SIXNET", + "icon": "six", + "rpc": [ + "https://sixnet-rpc-evm.sixprotocol.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "SIX evm token", + "symbol": "SIX", + "decimals": 18 + }, + "infoURL": "https://six.network/", + "shortName": "six", + "chainId": 98, + "networkId": 98, + "explorers": [ + { + "name": "SIX Scan", + "url": "https://sixscan.io/sixnet", + "standard": "none", + "icon": "six" + } + ] + }, + { + "name": "Coinbit Mainnet", + "chain": "Coinbit", + "rpc": [ + "https://coinbit-rpc-mainnet.chain.sbcrypto.app" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas IDR", + "symbol": "GIDR", + "decimals": 18 + }, + "infoURL": "https://crypto.stockbit.com/", + "shortName": "coinbit", + "chainId": 112, + "networkId": 112, + "icon": "coinbit", + "explorers": [ + { + "name": "blockscout", + "url": "https://coinbit-explorer.chain.sbcrypto.app", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Uptick Mainnet", + "chain": "Uptick", + "rpc": [ + "https://json-rpc.uptick.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Uptick", + "symbol": "UPTICK", + "decimals": 18 + }, + "infoURL": "https://www.uptick.network", + "shortName": "auptick", + "chainId": 117, + "networkId": 117, + "icon": "uptick", + "explorers": [ + { + "name": "Uptick Explorer", + "url": "https://evm-explorer.uptick.network", + "icon": "uptick", + "standard": "none" + } + ] + }, + { + "name": "iExec Sidechain", + "chain": "Bellecour", + "icon": "rlc", + "rpc": [ + "https://bellecour.iex.ec" + ], + "faucets": [], + "nativeCurrency": { + "name": "xRLC", + "symbol": "xRLC", + "decimals": 18 + }, + "infoURL": "https://iex.ec", + "shortName": "rlc", + "chainId": 134, + "networkId": 134, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.bellecour.iex.ec", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Deamchain Mainnet", + "chain": "Deamchain", + "icon": "deam", + "rpc": [ + "https://mainnet.deamchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 + }, + "infoURL": "https://deamchain.com", + "shortName": "deam", + "chainId": 136, + "networkId": 136, + "explorers": [ + { + "name": "Deamchain Block Explorer", + "url": "https://scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } + ] + }, + { + "name": "Defi Oracle Meta Mainnet", + "chain": "dfiometa", + "icon": "defioraclemeta", + "rpc": [ + "https://rpc.public-0138.defi-oracle.io", + "wss://rpc.public-0138.defi-oracle.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://defi-oracle.io/", + "shortName": "dfio-meta-main", + "chainId": 138, + "networkId": 1, + "slip44": 60, + "ens": { + "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" + }, + "explorers": [ + { + "name": "Quorum Explorer", + "url": "https://public-0138.defi-oracle.io", + "standard": "none" + } + ] + }, + { + "name": "WoopChain Mainnet", + "chain": "WOOP", + "icon": "woopchain", + "rpc": [ + "https://rpc.woop.ai/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "WoopCoin", + "symbol": "WOOC", + "decimals": 18 + }, + "infoURL": "https://wikiwoop.com", + "shortName": "woop", + "chainId": 139, + "networkId": 139, + "explorers": [ + { + "name": "wikiwoop", + "url": "https://explorer.wikiwoop.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Six Protocol Testnet", + "chain": "FIVENET", + "icon": "six", + "rpc": [ + "https://rpc-evm.fivenet.sixprotocol.net" + ], + "faucets": [ + "https://faucet.sixprotocol.net" + ], + "nativeCurrency": { + "name": "SIX testnet evm token", + "symbol": "tSIX", + "decimals": 18 + }, + "infoURL": "https://six.network/", + "shortName": "sixt", + "chainId": 150, + "networkId": 150, + "explorers": [ + { + "name": "SIX Scan fivenet", + "url": "https://sixscan.io/fivenet", + "standard": "none", + "icon": "six" + } + ] + }, + { + "name": "Tenet Testnet", + "title": "Tenet Testnet", + "chain": "TENET", + "icon": "tenet", + "rpc": [ + "https://rpc.testnet.tenet.org" + ], + "faucets": [ + "https://faucet.testnet.tenet.org" + ], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet-testnet", + "chainId": 155, + "networkId": 155, + "explorers": [ + { + "name": "TenetScan Testnet", + "url": "https://testnet.tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ] + }, + { + "name": "OEBlock Testnet", + "chain": "OEBt", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": [ + "https://testnet-rpc.oeblock.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "OEBlock", + "symbol": "OEB", + "decimals": 18 + }, + "infoURL": "https://www.oeblock.com/", + "shortName": "obe", + "chainId": 156, + "networkId": 156, + "icon": "oescan", + "explorers": [ + { + "name": "OEScan explorer", + "url": "https://testnet.oescan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Omni Testnet 1", + "chain": "Omni", + "rpc": [ + "https://testnet-1.omni.network" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "infoURL": "https://docs.omni.network/", + "shortName": "omni_testnet", + "chainId": 165, + "networkId": 165, + "explorers": [ + { + "name": "Omni Explorer", + "url": "https://testnet-1.explorer.omni.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "OKBChain Testnet", + "chain": "okbchain", + "rpc": [ + "https://okbtestrpc.okbchain.org" + ], + "faucets": [ + "https://www.oklink.com/okbc-test" + ], + "nativeCurrency": { + "name": "OKBChain Global Utility Token in testnet", + "symbol": "OKB", + "decimals": 18 + }, + "features": [], + "infoURL": "https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain", + "shortName": "tokb", + "chainId": 195, + "networkId": 195, + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/okbc-test", + "standard": "EIP3091" + } + ], + "status": "active" + }, + { + "name": "Neutrinos TestNet", + "chain": "NEUTR", + "rpc": [ + "https://testnet-rpc.neutrinoschain.com" + ], + "faucets": [ + "https://neutrinoschain.com/faucet" + ], + "nativeCurrency": { + "name": "Neutrinos", + "symbol": "NEUTR", + "decimals": 18 + }, + "infoURL": "https://docs.neutrinoschain.com", + "shortName": "NEUTR", + "chainId": 197, + "networkId": 197, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.neutrinoschain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Structx Mainnet", + "chain": "utx", + "rpc": [ + "https://mainnet.structx.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Notes", + "symbol": "utx", + "decimals": 18 + }, + "infoURL": "https://structx.io", + "shortName": "utx", + "chainId": 208, + "networkId": 208 + }, + { + "name": "SwapDEX", + "chain": "SDX", + "rpc": [ + "https://rpc.swapdex.network", + "wss://ss.swapdex.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "SwapDEX", + "symbol": "SDX", + "decimals": 18 + }, + "infoURL": "https://swapdex.network/", + "shortName": "SDX", + "chainId": 230, + "networkId": 230, + "explorers": [ + { + "name": "SwapDEX", + "url": "https://evm.swapdex.network", + "standard": "none" + } + ] + }, + { + "name": "Deamchain Testnet", + "chain": "Deamchain", + "icon": "deam", + "rpc": [ + "https://testnet.deamchain.com" + ], + "faucets": [ + "https://faucet.deamchain.com" + ], + "nativeCurrency": { + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 + }, + "infoURL": "https://deamchain.com", + "shortName": "deamtest", + "chainId": 236, + "networkId": 236, + "explorers": [ + { + "name": "Deamchain Testnet Explorer", + "url": "https://testnet-scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } + ] + }, + { + "name": "Plinga Mainnet", + "chain": "Plinga", + "icon": "plinga", + "rpc": [ + "https://rpcurl.mainnet.plgchain.com", + "https://rpcurl.plgchain.blockchain.evmnode.online", + "https://rpcurl.mainnet.plgchain.plinga.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plinga", + "symbol": "PLINGA", + "decimals": 18 + }, + "infoURL": "https://www.plinga.technology/", + "shortName": "plgchain", + "chainId": 242, + "networkId": 242, + "explorers": [ + { + "name": "plgscan", + "url": "https://www.plgscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Neonlink Mainnet", + "chain": "Neonlink", + "rpc": [ + "https://mainnet.neonlink.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neonlink Native Token", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neonlink.io", + "shortName": "neon", + "chainId": 259, + "networkId": 259, + "icon": "neonlink", + "explorers": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" + } + ] + }, + { + "name": "EgonCoin Mainnet", + "chain": "EGON", + "icon": "egonicon", + "rpc": [ + "https://rpc.egcscan.com" + ], + "faucets": [ + "https://faucet.egcscan.com" + ], + "nativeCurrency": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "infoURL": "https://egcscan.com", + "shortName": "EGONm", + "chainId": 271, + "networkId": 271, + "explorers": [ + { + "name": "EgonCoin Mainnet", + "url": "https://egcscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "LaChain", + "chain": "LaChain", + "icon": "LaChain", + "rpc": [ + "https://rpc1.mainnet.lachain.network", + "https://rpc2.mainnet.lachain.network", + "https://lachain.rpc-nodes.cedalio.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "LaCoin", + "symbol": "LAC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "lachain", + "chainId": 274, + "networkId": 274, + "explorers": [ + { + "name": "LaChain Explorer", + "url": "https://explorer.lachain.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Neurochain Testnet", + "chain": "NCN", + "rpc": [ + "https://nc-rpc-test1.neurochain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neurochain", + "symbol": "tNCN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.neurochain.ai", + "shortName": "ncnt", + "chainId": 303, + "networkId": 303, + "explorers": [ + { + "name": "neuroscan", + "url": "https://testnet.ncnscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Neurochain Mainnet", + "chain": "NCN", + "rpc": [ + "https://nc-rpc-prd1.neurochain.io", + "https://nc-rpc-prd2.neurochain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Neurochain", + "symbol": "NCN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.neurochain.ai", + "shortName": "ncn", + "chainId": 313, + "networkId": 313, + "explorers": [ + { + "name": "neuroscan", + "url": "https://ncnscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ozone Chain Testnet", + "chain": "OZONE", + "rpc": [ + "https://node1.testnet.ozonechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "infoURL": "https://ozonechain.io", + "shortName": "ozo_tst", + "chainId": 401, + "networkId": 401, + "icon": "ozonechain", + "explorers": [ + { + "name": "OZONE Scan", + "url": "https://testnet.ozonescan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "LaTestnet", + "chain": "LaTestnet", + "icon": "LaChain", + "rpc": [ + "https://rpc.testnet.lachain.network", + "https://lachain-testnet.rpc-nodes.cedalio.dev" + ], + "faucets": [ + "https://faucet.lachain.network" + ], + "nativeCurrency": { + "name": "Test LaCoin", + "symbol": "TLA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "latestnet", + "chainId": 418, + "networkId": 418, + "explorers": [ + { + "name": "LaTestnet Explorer", + "url": "https://testexplorer.lachain.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "PGN (Public Goods Network)", + "chain": "ETH", + "rpc": [ + "https://rpc.publicgoods.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://publicgoods.network/", + "shortName": "PGN", + "chainId": 424, + "networkId": 424, + "icon": "publicGoodsNetwork", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.publicgoods.network" + } + ] + } + }, + { + "name": "ARZIO Chain", + "chain": "ARZIO", + "icon": "arzio", + "rpc": [ + "https://chain-rpc.arzio.co" + ], + "faucets": [], + "nativeCurrency": { + "name": "ARZIO", + "symbol": "AZO", + "decimals": 18 + }, + "infoURL": "https://chain.arzio.co", + "shortName": "arzio", + "chainId": 456, + "networkId": 456, + "explorers": [ + { + "name": "ARZIO Scan", + "url": "https://scan.arzio.co", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rollux Mainnet", + "chain": "SYS", + "rpc": [ + "https://rpc.rollux.com", + "https://rollux.public-rpc.com", + "wss://rpc.rollux.com/wss", + "https://rpc.ankr.com/rollux/${ANKR_API_KEY}" + ], + "faucets": [ + "https://rollux.id/faucetapp" + ], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "sys-rollux", + "chainId": 570, + "networkId": 570, + "explorers": [ + { + "name": "Rollux Explorer", + "url": "https://explorer.rollux.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Avocado", + "chain": "Avocado", + "rpc": [ + "https://rpc.avocado.instadapp.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://avocado.instadapp.io", + "shortName": "avocado", + "chainId": 634, + "networkId": 634, + "icon": "avocado", + "explorers": [ + { + "name": "avoscan", + "url": "https://avoscan.co", + "icon": "avocado", + "standard": "none" + } + ] + }, + { + "name": "Shibarium Beta", + "chain": "Shibarium", + "icon": "shibarium", + "rpc": [ + "https://puppynet.shibrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://beta.shibariumtech.com", + "shortName": "shibarium", + "chainId": 719, + "networkId": 719, + "explorers": [ + { + "name": "shibscan", + "url": "https://puppyscan.shib.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "MAAL Sharia Chain", + "chain": "MAAL", + "icon": "maal", + "rpc": [ + "https://node1-mainnet.maalscan.io/", + "https://node2-mainnet.maalscan.io/", + "https://node3-mainnet.maalscan.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalblockchain.com/", + "shortName": "maal", + "chainId": 786, + "networkId": 786, + "explorers": [ + { + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Patex", + "chain": "ETH", + "icon": "patex", + "rpc": [ + "https://rpc.patex.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://patex.io/", + "shortName": "peth", + "chainId": 789, + "networkId": 789, + "explorers": [ + { + "name": "patexscan", + "url": "https://patexscan.io", + "icon": "patex", + "standard": "EIP3091" + } + ] + }, + { + "name": "BeOne Chain Mainnet", + "chain": "BOC", + "icon": "beonechain", + "rpc": [ + "https://dataseed1.beonechain.com", + "https://dataseed2.beonechain.com", + "https://dataseed-us1.beonechain.com", + "https://dataseed-us2.beonechain.com", + "https://dataseed-uk1.beonechain.com", + "https://dataseed-uk2.beonechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BeOne Chain Mainnet", + "symbol": "BOC", + "decimals": 18 + }, + "infoURL": "https://beonechain.com", + "shortName": "BOC", + "chainId": 818, + "networkId": 818, + "slip44": 8181, + "explorers": [ + { + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "DecentraBone Layer1 Testnet", + "chain": "DBONE", + "rpc": [ + "https://layer1test.decentrabone.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DecentraBone", + "symbol": "DBONE", + "decimals": 18 + }, + "infoURL": "https://decentrabone.com", + "shortName": "DBONE", + "chainId": 910, + "networkId": 910 + }, + { + "name": "PulseChain Testnet v4", + "shortName": "t4pls", + "chain": "t4PLS", + "chainId": 943, + "networkId": 943, + "icon": "pulsechain", + "infoURL": "https://pulsechain.com", + "rpc": [ + "https://rpc.v4.testnet.pulsechain.com/", + "wss://rpc.v4.testnet.pulsechain.com/" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.v4.testnet.pulsechain.com/" + ], + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "status": "incubating", + "explorers": [], + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + } + }, + { + "name": "5ireChain Thunder", + "chain": "5ireChain", + "rpc": [ + "https://rpc-testnet.5ire.network" + ], + "faucets": [ + "https://explorer.5ire.network/faucet" + ], + "nativeCurrency": { + "name": "5ire Token", + "symbol": "5ire", + "decimals": 18 + }, + "infoURL": "https://5ire.org", + "shortName": "5ire", + "chainId": 997, + "networkId": 997, + "icon": "5ireChain", + "explorers": [ + { + "name": "5ireChain Explorer", + "url": "https://explorer.5ire.network", + "standard": "none", + "icon": "5ireChain" + } + ] + }, + { + "name": "ShimmerEVM Testnet Deprecated", + "title": "ShimmerEVM Testnet Deprecated", + "chain": "ShimmerEVM", + "icon": "shimmerevm", + "rpc": [], + "faucets": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-testnet-deprecated", + "chainId": 1071, + "networkId": 1071, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ], + "status": "deprecated" + }, + { + "name": "ShimmerEVM Testnet", + "title": "ShimmerEVM Testnet", + "chain": "ShimmerEVM", + "icon": "shimmerevm", + "rpc": [ + "https://json-rpc.evm.testnet.shimmer.network" + ], + "faucets": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 6 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-testnet", + "chainId": 1072, + "networkId": 1072, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mintara Testnet", + "title": "Mintara Testnet", + "chain": "Mintara", + "icon": "mintara", + "rpc": [ + "https://subnets.avax.network/mintara/testnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "infoURL": "https://playthink.co.jp", + "shortName": "mintara-testnet", + "chainId": 1079, + "networkId": 1079, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" + } + ] + }, + { + "name": "Polygon zkEVM", + "title": "Polygon zkEVM", + "chain": "Polygon", + "rpc": [ + "https://zkevm-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/polygon-zkevm", + "shortName": "zkevm", + "chainId": 1101, + "networkId": 1101, + "icon": "zkevm", + "explorers": [ + { + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.zkevm-rpc.com" + } + ] + } + }, + { + "name": "Symplexia Smart Chain", + "chain": "Plexchain", + "rpc": [ + "https://plex-rpc.plexfinance.us" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plex Native Token", + "symbol": "PLEX", + "decimals": 18 + }, + "infoURL": "https://plexfinance.us/", + "shortName": "Plexchain", + "chainId": 1149, + "networkId": 1149, + "icon": "plexchain", + "explorers": [ + { + "name": "Plexchain Explorer", + "url": "https://explorer.plexfinance.us", + "icon": "plexchain", + "standard": "EIP3091" + } + ] + }, + { + "name": "Origin Testnet", + "chain": "Origin", + "rpc": [ + "https://json-rpc.origin.uptick.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Origin", + "symbol": "UOC", + "decimals": 18 + }, + "infoURL": "https://www.uptick.network", + "shortName": "auoc", + "chainId": 1170, + "networkId": 1170, + "icon": "origin", + "explorers": [ + { + "name": "Origin Explorer", + "url": "https://evm-explorer.origin.uptick.network", + "icon": "origin", + "standard": "none" + } + ] + }, + { + "name": "ARC Mainnet", + "chain": "ARC", + "icon": "arc", + "rpc": [ + "https://rpc-main-1.archiechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "infoURL": "https://archiechain.io/", + "shortName": "ARC", + "chainId": 1243, + "networkId": 1243, + "explorers": [ + { + "name": "archiescan", + "url": "https://app.archiescan.io", + "standard": "none" + } + ] + }, + { + "name": "ARC Testnet", + "chain": "ARC", + "icon": "arc", + "rpc": [ + "https://rpc-test-1.archiechain.io" + ], + "faucets": [ + "https://faucet.archiechain.io" + ], + "nativeCurrency": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "infoURL": "https://archiechain.io/", + "shortName": "TARC", + "chainId": 1244, + "networkId": 1244, + "explorers": [ + { + "name": "archiescan", + "url": "https://testnet.archiescan.io", + "standard": "none" + } + ] + }, + { + "name": "Zafirium Mainnet", + "chain": "ZAFIC", + "icon": "zafirium", + "rpc": [ + "https://mainnet.zakumi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zakumi Chain Native Token", + "symbol": "ZAFIC", + "decimals": 18 + }, + "infoURL": "https://www.zakumi.io", + "shortName": "zafic", + "chainId": 1369, + "networkId": 1369, + "explorers": [ + { + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" + } + ] + }, + { + "name": "Joseon Mainnet", + "chain": "Joseon", + "icon": "joseon", + "rpc": [ + "https://rpc.modchain.net/blockchain.joseon.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Joseon Mun", + "symbol": "JSM", + "decimals": 18 + }, + "infoURL": "https://www.joseon.com/", + "shortName": "mun", + "chainId": 1392, + "networkId": 1392, + "explorers": [ + { + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rikeza Network Mainnet", + "title": "Rikeza Network Mainnet", + "chain": "Rikeza", + "icon": "rikeza", + "rpc": [ + "https://rpc.rikscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "infoURL": "https://rikeza.io", + "shortName": "RIK", + "chainId": 1433, + "networkId": 1433, + "explorers": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Living Assets Mainnet", + "chain": "LAS", + "icon": "livingassets", + "rpc": [ + "https://beta.mainnet.livingassets.io/rpc", + "https://gamma.mainnet.livingassets.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAS", + "symbol": "LAS", + "decimals": 18 + }, + "infoURL": "https://dev.livingassets.io/", + "shortName": "LAS", + "chainId": 1440, + "networkId": 1440 + }, + { + "name": "Polygon zkEVM Testnet", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [ + "https://rpc.public.zkevm-test.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "testnet-zkEVM-mango", + "chainId": 1442, + "networkId": 1442, + "explorers": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "GIL Testnet", + "chain": "GIL", + "icon": "gauss", + "rpc": [ + "https://rpc.giltestnet.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "infoURL": "https://gaussgang.com/", + "shortName": "gil", + "chainId": 1452, + "networkId": 1452, + "explorers": [ + { + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "BEVM", + "chain": "ChainX", + "rpc": [ + "https://mainnet.chainx.org/rpc", + "https://mainnet2.chainx.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://chainx.org", + "shortName": "chainx", + "chainId": 1501, + "networkId": 1501, + "explorers": [ + { + "name": "bevm scan", + "url": "https://evm.chainx.org", + "standard": "none" + } + ] + }, + { + "name": "Tenet", + "title": "Tenet Mainnet", + "chain": "TENET", + "icon": "tenet", + "rpc": [ + "https://rpc.tenet.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet", + "chainId": 1559, + "networkId": 1559, + "explorers": [ + { + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ] + }, + { + "name": "Horizen Gobi Testnet", + "shortName": "Gobi", + "chain": "Gobi", + "icon": "eon", + "rpc": [ + "https://gobi-testnet.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_testnet_evm" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.horizen.io" + ], + "nativeCurrency": { + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 1663, + "networkId": 1663, + "slip44": 121, + "explorers": [ + { + "name": "Gobi Testnet Block Explorer", + "url": "https://gobi-explorer.horizen.io", + "icon": "eon", + "standard": "EIP3091" + } + ] + }, + { + "name": "Palette Chain Mainnet", + "chain": "PLT", + "rpc": [ + "https://palette-rpc.com:22000" + ], + "faucets": [], + "nativeCurrency": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://hashpalette.com/", + "shortName": "PCM", + "chainId": 1718, + "networkId": 1718, + "icon": "PLT", + "explorers": [ + { + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": "PLT", + "standard": "none" + } + ] + }, + { + "name": "PartyChain", + "chain": "mainnet", + "rpc": [ + "https://tea.mining4people.com/rpc", + "http://172.104.194.36:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Grams", + "symbol": "GRAMS", + "decimals": 18 + }, + "infoURL": "TeaPartyCrypto.com", + "shortName": "TeaParty", + "chainId": 1773, + "networkId": 1773, + "icon": "grams", + "status": "incubating", + "explorers": [ + { + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": "grams", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gauss Mainnet", + "chain": "Gauss", + "icon": "gauss", + "rpc": [ + "https://rpc.gaussgang.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "infoURL": "https://gaussgang.com/", + "shortName": "gauss", + "chainId": 1777, + "networkId": 1777, + "explorers": [ + { + "name": "Gauss Explorer", + "url": "https://explorer.gaussgang.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lightlink Phoenix Mainnet", + "chain": "Lightlink Phoenix Mainnet", + "icon": "lightlink", + "rpc": [ + "https://endpoints.omniatech.io/v1/lightlink/phoenix/public", + "https://replicator-01.phoenix.lightlink.io/rpc/v1", + "https://replicator-02.phoenix.lightlink.io/rpc/v1", + "https://replicator.phoenix.lightlink.io/rpc/v1" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_phoenix", + "chainId": 1890, + "networkId": 1890, + "explorers": [ + { + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1714378866804.png", + "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1714378840768.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1714378852669.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xFFFFFF", + "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1714379070381.png" + } + }, + { + "name": "Lightlink Pegasus Testnet", + "chain": "Lightlink Pegasus Testnet", + "icon": "lightlink", + "rpc": [ + "https://replicator-01.pegasus.lightlink.io/rpc/v1", + "https://replicator-02.pegasus.lightlink.io/rpc/v1" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [ + "https://pegasus-faucet-react.vercel.app" + ], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_pegasus", + "chainId": 1891, + "networkId": 1891, + "explorers": [ + { + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dexilla Testnet", + "chain": "Dexilla", + "rpc": [ + "https://rpc.dexilla.com" + ], + "faucets": [], + "icon": "dxz", + "nativeCurrency": { + "name": "Dexilla Native Token", + "symbol": "DXZ", + "decimals": 18 + }, + "infoURL": "https://dexilla.com", + "shortName": "Dexilla", + "chainId": 1954, + "networkId": 1954, + "explorers": [ + { + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.dexilla.com" + } + ] + } + }, + { + "name": "Eleanor", + "title": "Metatime Testnet Eleanor", + "chain": "MTC", + "rpc": [ + "https://rpc.metatime.com/eleanor", + "wss://ws.metatime.com/eleanor" + ], + "faucets": [ + "https://faucet.metatime.com/eleanor" + ], + "nativeCurrency": { + "name": "Eleanor Metacoin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://eleanor.metatime.com", + "shortName": "mtc", + "chainId": 1967, + "networkId": 1967, + "explorers": [ + { + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", + "standard": "EIP3091" + } + ] + }, + { + "name": "Super Smart Chain Testnet", + "chain": "TSCS", + "rpc": [ + "https://testnetrpc.scschain.com" + ], + "faucets": [ + "https://testnet.scschain.com" + ], + "nativeCurrency": { + "name": "Super Chain Native Token", + "symbol": "TSCS", + "decimals": 18 + }, + "infoURL": "https://testnet.scschain.com", + "shortName": "tscs", + "chainId": 1969, + "networkId": 1969, + "icon": "super", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnetscan.scschain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Super Smart Chain Mainnet", + "chain": "SCS", + "rpc": [ + "https://rpc.scschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Super Chain Native Token", + "symbol": "SCS", + "decimals": 18 + }, + "infoURL": "https://scschain.com", + "shortName": "scs", + "chainId": 1970, + "networkId": 1970, + "icon": "super", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.scschain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Shrapnel Subnet", + "chain": "shrapnel", + "rpc": [ + "https://subnets.avax.network/shrapnel/mainnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shrapnel Gas Token", + "symbol": "SHRAPG", + "decimals": 18 + }, + "infoURL": "https://www.shrapnel.com/", + "shortName": "Shrapnel", + "chainId": 2044, + "networkId": 2044 + }, + { + "name": "Metaplayerone Dubai Testnet", + "chain": "MP1 Dubai-Testnet", + "rpc": [ + "https://rpc-dubai.mp1network.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metaunit", + "symbol": "MEU", + "decimals": 18 + }, + "infoURL": "https://docs.metaplayer.one/", + "shortName": "MEU", + "chainId": 2124, + "networkId": 2124, + "explorers": [ + { + "name": "MP1Scan", + "url": "https://dubai.mp1scan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Defi Oracle Meta Testnet", + "chain": "dfiometatest", + "icon": "defioraclemeta", + "rpc": [ + "https://rpc.public-2138.defi-oracle.io", + "wss://rpc.public-2138.defi-oracle.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "testEther", + "symbol": "tETH", + "decimals": 18 + }, + "infoURL": "https://defi-oracle.io/", + "shortName": "dfio-meta-test", + "chainId": 2138, + "networkId": 21, + "slip44": 60, + "ens": { + "registry": "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85" + }, + "explorers": [ + { + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", + "standard": "none" + } + ] + }, + { + "name": "Moonsama Network", + "chain": "MSN", + "rpc": [ + "https://rpc.moonsama.com", + "wss://rpc.moonsama.com/ws" + ], + "faucets": [ + "https://multiverse.moonsama.com/faucet" + ], + "nativeCurrency": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "infoURL": "https://moonsama.com", + "shortName": "msn", + "chainId": 2199, + "networkId": 2199, + "slip44": 2199, + "icon": "msn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Antofy Mainnet", + "chain": "ABN", + "icon": "antofy", + "rpc": [ + "https://rpc.antofy.io" + ], + "faucets": [ + "https://faucet.antofy.io" + ], + "nativeCurrency": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "infoURL": "https://antofy.io", + "shortName": "ABNm", + "chainId": 2202, + "networkId": 2202, + "explorers": [ + { + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SOMA Network Testnet", + "chain": "SOMA", + "rpc": [ + "https://data-testnet-v1.somanetwork.io/" + ], + "faucets": [ + "https://faucet.somanetwork.io" + ], + "nativeCurrency": { + "name": "SMA", + "symbol": "tSMA", + "decimals": 18 + }, + "infoURL": "https://somanetwork.io", + "shortName": "sma", + "chainId": 2323, + "networkId": 2323, + "icon": "soma", + "explorers": [ + { + "name": "SOMA Testnet Explorer", + "icon": "soma", + "url": "https://testnet.somascan.io", + "standard": "none" + } + ] + }, + { + "name": "SOMA Network Mainnet", + "chain": "SOMA", + "rpc": [ + "https://data-mainnet-v1.somanetwork.io/" + ], + "faucets": [ + "https://airdrop.somanetwork.io" + ], + "nativeCurrency": { + "name": "Soma Native Token", + "symbol": "SMA", + "decimals": 18 + }, + "infoURL": "https://somanetwork.io", + "shortName": "smam", + "chainId": 2332, + "networkId": 2332, + "icon": "soma", + "status": "incubating", + "explorers": [ + { + "name": "SOMA Explorer Mainnet", + "icon": "soma", + "url": "https://somascan.io", + "standard": "none" + } + ] + }, + { + "name": "(deprecated) Kroma Sepolia", + "title": "(deprecated) Kroma Testnet Sepolia", + "chainId": 2357, + "shortName": "deprecated-kroma-sepolia", + "chain": "ETH", + "networkId": 2357, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://api.sepolia-deprecated.kroma.network" + ], + "faucets": [], + "infoURL": "https://kroma.network", + "icon": "kroma", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia-deprecated.kroma.network", + "icon": "kroma", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://kroma.network/bridge" + } + ] + }, + "status": "deprecated" + }, + { + "name": "Kroma Sepolia", + "title": "Kroma Testnet Sepolia", + "chainId": 2358, + "shortName": "kroma-sepolia", + "chain": "ETH", + "networkId": 2358, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://api.sepolia.kroma.network" + ], + "faucets": [], + "infoURL": "https://kroma.network", + "icon": "kroma", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia.kroma.network", + "icon": "kroma", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://kroma.network/bridge" + } + ] + } + }, + { + "name": "WhiteBIT Network Testnet", + "chain": "WBT", + "rpc": [ + "https://rpc-testnet.whitebit.network" + ], + "faucets": [ + "https://explorer.whitebit.network/testnet/faucet" + ], + "nativeCurrency": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "infoURL": "https://whitebit.com/wbt", + "shortName": "twbt", + "chainId": 2625, + "networkId": 2625, + "icon": "whitebit-testnet", + "explorers": [ + { + "name": "wb-explorer-testnet", + "url": "https://explorer.whitebit.network/testnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "Canxium Mainnet", + "chain": "CAU", + "rpc": [ + "https://rpc.canxium.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "infoURL": "https://canxium.org", + "shortName": "cau", + "chainId": 3003, + "networkId": 3003, + "explorers": [ + { + "name": "canxium explorer", + "url": "https://explorer.canxium.org", + "standard": "none" + } + ] + }, + { + "name": "PLAYA3ULL GAMES", + "chain": "3ULL", + "rpc": [ + "https://api.mainnet.playa3ull.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "3ULL", + "symbol": "3ULL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://playa3ull.games", + "shortName": "3ULL", + "chainId": 3011, + "networkId": 3011, + "icon": "playa3ull", + "explorers": [ + { + "name": "PLAYA3ULL GAMES Explorer", + "url": "https://3011.routescan.io", + "icon": "playa3ull", + "standard": "EIP3091" + } + ] + }, + { + "name": "SecureChain Testnet", + "chain": "SCAI", + "icon": "scaiIcon", + "rpc": [ + "https://testnet-rpc.securechain.ai" + ], + "faucets": [ + "https://faucet.securechain.ai" + ], + "nativeCurrency": { + "name": "SCAI", + "symbol": "SCAI", + "decimals": 18 + }, + "infoURL": "https://securechain.ai", + "shortName": "SCAIt", + "chainId": 3434, + "networkId": 3434, + "explorers": [ + { + "name": "SecureChain", + "url": "https://testnet.securechain.ai", + "standard": "EIP3091" + } + ] + }, + { + "name": "Botanix Testnet", + "chain": "BTC", + "icon": "botanix", + "rpc": [ + "https://testnet-rpc.btxtestchain.com" + ], + "faucets": [ + "https://faucet.btxtestchain.com" + ], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://btxtestchain.com", + "shortName": "BTCt", + "chainId": 3636, + "networkId": 3636, + "explorers": [ + { + "name": "Botanix", + "url": "https://testnet.btxtestchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Botanix Mainnet", + "chain": "BTC", + "icon": "botanix", + "rpc": [ + "https://rpc.btxtestchain.com" + ], + "faucets": [ + "https://faucet.btxtestchain.com" + ], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://btxtestchain.com", + "shortName": "BTCm", + "chainId": 3637, + "networkId": 3637, + "explorers": [ + { + "name": "Botanix", + "url": "https://btxtestchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SenjePowers Testnet", + "chain": "SPC", + "icon": "SenjePowers", + "rpc": [ + "https://testnet-rpc.senjepowersscan.com" + ], + "faucets": [ + "https://faucet.senjepowersscan.com" + ], + "nativeCurrency": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "infoURL": "https://senjepowersscan.com", + "shortName": "SPCt", + "chainId": 3698, + "networkId": 3698, + "explorers": [ + { + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SenjePowers Mainnet", + "chain": "SPC", + "icon": "SenjePowers", + "rpc": [ + "https://rpc.senjepowersscan.com" + ], + "faucets": [ + "https://faucet.senjepowersscan.com" + ], + "nativeCurrency": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "infoURL": "https://senjepowersscan.com", + "shortName": "SPCm", + "chainId": 3699, + "networkId": 3699, + "explorers": [ + { + "name": "SenjePowers", + "url": "https://senjepowersscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "DOS Tesnet", + "chain": "DOS", + "rpc": [ + "https://test.doschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "http://doschain.io/", + "shortName": "dost", + "chainId": 3939, + "networkId": 3939, + "icon": "doschain", + "explorers": [ + { + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ozone Chain Mainnet", + "chain": "OZONE", + "rpc": [ + "https://node1.ozonechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "infoURL": "https://ozonechain.io", + "shortName": "ozo", + "chainId": 4000, + "networkId": 4000, + "icon": "ozonechain", + "explorers": [ + { + "name": "OZONE Scan", + "url": "https://ozonescan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Peperium Chain Testnet", + "chain": "PERIUM", + "rpc": [ + "https://rpc-testnet.peperium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Peperium Chain Testnet", + "symbol": "PERIUM", + "decimals": 18 + }, + "infoURL": "https://peperium.io", + "shortName": "PERIUM", + "chainId": 4001, + "networkId": 4001, + "icon": "peperium", + "explorers": [ + { + "name": "Peperium Chain Explorer", + "url": "https://scan-testnet.peperium.io", + "icon": "peperium", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nahmii 3 Mainnet", + "chain": "Nahmii", + "rpc": [], + "status": "incubating", + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Mainnet", + "chainId": 4061, + "networkId": 4061, + "icon": "nahmii", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.nahmii.io" + } + ] + } + }, + { + "name": "Nahmii 3 Testnet", + "chain": "Nahmii", + "rpc": [ + "https://ngeth.testnet.n3.nahmii.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Testnet", + "chainId": 4062, + "networkId": 4062, + "icon": "nahmii", + "explorers": [ + { + "name": "Nahmii 3 Testnet Explorer", + "url": "https://explorer.testnet.n3.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-3", + "bridges": [ + { + "url": "https://bridge.testnet.n3.nahmii.io" + } + ] + } + }, + { + "name": "Fastex Chain (Bahamut) Oasis Testnet", + "title": "Bahamut testnet Oasis", + "icon": "bahamut", + "chain": "Fastex Chain (Bahamut)", + "rpc": [ + "https://rpc1.oasis.bahamutchain.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.oasis.fastexchain.com" + ], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "infoURL": "https://fastexchain.com", + "shortName": "Oasis", + "chainId": 4090, + "networkId": 4090, + "explorers": [ + { + "name": "blockscout", + "url": "https://oasis.ftnscan.com", + "standard": "none" + } + ] + }, + { + "name": "Tipboxcoin Testnet", + "chain": "TPBX", + "icon": "tipboxcoinIcon", + "rpc": [ + "https://testnet-rpc.tipboxcoin.net" + ], + "faucets": [ + "https://faucet.tipboxcoin.net" + ], + "nativeCurrency": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "infoURL": "https://tipboxcoin.net", + "shortName": "TPBXt", + "chainId": 4141, + "networkId": 4141, + "explorers": [ + { + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "LUKSO Testnet", + "chain": "LUKSO Testnet", + "icon": "lukso", + "rpc": [ + "https://rpc.testnet.lukso.network", + "wss://ws-rpc.testnet.lukso.network" + ], + "faucets": [ + "https://faucet.testnet.lukso.network" + ], + "nativeCurrency": { + "name": "TestLYX", + "symbol": "LYXt", + "decimals": 18 + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.execution.testnet.lukso.network", + "standard": "none" + } + ], + "infoURL": "https://lukso.network", + "shortName": "lukso-testnet", + "chainId": 4201, + "networkId": 4201, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ] + }, + { + "name": "Nexi Mainnet", + "chain": "Nexi", + "icon": "nexi", + "rpc": [ + "https://rpc.chain.nexi.technology/", + "https://chain.nexilix.com", + "https://chain.nexi.evmnode.online" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nexi", + "symbol": "NEXI", + "decimals": 18 + }, + "infoURL": "https://www.nexi.technology/", + "shortName": "nexi", + "chainId": 4242, + "networkId": 4242, + "slip44": 2500, + "explorers": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "MEVerse Chain Testnet", + "chain": "MEVerse", + "rpc": [ + "https://rpc.meversetestnet.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "infoURL": "https://www.meverse.sg", + "shortName": "TESTMEV", + "chainId": 4759, + "networkId": 4759, + "icon": "meverse", + "explorers": [ + { + "name": "MEVerse Chain Testnet Explorer", + "url": "https://testnet.meversescan.io", + "standard": "none", + "icon": "meverse" + } + ] + }, + { + "name": "Fastex Chain (Bahamut)", + "title": "Bahamut mainnet Sahara", + "chain": "Fastex Chain (Bahamut)", + "icon": "bahamut", + "rpc": [ + "https://rpc1.sahara.bahamutchain.com", + "https://rpc2.sahara.bahamutchain.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "shortName": "ftn", + "infoURL": "https://fastexchain.com", + "chainId": 5165, + "networkId": 5165, + "explorers": [ + { + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + } + ] + }, + { + "name": "SatoshiChain Testnet", + "chain": "SATS", + "icon": "satoshichain", + "rpc": [ + "https://testnet-rpc.satoshichain.io" + ], + "faucets": [ + "https://faucet.satoshichain.io" + ], + "nativeCurrency": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://satoshichain.net", + "shortName": "satst", + "chainId": 5758, + "networkId": 5758, + "explorers": [ + { + "name": "SatoshiChain Testnet Explorer", + "url": "https://testnet.satoshiscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Cascadia Testnet", + "chain": "Cascadia", + "rpc": [ + "https://testnet.cascadia.foundation" + ], + "faucets": [ + "https://www.cascadia.foundation/faucet" + ], + "nativeCurrency": { + "name": "CC", + "symbol": "tCC", + "decimals": 18 + }, + "infoURL": "https://www.cascadia.foundation", + "shortName": "cascadia", + "chainId": 6102, + "networkId": 6102, + "icon": "cascadia", + "explorers": [ + { + "name": "Cascadia EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + }, + { + "name": "Cascadia Cosmos Explorer", + "url": "https://validator.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + } + ] + }, + { + "name": "UPTN Testnet", + "chain": "UPTN", + "icon": "uptn", + "rpc": [ + "https://node-api.alp.uptn.io/v1/ext/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "infoURL": "https://uptn.io", + "shortName": "UPTN-TEST", + "chainId": 6118, + "networkId": 6118, + "explorers": [ + { + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "UPTN", + "chain": "UPTN", + "icon": "uptn", + "rpc": [ + "https://node-api.uptn.io/v1/ext/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "infoURL": "https://uptn.io", + "shortName": "UPTN", + "chainId": 6119, + "networkId": 6119, + "explorers": [ + { + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Peerpay", + "chain": "P2P", + "rpc": [ + "https://peerpay.su.gy/p2p" + ], + "faucets": [], + "nativeCurrency": { + "name": "Peerpay", + "symbol": "P2P", + "decimals": 18 + }, + "infoURL": "https://peerpay.su.gy", + "shortName": "Peerpay", + "chainId": 6502, + "networkId": 6502, + "explorers": [] + }, + { + "name": "Scolcoin WeiChain Testnet", + "chain": "SCOLWEI-testnet", + "rpc": [ + "https://testnet-rpc.scolcoin.com" + ], + "faucets": [ + "https://faucet.scolcoin.com" + ], + "nativeCurrency": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "infoURL": "https://scolcoin.com", + "shortName": "SRC-test", + "chainId": 6552, + "networkId": 6552, + "icon": "scolcoin", + "explorers": [ + { + "name": "Scolscan Testnet Explorer", + "url": "https://testnet-explorer.scolcoin.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Fox Testnet Network", + "chain": "FOX", + "rpc": [ + "https://rpc-testnet-v1.foxchain.app/", + "https://rpc2-testnet-v1.foxchain.app/", + "https://rpc3-testnet-v1.foxchain.app" + ], + "faucets": [ + "https://faucet.foxchain.app" + ], + "nativeCurrency": { + "name": "FOX Native Token", + "symbol": "tFOX", + "decimals": 18 + }, + "infoURL": "https://foxchain.app", + "shortName": "fox", + "chainId": 6565, + "networkId": 6565, + "icon": "fox", + "explorers": [ + { + "name": "FOX Testnet Explorer", + "icon": "fox", + "url": "https://testnet.foxscan.app", + "standard": "none" + } + ] + }, + { + "name": "IRIShub", + "chain": "IRIShub", + "rpc": [ + "https://evmrpc.irishub-1.irisnet.org" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "iris", + "chainId": 6688, + "networkId": 6688, + "icon": "irishub", + "explorers": [ + { + "name": "IRISHub Cosmos Explorer (IOBScan)", + "url": "https://irishub.iobscan.io", + "standard": "none", + "icon": "irishub" + } + ] + }, + { + "name": "Bitrock Mainnet", + "chain": "Bitrock", + "icon": "bitrock", + "rpc": [ + "https://connect.bit-rock.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "bitrock", + "chainId": 7171, + "networkId": 7171, + "explorers": [ + { + "name": "Bitrock Explorer", + "url": "https://scan.bit-rock.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "KLYNTAR", + "chain": "KLY", + "rpc": [ + "https://evm.klyntar.org/kly_evm_rpc", + "https://evm.klyntarscan.org/kly_evm_rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLYNTAR", + "symbol": "KLY", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://klyntar.org", + "shortName": "kly", + "chainId": 7331, + "networkId": 7331, + "icon": "klyntar", + "explorers": [], + "status": "incubating" + }, + { + "name": "Raba Network Mainnet", + "chain": "Raba", + "icon": "raba", + "rpc": [ + "https://rpc.x.raba.app/", + "wss://rpc.x.raba.app/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Raba", + "symbol": "RABA", + "decimals": 18 + }, + "infoURL": "https://x.raba.app/", + "shortName": "raba", + "chainId": 7484, + "networkId": 7484, + "explorers": [ + { + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" + } + ] + }, + { + "name": "MEVerse Chain Mainnet", + "chain": "MEVerse", + "rpc": [ + "https://rpc.meversemainnet.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "infoURL": "https://www.meverse.sg", + "shortName": "MEV", + "chainId": 7518, + "networkId": 7518, + "icon": "meverse", + "explorers": [ + { + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": "meverse" + } + ] + }, + { + "name": "ADIL Testnet", + "chain": "ADIL", + "icon": "adil", + "rpc": [ + "https://testnet.adilchain-rpc.io" + ], + "faucets": [ + "https://testnet-faucet.adil-scan.io" + ], + "nativeCurrency": { + "name": "Testnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "tadil", + "chainId": 7575, + "networkId": 7575, + "explorers": [ + { + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Adil Chain V2 Mainnet", + "chain": "ADIL", + "icon": "adil", + "rpc": [ + "https://adilchain-rpc.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "adil", + "chainId": 7576, + "networkId": 7576, + "explorers": [ + { + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "The Root Network - Mainnet", + "chain": "TRN", + "rpc": [ + "https://root.rootnet.live/archive", + "wss://root.rootnet.live/archive/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "infoURL": "https://www.futureverse.com/technology/root", + "shortName": "trn-mainnet", + "chainId": 7668, + "networkId": 7668, + "explorers": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.live", + "standard": "EIP3091" + } + ] + }, + { + "name": "The Root Network - Porcini Testnet", + "chain": "TRN", + "rpc": [ + "https://porcini.rootnet.app/archive", + "wss://porcini.rootnet.app/archive/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "infoURL": "https://www.futureverse.com/technology/root", + "shortName": "trn-porcini", + "chainId": 7672, + "networkId": 7672, + "explorers": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", + "standard": "EIP3091" + } + ] + }, + { + "name": "Canto Tesnet", + "chain": "Canto", + "rpc": [ + "https://testnet-archive.plexnode.wtf" + ], + "faucets": [], + "nativeCurrency": { + "name": "Testnet Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "TestnetCanto", + "chainId": 7701, + "networkId": 7701, + "explorers": [ + { + "name": "Canto Testnet EVM Explorer (Blockscout)", + "url": "https://testnet.tuber.build", + "standard": "none" + } + ] + }, + { + "name": "Bitrock Testnet", + "chain": "Bitrock", + "icon": "bitrock", + "rpc": [ + "https://testnet.bit-rock.io" + ], + "faucets": [ + "https://faucet.bit-rock.io" + ], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "tbitrock", + "chainId": 7771, + "networkId": 7771, + "explorers": [ + { + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "ARDENIUM Athena", + "chain": "ATHENA", + "rpc": [ + "https://rpc-athena.ardescan.com/" + ], + "faucets": [ + "https://faucet-athena.ardescan.com/" + ], + "nativeCurrency": { + "name": "ARD", + "symbol": "tARD", + "decimals": 18 + }, + "infoURL": "https://ardenium.org", + "shortName": "ard", + "chainId": 7895, + "networkId": 7895, + "icon": "ard", + "explorers": [ + { + "name": "ARDENIUM Athena Explorer", + "icon": "ard", + "url": "https://testnet.ardscan.com", + "standard": "none" + } + ] + }, + { + "name": "DOS Chain", + "chain": "DOS", + "rpc": [ + "https://main.doschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "infoURL": "https://doschain.io", + "shortName": "dos", + "chainId": 7979, + "networkId": 7979, + "icon": "doschain", + "explorers": [ + { + "name": "DOScan", + "url": "https://doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ] + }, + { + "name": "BitEth", + "chain": "BTE", + "rpc": [ + "https://rpc.biteth.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BitEth", + "symbol": "BTE", + "decimals": 18 + }, + "infoURL": "https://biteth.org", + "shortName": "BitEth", + "chainId": 8086, + "networkId": 8086, + "explorers": [] + }, + { + "name": "Qitmeer Network Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meermix", + "icon": "meer", + "chainId": 8132, + "networkId": 8132, + "status": "incubating" + }, + { + "name": "Qitmeer Network Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Qitmeer Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "meerpriv", + "icon": "meer", + "chainId": 8133, + "networkId": 8133, + "status": "incubating" + }, + { + "name": "Amana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amana", + "icon": "meer", + "chainId": 8134, + "networkId": 8134, + "status": "incubating" + }, + { + "name": "Flana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flana", + "icon": "meer", + "chainId": 8135, + "networkId": 8135, + "status": "incubating" + }, + { + "name": "Mizana", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizana", + "icon": "meer", + "chainId": 8136, + "networkId": 8136, + "status": "incubating" + }, + { + "name": "Dracones Financial Services", + "title": "The Dracones Mainnet", + "chain": "FUCK", + "rpc": [ + "https://api.dracones.net/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Functionally Universal Coin Kind", + "symbol": "FUCK", + "decimals": 18 + }, + "infoURL": "https://wolfery.com", + "shortName": "fuck", + "chainId": 8387, + "networkId": 8387, + "icon": "dracones", + "explorers": [] + }, + { + "name": "Neonlink Testnet", + "chain": "Neonlink", + "rpc": [ + "https://testnet.neonlink.io" + ], + "faucets": [ + "https://faucet.neonlink.io/" + ], + "nativeCurrency": { + "name": "Neonlink Native Token", + "symbol": "tNEON", + "decimals": 18 + }, + "infoURL": "https://neonlink.io", + "shortName": "testneon", + "chainId": 9559, + "networkId": 9559, + "icon": "neonlink", + "explorers": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://testnet-scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" + } + ] + }, + { + "name": "PepeNetwork Mainnet", + "chain": "PepeNetwork", + "rpc": [ + "https://rpc-mainnet.pepenetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pepe", + "symbol": "WPEPE", + "decimals": 18 + }, + "infoURL": "https://pepenetwork.io", + "shortName": "pn", + "chainId": 9779, + "networkId": 9779, + "icon": "pepenetwork", + "explorers": [ + { + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": "pepenetwork", + "standard": "none" + } + ] + }, + { + "name": "Carbon EVM", + "chain": "Carbon", + "icon": "carbon", + "rpc": [ + "https://evm-api.carbon.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "infoURL": "https://carbon.network/", + "shortName": "carbon", + "chainId": 9790, + "networkId": 9790, + "explorers": [] + }, + { + "name": "Carbon EVM Testnet", + "chain": "Carbon", + "icon": "carbon", + "rpc": [ + "https://test-evm-api.carbon.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "infoURL": "https://carbon.network/", + "shortName": "carbon-testnet", + "chainId": 9792, + "networkId": 9792, + "explorers": [] + }, + { + "name": "AltLayer Testnet", + "chain": "ETH", + "rpc": [ + "https://testnet-rollup-api.altlayer.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://altlayer.io", + "shortName": "alt-testnet", + "chainId": 9997, + "networkId": 9997, + "icon": "altlayer", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "HashBit Mainnet", + "chain": "HBIT", + "rpc": [ + "https://mainnet-rpc.hashbit.org", + "https://rpc.hashbit.org" + ], + "faucets": [ + "https://free-online-app.com/faucet-for-eth-evm-chains/" + ], + "nativeCurrency": { + "name": "HashBit Native Token", + "symbol": "HBIT", + "decimals": 18 + }, + "infoURL": "https://hashbit.org", + "shortName": "hbit", + "chainId": 11119, + "networkId": 11119, + "explorers": [ + { + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "SatoshiChain Mainnet", + "chain": "SATS", + "icon": "satoshichain", + "rpc": [ + "https://mainnet-rpc.satoshichain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "infoURL": "https://satoshichain.net", + "shortName": "sats", + "chainId": 12009, + "networkId": 12009, + "explorers": [ + { + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "BRC Chain Mainnet", + "chain": "BRC", + "rpc": [ + "https://rpc.brcchain.io" + ], + "faucets": [ + "https://faucet.brcchain.io" + ], + "nativeCurrency": { + "name": "BRC Chain mainnet native token", + "symbol": "BRC", + "decimals": 18 + }, + "infoURL": "https://bridge.brcchain.io", + "shortName": "BRC", + "chainId": 12123, + "networkId": 12123, + "icon": "brcchain", + "explorers": [ + { + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Fibonacci Mainnet", + "chain": "FIBO", + "icon": "fibonacci", + "rpc": [ + "https://node1.fibo-api.asia", + "https://node2.fibo-api.asia", + "https://node3.fibo-api.asia", + "https://node4.fibo-api.asia", + "https://node5.fibo-api.asia", + "https://node6.fibo-api.asia", + "https://node7.fibo-api.asia", + "https://node1.fibo-rpc.asia", + "https://node2.fibo-rpc.asia", + "https://node3.fibo-rpc.asia", + "https://node4.fibo-rpc.asia", + "https://node5.fibo-rpc.asia", + "https://node6.fibo-rpc.asia", + "https://node7.fibo-rpc.asia" + ], + "faucets": [ + "https://test.fibochain.org/faucets" + ], + "nativeCurrency": { + "name": "FIBONACCI UTILITY TOKEN", + "symbol": "FIBO", + "decimals": 18 + }, + "infoURL": "https://fibochain.org", + "shortName": "fibo", + "chainId": 12306, + "networkId": 1230, + "explorers": [ + { + "name": "fiboscan", + "url": "https://scan.fibochain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rikeza Network Testnet", + "title": "Rikeza Network Testnet", + "chain": "Rikeza", + "icon": "rikeza", + "rpc": [ + "https://testnet-rpc.rikscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "infoURL": "https://rikeza.io", + "shortName": "tRIK", + "chainId": 12715, + "networkId": 12715, + "explorers": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://testnet.rikscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "LoopNetwork Mainnet", + "chain": "LoopNetwork", + "rpc": [ + "https://api.mainnetloop.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "LOOP", + "symbol": "LOOP", + "decimals": 18 + }, + "infoURL": "http://theloopnetwork.org/", + "shortName": "loop", + "chainId": 15551, + "networkId": 15551, + "explorers": [ + { + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" + } + ] + }, + { + "name": "EOS EVM Network Testnet", + "chain": "EOS", + "icon": "eos", + "rpc": [ + "https://api.testnet.evm.eosnetwork.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eosnetwork.com/eos-evm", + "shortName": "eos-testnet", + "chainId": 15557, + "networkId": 15557, + "explorers": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.testnet.evm.eosnetwork.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.testnet.evm.eosnetwork.com" + } + ] + } + }, + { + "name": "Genesys Mainnet", + "chain": "Genesys", + "icon": "genesys", + "rpc": [ + "https://rpc.genesys.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Genesys", + "symbol": "GSYS", + "decimals": 18 + }, + "infoURL": "https://www.genesys.network/", + "shortName": "Genesys", + "chainId": 16507, + "networkId": 16507, + "explorers": [ + { + "name": "GchainExplorer", + "url": "https://gchainexplorer.genesys.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "IRIShub Testnet", + "chain": "IRIShub", + "rpc": [ + "https://evmrpc.nyancat.irisnet.org" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "nyancat", + "chainId": 16688, + "networkId": 16688, + "icon": "nyancat", + "explorers": [ + { + "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", + "url": "https://nyancat.iobscan.io", + "standard": "none", + "icon": "nyancat" + } + ] + }, + { + "name": "Palette Chain Testnet", + "chain": "PLT", + "rpc": [ + "https://palette-opennet.com:22000" + ], + "faucets": [], + "nativeCurrency": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "features": [], + "infoURL": "https://hashpalette.com/", + "shortName": "PCT", + "chainId": 17180, + "networkId": 17180, + "icon": "PLT", + "explorers": [ + { + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": "PLT", + "standard": "none" + } + ] + }, + { + "name": "EOS EVM Network", + "chain": "EOS", + "icon": "eos", + "rpc": [ + "https://api.evm.eosnetwork.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "infoURL": "https://eosnetwork.com/eos-evm", + "shortName": "eos", + "chainId": 17777, + "networkId": 17777, + "explorers": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.evm.eosnetwork.com" + }, + { + "url": "https://app.multichain.org" + } + ] + } + }, + { + "name": "MXC zkEVM Mainnet", + "chain": "MXC zkEVM", + "icon": "mxczkevm", + "rpc": [ + "https://rpc.mxc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MXC zkEVM Mainnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://doc.mxc.com/docs/intro", + "shortName": "MXCzkEVM", + "chainId": 18686, + "networkId": 18686, + "explorers": [ + { + "name": "MXC zkEVM Mainnet", + "url": "https://explorer.mxc.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Camelark Mainnet", + "chainId": 20001, + "shortName": "Camelark", + "chain": "ETHW", + "icon": "camelark", + "networkId": 20001, + "nativeCurrency": { + "name": "EthereumPoW", + "symbol": "ETHW", + "decimals": 18 + }, + "rpc": [ + "https://mainnet-http-rpc.camelark.com" + ], + "faucets": [], + "explorers": [ + { + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://www.camelark.com" + }, + { + "name": "Antofy Testnet", + "chain": "ABN", + "icon": "antofy", + "rpc": [ + "https://testnet-rpc.antofy.io" + ], + "faucets": [ + "https://faucet.antofy.io" + ], + "nativeCurrency": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "infoURL": "https://antofy.io", + "shortName": "ABNt", + "chainId": 23006, + "networkId": 23006, + "explorers": [ + { + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ferrum Testnet", + "chain": "tFRM", + "rpc": [ + "http://testnet.dev.svcs.ferrumnetwork.io:9933" + ], + "faucets": [ + "https://testnet.faucet.ferrumnetwork.io" + ], + "nativeCurrency": { + "name": "Ferrum", + "symbol": "tFRM", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://ferrum.network", + "shortName": "frm", + "chainId": 26026, + "networkId": 26026, + "explorers": [ + { + "name": "polkadotjs", + "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", + "standard": "none" + } + ] + }, + { + "name": "Zilliqa EVM", + "chain": "ZIL", + "rpc": [ + "https://api.zilliqa.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil", + "chainId": 32769, + "networkId": 32769, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ] + }, + { + "name": "Zilliqa EVM Testnet", + "chain": "ZIL", + "rpc": [ + "https://dev-api.zilliqa.com" + ], + "faucets": [ + "https://dev-wallet.zilliqa.com/faucet?network=testnet" + ], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-testnet", + "chainId": 33101, + "networkId": 33101, + "explorers": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ] + }, + { + "name": "Opside Testnet Pre-Alpha", + "chain": "ETH", + "rpc": [ + "https://pre-alpha-us-http-geth.opside.network", + "https://pre-alpha-hk-http-geth.opside.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "IDE Test Token", + "symbol": "IDE", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://opsi.de/", + "shortName": "Opside-Testnet", + "chainId": 51178, + "networkId": 51178, + "icon": "opside-new", + "explorers": [ + { + "name": "OpsideTestnetInfo", + "url": "https://pre-alpha.opside.info", + "icon": "opside-new", + "standard": "EIP3091" + } + ] + }, + { + "name": "Toronet Testnet", + "chain": "Toronet", + "icon": "toronet", + "rpc": [ + "http://testnet.toronet.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toro", + "symbol": "TORO", + "decimals": 18 + }, + "infoURL": "https://toronet.org", + "shortName": "ToronetTestnet", + "chainId": 54321, + "networkId": 54321, + "ens": { + "registry": "0x059C474f26D65B0458F9da10A649a7322aB02C09" + }, + "explorers": [ + { + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } + ] + }, + { + "name": "Titan", + "chain": "ETH", + "rpc": [ + "https://rpc.titan.tokamak.network", + "wss://rpc.titan.tokamak.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://tokamak.network", + "shortName": "teth", + "chainId": 55004, + "networkId": 55004, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rollux Testnet", + "chain": "SYS", + "rpc": [ + "https://rpc-tanenbaum.rollux.com", + "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", + "wss://rpc-tanenbaum.rollux.com/wss" + ], + "faucets": [ + "https://rollux.id/faucetapp" + ], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "TSYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "tsys-rollux", + "chainId": 57000, + "networkId": 57000, + "explorers": [ + { + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Sepolia PGN (Public Goods Network)", + "chain": "ETH", + "rpc": [ + "https://sepolia.publicgoods.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://publicgoods.network/", + "shortName": "sepPGN", + "chainId": 58008, + "networkId": 58008, + "icon": "publicGoodsNetwork", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://pgn-bridge.vercel.app/bridge" + } + ] + } + }, + { + "name": "Linea Testnet", + "title": "Linea Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.goerli.linea.build", + "wss://rpc.goerli.linea.build", + "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-goerli.infura.io/v3/${INFURA_API_KEY}" + ], + "faucets": [ + "https://faucetlink.to/goerli" + ], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-testnet", + "chainId": 59140, + "networkId": 59140, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" + } + ] + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.goerli.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active" + }, + { + "name": "AxelChain Dev-Net", + "chain": "AXEL", + "rpc": [ + "https://aium-rpc-dev.viacube.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Axelium", + "symbol": "AIUM", + "decimals": 18 + }, + "infoURL": "https://www.axel.org", + "shortName": "aium-dev", + "chainId": 61800, + "networkId": 61800, + "icon": "axelium", + "explorers": [ + { + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Scolcoin Mainnet", + "chain": "SCOLWEI", + "rpc": [ + "https://mainnet-rpc.scolcoin.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "infoURL": "https://scolcoin.com", + "shortName": "SRC", + "chainId": 65450, + "networkId": 65450, + "icon": "scolcoin", + "explorers": [ + { + "name": "Scolscan Explorer", + "url": "https://explorer.scolcoin.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Cosmic Chain", + "chain": "COSMIC", + "rpc": [ + "http://testnet.cosmicchain.site:3344" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cosmic Chain", + "symbol": "COSMIC", + "decimals": 18 + }, + "infoURL": "https://cosmicchain.site", + "shortName": "Cosmic", + "chainId": 67588, + "networkId": 3344 + }, + { + "name": "GuapcoinX", + "chain": "GuapcoinX", + "rpc": [ + "https://rpc-mainnet.guapcoinx.com/", + "https://rpc-mainnet-1.guapcoinx.com/", + "https://rpc-mainnet-2.guapcoinx.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GuapcoinX", + "symbol": "GuapX", + "decimals": 18 + }, + "infoURL": "https://guapcoin.org/", + "shortName": "GuapX", + "chainId": 71111, + "networkId": 71111, + "icon": "guapcoinx", + "explorers": [ + { + "name": "GuapcoinX Explorer", + "url": "http://explorer.guapcoinx.com", + "standard": "none", + "icon": "guapcoinx" + } + ] + }, + { + "name": "Toronet Mainnet", + "chain": "Toronet", + "icon": "toronet", + "rpc": [ + "http://toronet.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Toro", + "symbol": "TORO", + "decimals": 18 + }, + "infoURL": "https://toronet.org", + "shortName": "Toronet", + "chainId": 77777, + "networkId": 77777, + "ens": { + "registry": "0x1f45a71f4aAD769E27c969c4359E0e250C67165c" + }, + "explorers": [ + { + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } + ] + }, + { + "name": "Dragonfly Mainnet (Hexapod)", + "chain": "Dragonfly", + "icon": "dragonfly", + "rpc": [ + "https://dragonfly-rpc.switch.ch", + "https://dragonfly-rpc.kore-technologies.ch", + "https://dragonfly-rpc.phoenix-systems.io", + "https://dragonfly-rpc.block-spirit.ch" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dragonfly", + "symbol": "DFLY", + "decimals": 18 + }, + "infoURL": "https://hexapod.network", + "shortName": "dfly", + "chainId": 78281, + "networkId": 78281, + "explorers": [ + { + "name": "Dragonfly Blockscout", + "url": "https://blockscout.dragonfly.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Amana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanatest", + "icon": "meer", + "chainId": 81341, + "networkId": 81341, + "status": "incubating" + }, + { + "name": "Amana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanamix", + "icon": "meer", + "chainId": 81342, + "networkId": 81342, + "status": "incubating" + }, + { + "name": "Amana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Amana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "amanapriv", + "icon": "meer", + "chainId": 81343, + "networkId": 81343, + "status": "incubating" + }, + { + "name": "Flana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanatest", + "icon": "meer", + "chainId": 81351, + "networkId": 81351, + "status": "incubating" + }, + { + "name": "Flana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanamix", + "icon": "meer", + "chainId": 81352, + "networkId": 81352, + "status": "incubating" + }, + { + "name": "Flana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Flana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "flanapriv", + "icon": "meer", + "chainId": 81353, + "networkId": 81353, + "status": "incubating" + }, + { + "name": "Mizana Testnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanatest", + "icon": "meer", + "chainId": 81361, + "networkId": 81361, + "status": "incubating" + }, + { + "name": "Mizana Mixnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanamix", + "icon": "meer", + "chainId": 81362, + "networkId": 81362, + "status": "incubating" + }, + { + "name": "Mizana Privnet", + "chain": "MEER", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Mizana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "infoURL": "https://github.com/Qitmeer", + "shortName": "mizanapriv", + "icon": "meer", + "chainId": 81363, + "networkId": 81363, + "status": "incubating" + }, + { + "name": "CYBERTRUST", + "chain": "CYBER", + "rpc": [ + "http://testnet.cybertrust.space:48501" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cyber Trust", + "symbol": "CYBER", + "decimals": 18 + }, + "infoURL": "https://cybertrust.space", + "shortName": "Cyber", + "chainId": 85449, + "networkId": 48501 + }, + { + "name": "Nautilus Chain", + "title": "Nautilus Trition Testnet", + "chain": "ETH", + "icon": "nautilus", + "rpc": [ + "https://triton.api.nautchain.xyz" + ], + "faucets": [ + "https://faucet.eclipse.builders" + ], + "nativeCurrency": { + "name": "Nautilus Zebec Testnet Tokens", + "symbol": "tZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUT", + "chainId": 91002, + "networkId": 91002, + "explorers": [ + { + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mantis Testnet (Hexapod)", + "chain": "Mantis", + "icon": "mantis", + "rpc": [ + "https://mantis-rpc.switch.ch", + "https://mantis-rpc.kore-technologies.ch", + "https://mantis-rpc.phoenix-systems.io" + ], + "faucets": [ + "https://mantis.switch.ch/faucet", + "https://mantis.kore-technologies.ch/faucet", + "https://mantis.phoenix-systems.io/faucet", + "https://mantis.block-spirit.ch/faucet" + ], + "nativeCurrency": { + "name": "Mantis", + "symbol": "MANTIS", + "decimals": 18 + }, + "infoURL": "https://hexapod.network", + "shortName": "mantis", + "chainId": 96970, + "networkId": 96970, + "explorers": [ + { + "name": "Mantis Blockscout", + "url": "https://blockscout.mantis.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Siberium Test Network", + "chain": "SBR", + "rpc": [ + "https://rpc.test.siberium.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "TestSIBR", + "symbol": "SIBR", + "decimals": 18 + }, + "infoURL": "https://siberium.net", + "shortName": "testsbr", + "chainId": 111000, + "networkId": 111000, + "icon": "siberium", + "explorers": [ + { + "name": "Siberium Testnet Explorer - blockscout", + "url": "https://explorer.test.siberium.net", + "icon": "siberium", + "standard": "EIP3091" + } + ] + }, + { + "name": "Siberium Network", + "chain": "SBR", + "rpc": [ + "https://rpc.main.siberium.net", + "https://rpc.main.siberium.net.ru" + ], + "faucets": [], + "nativeCurrency": { + "name": "Siberium", + "symbol": "SIBR", + "decimals": 18 + }, + "infoURL": "https://siberium.net", + "shortName": "sbr", + "chainId": 111111, + "networkId": 111111, + "icon": "siberium", + "explorers": [ + { + "name": "Siberium Mainnet Explorer - blockscout - 1", + "url": "https://explorer.main.siberium.net", + "icon": "siberium", + "standard": "EIP3091" + }, + { + "name": "Siberium Mainnet Explorer - blockscout - 2", + "url": "https://explorer.main.siberium.net.ru", + "icon": "siberium", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metachain One Mainnet", + "chain": "METAO", + "icon": "metao", + "rpc": [ + "https://rpc.metachain.one", + "https://rpc2.metachain.one" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metao", + "symbol": "METAO", + "decimals": 18 + }, + "infoURL": "https://metachain.one", + "shortName": "metao", + "chainId": 112358, + "networkId": 112358, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.metachain.one", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "ADIL Devnet", + "chain": "ADIL", + "icon": "adil", + "rpc": [ + "https://devnet.adilchain-rpc.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Devnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "infoURL": "https://adilchain.io", + "shortName": "dadil", + "chainId": 123456, + "networkId": 123456, + "explorers": [ + { + "name": "ADIL Devnet Explorer", + "url": "https://devnet.adilchain-scan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "ICPlaza Mainnet", + "chain": "ICPlaza", + "icon": "icplaza", + "rpc": [ + "https://rpcmainnet.ic-plaza.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ict", + "symbol": "ict", + "decimals": 18 + }, + "infoURL": "https://docs.ic-plaza.org/", + "shortName": "ICPlaza", + "chainId": 142857, + "networkId": 142857, + "explorers": [ + { + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } + ] + }, + { + "name": "Taf ECO Chain Mainnet", + "chain": "Taf ECO Chain", + "icon": "taf", + "rpc": [ + "https://mainnet.tafchain.com/v1" + ], + "faucets": [], + "nativeCurrency": { + "name": "Taf ECO Chain Mainnet", + "symbol": "TAFECO", + "decimals": 18 + }, + "infoURL": "https://www.tafchain.com", + "shortName": "TAFECO", + "chainId": 224168, + "networkId": 224168, + "explorers": [ + { + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "HashKey Chain Testnet", + "chain": "HashKey", + "rpc": [ + "https://testnet.hashkeychain/rpc" + ], + "faucets": [ + "https://testnet.hashkeychain/faucet" + ], + "nativeCurrency": { + "name": "HashKey Token", + "symbol": "tHSK", + "decimals": 18 + }, + "infoURL": "https://www.hashkey.com", + "shortName": "hsktest", + "chainId": 230315, + "networkId": 230315, + "icon": "hsk", + "explorers": [ + { + "name": "HashKey Chain Testnet Explorer", + "url": "https://testnet.hashkeyscan.io", + "standard": "none" + } + ] + }, + { + "name": "EgonCoin Testnet", + "chain": "EGON", + "icon": "egonicon", + "rpc": [ + "https://rpctest.egcscan.com" + ], + "faucets": [ + "https://faucet.egcscan.com" + ], + "nativeCurrency": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "infoURL": "https://egcscan.com", + "shortName": "EGONt", + "chainId": 271271, + "networkId": 271271, + "explorers": [ + { + "name": "EgonCoin Testnet", + "url": "https://testnet.egcscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "TTcoin Smart Chain Mainnet", + "chain": "TSC", + "icon": "tscscan", + "rpc": [ + "https://mainnet-rpc.tscscan.com" + ], + "faucets": [ + "https://faucet.tscscan.com" + ], + "nativeCurrency": { + "name": "TTcoin", + "symbol": "TC", + "decimals": 18 + }, + "infoURL": "https://ttcoin.info/", + "shortName": "tc", + "chainId": 330844, + "networkId": 330844, + "explorers": [ + { + "name": "TTcoin Smart Chain Explorer", + "url": "https://tscscan.com", + "standard": "EIP3091", + "icon": "tscscan" + } + ] + }, + { + "name": "Aves Testnet", + "chain": "AVST", + "rpc": [ + "https://test.rpc.avescoin.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "AvesT", + "symbol": "AVST", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://ethereum.org", + "shortName": "avst", + "chainId": 333331, + "networkId": 333331, + "icon": "aves", + "explorers": [ + { + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": "avescan", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitfinity Network Testnet", + "chain": "BFT", + "rpc": [ + "https://testnet.bitfinity.network" + ], + "faucets": [ + "https://bitfinity.network/faucet" + ], + "nativeCurrency": { + "name": "BITFINITY", + "symbol": "BFT", + "decimals": 18 + }, + "infoURL": "https://bitfinity.network", + "shortName": "Bitfinity", + "chainId": 355113, + "networkId": 355113, + "explorers": [ + { + "name": "Bitfinity Block Explorer", + "url": "https://explorer.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + } + ] + }, + { + "name": "HAPchain Testnet", + "chain": "HAPchain", + "rpc": [ + "https://jsonrpc-test.hap.land" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "infoURL": "https://hap.land", + "shortName": "hap-testnet", + "chainId": 373737, + "networkId": 373737, + "icon": "hap", + "explorers": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": "hap" + } + ] + }, + { + "name": "Tipboxcoin Mainnet", + "chain": "TPBX", + "icon": "tipboxcoinIcon", + "rpc": [ + "https://mainnet-rpc.tipboxcoin.net" + ], + "faucets": [ + "https://faucet.tipboxcoin.net" + ], + "nativeCurrency": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "infoURL": "https://tipboxcoin.net", + "shortName": "TPBXm", + "chainId": 404040, + "networkId": 404040, + "explorers": [ + { + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Markr Go", + "chain": "Unified", + "icon": "markrgo", + "rpc": [ + "https://rpc.markr.io/ext/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "infoURL": "https://www.markr.io/", + "shortName": "markr-go", + "chainId": 431140, + "networkId": 431140, + "explorers": [], + "status": "incubating" + }, + { + "name": "Patex Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://test-rpc.patex.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://patex.io/", + "shortName": "psep", + "chainId": 471100, + "networkId": 471100 + }, + { + "name": "Scroll Sepolia Testnet", + "chain": "ETH", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-sepolia", + "chainId": 534351, + "networkId": 534351, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } + }, + { + "name": "Shinarium Beta", + "chain": "Shinarium", + "rpc": [ + "https://rpc.shinarium.org" + ], + "faucets": [ + "https://faucet.shinarium.org" + ], + "nativeCurrency": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "infoURL": "https://shinarium.org", + "shortName": "shi", + "chainId": 534849, + "networkId": 534849, + "explorers": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "BeanEco SmartChain", + "title": "BESC Mainnet", + "chain": "BESC", + "rpc": [ + "https://mainnet-rpc.bescscan.io" + ], + "faucets": [ + "faucet.bescscan.ion" + ], + "nativeCurrency": { + "name": "BeanEco SmartChain", + "symbol": "BESC", + "decimals": 18 + }, + "infoURL": "besceco.finance", + "shortName": "BESC", + "chainId": 535037, + "networkId": 535037, + "explorers": [ + { + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "ALL Mainnet", + "chain": "ALL", + "icon": "alltra", + "rpc": [ + "https://mainnet-rpc.alltra.global" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALL", + "symbol": "ALL", + "decimals": 18 + }, + "infoURL": "https://alltra.world", + "shortName": "ALL", + "chainId": 651940, + "networkId": 651940, + "explorers": [ + { + "name": "Alltra SmartChain Explorer", + "url": "https://alltra.global", + "standard": "EIP3091" + } + ] + }, + { + "name": "CURVE Mainnet", + "chain": "CURVE", + "icon": "curveIcon", + "rpc": [ + "https://mainnet-rpc.curvescan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Curve", + "symbol": "CURVE", + "decimals": 18 + }, + "infoURL": "https://curvescan.io", + "shortName": "CURVEm", + "chainId": 827431, + "networkId": 827431, + "explorers": [ + { + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "AltLayer Zero Gas Network", + "chain": "ETH", + "rpc": [ + "https://zero.alt.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://altlayer.io", + "shortName": "alt-zerogas", + "chainId": 4000003, + "networkId": 4000003, + "icon": "altlayer", + "explorers": [ + { + "name": "blockscout", + "url": "https://zero-explorer.alt.technology", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Worlds Caldera", + "chain": "WCal", + "rpc": [ + "https://worlds-test.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://caldera.xyz/", + "shortName": "worldscal", + "chainId": 4281033, + "networkId": 4281033, + "icon": "ethereum", + "explorers": [] + }, + { + "name": "MXC Wannsee zkEVM Testnet", + "chain": "MXC zkEVM", + "icon": "mxc", + "rpc": [ + "https://wannsee-rpc.mxc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "MXC Wannsee zkEVM Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://wannsee.mxc.com/docs/intro", + "shortName": "MXC", + "chainId": 5167003, + "networkId": 5167003, + "explorers": [ + { + "name": "MXC Wannsee zkEVM Testnet", + "url": "https://wannsee-explorer.mxc.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "HAPchain", + "chain": "HAPchain", + "rpc": [ + "https://jsonrpc.hap.land" + ], + "faucets": [], + "nativeCurrency": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "infoURL": "https://hap.land", + "shortName": "hap", + "chainId": 8794598, + "networkId": 8794598, + "icon": "hap", + "explorers": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout.hap.land", + "standard": "none", + "icon": "hap" + } + ] + }, + { + "name": "Quarix Testnet", + "chain": "Quarix", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Q", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "", + "shortName": "quarix-testnet", + "chainId": 8888881, + "networkId": 8888881, + "icon": "quarix", + "explorers": [] + }, + { + "name": "Quarix", + "chain": "Quarix", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Q", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "", + "shortName": "quarix", + "chainId": 8888888, + "networkId": 8888888, + "icon": "quarix", + "explorers": [] + }, + { + "name": "T.E.A.M Blockchain", + "chain": "TEAM", + "icon": "team", + "rpc": [ + "https://rpc.teamblockchain.team" + ], + "faucets": [], + "nativeCurrency": { + "name": "TEAM", + "symbol": "$TEAM", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://teamblockchain.team", + "shortName": "team", + "chainId": 88888888, + "networkId": 88888888, + "explorers": [ + { + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kanazawa", + "title": "Meld Testnet Kanazawa", + "chain": "Kanazawa", + "rpc": [ + "https://subnets.avax.network/meld/testnet/rpc" + ], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": "meld", + "infoURL": "https://meld.com", + "shortName": "kanazawa", + "chainId": 222000222, + "networkId": 222000222, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets-test.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ] + }, + { + "name": "Razor Skale Chain", + "chain": "Razor Schain", + "icon": "razornetwork", + "rpc": [ + "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" + ], + "faucets": [ + "https://faucet.razorscan.io/" + ], + "nativeCurrency": { + "name": "sFuel", + "symbol": "SFUEL", + "decimals": 18 + }, + "infoURL": "https://razor.network", + "shortName": "razor", + "chainId": 278611351, + "networkId": 278611351, + "explorers": [ + { + "name": "turbulent-unique-scheat", + "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Meld", + "title": "Meld Mainnet", + "chain": "MELD", + "rpc": [ + "https://subnets.avax.network/meld/mainnet/rpc" + ], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": "meld", + "infoURL": "https://meld.com", + "shortName": "meld", + "chainId": 333000333, + "networkId": 333000333, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ] + }, + { + "name": "CyberdeckNet", + "chain": "cyberdeck", + "rpc": [ + "http://cybeth1.cyberdeck.eu:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cyb", + "symbol": "CYB", + "decimals": 18 + }, + "infoURL": "https://cyberdeck.eu", + "shortName": "cyb", + "chainId": 1146703430, + "networkId": 1146703430, + "icon": "cyberdeck", + "status": "active", + "explorers": [ + { + "name": "CybEthExplorer", + "url": "http://cybeth1.cyberdeck.eu:8000", + "icon": "cyberdeck", + "standard": "none" + } + ] + }, + { + "name": "HUMAN Protocol", + "title": "HUMAN Protocol", + "chain": "wan-red-ain", + "rpc": [ + "https://mainnet.skalenodes.com/v1/wan-red-ain" + ], + "faucets": [ + "https://dashboard.humanprotocol.org/faucet" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://www.humanprotocol.org", + "shortName": "human-mainnet", + "chainId": 1273227453, + "networkId": 1273227453, + "explorers": [ + { + "name": "Blockscout", + "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", + "icon": "human", + "standard": "EIP3091" + } + ] + }, + { + "name": "Chaos (SKALE Testnet)", + "title": "Chaos Testnet", + "chain": "staging-fast-active-bellatrix", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" + ], + "faucets": [ + "https://sfuel.skale.network/staging/chaos" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://docs.skale.network/develop/", + "shortName": "chaos-tenet", + "chainId": 1351057110, + "networkId": 1351057110, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", + "icon": "chaos", + "standard": "EIP3091" + } + ] + }, + { + "name": "RaptorChain", + "chain": "RPTR", + "rpc": [ + "https://rpc.raptorchain.io/web3" + ], + "faucets": [], + "nativeCurrency": { + "name": "Raptor", + "symbol": "RPTR", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://raptorchain.io", + "shortName": "rptr", + "chainId": 1380996178, + "networkId": 1380996178, + "icon": "raptorchain", + "explorers": [ + { + "name": "RaptorChain Explorer", + "url": "https://explorer.raptorchain.io", + "icon": "raptorchain_explorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Alphabet Mainnet", + "chain": "Alphabet Network", + "icon": "alphabetnetwork", + "rpc": [ + "https://londonpublic.alphabetnetwork.org", + "wss://londonpublic.alphabetnetwork.org/ws/", + "https://main-rpc.com", + "wss://main-rpc.com/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALT", + "symbol": "ALT", + "decimals": 18 + }, + "infoURL": "https://alphabetnetwork.org", + "shortName": "alphabet", + "chainId": 111222333444, + "networkId": 111222333444, + "explorers": [ + { + "name": "Alphabet Explorer", + "url": "https://scan.alphabetnetwork.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ethereum Express", + "chainId": 8957, + "shortName": "ETE", + "chain": "ETE", + "network": "mainnet", + "networkId": 8957, + "nativeCurrency": { + "name": "ETE", + "symbol": "ETE", + "decimals": 18 + }, + "rpc": [ + "https://www.etescan.net/rpc", + "https://www.etelondon.com/rpc", + "https://test.uaechain.net/rpc", + "https://rpc.web3russia.org/ete", + "https://www.etecanada.com/rpc", + "https://node.brazildao.biz/ete", + "https://ete.indiaio.net/fast", + "https://ete.auhacker.xyz/data", + "https://service.saalliance.net/ete" + ], + "faucets": [], + "infoURL": "https://www.ethereumexpress.net", + "app_resource": { + "ic_chain_select": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/select.png", + "ic_chain_unselect": "https://teddynft.oss-ap-southeast-1.aliyuncs.com/ete/unselect.png", + "color_chain_bg": "0x013162" + } + }, + { + "name": "Pink Chain", + "chainId": 9801, + "shortName": "pink", + "chain": "Pink", + "network": "mainnet", + "networkId": 9801, + "nativeCurrency": { + "name": "Pink Coin", + "symbol": "PKB", + "decimals": 18 + }, + "rpc": [ + "https://pinkchain.co/", + "https://rpc1.pinkchain.co/", + "https://rpc2.pinkchain.co/" + ], + "faucets": [], + "infoURL": "https://pink-chain.com/", + "app_resource": { + "ic_chain_select": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275871180-28ecbadd98de7c6db5ea578a380e4468.png", + "ic_chain_unselect": "https://photos.pinksale.finance/file/pinksale-logo-upload/1702275894734-6f8825a9413b793fe9462b093fb3c906.png", + "color_chain_bg": "0xf95192" + } + }, + { + "name": "Worldland Mainnet", + "chain": "Worldland", + "icon": "worldland", + "rpc": [ + "https://seoul.worldland.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Worldland", + "symbol": "WL", + "decimals": 18 + }, + "infoURL": "https://worldland.foundation", + "shortName": "WLC", + "chainId": 103, + "networkId": 103, + "explorers": [ + { + "name": "Worldland Explorer", + "url": "https://scan.worldland.foundation", + "standard": "EIP3091" + } + ] + }, + { + "name": "Shibarium", + "chain": "Shibarium", + "icon": "shibarium", + "rpc": [ + "https://www.shibrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BONE Shibarium", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://shibariumecosystem.com", + "shortName": "shibariumecosystem", + "chainId": 109, + "networkId": 109, + "explorers": [ + { + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } + ] + }, + { + "name": "ShimmerEVM Mainnet", + "title": "ShimmerEVM Mainnet", + "chain": "ShimmerEVM", + "rpc": [ + "https://json-rpc.evm.shimmer.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-mainnet", + "chainId": 148, + "networkId": 148, + "icon": "shimmerevm", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.shimmer.network", + "icon": "shimmerevm", + "standard": "EIP3091" + } + ] + }, + { + "name": "Redbelly Network Mainnet", + "shortName": "rbn", + "chain": "RBN", + "chainId": 151, + "networkId": 151, + "rpc": [], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "status": "incubating" + }, + { + "name": "Redbelly Network Devnet", + "shortName": "rbn-devnet", + "chain": "RBN", + "chainId": 152, + "networkId": 152, + "rpc": [], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "status": "incubating" + }, + { + "name": "Redbelly Network Testnet", + "shortName": "rbn-testnet", + "chain": "RBN", + "chainId": 153, + "networkId": 153, + "rpc": [], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "status": "incubating" + }, + { + "name": "Redbelly Network TGE", + "shortName": "rbn-tge", + "chain": "RBN", + "chainId": 154, + "networkId": 154, + "rpc": [], + "faucets": [], + "infoURL": "https://redbelly.network", + "nativeCurrency": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + } + }, + { + "name": "Manta Pacific Mainnet", + "chain": "Manta Pacific", + "rpc": [ + "https://pacific-rpc.manta.network/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://pacific-info.manta.network", + "shortName": "manta", + "chainId": 169, + "networkId": 169, + "icon": "manta", + "explorers": [ + { + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitchain Mainnet", + "chain": "Bit", + "rpc": [ + "https://rpc.bitchain.biz/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.bitchain.biz/", + "shortName": "bit", + "chainId": 198, + "networkId": 198, + "explorers": [ + { + "name": "Bitchain Scan", + "url": "https://explorer.bitchain.biz", + "standard": "EIP3091" + } + ] + }, + { + "name": "opBNB Mainnet", + "icon": "bnbchain", + "chain": "opBNB", + "rpc": [ + "https://opbnb-mainnet-rpc.bnbchain.org", + "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "https://opbnb.publicnode.com", + "wss://opbnb.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://opbnb.bnbchain.org/en", + "shortName": "obnb", + "chainId": 204, + "networkId": 204, + "slip44": 714, + "explorers": [ + { + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "VinuChain Testnet", + "chain": "VinuChain Testnet", + "rpc": [ + "https://vinufoundation-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "VinuChain", + "symbol": "VС", + "decimals": 18 + }, + "infoURL": "https://vitainu.org", + "shortName": "VCTEST", + "chainId": 206, + "networkId": 206, + "icon": "vitainu-testnet", + "explorers": [ + { + "name": "VinuScan Testnet", + "url": "https://testnet.vinuscan.com", + "icon": "vinuscan-testnet", + "standard": "none" + } + ] + }, + { + "name": "VinuChain Network", + "chain": "VinuChain", + "rpc": [ + "https://vinuchain-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "VinuChain", + "symbol": "VС", + "decimals": 18 + }, + "infoURL": "https://vitainu.org", + "shortName": "VC", + "chainId": 207, + "networkId": 207, + "icon": "vitainu", + "explorers": [ + { + "name": "VinuScan", + "url": "https://vinuscan.com", + "icon": "vinuscan", + "standard": "none" + } + ] + }, + { + "name": "Bitnet", + "chain": "BTN", + "icon": "bitnet", + "rpc": [ + "https://rpc.bitnet.money", + "https://rpc.btnscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitnet", + "symbol": "BTN", + "decimals": 18 + }, + "infoURL": "https://bitnet.money", + "shortName": "BTN", + "chainId": 210, + "networkId": 210, + "explorers": [ + { + "name": "Bitnet Explorer", + "url": "https://btnscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Shinarium Mainnet", + "chain": "Shinarium", + "icon": "shinarium", + "rpc": [ + "https://mainnet.shinarium.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "infoURL": "https://shinarium.org", + "shortName": "shinarium", + "chainId": 214, + "networkId": 214, + "explorers": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kroma", + "chain": "ETH", + "rpc": [ + "https://api.kroma.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kroma.network", + "icon": "kroma", + "shortName": "kroma", + "chainId": 255, + "networkId": 255, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.kroma.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://kroma.network/bridge" + } + ] + } + }, + { + "name": "Orderly Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.orderly.network", + "https://l2-orderly-mainnet-0.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "www.orderly.network", + "shortName": "orderly", + "chainId": 291, + "networkId": 291, + "icon": "orderly", + "explorers": [ + { + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Wyzth Testnet", + "chain": "WYZ", + "rpc": [ + "https://rpc-testnet3.wyzthchain.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Wyzth", + "symbol": "WYZ", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://wyzth.org/", + "shortName": "wyz", + "chainId": 309, + "networkId": 309, + "icon": "wyzth_icon", + "explorers": [ + { + "name": "wyzth", + "url": "http://24.199.108.65:4000", + "icon": "wyzth", + "standard": "EIP3091" + } + ] + }, + { + "name": "Yooldo Verse Mainnet", + "chain": "Yooldo Verse", + "icon": "yooldo_verse", + "rpc": [ + "https://rpc.yooldo-verse.xyz/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://yooldo.gg/", + "shortName": "YVM", + "chainId": 345, + "networkId": 345, + "explorers": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Nativ3 Mainnet", + "chainId": 399, + "shortName": "N3", + "chain": "Nativ3", + "icon": "nativ3", + "networkId": 399, + "nativeCurrency": { + "name": "USNT", + "symbol": "USNT", + "decimals": 18 + }, + "rpc": [ + "https://rpc.nativ3.network", + "wss://ws.nativ3.network" + ], + "faucets": [], + "explorers": [ + { + "name": "N3scan", + "url": "https://scan.nativ3.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://nativ3.network", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.nativ3.network" + } + ] + } + }, + { + "name": "Pepe Chain Mainnet", + "chain": "PC", + "status": "active", + "icon": "pepechain", + "rpc": [ + "https://rpc.pepe-chain.vip" + ], + "faucets": [], + "nativeCurrency": { + "name": "Pepe", + "symbol": "PEPE", + "decimals": 18 + }, + "infoURL": "https://pepe-chain.vip", + "shortName": "pepe", + "chainId": 411, + "networkId": 411, + "explorers": [ + { + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" + } + ] + }, + { + "name": "Geso Verse", + "chain": "Geso Verse", + "rpc": [ + "https://rpc.verse.gesoten.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://gesoten.com/", + "shortName": "GSV", + "icon": "gesoten", + "chainId": 428, + "networkId": 428, + "explorers": [ + { + "name": "Geso Verse Explorer", + "url": "https://explorer.verse.gesoten.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Obscuro Testnet", + "title": "Obscuro Sepolia Rollup Testnet", + "chainId": 443, + "shortName": "obs-testnet", + "chain": "ETH", + "networkId": 443, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://testnet.obscu.ro" + ], + "faucets": [], + "infoURL": "https://obscu.ro", + "explorers": [ + { + "name": "Obscuro Sepolia Rollup Explorer", + "url": "https://testnet.obscuroscan.io", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://bridge.obscu.ro" + } + ] + } + }, + { + "name": "Areon Network Testnet", + "chain": "Areon", + "icon": "areon", + "rpc": [ + "https://testnet-rpc.areon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Areon", + "symbol": "TAREA", + "decimals": 18 + }, + "infoURL": "https://areon.network", + "shortName": "tarea", + "chainId": 462, + "networkId": 462, + "explorers": [ + { + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } + ] + }, + { + "name": "Areon Network Mainnet", + "chain": "Areon", + "icon": "areon", + "rpc": [ + "https://mainnet-rpc.areon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Areon", + "symbol": "AREA", + "decimals": 18 + }, + "infoURL": "https://areon.network", + "shortName": "area", + "chainId": 463, + "networkId": 463, + "explorers": [ + { + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } + ] + }, + { + "name": "PAWCHAIN Testnet", + "chain": "PAW", + "rpc": [ + "https://pawchainx.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "PAW", + "symbol": "PAW", + "decimals": 18 + }, + "infoURL": "https://pawchainx.com/", + "shortName": "PAW", + "chainId": 542, + "networkId": 542, + "explorers": [ + { + "name": "PAWCHAIN Testnet", + "url": "https://pawscan.io", + "standard": "none" + } + ] + }, + { + "name": "PEER Testnet", + "chain": "PEER", + "rpc": [ + "http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com" + ], + "faucets": [ + "https://testnet.peer.inc" + ], + "nativeCurrency": { + "name": "PEER Token", + "symbol": "PEER", + "decimals": 18 + }, + "infoURL": "https://peer.inc", + "shortName": "PEER", + "chainId": 601, + "networkId": 601, + "icon": "peer", + "explorers": [ + { + "name": "PEER Explorer", + "url": "https://testnet.peer.inc", + "standard": "none", + "icon": "peer" + } + ] + }, + { + "name": "Kalichain Mainnet", + "chain": "Kalichain", + "rpc": [ + "https://rpc.kalichain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 + }, + "infoURL": "https://kalichain.com", + "shortName": "kalichain", + "chainId": 653, + "networkId": 653, + "explorers": [ + { + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "LAOS Arrakis", + "title": "LAOS Testnet Arrakis", + "chain": "LAOS", + "icon": "laos", + "rpc": [ + "https://arrakis.gorengine.com/own", + "wss://arrakis.gorengine.com/own" + ], + "faucets": [], + "nativeCurrency": { + "name": "LAOS", + "symbol": "LAOS", + "decimals": 18 + }, + "infoURL": "https://www.laosfoundation.io/", + "shortName": "laos", + "chainId": 667, + "networkId": 667, + "explorers": [ + { + "name": "blockscout", + "url": "https://arrakis.gorengine.com", + "icon": "laos", + "standard": "EIP3091" + } + ] + }, + { + "name": "JuncaChain", + "chain": "JuncaChain", + "rpc": [ + "https://rpc.juncachain.com" + ], + "nativeCurrency": { + "name": "JuncaChain Native Token", + "symbol": "JGC", + "decimals": 18 + }, + "faucets": [], + "infoURL": "https://junca-cash.world", + "shortName": "junca", + "chainId": 668, + "networkId": 668, + "explorers": [ + { + "name": "JuncaScan", + "url": "https://scan.juncachain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "JuncaChain testnet", + "chain": "JuncaChain testnet", + "rpc": [ + "https://rpc-testnet.juncachain.com", + "wss://ws-testnet.juncachain.com" + ], + "faucets": [ + "https://faucet-testnet.juncachain.com" + ], + "nativeCurrency": { + "name": "JuncaChain Testnet Native Token", + "symbol": "JGCT", + "decimals": 18 + }, + "infoURL": "https://junca-cash.world", + "shortName": "juncat", + "chainId": 669, + "networkId": 669, + "explorers": [ + { + "name": "JuncaScan", + "url": "https://scan-testnet.juncachain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Highbury", + "chain": "HIGHBURY", + "rpc": [ + "https://highbury.furya.io", + "https://rest.furya.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Fury", + "symbol": "FURY", + "decimals": 18 + }, + "infoURL": "https://www.fury.black", + "shortName": "fury", + "chainId": 710, + "networkId": 710, + "icon": "highbury", + "explorers": [ + { + "name": "Furya EVM Explorer", + "url": "https://explorer.furya.io", + "standard": "EIP3091", + "icon": "highbury" + } + ] + }, + { + "name": "Blucrates", + "chain": "BLU", + "rpc": [ + "https://data.bluchain.pro" + ], + "faucets": [], + "nativeCurrency": { + "name": "Blucrates", + "symbol": "BLU", + "decimals": 18 + }, + "infoURL": "https://www.blucrates.com", + "shortName": "blu", + "chainId": 727, + "networkId": 727, + "slip44": 727 + }, + { + "name": "Script Testnet", + "chain": "SPAY", + "rpc": [ + "https://testeth-rpc-api.script.tv/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Script", + "symbol": "SPAY", + "decimals": 18 + }, + "infoURL": "https://token.script.tv", + "shortName": "SPAY", + "chainId": 742, + "networkId": 742, + "explorers": [ + { + "name": "Script Explorer", + "url": "https://explorer.script.tv", + "standard": "none" + } + ] + }, + { + "name": "Mode Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.mode.network" + ], + "faucets": [ + "https://sepoliafaucet.com/" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.mode.network/", + "shortName": "modesep", + "chainId": 919, + "networkId": 919, + "icon": "modeTestnet", + "explorers": [ + { + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.mode.network/" + } + ] + } + }, + { + "name": "Yidark Chain Mainnet", + "chain": "Yidark", + "icon": "ydk", + "rpc": [ + "https://rpc.yidark.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Yidark", + "symbol": "YDK", + "decimals": 18 + }, + "infoURL": "https://yidarkscan.com", + "shortName": "ydk", + "chainId": 927, + "networkId": 927, + "explorers": [ + { + "name": "Yidarkscan", + "url": "https://yidarkscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "BTC20 Smart Chain", + "chain": "BTC20", + "rpc": [ + "https://rpc.bitcoincode.technology/" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "BTCC", + "symbol": "BTCC", + "decimals": 18 + }, + "infoURL": "https://bitcoincode.technology", + "shortName": "btc20", + "chainId": 963, + "networkId": 963, + "icon": "btc20", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.bitcoincode.technology", + "standard": "EIP3091" + } + ] + }, + { + "name": "eLiberty Mainnet", + "chain": "$EL", + "icon": "eLiberty", + "rpc": [ + "https://rpc.eliberty.ngo" + ], + "faucets": [ + "https://faucet.eliberty.ngo" + ], + "nativeCurrency": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "infoURL": "https://eliberty.ngo", + "shortName": "ELm", + "chainId": 990, + "networkId": 990, + "explorers": [ + { + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" + } + ] + }, + { + "name": "Tectum Emission Token", + "chain": "TET", + "rpc": [ + "https://rpc.softnote.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tectum", + "symbol": "TET", + "decimals": 8 + }, + "infoURL": "https://softnote.com", + "shortName": "tet", + "chainId": 1003, + "networkId": 1003, + "explorers": [ + { + "name": "Tectum explorer", + "url": "https://explorer.tectum.io", + "icon": "Tettoken256", + "standard": "EIP3091" + } + ] + }, + { + "name": "ShimmerEVM Testnet", + "title": "ShimmerEVM Testnet", + "chain": "ShimmerEVM", + "icon": "shimmerevm", + "rpc": [ + "https://json-rpc.evm.testnet.shimmer.network" + ], + "faucets": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 6 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm-testnet", + "chainId": 1073, + "networkId": 1073, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mintara Mainnet", + "title": "Mintara Mainnet", + "chain": "Mintara", + "icon": "mintara", + "rpc": [ + "https://subnets.avax.network/mintara/mainnet/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "infoURL": "https://playthink.co.jp", + "shortName": "mintara", + "chainId": 1080, + "networkId": 1080, + "explorers": [ + { + "name": "explorer", + "url": "https://subnets.avax.network/mintara", + "standard": "EIP3091" + } + ] + }, + { + "name": "Humans.ai Mainnet", + "chain": "Humans", + "rpc": [ + "https://jsonrpc.humans.nodestake.top", + "https://humans-mainnet-evm.itrocket.net:443", + "https://humans-evm-rpc.staketab.org:443", + "https://evm.humans.stakepool.dev.br", + "https://mainnet-humans-evm.konsortech.xyz", + "https://evm-rpc.mainnet.humans.zone" + ], + "faucets": [], + "nativeCurrency": { + "name": "HEART", + "symbol": "HEART", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://humans.ai", + "shortName": "humans", + "chainId": 1089, + "networkId": 1089, + "icon": "humans-dark", + "explorers": [ + { + "name": "explorer.guru", + "url": "https://humans.explorers.guru", + "icon": "humans", + "standard": "none" + } + ] + }, + { + "name": "BLXq Testnet", + "chain": "BLXQ", + "icon": "blxq", + "rpc": [ + "https://testnetq1.blx.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 + }, + "infoURL": "https://blx.org", + "shortName": "tblxq", + "chainId": 1107, + "networkId": 1107, + "explorers": [ + { + "name": "BLXq Explorer", + "url": "https://explorer.blx.org", + "icon": "blxq", + "standard": "none" + } + ] + }, + { + "name": "BLXq Mainnet", + "chain": "BLXQ", + "icon": "blxq", + "rpc": [ + "https://mainnet.blxq.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 + }, + "infoURL": "https://blx.org", + "shortName": "blxq", + "chainId": 1108, + "networkId": 1108, + "explorers": [ + { + "name": "BLXq Explorer", + "url": "https://explorer.blxq.org", + "icon": "blxq", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeFiMetaChain", + "icon": "changi", + "chain": "DFI", + "rpc": [ + "https://testnet-dmc.mydefichain.com:20551" + ], + "faucets": [ + "http://tc04.mydefichain.com/faucet" + ], + "nativeCurrency": { + "name": "DeFiChain Token", + "symbol": "DFI", + "decimals": 18 + }, + "infoURL": "https://defichain.com", + "shortName": "changi", + "chainId": 1133, + "networkId": 1133, + "explorers": [ + { + "name": "MetaScan", + "url": "https://meta.defiscan.live", + "standard": "EIP3091" + } + ] + }, + { + "name": "Swisstronik Testnet", + "chain": "SWTR", + "rpc": [ + "https://json-rpc.testnet.swisstronik.com" + ], + "faucets": [ + "https://faucet.testnet.swisstronik.com" + ], + "nativeCurrency": { + "name": "Swisstronik", + "symbol": "SWTR", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.swisstronik.com", + "shortName": "swtr", + "chainId": 1291, + "networkId": 1291, + "icon": "swisstronik", + "explorers": [ + { + "name": "Swisstronik Scout", + "url": "https://explorer-evm.testnet.swisstronik.com", + "standard": "none" + } + ] + }, + { + "name": "Blitz Subnet", + "chain": "BLITZ", + "rpc": [ + "https://subnets.avax.network/blitz/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "BLITZ GAS", + "symbol": "BGAS", + "decimals": 18 + }, + "infoURL": "https://blitz.gg", + "shortName": "blitz", + "chainId": 1343, + "networkId": 1343, + "explorers": [ + { + "name": "BLITZ Explorer", + "url": "https://subnets-test.avax.network/blitz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kalar Chain", + "chain": "KLC", + "icon": "kalarchain", + "rpc": [ + "https://rpc-api.kalarchain.tech" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kalar", + "symbol": "KLC", + "decimals": 18 + }, + "infoURL": "https://kalarchain.tech", + "shortName": "KLC", + "chainId": 1379, + "networkId": 1379, + "explorers": [ + { + "name": "kalarscan", + "url": "https://explorer.kalarchain.tech", + "icon": "kalarscan", + "standard": "EIP3091" + } + ] + }, + { + "name": "WhiteBIT Network", + "chain": "WBT", + "rpc": [ + "https://rpc.whitebit.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "infoURL": "https://whitebit.network", + "shortName": "wbt", + "chainId": 1875, + "networkId": 1875, + "icon": "whitebit", + "explorers": [ + { + "name": "wb-explorer", + "url": "https://explorer.whitebit.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Sports Chain Network", + "chain": "SCN", + "rpc": [ + "https://rpc.sportschainnetwork.xyz/" + ], + "faucets": [], + "nativeCurrency": { + "name": "SCN", + "symbol": "SCN", + "decimals": 18 + }, + "infoURL": "https://sportschainnetwork.xyz", + "shortName": "SCN", + "chainId": 1904, + "networkId": 1904, + "icon": "scn", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sportschainnetwork.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Merkle Scan", + "chain": "MRK", + "icon": "merklescan", + "rpc": [ + "https://marklechain-rpc.merklescan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Merkle", + "symbol": "MRK", + "decimals": 18 + }, + "infoURL": "https://merklescan.com", + "shortName": "MRK", + "chainId": 1909, + "networkId": 1909, + "explorers": [ + { + "name": "blockscout", + "url": "https://merklescan.com", + "standard": "none" + } + ] + }, + { + "name": "SatoshIE", + "chain": "TUSHY", + "rpc": [ + "http://rpc.satosh.ie" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 + }, + "infoURL": "https://satosh.ie", + "shortName": "satoshie", + "chainId": 1985, + "networkId": 1985, + "icon": "satoshie", + "explorers": [ + { + "name": "mainnetexplorer", + "url": "http://explore.satosh.ie", + "icon": "satoshie", + "standard": "none" + } + ] + }, + { + "name": "SatoshIE Testnet", + "chain": "TUSHY", + "rpc": [ + "http://testnet.satosh.ie" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 + }, + "infoURL": "https://satosh.ie", + "shortName": "satoshie_testnet", + "chainId": 1986, + "networkId": 1986, + "icon": "satoshie", + "explorers": [ + { + "name": "testnetexplorer", + "url": "http://explore-testnet.satosh.ie", + "icon": "satoshie", + "standard": "none" + } + ] + }, + { + "name": "Centrifuge", + "chain": "CFG", + "rpc": [ + "wss://fullnode.parachain.centrifuge.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Centrifuge", + "symbol": "CFG", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "cfg", + "chainId": 2031, + "networkId": 2031, + "explorers": [ + { + "name": "subscan", + "url": "https://centrifuge.subscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Catalyst", + "chain": "CFG", + "rpc": [ + "wss://fullnode.catalyst.cntrfg.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Catalyst CFG", + "symbol": "NCFG", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "ncfg", + "chainId": 2032, + "networkId": 2032 + }, + { + "name": "Kiwi Subnet", + "chain": "KIWI", + "rpc": [ + "https://subnets.avax.network/kiwi/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Shrapgas", + "symbol": "SHRAP", + "decimals": 18 + }, + "infoURL": "", + "shortName": "kiwi", + "chainId": 2037, + "networkId": 2037, + "explorers": [ + { + "name": "KIWI Explorer", + "url": "https://subnets-test.avax.network/kiwi", + "standard": "EIP3091" + } + ] + }, + { + "name": "Shrapnel Testnet", + "chain": "SHRAPNEL", + "rpc": [ + "https://subnets.avax.network/shrapnel/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "SHRAPG", + "symbol": "SHRAPG", + "decimals": 18 + }, + "infoURL": "https://www.shrapnel.com/", + "shortName": "shraptest", + "chainId": 2038, + "networkId": 2038, + "explorers": [ + { + "name": "SHRAPNEL Explorer", + "url": "https://subnets-test.avax.network/shrapnel", + "standard": "EIP3091" + } + ] + }, + { + "name": "Movo Smart Chain Mainnet", + "chain": "MOVO", + "icon": "movo", + "rpc": [ + "https://msc-rpc.movoscan.com", + "https://msc-rpc.movochain.org", + "https://msc-rpc.movoswap.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Movo Smart Chain", + "symbol": "MOVO", + "decimals": 18 + }, + "infoURL": "https://movo.uk", + "shortName": "movo", + "chainId": 2049, + "networkId": 2049, + "slip44": 2050, + "explorers": [ + { + "name": "movoscan", + "url": "https://movoscan.com", + "icon": "movoscan", + "standard": "none" + } + ] + }, + { + "name": "Altair", + "chain": "AIR", + "rpc": [ + "wss://fullnode.altair.centrifuge.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Altair", + "symbol": "AIR", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "air", + "chainId": 2088, + "networkId": 2088 + }, + { + "name": "Algol", + "chain": "algol", + "rpc": [ + "wss://fullnode.algol.cntrfg.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Algol", + "symbol": "ALGL", + "decimals": 18 + }, + "infoURL": "https://centrifuge.io", + "shortName": "algl", + "chainId": 2089, + "networkId": 2089 + }, + { + "name": "BigShortBets", + "chain": "BIGSB", + "rpc": [ + "https://market.bigsb.io", + "wss://market.bigsb.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://bigshortbets.com/", + "shortName": "bigsb", + "chainId": 2137, + "networkId": 2137, + "explorers": [] + }, + { + "name": "Krest Network", + "chain": "Krest", + "icon": "krest", + "rpc": [ + "https://erpc-krest.peaq.network", + "https://krest.unitedbloc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Krest", + "symbol": "KRST", + "decimals": 18 + }, + "infoURL": "https://www.peaq.network", + "shortName": "KRST", + "chainId": 2241, + "networkId": 2241, + "explorers": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + "standard": "none" + }, + { + "name": "Subscan", + "url": "https://krest.subscan.io", + "standard": "none" + } + ] + }, + { + "name": "Ebro Network", + "chain": "ebro", + "rpc": [ + "https://greendinoswap.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ebro", + "symbol": "ebro", + "decimals": 18 + }, + "infoURL": "https://www.ebrochain.com", + "shortName": "ebro", + "chainId": 2306, + "networkId": 2306 + }, + { + "name": "Unicorn Ultra Nebulas Testnet", + "chain": "u2u", + "rpc": [ + "https://rpc-nebulas-testnet.uniultra.xyz" + ], + "faucets": [ + "https://faucet.uniultra.xyz" + ], + "nativeCurrency": { + "name": "Unicorn Ultra Nebulas Testnet", + "symbol": "U2U", + "decimals": 18 + }, + "infoURL": "https://uniultra.xyz", + "shortName": "u2u_nebulas", + "chainId": 2484, + "networkId": 2484, + "icon": "u2u_nebulas", + "explorers": [ + { + "icon": "u2u_nebulas", + "name": "U2U Explorer", + "url": "https://testnet.u2uscan.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Fraxchain Testnet", + "chain": "FRAX", + "rpc": [ + "https://rpc.testnet.frax.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 + }, + "infoURL": "https://testnet.frax.com", + "shortName": "fraxchain-testnet", + "chainId": 2522, + "networkId": 2522, + "explorers": [], + "status": "active" + }, + { + "name": "K-LAOS", + "title": "K-LAOS: LAOS on Kusama", + "chain": "K-LAOS", + "icon": "k-laos", + "rpc": [ + "https://rpc.klaos.laosfoundation.io", + "wss://rpc.klaos.laosfoundation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 + }, + "infoURL": "https://www.laosfoundation.io/", + "shortName": "k-laos", + "chainId": 2718, + "networkId": 2718, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.klaos.laosfoundation.io", + "icon": "k-laos", + "standard": "EIP3091" + } + ] + }, + { + "name": "Immu3 EVM", + "chain": "EVMCC", + "rpc": [ + "https://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3043-rpc.a.dancebox.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "IMMU", + "symbol": "IMMU", + "decimals": 18 + }, + "infoURL": "https://immu3.io", + "shortName": "Immu3", + "chainId": 3100, + "networkId": 3100, + "explorers": [] + }, + { + "name": "Vulture EVM Beta", + "chain": "VFIEVMCC", + "rpc": [ + "https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "VFI", + "symbol": "VFI", + "decimals": 18 + }, + "infoURL": "https://vulture.finance", + "shortName": "VFI", + "chainId": 3102, + "networkId": 3102, + "explorers": [] + }, + { + "name": "Dubxcoin network", + "chain": "DUBX", + "rpc": [ + "https://rpcmain.arabianchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dubxcoin mainnet", + "symbol": "DUBX", + "decimals": 18 + }, + "infoURL": "https://arabianchain.org", + "shortName": "dubx", + "chainId": 3269, + "networkId": 3269 + }, + { + "name": "Dubxcoin testnet", + "chain": "TESTDUBX", + "rpc": [ + "https://rpctestnet.arabianchain.org" + ], + "faucets": [ + "https://faucet.arabianchain.org/" + ], + "nativeCurrency": { + "name": "Dubxcoin testnet", + "symbol": "TDUBX", + "decimals": 18 + }, + "infoURL": "https://arabianchain.org", + "shortName": "testdubx", + "chainId": 3270, + "networkId": 3270 + }, + { + "name": "iChain Network", + "chain": "iChain", + "rpc": [ + "https://rpc.ichainscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 + }, + "infoURL": "https://islamicoin.finance", + "shortName": "ISLAMI", + "chainId": 3639, + "networkId": 3639, + "explorers": [ + { + "name": "iChainscan", + "url": "https://ichainscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Xpla Testnet", + "chain": "XPLATest", + "rpc": [ + "https://dimension-rpc.xpla.dev" + ], + "faucets": [ + "https://faucet.xpla.io" + ], + "nativeCurrency": { + "name": "XPLA", + "symbol": "XPLA", + "decimals": 18 + }, + "infoURL": "https://xpla.io", + "shortName": "xplatest", + "chainId": 3701, + "networkId": 3701, + "icon": "xpla", + "explorers": [ + { + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io", + "standard": "none" + } + ], + "status": "deprecated" + }, + { + "name": "KalyChain Mainnet", + "chain": "KLC", + "icon": "kalychain", + "rpc": [ + "https://rpc.kalychain.io/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 + }, + "infoURL": "https://kalychain.io", + "shortName": "kalymainnet", + "chainId": 3888, + "networkId": 3888, + "explorers": [ + { + "name": "KalyScan", + "url": "https://kalyscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "KalyChain Testnet", + "chain": "KLC", + "icon": "kalychain", + "rpc": [ + "https://testnetrpc.kalychain.io/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 + }, + "infoURL": "https://kalychain.io", + "shortName": "kalytestnet", + "chainId": 3889, + "networkId": 3889, + "explorers": [ + { + "name": "KalyScan", + "url": "https://testnet.kalyscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "X1 Fastnet", + "chain": "X1", + "rpc": [ + "https://x1-fastnet.xen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "infoURL": "https://docs.xen.network/go-x1/", + "shortName": "x1-fastnet", + "chainId": 4003, + "networkId": 4003, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-fastnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Humans.ai Testnet", + "chain": "Humans Testnet", + "rpc": [ + "https://evm-rpc.testnet.humans.zone" + ], + "faucets": [], + "nativeCurrency": { + "name": "HEART", + "symbol": "HEART", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://humans.ai", + "shortName": "humans_testnet", + "chainId": 4139, + "networkId": 4139, + "icon": "humans-dark" + }, + { + "name": "Beam", + "chain": "BEAM", + "rpc": [ + "https://subnets.avax.network/beam/mainnet/rpc", + "wss://subnets.avax.network/beam/mainnet/ws" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.onbeam.com" + ], + "nativeCurrency": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "infoURL": "https://www.onbeam.com", + "shortName": "beam", + "icon": "beam", + "chainId": 4337, + "networkId": 4337, + "explorers": [ + { + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", + "standard": "EIP3091" + } + ] + }, + { + "name": "Credit Smart Chain Mainnet", + "chain": "CREDIT", + "rpc": [ + "https://rpc.creditsmartchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://creditsmartchain.com", + "shortName": "CreditEdge", + "chainId": 4400, + "networkId": 4400, + "icon": "credit", + "explorers": [ + { + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } + ] + }, + { + "name": "Orderly Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "www.orderly.network", + "shortName": "orderlyl2", + "chainId": 4460, + "networkId": 4460, + "icon": "orderlyTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Globel Chain", + "chain": "GC", + "icon": "globelchain", + "rpc": [ + "https://rpc.gcscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Globel Chain", + "symbol": "GC", + "decimals": 18 + }, + "infoURL": "https://gcscan.io", + "shortName": "GC", + "chainId": 4893, + "networkId": 4893, + "explorers": [ + { + "name": "blockscout", + "url": "https://gcscan.io", + "standard": "none" + } + ] + }, + { + "name": "Treasurenet Mainnet Alpha", + "chain": "Treasurenet Mainnet Alpha", + "icon": "treasurenet", + "rpc": [ + "https://node0.treasurenet.io", + "https://node1.treasurenet.io", + "https://node2.treasurenet.io", + "https://node3.treasurenet.io" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "infoURL": "https://www.treasurenet.io", + "shortName": "treasurenet", + "chainId": 5002, + "networkId": 5002, + "explorers": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } + ] + }, + { + "name": "Mantle Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia.mantle.xyz" + ], + "faucets": [ + "https://faucet.sepolia.mantle.xyz" + ], + "nativeCurrency": { + "name": "Sepolia Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mnt-sep", + "chainId": 5003, + "networkId": 5003, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.mantle.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Treasurenet Testnet", + "chain": "Treasurenet Testnet", + "icon": "treasurenet", + "rpc": [ + "https://node0.testnet.treasurenet.io", + "https://node1.testnet.treasurenet.io", + "https://node2.testnet.treasurenet.io", + "https://node3.testnet.treasurenet.io" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "infoURL": "https://www.testnet.treasurenet.io", + "shortName": "tntest", + "chainId": 5005, + "networkId": 5005, + "explorers": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.testnet.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } + ] + }, + { + "name": "Tritanium Testnet", + "chain": "TRITANIUM", + "rpc": [ + "https://nodetestnet-station-one.tritanium.network/", + "https://nodetestnet-station-two.tritanium.network/" + ], + "faucets": [ + "https://faucet.tritanium.network" + ], + "nativeCurrency": { + "name": "Tritanium Native Token", + "symbol": "tTRN", + "decimals": 18 + }, + "infoURL": "https://tritanium.network", + "shortName": "ttrn", + "chainId": 5353, + "networkId": 5353, + "icon": "tritanium", + "explorers": [ + { + "name": "TRITANIUM Testnet Explorer", + "icon": "tritanium", + "url": "https://testnet.tritanium.network", + "standard": "none" + } + ] + }, + { + "name": "VEX EVM TESTNET", + "chain": "vex", + "icon": "vex", + "rpc": [ + "https://testnet.vexascan.com/evmapi" + ], + "faucets": [ + "https://t.me/vexfaucetbot" + ], + "nativeCurrency": { + "name": "VEX EVM TESTNET", + "symbol": "VEX", + "decimals": 18 + }, + "infoURL": "https://vexanium.com", + "shortName": "VEX", + "chainId": 5522, + "networkId": 5522, + "explorers": [ + { + "name": "Vexascan-EVM-TestNet", + "url": "https://testnet.vexascan.com/evmexplorer", + "standard": "EIP3091" + } + ] + }, + { + "name": "opBNB Testnet", + "chain": "opBNB", + "icon": "bnbchain", + "rpc": [ + "https://opbnb-testnet-rpc.bnbchain.org", + "https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5" + ], + "faucets": [ + "https://testnet.bnbchain.org/faucet-smart" + ], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://opbnb.bnbchain.org/en", + "shortName": "obnbt", + "chainId": 5611, + "networkId": 5611, + "explorers": [ + { + "name": "bscscan-opbnb-testnet", + "url": "https://opbnb-testnet.bscscan.com", + "standard": "EIP3091" + }, + { + "name": "opbnbscan", + "url": "https://opbnbscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arcturus Chain Testnet", + "chain": "ARCTURUS", + "rpc": [ + "http://185.99.196.3:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Test Arct", + "symbol": "tARCT", + "decimals": 18 + }, + "infoURL": "https://arcturuschain.io", + "shortName": "ARCT", + "chainId": 5616, + "networkId": 5616 + }, + { + "name": "Tanssi EVM ContainerChain", + "chain": "EVMCC", + "rpc": [ + "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Unit", + "symbol": "Unit", + "decimals": 18 + }, + "infoURL": "https://tanssi.network", + "shortName": "TanssiCC", + "chainId": 5678, + "networkId": 5678, + "explorers": [] + }, + { + "name": "Digit Soul Smart Chain", + "chain": "DGS", + "rpc": [ + "https://dsc-rpc.digitsoul.co.th" + ], + "faucets": [], + "icon": "pnet", + "nativeCurrency": { + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "DGS", + "chainId": 6363, + "networkId": 6363 + }, + { + "name": "Horizen EON Mainnet", + "shortName": "EON", + "chain": "EON", + "icon": "eon", + "rpc": [ + "https://eon-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_eon" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Zencash", + "symbol": "ZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 7332, + "networkId": 7332, + "slip44": 121, + "explorers": [ + { + "name": "Horizen EON Block Explorer", + "url": "https://eon-explorer.horizenlabs.io", + "icon": "eon", + "standard": "EIP3091" + } + ] + }, + { + "name": "MaalChain Testnet", + "chain": "MaalChain Testnet", + "icon": "maal-test", + "rpc": [ + "https://node1.maalscan.io/", + "https://rpc-bntest.maalscan.io/" + ], + "faucets": [ + "https://faucet-testnet.maalscan.io/" + ], + "nativeCurrency": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "infoURL": "https://www.maalchain.com/", + "shortName": "maal-test", + "chainId": 7860, + "networkId": 7860, + "explorers": [ + { + "name": "maalscan testnet", + "url": "https://testnet.maalscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Torus Mainnet", + "chain": "TQF", + "icon": "torus", + "rpc": [ + "https://rpc.toruschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "TQF", + "symbol": "TQF", + "decimals": 18 + }, + "infoURL": "https://docs.toruschain.com", + "shortName": "tqf", + "chainId": 8192, + "networkId": 8192, + "explorers": [ + { + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Torus Testnet", + "chain": "TQF", + "icon": "torus", + "rpc": [ + "https://rpc.testnet.toruschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "tTQF", + "symbol": "TTQF", + "decimals": 18 + }, + "infoURL": "https://docs.toruschain.com", + "shortName": "ttqf", + "chainId": 8194, + "networkId": 8194, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hela Official Runtime Mainnet", + "chain": "Hela", + "icon": "hela", + "rpc": [ + "https://mainnet-rpc.helachain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 + }, + "infoURL": "https://helalabs.com", + "shortName": "hela", + "chainId": 8668, + "networkId": 8668, + "explorers": [ + { + "name": "Hela Official Runtime Mainnet Explorer", + "url": "https://mainnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Codefin Mainnet", + "chain": "COF", + "icon": "codefin", + "rpc": [ + "https://chain-rpc.codefin.pro" + ], + "faucets": [], + "nativeCurrency": { + "name": "Codefin", + "symbol": "COF", + "decimals": 18 + }, + "infoURL": "https://network.codefin.pro", + "shortName": "COF", + "chainId": 9223, + "networkId": 9223, + "explorers": [ + { + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", + "standard": "EIP3091" + } + ] + }, + { + "name": "IMPERIUM TESTNET", + "chain": "tIMP", + "rpc": [ + "https://data-aws-testnet.imperiumchain.com", + "https://data-aws2-testnet.imperiumchain.com" + ], + "faucets": [ + "https://faucet.imperiumchain.com/" + ], + "nativeCurrency": { + "name": "tIMP", + "symbol": "tIMP", + "decimals": 18 + }, + "infoURL": "https://imperiumchain.com", + "shortName": "tIMP", + "chainId": 9818, + "networkId": 9818, + "icon": "timp", + "explorers": [ + { + "name": "IMPERIUM TESTNET Explorer", + "icon": "timp", + "url": "https://network.impscan.com", + "standard": "none" + } + ] + }, + { + "name": "IMPERIUM MAINNET", + "chain": "IMP", + "rpc": [ + "https://data-aws-mainnet.imperiumchain.com", + "https://data-aws2-mainnet.imperiumchain.com" + ], + "faucets": [ + "https://faucet.imperiumchain.com/" + ], + "nativeCurrency": { + "name": "IMP", + "symbol": "IMP", + "decimals": 18 + }, + "infoURL": "https://imperiumchain.com", + "shortName": "IMP", + "chainId": 9819, + "networkId": 9819, + "icon": "imp", + "explorers": [ + { + "name": "IMPERIUM Explorer", + "icon": "imp", + "url": "https://impscan.com", + "standard": "none" + } + ] + }, + { + "name": "Mind Smart Chain Testnet", + "chain": "tMIND", + "icon": "mindchain", + "rpc": [ + "https://testnet-msc.mindchain.info/", + "wss://testnet-msc.mindchain.info/ws" + ], + "faucets": [ + "https://faucet.mindchain.info/" + ], + "nativeCurrency": { + "name": "MIND Coin", + "symbol": "tMIND", + "decimals": 18 + }, + "infoURL": "https://mindchain.info", + "shortName": "tMIND", + "chainId": 9977, + "networkId": 9977, + "explorers": [ + { + "name": "Mind Chain explorer", + "url": "https://testnet.mindscan.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Agung Network", + "chain": "Agung", + "icon": "agung", + "rpc": [ + "https://rpcpc1-qa.agung.peaq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Agung", + "symbol": "AGNG", + "decimals": 18 + }, + "infoURL": "https://www.peaq.network", + "shortName": "AGNG", + "chainId": 9990, + "networkId": 9990, + "explorers": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + "standard": "none" + }, + { + "name": "Subscan", + "url": "https://agung.subscan.io", + "standard": "none" + } + ] + }, + { + "name": "Mind Smart Chain Mainnet", + "chain": "MIND", + "icon": "mindchain", + "rpc": [ + "https://rpc-msc.mindchain.info/", + "https://seednode.mindchain.info", + "https://archive.mindchain.info/", + "wss://archive.mindchain.info/ws", + "wss://seednode.mindchain.info/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "MIND Coin", + "symbol": "MIND", + "decimals": 18 + }, + "infoURL": "https://mindchain.info", + "shortName": "MIND", + "chainId": 9996, + "networkId": 9996, + "explorers": [ + { + "name": "Mind Chain explorer", + "url": "https://mainnet.mindscan.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Japan Open Chain Testnet", + "chain": "JOCT", + "rpc": [ + "https://rpc-1.testnet.japanopenchain.org:8545", + "https://rpc-2.testnet.japanopenchain.org:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Japan Open Chain Testnet Token", + "symbol": "JOCT", + "decimals": 18 + }, + "infoURL": "https://www.japanopenchain.org/", + "shortName": "joct", + "chainId": 10081, + "networkId": 10081, + "explorers": [ + { + "name": "Testnet Block Explorer", + "url": "https://explorer.testnet.japanopenchain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "MaxxChain Mainnet", + "chain": "MaxxChain", + "rpc": [ + "https://rpc.maxxchain.org", + "https://rpc1.maxxchain.org", + "https://rpc2.maxxchain.org" + ], + "faucets": [ + "https://faucet.maxxchain.org" + ], + "nativeCurrency": { + "name": "Power", + "symbol": "PWR", + "decimals": 18 + }, + "icon": "pwr", + "infoURL": "https://www.maxxchain.org/", + "shortName": "PWR", + "chainId": 10201, + "networkId": 10201, + "explorers": [ + { + "name": "MaxxChain Block Explorer", + "url": "https://explorer.maxxchain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arthera Testnet", + "chain": "AA", + "icon": "arthera", + "rpc": [ + "https://rpc-test.arthera.net" + ], + "faucets": [ + "https://faucet.arthera.net" + ], + "nativeCurrency": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "infoURL": "https://docs.arthera.net", + "shortName": "aa", + "chainId": 10243, + "networkId": 10243, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Worldland Testnet", + "chain": "Worldland", + "icon": "worldland", + "rpc": [ + "https://gwangju.worldland.foundation" + ], + "faucets": [], + "nativeCurrency": { + "name": "Worldland", + "symbol": "WL", + "decimals": 18 + }, + "infoURL": "https://worldland.foundation", + "shortName": "TWLC", + "chainId": 10395, + "networkId": 10395, + "explorers": [ + { + "name": "Worldland Explorer", + "url": "https://testscan.worldland.foundation", + "standard": "EIP3091" + } + ] + }, + { + "name": "Polygon Supernet Arianee", + "chain": "Arianee", + "rpc": [ + "https://rpc.polygonsupernet.public.arianee.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Arianee", + "symbol": "ARIA20", + "decimals": 18 + }, + "infoURL": "https://arianee.org", + "shortName": "Arianee", + "chainId": 11891, + "networkId": 11891, + "explorers": [ + { + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-1", + "type": "L2" + } + }, + { + "name": "Astar zkEVM", + "shortName": "astrzk", + "title": "Astar zkEVM Mainnet", + "chain": "ETH", + "icon": "astarzk", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 12611, + "networkId": 12611, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + }, + "status": "incubating" + }, + { + "name": "Quantum Chain Testnet", + "chain": "tQNET", + "icon": "qnet", + "rpc": [ + "https://testnet-rpc.quantumscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quantum Chain", + "symbol": "tQNET", + "decimals": 18 + }, + "infoURL": "https://quantumnetwork.gg", + "shortName": "tqnet", + "chainId": 12890, + "networkId": 12890, + "explorers": [ + { + "name": "Quantum Scan Testnet", + "url": "https://testnet.quantumscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Beam Testnet", + "chain": "BEAM", + "rpc": [ + "https://subnets.avax.network/beam/testnet/rpc", + "wss://subnets.avax.network/beam/testnet/ws" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.avax.network/?subnet=beam", + "https://faucet.onbeam.com" + ], + "nativeCurrency": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "infoURL": "https://www.onbeam.com", + "shortName": "beam-testnet", + "icon": "beam", + "chainId": 13337, + "networkId": 13337, + "explorers": [ + { + "name": "Beam Explorer", + "url": "https://subnets-test.avax.network/beam", + "standard": "EIP3091" + } + ] + }, + { + "name": "Immutable zkEVM Testnet", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.testnet.immutable.com" + ], + "faucets": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "nativeCurrency": { + "name": "Test IMX", + "symbol": "tIMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx-testnet", + "chainId": 13473, + "networkId": 13473, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable Testnet explorer", + "url": "https://explorer.testnet.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ] + }, + { + "name": "Humanode Testnet 5 Israfel", + "chain": "Humanode Testnet 5", + "rpc": [ + "https://explorer-rpc-http.testnet5.stages.humanode.io" + ], + "faucets": [ + "https://t.me/HumanodeTestnet5FaucetBot" + ], + "nativeCurrency": { + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 + }, + "infoURL": "https://humanode.io", + "shortName": "hmnd-t5", + "chainId": 14853, + "networkId": 14853, + "explorers": [] + }, + { + "name": "Immutable zkEVM Devnet", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.dev.immutable.com" + ], + "faucets": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "nativeCurrency": { + "name": "Dev IMX", + "symbol": "dIMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx-devnet", + "chainId": 15003, + "networkId": 15003, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable Devnet explorer", + "url": "https://explorer.dev.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ] + }, + { + "name": "Holesky", + "title": "Ethereum Testnet Holesky", + "chain": "ETH", + "rpc": [ + "https://rpc.holesky.ethpandaops.io", + "https://ethereum-holesky.publicnode.com", + "wss://ethereum-holesky.publicnode.com" + ], + "faucets": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://holesky.ethpandaops.io", + "shortName": "holesky", + "chainId": 17000, + "networkId": 17000, + "icon": "ethereum", + "status": "incubating", + "explorers": [ + { + "name": "Holesky Explorer", + "url": "https://holesky.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "Holesky Etherscan", + "url": "https://holesky.etherscan.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ] + }, + { + "name": "Redstone Holesky Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.holesky.redstone.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Redstone Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz/docs/network-info", + "shortName": "redstone", + "chainId": 17001, + "networkId": 17001, + "icon": "redstone", + "explorers": [ + { + "name": "Redstone Holesky Explorer", + "url": "https://explorer.holesky.redstone.xyz", + "icon": "ethereum", + "standard": "EIP3091" + } + ] + }, + { + "name": "G8Chain Mainnet", + "chain": "G8C", + "icon": "G8Chain", + "rpc": [ + "https://mainnet-rpc.oneg8.network" + ], + "faucets": [ + "https://faucet.oneg8.network" + ], + "nativeCurrency": { + "name": "G8Chain", + "symbol": "G8C", + "decimals": 18 + }, + "infoURL": "https://oneg8.one", + "shortName": "G8Cm", + "chainId": 17171, + "networkId": 17171, + "explorers": [ + { + "name": "G8Chain", + "url": "https://mainnet.oneg8.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Smart Trade Networks", + "chain": "Smart Trade Networks", + "rpc": [ + "https://beefledgerwallet.com:8544" + ], + "faucets": [], + "nativeCurrency": { + "name": "STN", + "symbol": "STN", + "decimals": 18 + }, + "infoURL": "https://www.smarttradenetworks.com", + "shortName": "STN", + "chainId": 18122, + "networkId": 18122, + "icon": "stn", + "explorers": [ + { + "name": "stnscan", + "url": "https://stnscan.com", + "icon": "stn", + "standard": "none" + } + ] + }, + { + "name": "G8Chain Testnet", + "chain": "G8C", + "icon": "G8Chain", + "rpc": [ + "https://testnet-rpc.oneg8.network" + ], + "faucets": [ + "https://faucet.oneg8.network" + ], + "nativeCurrency": { + "name": "G8Coin", + "symbol": "G8C", + "decimals": 18 + }, + "infoURL": "https://oneg8.one", + "shortName": "G8Ct", + "chainId": 18181, + "networkId": 18181, + "explorers": [ + { + "name": "G8Chain", + "url": "https://testnet.oneg8.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nautilus Mainnet", + "chain": "ETH", + "icon": "nautilus", + "rpc": [ + "https://api.nautilus.nautchain.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zebec", + "symbol": "ZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUTCHAIN", + "chainId": 22222, + "networkId": 22222, + "explorers": [ + { + "name": "Nautscan", + "url": "https://nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } + ] + }, + { + "name": "MCH Verse Mainnet", + "chain": "MCH Verse", + "icon": "mch_verse", + "rpc": [ + "https://rpc.oasys.mycryptoheroes.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.mycryptoheroes.net/verse", + "shortName": "MCHV", + "chainId": 29548, + "networkId": 29548, + "explorers": [ + { + "name": "MCH Verse Explorer", + "url": "https://explorer.oasys.mycryptoheroes.net", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Cerium Testnet", + "chain": "CAU", + "icon": "canxium", + "rpc": [ + "https://cerium-rpc.canxium.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "infoURL": "https://canxium.org", + "shortName": "ceri", + "chainId": 30103, + "networkId": 30103, + "explorers": [ + { + "name": "canxium explorer", + "url": "https://cerium-explorer.canxium.net", + "standard": "none" + } + ] + }, + { + "name": "Zilliqa EVM Isolated Server", + "chain": "ZIL", + "rpc": [ + "https://zilliqa-isolated-server.zilliqa.com/" + ], + "faucets": [ + "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" + ], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-isolated-server", + "chainId": 32990, + "networkId": 32990, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa EVM Isolated Server Explorer", + "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", + "standard": "none" + } + ] + }, + { + "name": "Cloudverse Subnet", + "chain": "CLOUDVERSE", + "rpc": [ + "https://subnets.avax.network/cloudverse/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "XCLOUD", + "symbol": "XCLOUD", + "decimals": 18 + }, + "infoURL": "https://muadao.build/", + "shortName": "cloudverse", + "chainId": 33210, + "networkId": 33210, + "explorers": [ + { + "name": "CLOUDVERSE Explorer", + "url": "https://subnets.avax.network/cloudverse", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zilliqa EVM Devnet", + "chain": "ZIL", + "rpc": [ + "https://api.devnet.zilliqa.com/" + ], + "faucets": [ + "https://faucet.devnet.zilliqa.com/" + ], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-devnet", + "chainId": 33385, + "networkId": 33385, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa EVM Devnet Explorer", + "url": "https://otterscan.devnet.zilliqa.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zilliqa 2 EVM Devnet", + "chain": "ZIL", + "rpc": [ + "https://api.zq2-devnet.zilstg.dev" + ], + "faucets": [ + "https://faucet.zq2-devnet.zilstg.dev" + ], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zq2-devnet", + "chainId": 33469, + "networkId": 33469, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa 2 EVM Devnet Explorer", + "url": "https://explorer.zq2-devnet.zilstg.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "ConnectorManager", + "chain": "Rangers", + "icon": "rangers", + "rpc": [ + "https://cm.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "cmRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "cmrpg", + "chainId": 38400, + "networkId": 38400, + "explorers": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ] + }, + { + "name": "ConnectorManager Robin", + "chain": "Rangers", + "icon": "rangers", + "rpc": [ + "https://robin-cm.rangersprotocol.com/api/jsonrpc" + ], + "faucets": [ + "https://robin-faucet.rangersprotocol.com" + ], + "nativeCurrency": { + "name": "Rangers Protocol Gas", + "symbol": "ttRPG", + "decimals": 18 + }, + "infoURL": "https://rangersprotocol.com", + "shortName": "ttrpg", + "chainId": 38401, + "networkId": 38401, + "explorers": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ] + }, + { + "name": "Gesoten Verse Testnet", + "chain": "Gesoten Verse", + "rpc": [ + "https://rpc.testnet.verse.gesoten.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://gesoten.com/", + "shortName": "GST", + "icon": "gesoten", + "chainId": 42801, + "networkId": 42801, + "explorers": [ + { + "name": "Gesoten Verse Testnet Explorer", + "url": "https://explorer.testnet.verse.gesoten.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kinto Testnet", + "title": "Kinto Testnet", + "chain": "ETH", + "rpc": [ + "http://35.215.120.180:8545" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethereum.org", + "shortName": "keth", + "chainId": 42888, + "networkId": 42888, + "explorers": [ + { + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "standard": "EIP3091" + } + ] + }, + { + "name": "Electroneum Mainnet", + "chain": "Electroneum", + "rpc": [ + "https://api.electroneum.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://electroneum.com", + "shortName": "etn-mainnet", + "chainId": 52014, + "networkId": 52014, + "icon": "electroneum", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockexplorer.electroneum.com", + "icon": "electroneum", + "standard": "EIP3091" + } + ] + }, + { + "name": "VELO Labs Mainnet", + "chain": "NOVA chain", + "rpc": [ + "https://nova.velo.org" + ], + "faucets": [ + "https://nova-faucet.velo.org" + ], + "nativeCurrency": { + "name": "Nova", + "symbol": "NOVA", + "decimals": 18 + }, + "infoURL": "https://velo.org", + "shortName": "VELO", + "chainId": 56789, + "networkId": 56789, + "icon": "novachain", + "explorers": [ + { + "name": "novascan", + "url": "https://novascan.velo.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Linea", + "title": "Linea Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.linea.build", + "wss://rpc.linea.build", + "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea", + "chainId": 59144, + "networkId": 59144, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.linea.build" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.linea.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active" + }, + { + "name": "Genesys Code Mainnet", + "chain": "GCODE", + "rpc": [ + "https://mainnet.genesyscode.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GenesysCode", + "symbol": "GCODE", + "decimals": 18 + }, + "infoURL": "https://genesyscode.io", + "shortName": "gcode", + "chainId": 59971, + "networkId": 59971, + "icon": "genesyscode", + "explorers": [ + { + "name": "Genesys Scan", + "url": "https://genesysscan.io", + "icon": "genesyscode", + "standard": "none" + } + ] + }, + { + "name": "Janus Testnet", + "chain": "JanusNetwork", + "icon": "janusnetwork", + "rpc": [ + "https://rpc.test.janusnetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Janus", + "symbol": "JNS", + "decimals": 18 + }, + "infoURL": "https://janus-network.gitbook.io/janus", + "shortName": "janusnetwork-testnet", + "chainId": 66988, + "networkId": 66988, + "status": "active", + "explorers": [ + { + "name": "JanusNetwork Testnet Explorer", + "url": "https://beta.scan.janusnetwork.io", + "standard": "none" + } + ] + }, + { + "name": "DM2 Verse Mainnet", + "chain": "DM2 Verse", + "icon": "dm2verse", + "rpc": [ + "https://rpc.dm2verse.dmm.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://seamoon.dmm.com", + "shortName": "dm2", + "chainId": 68770, + "networkId": 68770, + "explorers": [ + { + "name": "DM2Verse Explorer", + "url": "https://explorer.dm2verse.dmm.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Foundry Chain Testnet", + "chain": "tFNC", + "icon": "fnc", + "rpc": [ + "https://testnet-rpc.foundryscan.org/" + ], + "faucets": [ + "https://faucet.foundryscan.org" + ], + "nativeCurrency": { + "name": "Foundry Chain Testnet", + "symbol": "tFNC", + "decimals": 18 + }, + "infoURL": "https://foundrychain.org", + "shortName": "fnc", + "chainId": 77238, + "networkId": 77238, + "explorers": [ + { + "name": "Foundry Scan Testnet", + "url": "https://testnet-explorer.foundryscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Amplify Subnet", + "chain": "AMPLIFY", + "rpc": [ + "https://subnets.avax.network/amplify/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "AMP", + "symbol": "AMP", + "decimals": 18 + }, + "infoURL": "https://www.avax.network", + "shortName": "amplify", + "chainId": 78430, + "networkId": 78430, + "explorers": [ + { + "name": "AMPLIFY Explorer", + "url": "https://subnets-test.avax.network/amplify", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bulletin Subnet", + "chain": "BULLETIN", + "rpc": [ + "https://subnets.avax.network/bulletin/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "BLT", + "symbol": "BLT", + "decimals": 18 + }, + "infoURL": "https://www.avax.network", + "shortName": "bulletin", + "chainId": 78431, + "networkId": 78431, + "explorers": [ + { + "name": "BULLETIN Explorer", + "url": "https://subnets-test.avax.network/bulletin", + "standard": "EIP3091" + } + ] + }, + { + "name": "Conduit Subnet", + "chain": "CONDUIT", + "rpc": [ + "https://subnets.avax.network/conduit/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "CON", + "symbol": "CON", + "decimals": 18 + }, + "infoURL": "https://www.avax.network", + "shortName": "conduit", + "chainId": 78432, + "networkId": 78432, + "explorers": [ + { + "name": "CONDUIT Explorer", + "url": "https://subnets-test.avax.network/conduit", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nordek Mainnet", + "chain": "Nordek", + "rpc": [ + "https://mainnet-rpc.nordekscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "NRK", + "symbol": "NRK", + "decimals": 18 + }, + "infoURL": "https://nordekscan.com", + "shortName": "nordek", + "chainId": 81041, + "networkId": 81041, + "explorers": [ + { + "name": "nordek", + "url": "https://nordekscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Quantum Chain Mainnet", + "chain": "QNET", + "icon": "qnet", + "rpc": [ + "https://rpc.quantumscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quantum Chain", + "symbol": "QNET", + "decimals": 18 + }, + "infoURL": "https://quantumnetwork.gg", + "shortName": "qnet", + "chainId": 81720, + "networkId": 81720, + "explorers": [ + { + "name": "Quantum Scan Mainnet", + "url": "https://quantumscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Base Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.base.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basesep", + "chainId": 84532, + "networkId": 84532, + "icon": "baseTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://base-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Aerie Network", + "chain": "Aerie", + "rpc": [ + "https://mainnet.aerielab.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aerie", + "symbol": "AER", + "decimals": 18 + }, + "infoURL": "https://aerielab.io/", + "shortName": "Aerie", + "chainId": 84886, + "networkId": 84886, + "icon": "aerie", + "explorers": [ + { + "name": "Aerie Explorer", + "url": "https://explorer.aerielab.io", + "icon": "aerie", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nautilus Proteus Testnet", + "chain": "ETH", + "icon": "nautilus", + "rpc": [ + "https://api.proteus.nautchain.xyz/solana" + ], + "faucets": [ + "https://proteusfaucet.nautchain.xyz" + ], + "nativeCurrency": { + "name": "Zebec Test Token", + "symbol": "tZBC", + "decimals": 18 + }, + "infoURL": "https://docs.nautchain.xyz", + "shortName": "NAUTTest", + "chainId": 88002, + "networkId": 88002, + "explorers": [ + { + "name": "Nautscan", + "url": "https://proteus.nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } + ] + }, + { + "name": "eLiberty Testnet", + "chain": "$EL", + "icon": "eLiberty", + "rpc": [ + "https://testnet-rpc.eliberty.ngo" + ], + "faucets": [ + "https://faucet.eliberty.ngo" + ], + "nativeCurrency": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "infoURL": "https://eliberty.ngo", + "shortName": "ELt", + "chainId": 99099, + "networkId": 99099, + "explorers": [ + { + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taiko Jolnir L2", + "chain": "ETH", + "status": "incubating", + "icon": "taiko", + "rpc": [ + "https://rpc.jolnir.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-jolnir", + "chainId": 167007, + "networkId": 167007, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.jolnir.taiko.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitica Chain Mainnet", + "chain": "BDCC", + "rpc": [ + "https://mainnet-rpc.biticablockchain.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitica Coin", + "symbol": "BDCC", + "decimals": 18 + }, + "infoURL": "https://biticablockchain.com/", + "shortName": "bdcc", + "chainId": 188710, + "networkId": 188710, + "explorers": [ + { + "name": "Bitica DPOS Blockchain Explorer", + "url": "https://biticablockchain.com", + "standard": "none" + } + ] + }, + { + "name": "X1 Devnet", + "chain": "X1", + "rpc": [ + "https://x1-devnet.xen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "infoURL": "https://docs.xen.network/x1/", + "shortName": "x1-devnet", + "chainId": 202212, + "networkId": 202212, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-devnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "X1 Network", + "chain": "X1", + "rpc": [ + "https://x1-testnet.xen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "infoURL": "https://docs.xen.network/go-x1/", + "shortName": "x1-testnet", + "chainId": 204005, + "networkId": 204005, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-testnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Reapchain Mainnet", + "chain": "REAP", + "rpc": [ + "https://eth.reapchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Reap", + "symbol": "REAP", + "decimals": 18 + }, + "features": [], + "infoURL": "https://reapchain.com", + "shortName": "reap", + "chainId": 221230, + "networkId": 221230, + "icon": "reapchain", + "explorers": [ + { + "name": "Reapchain Dashboard", + "url": "https://dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } + ] + }, + { + "name": "Reapchain Testnet", + "chain": "REAP", + "rpc": [ + "https://test-eth.reapchain.org" + ], + "faucets": [ + "http://faucet.reapchain.com" + ], + "nativeCurrency": { + "name": "test-Reap", + "symbol": "tREAP", + "decimals": 18 + }, + "features": [], + "infoURL": "https://reapchain.com", + "shortName": "reap-testnet", + "chainId": 221231, + "networkId": 221231, + "icon": "reapchain", + "explorers": [ + { + "name": "Reapchain Testnet Dashboard", + "url": "https://test-dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } + ] + }, + { + "name": "Nativ3 Testnet", + "chainId": 333333, + "shortName": "N3-Test", + "chain": "N3-Test", + "icon": "nativ3", + "networkId": 333333, + "nativeCurrency": { + "name": "USNT", + "symbol": "USNT", + "decimals": 18 + }, + "rpc": [ + "https://rpctest.nativ3.network", + "wss://wstest.nativ3.network" + ], + "faucets": [], + "explorers": [ + { + "name": "Nativ3 Test Explorer", + "url": "https://scantest.nativ3.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://nativ3.network", + "parent": { + "type": "L2", + "chain": "eip155-421613", + "bridges": [ + { + "url": "https://bridgetest.nativ3.network" + } + ] + } + }, + { + "name": "Oone Chain Testnet", + "chain": "OONE Testnet", + "rpc": [ + "https://rpc.testnet.oonechain.com" + ], + "faucets": [ + "https://apps-test.adigium.com/faucet" + ], + "nativeCurrency": { + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 + }, + "infoURL": "https://oonechain.com", + "shortName": "oonetest", + "chainId": 333666, + "networkId": 333666, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.oonescan.com", + "standard": "none" + } + ] + }, + { + "name": "Digit Soul Smart Chain 2", + "chain": "DS2", + "rpc": [ + "https://dgs-rpc.digitsoul.co.th" + ], + "faucets": [], + "icon": "pnet", + "nativeCurrency": { + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "DS2", + "chainId": 363636, + "networkId": 363636 + }, + { + "name": "Alterium L2 Testnet", + "chain": "ALT", + "icon": "alterium", + "rpc": [ + "https://l2-testnet-rpc.altscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Alterium ETH", + "symbol": "AltETH", + "decimals": 18 + }, + "infoURL": "https://alteriumprotocol.org", + "shortName": "alterium", + "chainId": 420692, + "networkId": 420692, + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://testnet-bridge.alteriumprotocol.org" + } + ] + }, + "explorers": [ + { + "name": "Alterium L2 Testnet Explorer", + "url": "https://l2-testnet.altscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arbitrum Sepolia", + "title": "Arbitrum Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-rollup.arbitrum.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://arbitrum.io", + "shortName": "arb-sep", + "chainId": 421614, + "networkId": 421614, + "explorers": [ + { + "name": "Arbitrum Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } + }, + { + "name": "Rethereum Mainnet", + "chain": "RTH", + "rpc": [ + "https://rpc.rethereum.org", + "https://rethereum.rpc.restratagem.com", + "https://rpc.rthcentral.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rethereum", + "symbol": "RTH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.rethereum.org", + "shortName": "rth", + "chainId": 622277, + "networkId": 622277, + "icon": "rethereum", + "explorers": [ + { + "name": "rethereum", + "url": "https://explorer.rethereum.org", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hela Official Runtime Testnet", + "chain": "Hela", + "icon": "hela", + "rpc": [ + "https://testnet-rpc.helachain.com" + ], + "faucets": [ + "https://testnet-faucet.helachain.com" + ], + "nativeCurrency": { + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 + }, + "infoURL": "https://helalabs.com", + "shortName": "hela-testnet", + "chainId": 666888, + "networkId": 666888, + "explorers": [ + { + "name": "Hela Official Runtime Testnet Explorer", + "url": "https://testnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Miexs Smartchain", + "chain": "MiexsSmartchain", + "icon": "miexs", + "rpc": [ + "https://mainnet-rpc.miexs.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Miexs Coin", + "symbol": "MIX", + "decimals": 18 + }, + "infoURL": "https://miexs.com", + "shortName": "Miexs", + "chainId": 761412, + "networkId": 761412, + "explorers": [ + { + "name": "Miexs Smartchain Explorer", + "url": "https://miexs.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Modularium", + "chain": "EVMCC", + "rpc": [ + "https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Modularium", + "symbol": "MDM", + "decimals": 18 + }, + "infoURL": "https://www.rmrk.app/", + "shortName": "mdlrm", + "chainId": 776877, + "networkId": 776877, + "explorers": [ + { + "name": "Tanssi Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", + "standard": "none" + } + ] + }, + { + "name": "Dodao", + "chain": "EVMCC", + "rpc": [ + "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dodao", + "symbol": "DODAO", + "decimals": 18 + }, + "infoURL": "https://dodao.dev/", + "shortName": "dodao", + "chainId": 855456, + "networkId": 855456, + "icon": "dodao", + "explorers": [ + { + "name": "Dodao Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", + "icon": "dodao", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ecrox Chain Mainnet", + "chain": "Ecrox Chain", + "rpc": [ + "https://mainnet-rpc.ecroxscan.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ECROX COIN", + "symbol": "ECROX", + "decimals": 18 + }, + "infoURL": "https://ecroxcoin.io/", + "shortName": "ecrox", + "icon": "ecrox", + "chainId": 988207, + "networkId": 988207, + "explorers": [ + { + "name": "Ecrox Chain Explorer", + "url": "https://ecroxscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Tiltyard Subnet", + "chain": "TILTYARD", + "rpc": [ + "https://subnets.avax.network/tiltyard/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Tiltyard Token", + "symbol": "TILTG", + "decimals": 18 + }, + "infoURL": "", + "shortName": "tiltyard", + "chainId": 1127469, + "networkId": 1127469, + "explorers": [ + { + "name": "TILTYARD Explorer", + "url": "http://testnet-explorer.tiltyard.gg", + "standard": "EIP3091" + } + ] + }, + { + "name": "zKatana", + "shortName": "azktn", + "title": "Astar zkEVM Testnet zKatana", + "chain": "ETH", + "icon": "astarzk", + "rpc": [ + "https://rpc.zkatana.gelato.digital", + "https://rpc.startale.com/zkatana" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 1261120, + "networkId": 1261120, + "explorers": [ + { + "name": "Blockscout zKatana chain explorer", + "url": "https://zkatana.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "Startale zKatana chain explorer", + "url": "https://zkatana.explorer.startale.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.astar.network" + }, + { + "url": "https://bridge.zkatana.gelato.digital" + } + ] + }, + "status": "active" + }, + { + "name": "DeBank Testnet", + "chain": "DeBank", + "rpc": [ + "http://rpc.testnet.debank.com" + ], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://debank.com", + "shortName": "dbk", + "chainId": 2021398, + "networkId": 2021398, + "explorers": [ + { + "name": "DeBank Chain Explorer", + "url": "https://explorer.testnet.debank.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "DPU Chain", + "chain": "DPU", + "rpc": [ + "https://sc-rpc.dpu.ac.th" + ], + "faucets": [], + "nativeCurrency": { + "name": "DGC", + "symbol": "DGC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "DPU", + "chainId": 2611555, + "networkId": 2611555 + }, + { + "name": "Manta Pacific Testnet", + "chain": "Manta Pacific", + "rpc": [ + "https://manta-testnet.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Manta", + "symbol": "MANTA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://manta-testnet.caldera.dev/", + "shortName": "mantaTestnet", + "chainId": 3441005, + "networkId": 3441005, + "icon": "manta", + "explorers": [ + { + "name": "manta-testnet Explorer", + "url": "https://manta-testnet.calderaexplorer.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Electroneum Testnet", + "chain": "Electroneum", + "rpc": [ + "https://api.electroneum.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://electroneum.com", + "shortName": "etn-testnet", + "chainId": 5201420, + "networkId": 5201420, + "icon": "electroneum", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockexplorer.thesecurityteam.rocks", + "icon": "electroneum", + "standard": "EIP3091" + } + ] + }, + { + "name": "XCAP", + "title": "XCAP Mainnet", + "chain": "XCAP", + "rpc": [ + "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://xcap.network/", + "shortName": "xcap", + "chainId": 9322252, + "networkId": 9322252, + "icon": "xcap", + "explorers": [ + { + "name": "blockscout", + "url": "https://xcap-mainnet.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Milvine", + "title": "XCAP Testnet Milvine", + "chain": "XCAP", + "rpc": [ + "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://xcap.network/", + "shortName": "milv", + "chainId": 9322253, + "networkId": 9322253, + "icon": "xcap", + "explorers": [ + { + "name": "blockscout", + "url": "https://xcap-milvine.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "OP Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.optimism.io" + ], + "faucets": [ + "https://app.optimism.io/faucet" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://optimism.io", + "shortName": "opsep", + "chainId": 11155420, + "networkId": 11155420, + "explorers": [ + { + "name": "opscout", + "url": "https://optimism-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Autonity Bakerloo (Barada) Testnet", + "chain": "AUT", + "rpc": [ + "https://rpc1.bakerloo.autonity.org/", + "wss://rpc1.bakerloo.autonity.org/ws/" + ], + "faucets": [ + "https://faucet.autonity.org/" + ], + "nativeCurrency": { + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "bakerloo-01", + "chainId": 65010001, + "networkId": 65010001, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Frame Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.testnet.frame.xyz/http" + ], + "faucets": [ + "https://faucet.triangleplatform.com/frame/testnet" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "frameTestnet", + "infoURL": "https://www.frame.xyz/", + "shortName": "frametest", + "chainId": 68840142, + "networkId": 68840142, + "explorers": [ + { + "name": "Frame Testnet Explorer", + "url": "https://explorer.testnet.frame.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Europa Hub Testnet", + "title": "Europa Hub Testnet", + "chain": "staging-legal-crazy-castor", + "icon": "europa", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor" + ], + "faucets": [ + "https://sfuel.dirtroad.dev/staging" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "europa-testnet", + "chainId": 476158412, + "networkId": 476158412, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zora Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.rpc.zora.energy" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "zoraSepoliaTestnet", + "infoURL": "https://zora.energy", + "shortName": "zsep", + "chainId": 999999999, + "networkId": 999999999, + "explorers": [ + { + "name": "Zora Sepolia Testnet Network Explorer", + "url": "https://sepolia.explorer.zora.energy", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Titan Hub", + "chain": "parallel-stormy-spica", + "icon": "titan", + "rpc": [ + "https://mainnet.skalenodes.com/v1/parallel-stormy-spica", + "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" + ], + "faucets": [ + "https://sfuel.skale.network/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "titan-mainnet", + "chainId": 1350216234, + "networkId": 1350216234, + "explorers": [ + { + "name": "Blockscout", + "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Titan Hub Testnet", + "chain": "staging-aware-chief-gianfar", + "icon": "titan", + "rpc": [ + "https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar", + "wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar" + ], + "faucets": [ + "https://sfuel.dirtroad.dev/staging" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "titan-testnet", + "chainId": 1517929550, + "networkId": 1517929550, + "explorers": [ + { + "name": "Blockscout", + "url": "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Harmony Devnet Shard 1", + "chain": "Harmony", + "rpc": [ + "https://api.s1.ps.hmny.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-ps-s1", + "chainId": 1666900001, + "networkId": 1666900001, + "explorers": [] + }, + { + "name": "Ancient8 Testnet", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": [ + "https://rpc-testnet.ancient8.gg" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "a8", + "chainId": 2863311531, + "networkId": 2863311531, + "explorers": [ + { + "name": "a8scan-testnet", + "url": "https://testnet.a8scan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "ZKFair Testnet", + "title": "ZKFair Testnet", + "chain": "ZKFair", + "rpc": [ + "https://testnet-rpc.zkfair.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://zkfair.io/", + "shortName": "zkfairtest", + "chainId": 43851, + "networkId": 43851, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-scan.zkfair.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Blast Sepolia", + "chain": "Blast Sepolia", + "icon": "Blast Sepolia", + "rpc": [ + "https://sepolia.blast.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "blastscan.io/", + "shortName": "Blast Sepolia", + "chainId": 168587773, + "networkId": 168587773, + "explorers": [ + { + "name": "Blast testnet", + "url": "https://testnet.blastscan.io/", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/dapp/tokenpocket-1706000813543.png", + "ic_chain_unselect": "https://hk.tpstatic.net/dapp/tokenpocket-1706000827437.png", + "color_chain_bg": "0xFDFE03", + "color_chain_text": "0x000000", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/dapp/tokenpocket-1706000856201.png", + "ic_home_logo": "https://hk.tpstatic.net/dapp/tokenpocket-1706000876568.png" + } + }, + { + "name": "ProtoJumbo Testnet", + "chain": "Jumbo", + "rpc": [ + "https://testnode.jumbochain.org" + ], + "faucets": [ + "https://protojumbo.jumbochain.org/faucet-smart" + ], + "nativeCurrency": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://jumbochain.org", + "shortName": "ProtoJumbo", + "chainId": 129, + "networkId": 129, + "slip44": 1, + "explorers": [ + { + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Engram Testnet", + "chain": "tGRAM", + "icon": "engram", + "rpc": [ + "https://tokioswift.engram.tech", + "https://tokio-archive.engram.tech" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Engram Tokio Testnet", + "symbol": "tGRAM", + "decimals": 18 + }, + "infoURL": "https://engramnet.io", + "shortName": "tgram", + "chainId": 131, + "networkId": 131, + "explorers": [ + { + "name": "blockscout", + "url": "https://tokioscan-v2.engram.tech", + "icon": "engram", + "standard": "EIP3091" + } + ] + }, + { + "name": "Scalind Testnet", + "chain": "ETH", + "icon": "scalind", + "rpc": [ + "https://rpc-sepolia.scalind.com" + ], + "faucets": [ + "https://faucet.scalind.com" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scalind.com", + "shortName": "sepscal", + "chainId": 220, + "networkId": 220, + "explorers": [ + { + "name": "scalind", + "url": "https://explorer-sepolia.scalind.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "MetaChain Mainnet", + "chain": "MTC", + "icon": "metachain", + "rpc": [ + "https://rpc.metatime.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://metatime.com/en", + "shortName": "metatime", + "chainId": 571, + "networkId": 571, + "slip44": 571, + "explorers": [ + { + "name": "MetaExplorer", + "url": "https://explorer.metatime.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kalichain", + "chain": "Kalichain", + "rpc": [ + "https://mainnet.kalichain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 + }, + "infoURL": "https://kalichain.com", + "shortName": "kalichainMainnet", + "chainId": 654, + "networkId": 654, + "icon": "kalichain", + "explorers": [ + { + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Haven1 Testnet", + "chain": "haven1", + "rpc": [ + "https://testnet-rpc.haven1.org" + ], + "faucets": [ + "https://www.haven1.org/faucet" + ], + "nativeCurrency": { + "name": "Haven1", + "symbol": "H1", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.haven1.org", + "shortName": "h1", + "chainId": 810, + "networkId": 810, + "icon": "haven1", + "explorers": [ + { + "name": "Haven1 Explorer", + "url": "https://testnet-explorer.haven1.org", + "icon": "haven1", + "standard": "EIP3091" + } + ] + }, + { + "name": "Firechain zkEVM", + "title": "Firechain zkEVM", + "chain": "Firechain", + "rpc": [ + "https://rpc.zkevm.thefirechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.thefirechain.com/", + "shortName": "firechan-zkEVM", + "chainId": 814, + "networkId": 814, + "icon": "firechain", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://zkevm.bridge.rpc.thefirechain.com" + } + ] + } + }, + { + "name": "Lyra Chain", + "chain": "Lyra", + "rpc": [ + "https://rpc.lyra.finance" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://lyra.finance", + "shortName": "lyra", + "chainId": 957, + "networkId": 957, + "icon": "lyra", + "explorers": [ + { + "name": "Lyra Explorer", + "url": "https://explorer.lyra.finance", + "icon": "lyra", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dogether Mainnet", + "chain": "Dogether", + "rpc": [ + "https://rpc.dogether.dog/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dogether", + "symbol": "dogeth", + "decimals": 18 + }, + "infoURL": "https://www.dogether.dog/", + "shortName": "Dogether", + "chainId": 1248, + "networkId": 1248, + "explorers": [ + { + "name": "DogetherExplorer", + "url": "https://explorer.dogether.dog", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ruby Smart Chain MAINNET", + "chain": "RUBY", + "rpc": [ + "https://mainnet-data.rubychain.io/", + "https://mainnet.rubychain.io/" + ], + "nativeCurrency": { + "name": "RUBY Smart Chain Native Token", + "symbol": "RUBY", + "decimals": 18 + }, + "infoURL": "https://rubychain.io", + "faucets": [], + "shortName": "RUBY", + "chainId": 1821, + "networkId": 1821, + "slip44": 1, + "icon": "ruby", + "explorers": [ + { + "name": "RUBY Smart Chain MAINNET Explorer", + "icon": "ruby", + "url": "https://rubyscan.net", + "standard": "none" + } + ] + }, + { + "name": "Scalind", + "chain": "ETH", + "icon": "scalind", + "rpc": [ + "https://rpc.scalind.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scalind.com", + "shortName": "scal", + "chainId": 1911, + "networkId": 1911, + "explorers": [ + { + "name": "scalind", + "url": "https://explorer.scalind.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ruby Smart Chain Testnet", + "chain": "RUBY", + "rpc": [ + "https://testnet-rchain.rubychain.io/" + ], + "nativeCurrency": { + "name": "RUBY Smart Chain Native Token", + "symbol": "tRUBY", + "decimals": 18 + }, + "infoURL": "https://rubychain.io", + "faucets": [ + "https://claim-faucet.rubychain.io/" + ], + "shortName": "tRUBY", + "chainId": 1912, + "networkId": 1912, + "slip44": 1, + "icon": "ruby", + "explorers": [ + { + "name": "RUBY Smart Chain Testnet Explorer", + "icon": "ruby", + "url": "https://testnet.rubyscan.net", + "standard": "none" + } + ] + }, + { + "name": "RedeCoin", + "chain": "REDEV2", + "rpc": [ + "https://rpc2.redecoin.eu" + ], + "faucets": [], + "nativeCurrency": { + "name": "RedeCoin", + "symbol": "REDEV2", + "decimals": 18 + }, + "infoURL": "https://www.redecoin.eu", + "shortName": "rede", + "chainId": 1972, + "networkId": 1972, + "explorers": [ + { + "name": "RedeCoin Explorer", + "url": "https://explorer3.redecoin.eu", + "standard": "none" + } + ] + }, + { + "name": "Kyoto Testnet", + "chain": "KYOTO", + "rpc": [ + "https://rpc.testnet.kyotoprotocol.io:8545" + ], + "faucets": [ + "https://faucet.kyotoprotocol.io" + ], + "nativeCurrency": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://kyotoprotocol.io", + "shortName": "kyoto-testnet", + "chainId": 1998, + "networkId": 1998, + "slip44": 1, + "explorers": [ + { + "name": "Kyotoscan", + "url": "https://testnet.kyotoscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Phala Network", + "chain": "PHA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Phala", + "symbol": "PHA", + "decimals": 18 + }, + "infoURL": "https://phala.network", + "shortName": "pha", + "chainId": 2035, + "networkId": 2035 + }, + { + "name": "Hybrid Chain Network Testnet", + "chain": "HYBRID", + "rpc": [ + "https://rpc-testnet.hybridchain.ai/" + ], + "faucets": [ + "https://faucet-testnet.hybridchain.ai" + ], + "nativeCurrency": { + "name": "Hybrid Chain Native Token", + "symbol": "tHRC", + "decimals": 18 + }, + "infoURL": "https://hybridchain.ai", + "shortName": "thrc", + "chainId": 2458, + "networkId": 2458, + "slip44": 1, + "icon": "hybrid", + "explorers": [ + { + "name": "Hybrid Chain Explorer Testnet", + "icon": "hybrid", + "url": "https://testnet.hybridscan.ai", + "standard": "none" + } + ] + }, + { + "name": "Hybrid Chain Network Mainnet", + "chain": "HYBRID", + "rpc": [ + "https://coredata-mainnet.hybridchain.ai/", + "https://rpc-mainnet.hybridchain.ai" + ], + "faucets": [ + "https://faucet-testnet.hybridchain.ai" + ], + "nativeCurrency": { + "name": "Hybrid Chain Native Token", + "symbol": "HRC", + "decimals": 18 + }, + "infoURL": "https://hybridchain.ai", + "shortName": "hrc", + "chainId": 2468, + "networkId": 2468, + "icon": "hybrid", + "explorers": [ + { + "name": "Hybrid Chain Explorer Mainnet", + "icon": "hybrid", + "url": "https://hybridscan.ai", + "standard": "none" + } + ] + }, + { + "name": "Tangle Testnet", + "chain": "Tangle Testnet", + "icon": "tangle", + "rpc": [ + "https://testnet-rpc.tangle.tools", + "https://testnet-rpc-archive.tangle.tools", + "wss://testnet-rpc.tangle.tools", + "wss://testnet-rpc-archive.tangle.tools" + ], + "faucets": [ + "https://faucet.tangle.tools" + ], + "nativeCurrency": { + "name": "Testnet Tangle Network Token", + "symbol": "tTNT", + "decimals": 18 + }, + "infoURL": "https://docs.tangle.tools", + "shortName": "tTangle", + "chainId": 3799, + "networkId": 3799, + "explorers": [ + { + "name": "ttntscan", + "url": "https://testnet-explorer.tangle.tools", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Firechain zkEVM Ghostrider", + "title": "Firechain zkEVM Ghostrider", + "chain": "Firechain", + "rpc": [ + "https://rpc.zkevm.ghostrider.thefirechain.com" + ], + "faucets": [ + "zkevm-faucet.thefirechain.com" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.thefirechain.com/", + "shortName": "firechain-zkEVM-ghostrider", + "chainId": 3885, + "networkId": 3885, + "explorers": [] + }, + { + "name": "Muster Mainnet", + "chainId": 4078, + "shortName": "muster", + "chain": "Muster", + "icon": "muster", + "networkId": 4078, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://muster.alt.technology" + ], + "faucets": [], + "explorers": [ + { + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", + "standard": "EIP3091" + } + ], + "infoURL": "", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [] + } + }, + { + "name": "Nexi V2 Mainnet", + "chain": "Nexi V2", + "icon": "nexi", + "rpc": [ + "https://chain.nexiv2.nexilix.com", + "https://rpc.chainv1.nexi.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "NexiV2", + "symbol": "NEXI", + "decimals": 18 + }, + "infoURL": "https://www.nexi.technology/", + "shortName": "NexiV2", + "chainId": 4243, + "networkId": 4243, + "slip44": 2500, + "explorers": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Smart Layer Network", + "chain": "SLN", + "rpc": [ + "https://rpc.main.smartlayer.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 + }, + "infoURL": "https://www.smartlayer.network/", + "shortName": "SLN", + "chainId": 5169, + "networkId": 5169, + "explorers": [ + { + "name": "SLN Mainnet Explorer", + "url": "https://explorer.main.smartlayer.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Latest Chain Testnet", + "chain": "LATEST", + "icon": "latestChain", + "rpc": [ + "https://testnet-rpc.latestcoin.io" + ], + "faucets": [ + "http://faucet.latestchain.io" + ], + "nativeCurrency": { + "name": "Latest", + "symbol": "LATEST", + "decimals": 18 + }, + "infoURL": "https://latestcoin.io", + "shortName": "LATESTt", + "chainId": 6660, + "networkId": 6660, + "explorers": [ + { + "name": "Latest Chain", + "url": "http://testnet.latestchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Cybria Mainnet", + "chain": "CYBA", + "rpc": [ + "https://rpc-mainnet.cybria.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://cybria.io", + "shortName": "cyba", + "chainId": 6661, + "networkId": 6661, + "icon": "cybria", + "explorers": [ + { + "name": "Cybria Explorer", + "url": "https://cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155420", + "bridges": [ + { + "url": "https://app.optimism.io/bridge" + } + ] + } + }, + { + "name": "Cybria Testnet", + "chain": "CYBA", + "rpc": [ + "https://l2-rpc.cybascan.io" + ], + "faucets": [ + "https://faucet.cybascan.io" + ], + "nativeCurrency": { + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://cybria.io", + "shortName": "tcyba", + "chainId": 6666, + "networkId": 6666, + "icon": "cybria", + "explorers": [ + { + "name": "Cybria Explorer", + "url": "https://explorer.cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155420", + "bridges": [ + { + "url": "https://app.optimism.io/bridge" + } + ] + } + }, + { + "name": "PAXB Mainnet", + "chain": "PAXB", + "rpc": [ + "https://chain.paxb.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "PAXB", + "symbol": "PAXB", + "decimals": 18 + }, + "infoURL": "https://paxb.io/", + "shortName": "PAXB", + "chainId": 6701, + "networkId": 6701, + "icon": "paxb", + "explorers": [ + { + "name": "PAXB Explorer", + "url": "https://scan.paxb.io", + "icon": "paxb", + "standard": "EIP3091" + } + ] + }, + { + "name": "Compverse Mainnet", + "chain": "CPV", + "icon": "compverse", + "rpc": [ + "https://rpc.compverse.io/", + "https://rpc-useast1.compverse.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "compverse", + "symbol": "CPV", + "decimals": 18 + }, + "infoURL": "https://compverse.io", + "shortName": "compverse", + "chainId": 6779, + "networkId": 6779, + "slip44": 7779, + "explorers": [ + { + "name": "cpvscan", + "url": "https://scan.compverse.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nume", + "title": "Nume", + "chain": "Nume", + "rpc": [ + "https://rpc.numecrypto.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dai Stablecoin", + "symbol": "DAI", + "decimals": 18 + }, + "infoURL": "https://numecrypto.com", + "shortName": "nume", + "chainId": 7100, + "networkId": 7100, + "icon": "nume", + "explorers": [ + { + "name": "numeexplorer", + "url": "https://explorer.numecrypto.com", + "icon": "nume", + "standard": "none" + } + ] + }, + { + "name": "Help The Homeless", + "chain": "mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Help The Homeless Coin", + "symbol": "HTH", + "decimals": 18 + }, + "infoURL": "https://hth.world", + "shortName": "hth", + "chainId": 7118, + "networkId": 7118, + "icon": "hth", + "status": "incubating", + "explorers": [] + }, + { + "name": "E-Dollar", + "chain": "USD", + "rpc": [ + "https://rpc.e-dollar.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "E-Dollar", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://e-dollar.org", + "shortName": "E-Dollar", + "chainId": 8087, + "networkId": 8087, + "explorers": [] + }, + { + "name": "Storagechain Mainnet", + "chain": "Storagechain", + "rpc": [ + "https://mainnet-validator.storagechain.io" + ], + "icon": "storagechain", + "faucets": [], + "shortName": "stor", + "nativeCurrency": { + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 + }, + "infoURL": "https://storagechain.io/about-us", + "chainId": 8726, + "networkId": 8726, + "explorers": [ + { + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", + "standard": "none" + } + ] + }, + { + "name": "Storagechain Testnet", + "chain": "Storagechain", + "rpc": [ + "https://testnet-validator.storagechain.io" + ], + "icon": "storagechain", + "faucets": [], + "nativeCurrency": { + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 + }, + "shortName": "tstor", + "infoURL": "https://storagechain.io/about-us", + "chainId": 8727, + "networkId": 8727, + "explorers": [ + { + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + "standard": "none" + } + ] + }, + { + "name": "Evoke Mainnet", + "chain": "MTHN", + "icon": "mthn", + "rpc": [ + "https://mainnet-rpc.evokescan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "MTHN", + "symbol": "MTHN", + "decimals": 18 + }, + "infoURL": "https://explorer.evokescan.org", + "shortName": "MTHN", + "chainId": 9395, + "networkId": 9395, + "explorers": [ + { + "name": "Evoke SmartChain Explorer", + "url": "https://explorer.evokescan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dogelayer Mainnet", + "chain": "Dogelayer", + "rpc": [ + "https://dl-rpc.dogelayer.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogelayer.org", + "shortName": "Dogelayer", + "chainId": 9888, + "networkId": 9888, + "explorers": [ + { + "name": "Dogelayer mainnet explorer", + "url": "https://dl-explorer.dogelayer.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Combo Mainnet", + "chain": "Combo", + "icon": "combo", + "rpc": [ + "https://rpc.combonetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://combonetwork.io", + "shortName": "combo-mainnet", + "chainId": 9980, + "networkId": 9980, + "explorers": [ + { + "name": "combotrace explorer", + "url": "https://combotrace.nodereal.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arthera Mainnet", + "chain": "AA", + "icon": "arthera", + "rpc": [ + "https://rpc.arthera.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "infoURL": "https://docs.arthera.net/build/developing-sc/using-hardhat", + "shortName": "aa", + "chainId": 10242, + "networkId": 10242, + "slip44": 10242, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Immutable zkEVM", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.immutable.com" + ], + "faucets": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "nativeCurrency": { + "name": "IMX", + "symbol": "IMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx", + "chainId": 13371, + "networkId": 13371, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ] + }, + { + "name": "BSL Mainnet", + "chain": "BSL", + "rpc": [ + "http://rpc-mainnet.nftruth.io:8545", + "ws://rpc-mainnet.nftruth.io:8645" + ], + "faucets": [], + "nativeCurrency": { + "name": "Origin NFT", + "symbol": "ONF", + "decimals": 18 + }, + "infoURL": "https://bsquarelab.com/", + "shortName": "onf", + "chainId": 21912, + "networkId": 21912, + "explorers": [ + { + "name": "BSL Mainnet Explorer", + "url": "https://scan.nftruth.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "GoldXChain Testnet", + "chain": "GoldXTestnet", + "rpc": [ + "https://testnet-rpc.goldxchain.io" + ], + "faucets": [ + "https://faucet.goldxchain.io" + ], + "nativeCurrency": { + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 + }, + "infoURL": "https://goldxchain.io", + "shortName": "goldx-testnet", + "chainId": 22324, + "networkId": 22324, + "explorers": [ + { + "name": "GoldXChain Testnet Explorer", + "url": "https://testnet-explorer.goldxchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Blast Testnet", + "chain": "ETH", + "icon": "blastIcon", + "rpc": [ + "http://testnet-rpc.blastblockchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.blastblockchain.com", + "shortName": "blastT", + "chainId": 23888, + "networkId": 23888, + "explorers": [ + { + "name": "Blast Testnet", + "url": "http://testnet-explorer.blastblockchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Evoke Testnet", + "chain": "Evoke", + "icon": "mthn", + "rpc": [ + "https://testnet-rpc.evokescan.org" + ], + "faucets": [ + "https://faucet.evokescan.org" + ], + "nativeCurrency": { + "name": "MTHN Testnet", + "symbol": "MTHN", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.evokescan.org", + "shortName": "tmthn", + "chainId": 31414, + "networkId": 31414, + "explorers": [ + { + "name": "Evoke SmartChain Testnet Explorer", + "url": "https://testnet-explorer.evokescan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "W3Gamez Holesky Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc-holesky.w3gamez.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "W3Gamez Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://web3games.com/", + "shortName": "w3gamez", + "chainId": 32001, + "networkId": 32001, + "slip44": 1, + "icon": "w3gamez", + "explorers": [ + { + "name": "W3Gamez Holesky Explorer", + "url": "https://w3gamez-holesky.web3games.com", + "icon": "web3games", + "standard": "EIP3091" + } + ] + }, + { + "name": "GoldXChain Mainnet", + "chain": "GoldX", + "rpc": [ + "https://mainnet-rpc.goldxchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 + }, + "infoURL": "https://goldxchain.io", + "shortName": "goldx", + "chainId": 42355, + "networkId": 42355, + "explorers": [ + { + "name": "GoldXChain Explorer", + "url": "https://explorer.goldxchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "ZKFair Mainnet", + "title": "ZKFair Mainnet", + "chain": "ZKFair", + "rpc": [ + "https://rpc.zkfair.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://zkfair.io", + "shortName": "ZKFair-Mainnet", + "chainId": 42766, + "networkId": 42766, + "icon": "zkfair", + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://wallet.zkfair.io" + } + ] + } + }, + { + "name": "Deelance Mainnet", + "title": "Deelance Network Mainnet", + "chain": "DEE", + "rpc": [ + "https://rpc.deelance.com" + ], + "faucets": [ + "https://faucet.deelance.com" + ], + "nativeCurrency": { + "name": "Deelance", + "symbol": "DEE", + "decimals": 18 + }, + "infoURL": "https://deelance.com", + "shortName": "dee", + "chainId": 45510, + "networkId": 45510, + "icon": "deelance", + "explorers": [ + { + "name": "Deelance Mainnet Explorer", + "url": "https://deescan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Yooldo Verse Mainnet", + "chain": "Yooldo Verse", + "icon": "yooldo_verse", + "rpc": [ + "https://rpc.yooldo-verse.xyz/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://yooldo.gg/", + "shortName": "YVM", + "chainId": 50005, + "networkId": 50005, + "explorers": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Yooldo Verse Testnet", + "chain": "Yooldo Verse", + "icon": "yooldo_verse", + "rpc": [ + "https://rpc.testnet.yooldo-verse.xyz/" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://yooldo.gg/", + "shortName": "YVT", + "chainId": 50006, + "networkId": 50006, + "slip44": 1, + "explorers": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.testnet.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Grok Chain Mainnet", + "chain": "Grok", + "icon": "grokicon", + "rpc": [ + "https://mainnet-rpc.grokchain.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Groc", + "symbol": "GROC", + "decimals": 18 + }, + "infoURL": "https://grokchain.dev", + "shortName": "GrokChain", + "chainId": 72992, + "networkId": 72992, + "explorers": [ + { + "name": "GrokScan", + "url": "https://mainnet-explorer.grokchain.dev", + "standard": "none" + } + ] + }, + { + "name": "Smart Layer Network Testnet", + "chain": "SLN", + "rpc": [ + "https://rpc.test.smartlayer.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 + }, + "infoURL": "https://www.smartlayer.network/", + "shortName": "tSLN", + "chainId": 82459, + "networkId": 82459, + "explorers": [ + { + "name": "SLN Testnet Explorer", + "url": "https://explorer.test.smartlayer.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Combo Testnet", + "chain": "Combo", + "icon": "combo", + "rpc": [ + "https://test-rpc.combonetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "tcBNB", + "decimals": 18 + }, + "infoURL": "https://combonetwork.io", + "shortName": "combo-testnet", + "chainId": 91715, + "networkId": 91715, + "explorers": [ + { + "name": "combotrace explorer", + "url": "https://combotrace-testnet.nodereal.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Etherlink Testnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 128123, + "networkId": 128123, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://etherlink.com", + "shortName": "etlt", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": [ + "https://node.ghostnet.etherlink.com" + ], + "faucets": [ + "https://faucet.etherlink.com" + ], + "explorers": [ + { + "name": "Etherlink Testnet Explorer", + "url": "https://testnet-explorer.etherlink.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taiko Katla L2", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": [ + "https://rpc.katla.taiko.xyz", + "https://taiko-katla.blockpi.network/v1/rpc/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-katla", + "chainId": 167008, + "networkId": 167008, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.katla.taiko.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "CONET Sebolia Testnet", + "chain": "CONET", + "rpc": [ + "https://rpc1.conet.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "CONET Sebolia", + "symbol": "CONET", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://conet.network", + "shortName": "conet-sebolia", + "chainId": 224422, + "networkId": 224422, + "slip44": 1, + "icon": "conet", + "explorers": [ + { + "name": "CONET Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "CONET Holesky", + "chain": "CONET Holesky", + "rpc": [ + "https://holeskyrpc1.conet.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "CONET Holesky", + "symbol": "CONET", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://conet.network", + "shortName": "conet-holesky", + "chainId": 224433, + "networkId": 224433, + "slip44": 2147708081, + "icon": "conet", + "explorers": [ + { + "name": "CONET Holesky Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ultra Pro Mainnet", + "chain": "ultrapro", + "icon": "ultrapro", + "rpc": [ + "https://mainnet-rpc.ultraproscan.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultra Pro", + "symbol": "UPRO", + "decimals": 18 + }, + "infoURL": "https://ultrapro.info", + "shortName": "ultrapro", + "chainId": 473861, + "networkId": 473861, + "explorers": [ + { + "name": "ultraproscan", + "url": "https://ultraproscan.io", + "icon": "ultrapro", + "standard": "EIP3091" + } + ] + }, + { + "name": "BlocX Mainnet", + "chain": "BLX", + "rpc": [ + "https://mainnet-rpc.blxscan.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BlocX", + "symbol": "BLX", + "decimals": 18 + }, + "infoURL": "https://www.blocxchain.org/", + "shortName": "blx", + "chainId": 879151, + "networkId": 879151, + "icon": "blx", + "explorers": [ + { + "name": "BlocX Mainnet Explorer", + "url": "https://explorer.blxscan.com", + "icon": "blx", + "standard": "none" + } + ] + }, + { + "name": "Astria EVM Dusknet", + "chain": "RIA", + "icon": "astria", + "chainId": 912559, + "networkId": 912559, + "infoURL": "https://docs.astria.org", + "shortName": "ria-dev", + "nativeCurrency": { + "name": "RIA", + "symbol": "RIA", + "decimals": 18 + }, + "rpc": [ + "https://rpc.evm.dusk-2.devnet.astria.org" + ], + "faucets": [ + "https://faucet.evm.dusk-2.devnet.astria.org/" + ], + "explorers": [ + { + "name": "Astria EVM Dusknet Explorer", + "url": "https://explorer.evm.dusk-2.devnet.astria.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Turkey Demo Dev", + "chain": "ETH", + "rpc": [ + "https://devchain-poa.huabeizhenxuan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "TDD", + "chainId": 1731313, + "networkId": 1731313 + }, + { + "name": "Hokum", + "chain": "Hokum", + "icon": "hokum", + "rpc": [ + "https://mainnet.hokum.gg" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hokum.gg", + "shortName": "hokum", + "chainId": 8080808, + "networkId": 8080808, + "explorers": [ + { + "name": "Hokum Explorer", + "url": "https://explorer.hokum.gg", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hokum Testnet", + "chain": "HokumTestnet", + "icon": "hokum", + "rpc": [ + "https://testnet.hokum.gg" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hokum.gg", + "shortName": "hokum-testnet", + "chainId": 20482050, + "networkId": 20482050, + "explorers": [ + { + "name": "Hokum Explorer", + "url": "https://testnet-explorer.hokum.gg", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ancient8 Testnet", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": [ + "https://rpcv2-testnet.ancient8.gg" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "a8", + "chainId": 28122024, + "networkId": 28122024, + "slip44": 1, + "explorers": [ + { + "name": "scan-testnet", + "url": "https://scanv2-testnet.ancient8.gg", + "standard": "EIP3091" + } + ] + }, + { + "name": "Autonity Piccadilly (Barada) Testnet", + "chain": "AUT", + "rpc": [ + "https://rpc1.piccadilly.autonity.org/", + "wss://rpc1.piccadilly.autonity.org/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-01", + "chainId": 65100001, + "networkId": 65100001, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Puppynet Shibarium", + "chain": "Puppynet Shibarium", + "icon": "shibarium", + "rpc": [ + "https://puppynet.shibrpc.com" + ], + "faucets": [ + "https://beta.shibariumtech.com/faucet" + ], + "nativeCurrency": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://shibariumecosystem.com", + "shortName": "puppynet", + "chainId": 157, + "networkId": 157, + "explorers": [ + { + "name": "puppyscan", + "url": "https://puppyscan.shib.io", + "standard": "none" + } + ] + }, + { + "name": "Viridis Testnet", + "chain": "VRD", + "icon": "viridis", + "rpc": [ + "https://testnet-rpc.vrd.network" + ], + "faucets": [ + "https://faucet.vrd.network" + ], + "nativeCurrency": { + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 + }, + "infoURL": "https://viridis.network", + "shortName": "VRD-Testnet", + "chainId": 224, + "networkId": 224, + "explorers": [ + { + "name": "Viridis Testnet", + "url": "https://testnet.vrd.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "ProtoJumbo Testnet", + "chain": "Jumbo", + "rpc": [ + "https://testnode.jumbochain.org" + ], + "faucets": [ + "https://protojumbo.jumbochain.org/faucet-smart" + ], + "nativeCurrency": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://jumbochain.org", + "shortName": "ProtoJumbo", + "chainId": 234, + "networkId": 234, + "slip44": 1, + "explorers": [ + { + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "BPX Blockchain", + "chain": "BPX", + "icon": "bpx", + "rpc": [ + "https://rpc.mainnet.bpxchain.cc", + "https://bpx-dataseed.infinex.cc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BPX", + "symbol": "BPX", + "decimals": 18 + }, + "infoURL": "https://bpxchain.cc", + "shortName": "bpx", + "chainId": 279, + "networkId": 279 + }, + { + "name": "ZKSats Mainnet", + "title": "ZKSats Mainnet", + "chain": "ZKSats", + "rpc": [ + "https://mainnet.zksats.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://zksats.io", + "shortName": "ZKSats-Mainnet", + "chainId": 305, + "networkId": 305, + "icon": "zksats", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.zksats.io", + "icon": "zksats", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lovely Network Testnet", + "chain": "Lovely", + "icon": "lovely", + "rpc": [ + "https://trpc.lovely.network" + ], + "faucets": [ + "https://faucet.lovely.network" + ], + "nativeCurrency": { + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 + }, + "infoURL": "https://lovely.network", + "shortName": "LOVELY-Testnet", + "chainId": 307, + "networkId": 307, + "explorers": [ + { + "name": "Lovely Network Testnet", + "url": "https://tscan.lovely.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Cosvm Mainnet", + "chain": "CVM", + "rpc": [ + "https://rpc.cosvm.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cosvm", + "symbol": "CVM", + "decimals": 18 + }, + "infoURL": "https://cosvm.network", + "shortName": "cvm", + "chainId": 323, + "networkId": 323, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.cosvm.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "ZKAmoeba Testnet", + "chain": "FIL", + "rpc": [ + "https://rpc.testnet.zkamoeba.com:4050/", + "https://rpc1.testnet.zkamoeba.com:4050/" + ], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://testnet.zkamoeba.com", + "shortName": "zkamoeba-test", + "chainId": 380, + "networkId": 380, + "icon": "zkamoeba-micro", + "explorers": [ + { + "name": "ZKAmoeba Test Explorer", + "url": "https://testnetexplorer.zkamoeba.com", + "icon": "zkamoeba-micro", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-314", + "bridges": [ + { + "url": "https://testnet.zkamoeba.com/en/bridge" + } + ] + } + }, + { + "name": "ZKAmoeba Mainnet", + "chain": "FIL", + "rpc": [ + "https://rpc.mainnet.zkamoeba.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://www.zkamoeba.com", + "shortName": "zkamoeba", + "chainId": 381, + "networkId": 381, + "icon": "zkamoeba-micro", + "explorers": [ + { + "name": "ZKAmoeba Explorer", + "url": "https://explorer.zkamoeba.com", + "icon": "zkamoeba-micro", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-314", + "bridges": [ + { + "url": "https://www.zkamoeba.com/en/bridge" + } + ] + } + }, + { + "name": "Viridis Mainnet", + "chain": "VRD", + "icon": "viridis", + "rpc": [ + "https://mainnet-rpc.vrd.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 + }, + "infoURL": "https://viridis.network", + "shortName": "vrd", + "chainId": 422, + "networkId": 422, + "explorers": [ + { + "name": "Viridis Mainnet", + "url": "https://explorer.vrd.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Syndicate Chain", + "title": "Syndicate Chain", + "chain": "Syndicate", + "rpc": [ + "https://rpc-mainnet.syndicate.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndicate.io", + "shortName": "syndicate-chain-mainnet", + "chainId": 510, + "networkId": 510, + "status": "incubating", + "icon": "syndicate" + }, + { + "name": "EIOB Mainnet", + "chain": "EIOB", + "icon": "eiob", + "rpc": [ + "https://rpc.eiob.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "EIOB", + "symbol": "EIOB", + "decimals": 18 + }, + "infoURL": "", + "shortName": "eiob", + "chainId": 612, + "networkId": 612, + "explorers": [ + { + "name": "EIOB Explorer", + "url": "https://explorer.eiob.xyz", + "standard": "none" + } + ] + }, + { + "name": "Vrcscan Mainnet", + "chain": "VRC", + "rpc": [ + "https://rpc-mainnet-5.vrcscan.com", + "https://rpc-mainnet-6.vrcscan.com", + "https://rpc-mainnet-7.vrcscan.com", + "https://rpc-mainnet-8.vrcscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "VRC Chain", + "symbol": "VRC", + "decimals": 18 + }, + "infoURL": "https://vrccoin.com", + "shortName": "vrc", + "chainId": 713, + "networkId": 713, + "explorers": [ + { + "name": "vrcscan", + "url": "https://vrcscan.com", + "standard": "EIP3091" + }, + { + "name": "dxbscan", + "url": "https://dxb.vrcscan.com", + "standard": "EIP3091" + } + ], + "icon": "vrcscan" + }, + { + "name": "Lovely Network Mainnet", + "chain": "Lovely", + "icon": "lovely", + "rpc": [ + "https://rpc.lovely.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 + }, + "infoURL": "https://lovely.network", + "shortName": "LOVELY", + "chainId": 730, + "networkId": 730, + "explorers": [ + { + "name": "Lovely Network Mainnet", + "url": "https://scan.lovely.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rupaya Testnet", + "chain": "Rupaya Testnet", + "rpc": [ + "https://rpc.testnet.rupaya.io" + ], + "faucets": [ + "https://faucet.testnet.rupaya.io" + ], + "nativeCurrency": { + "name": "Test Rupaya", + "symbol": "TRUPX", + "decimals": 18 + }, + "infoURL": "https://www.rupaya.io", + "shortName": "RupayaTestnet", + "chainId": 799, + "networkId": 799, + "slip44": 1, + "explorers": [ + { + "name": "rupayascan", + "url": "https://scan.testnet.rupaya.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "CheckDot Blockchain Devnet", + "chain": "CDT Blockchain", + "rpc": [ + "https://devnet.checkdot.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "CDT", + "symbol": "CDT", + "decimals": 18 + }, + "infoURL": "https://checkdot.io", + "shortName": "cdt", + "chainId": 831, + "networkId": 831, + "explorers": [ + { + "name": "CDT Explorer", + "url": "https://explorer.checkdot.io", + "standard": "none" + } + ] + }, + { + "name": "Dymension", + "chain": "Dymension", + "rpc": [ + "https://dymension-evm.blockpi.network/v1/rpc/public", + "https://dymension-evm-rpc.publicnode.com", + "wss://dymension-evm-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DYM", + "symbol": "DYM", + "decimals": 18 + }, + "infoURL": "https://dymension.xyz", + "shortName": "dymension", + "icon": "dymension", + "chainId": 1100, + "networkId": 1100, + "explorers": [ + { + "name": "dym.fyi", + "url": "https://dym.fyi", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hybrid Testnet", + "chain": "$HYB", + "icon": "hybridIcon", + "rpc": [ + "https://testnet-rpc.buildonhybrid.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hybrid", + "symbol": "$HYB", + "decimals": 18 + }, + "infoURL": "https://buildonhybrid.com", + "shortName": "hyb", + "chainId": 1224, + "networkId": 1224, + "explorers": [ + { + "name": "Hybrid Testnet", + "url": "https://alphatestnet.buildonhybrid.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "MetaChain Istanbul", + "title": "MetaChain Testnet Istanbul", + "chain": "MTC", + "icon": "metachain", + "rpc": [ + "https://istanbul-rpc.metachain.dev" + ], + "faucets": [ + "https://istanbul-faucet.metachain.dev" + ], + "nativeCurrency": { + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 + }, + "infoURL": "https://metatime.com/en", + "shortName": "metatimeistanbul", + "chainId": 1453, + "networkId": 1453, + "slip44": 1453, + "explorers": [ + { + "name": "MetaExplorer", + "url": "https://istanbul-explorer.metachain.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vitruveo Mainnet", + "title": "Vitruveo is a blockchain for Creators", + "chain": "Vitruveo", + "rpc": [ + "https://rpc.vitruveo.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Vitruveo Coin", + "symbol": "VTRU", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://www.vitruveo.xyz", + "shortName": "vitruveo", + "chainId": 1490, + "networkId": 1490, + "icon": "vitruveo", + "explorers": [ + { + "name": "Vitruveo Explorer", + "url": "https://explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } + ] + }, + { + "name": "Selendra Network Testnet", + "chain": "tSEL", + "rpc": [ + "https://rpc0-testnet.selendra.org", + "https://rpc1-testnet.selendra.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Selendra", + "symbol": "tSEL", + "decimals": 18 + }, + "infoURL": "https://selendra.org", + "shortName": "tSEL", + "chainId": 1953, + "networkId": 1953, + "icon": "selendra" + }, + { + "name": "Selendra Network Mainnet", + "chain": "SEL", + "rpc": [ + "https://rpc0.selendra.org", + "https://rpc1.selendra.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Selendra", + "symbol": "SEL", + "decimals": 18 + }, + "infoURL": "https://selendra.org", + "shortName": "SEL", + "chainId": 1961, + "networkId": 1961, + "icon": "selendra", + "explorers": [ + { + "name": "Selendra Scan", + "url": "https://scan.selendra.org", + "standard": "none" + } + ] + }, + { + "name": "Swan Saturn Testnet", + "chain": "SWAN", + "rpc": [ + "https://saturn-rpc.swanchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "SWANETH", + "symbol": "SWAN", + "decimals": 18 + }, + "infoURL": "https://swanchain.io/", + "shortName": "swan", + "chainId": 2024, + "networkId": 2024 + }, + { + "name": "Karak Mainnet", + "chain": "Karak", + "icon": "karak", + "rpc": [ + "https://rpc.karak.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "karak-mainnet", + "chainId": 2410, + "networkId": 2410, + "explorers": [ + { + "name": "Karak Mainnet Explorer", + "url": "https://explorer.karak.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + } + }, + { + "name": "Polygon zkEVM Cardona Testnet", + "title": "Polygon zkEVM Cardona Testnet", + "chain": "Polygon", + "rpc": [ + "https://rpc.cardona.zkevm-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/polygon-zkevm", + "shortName": "zkevm-testnet-cardona", + "chainId": 2442, + "networkId": 2442, + "icon": "zkevm", + "explorers": [ + { + "name": "polygonscan", + "url": "https://cardona-zkevm.polygonscan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge-ui.cardona.zkevm-rpc.com" + } + ] + } + }, + { + "name": "Karak Testnet", + "chain": "Karak", + "icon": "karak", + "rpc": [ + "https://goerli.node1.karak.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Karak", + "symbol": "KRK", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "karak-testnet", + "chainId": 2511, + "networkId": 2511, + "explorers": [ + { + "name": "Karak Testnet Explorer", + "url": "https://goerli.scan.karak.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5" + } + }, + { + "name": "Elizabeth Testnet", + "chain": "Elizabeth", + "rpc": [ + "https://testnet-rpc.timenetwork.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TIME", + "symbol": "TIME", + "decimals": 18 + }, + "infoURL": "https://whitepaper.anttime.net/overview/anttime", + "shortName": "TIME", + "chainId": 2731, + "networkId": 2731, + "icon": "timenet", + "explorers": [ + { + "name": "Time Network Explorer", + "url": "https://testnet-scanner.timenetwork.io", + "standard": "none", + "icon": "timenet" + } + ] + }, + { + "name": "Xenon Chain Testnet", + "chain": "XEN", + "rpc": [ + "https://testnet-chain.xenonchain.com/", + "https://testnet-dev.xenonchain.com/" + ], + "faucets": [ + "https://xfaucet.xenonchain.com" + ], + "nativeCurrency": { + "name": "Xenon Testnet", + "symbol": "tXEN", + "decimals": 18 + }, + "infoURL": "https://xenonchain.com", + "shortName": "xenon", + "chainId": 2941, + "networkId": 2941, + "icon": "xenon", + "slip44": 1, + "explorers": [ + { + "name": "Xenon testnet Explorer", + "url": "https://testnet.xenonchain.com", + "standard": "none" + } + ] + }, + { + "name": "APEX Testnet", + "chain": "ETH", + "rpc": [ + "https://exp-testnet.apexlayer.xyz" + ], + "faucets": [ + "https://sepoliafaucet.com/" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.apexlayer.xyz/", + "shortName": "apexsep", + "chainId": 3993, + "networkId": 3993, + "slip44": 1, + "icon": "apextestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://exp-testnet.apexlayer.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://apexlayer.xyz/bridge" + } + ] + } + }, + { + "name": "Lisk Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia-api.lisk.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lisk.com", + "shortName": "lisksep", + "chainId": 4202, + "networkId": 4202, + "slip44": 134, + "explorers": [ + { + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Emoney Network Testnet", + "chain": "Emoney", + "rpc": [ + "https://testnet.emoney.network/" + ], + "faucets": [ + "https://faucet.emoney.network/faucet" + ], + "nativeCurrency": { + "name": "Emoney Network", + "symbol": "EMYC", + "decimals": 18 + }, + "infoURL": "https://emoney.network/", + "shortName": "emoney", + "chainId": 4544, + "networkId": 4544, + "slip44": 118, + "icon": "emoney", + "explorers": [ + { + "name": "EMoney ethscan", + "url": "https://ethscan.emoney.network", + "icon": "emoney", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gold Chain", + "title": "Gold Chain", + "chain": "Gold", + "rpc": [ + "https://chain-rpc.gold.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gold.dev", + "shortName": "gold", + "chainId": 4653, + "networkId": 4653, + "status": "incubating", + "icon": "gold" + }, + { + "name": "Syndicate Testnet", + "title": "Syndicate Testnet", + "chain": "Syndicate", + "rpc": [ + "https://rpc-testnet.syndicate.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "S-Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndicate.io", + "shortName": "syndicate-chain-testnet", + "chainId": 5100, + "networkId": 5100, + "status": "incubating", + "icon": "syndicate" + }, + { + "name": "Syndicate Frame Chain", + "title": "Syndicate Frame Chain", + "chain": "Syndicate Frame", + "rpc": [ + "https://rpc-frame.syndicate.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndicate.io", + "shortName": "syndicate-chain-frame", + "chainId": 5101, + "networkId": 5101, + "status": "incubating", + "icon": "syndicate" + }, + { + "name": "BST Chain", + "chain": "BSTC", + "rpc": [ + "https://rpc.bstchain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BST Chain", + "symbol": "BSTC", + "decimals": 18 + }, + "infoURL": "https://bstchain.io", + "shortName": "BSTC", + "chainId": 7007, + "networkId": 7007, + "icon": "bstc", + "explorers": [ + { + "name": "blockscout", + "url": "https://bstscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kinto Mainnet", + "chain": "Kinto Mainnet", + "rpc": [ + "https://rpc.kinto.xyz/http", + "https://kinto-mainnet.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kinto.xyz", + "shortName": "kintoMainnet", + "chainId": 7887, + "networkId": 7887, + "icon": "kinto", + "explorers": [ + { + "name": "Kinto Explorer", + "url": "https://explorer.kinto.xyz", + "icon": "kinto", + "standard": "EIP3091" + } + ] + }, + { + "name": "Orenium Testnet Protocol", + "chain": "ORE", + "rpc": [ + "https://rpc-dev-testnet.orenium.org/", + "https://rpc-testnet.orenium.org/" + ], + "nativeCurrency": { + "name": "ORENIUM", + "symbol": "tORE", + "decimals": 18 + }, + "infoURL": "https://orenium.org", + "shortName": "tore", + "chainId": 8890, + "networkId": 8890, + "slip44": 1, + "icon": "ore", + "faucets": [ + "https://faucetcoin.orenium.org" + ], + "explorers": [ + { + "name": "ORE Testnet Explorer", + "icon": "ore", + "url": "https://testnet.oreniumscan.org", + "standard": "none" + } + ] + }, + { + "name": "Nexa Testnet Block", + "chain": "Nexa Testnet", + "rpc": [ + "https://rpc-testnet-nodes.nexablockscan.io" + ], + "faucets": [ + "https://testnet.nexablockscan.io/faucet" + ], + "nativeCurrency": { + "name": "Nexa Testnet Token", + "symbol": "NEXB", + "decimals": 18 + }, + "infoURL": "https://www.nexablock.io", + "shortName": "NexaTestnet", + "chainId": 9024, + "networkId": 9024, + "icon": "nexaChain", + "explorers": [ + { + "name": "Nexablock Testnet Explorer", + "url": "https://testnet.nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } + ] + }, + { + "name": "Nexa Mainnet Block", + "chain": "Nexa Mainnet", + "rpc": [ + "https://rpc-nodes.nexablockscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Nexa Mainnet Token", + "symbol": "NEXB", + "decimals": 18 + }, + "infoURL": "https://www.nexablock.io", + "shortName": "Nexa", + "chainId": 9025, + "networkId": 9025, + "icon": "nexaChain", + "explorers": [ + { + "name": "Nexablock Mainnet Explorer", + "url": "https://nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } + ] + }, + { + "name": "Dela Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-dela.deperp.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.deperp.com/dela", + "shortName": "delasep", + "chainId": 9393, + "networkId": 9393, + "slip44": 1, + "icon": "delaTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://sepolia-delascan.deperp.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "BEVM Testnet", + "chain": "BEVM", + "rpc": [ + "https://testnet.bevm.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bevm.io", + "shortName": "bevm", + "chainId": 11503, + "networkId": 11503, + "icon": "bevmcanary", + "explorers": [ + { + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", + "standard": "none" + } + ] + }, + { + "name": "Aternos", + "chain": "Aternos", + "icon": "aternos", + "rpc": [ + "https://rpc.aternoschain.com" + ], + "faucets": [ + "https://faucet.aternoschain.com" + ], + "nativeCurrency": { + "name": "Aternos", + "symbol": "ATR", + "decimals": 18 + }, + "infoURL": "https://aternoschain.com", + "shortName": "ATR", + "chainId": 12020, + "networkId": 12020, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.aternoschain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vitruveo Testnet", + "title": "Vitruveo is a blockchain for Creators", + "chain": "Vitruveo", + "rpc": [ + "https://test-rpc.vitruveo.xyz" + ], + "faucets": [ + "https://faucet.vitruveo.xyz" + ], + "nativeCurrency": { + "name": "Vitruveo Test Coin", + "symbol": "tVTRU", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://www.vitruveo.xyz", + "shortName": "vitruveo-test", + "chainId": 14333, + "networkId": 14333, + "icon": "vitruveo", + "explorers": [ + { + "name": "Vitruveo Testnet Explorer", + "url": "https://test-explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } + ] + }, + { + "name": "Eclipse Subnet", + "chain": "ECLIPSE", + "rpc": [ + "https://subnets.avax.network/eclipse/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclipse", + "symbol": "ECLP", + "decimals": 16 + }, + "infoURL": "http://eclipsenet.io", + "shortName": "eclipse", + "chainId": 17172, + "networkId": 17172, + "explorers": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", + "standard": "EIP3091" + } + ] + }, + { + "name": "KONET Mainnet", + "chain": "KONET", + "rpc": [ + "https://api.kon-wallet.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "KONET", + "symbol": "KONET", + "decimals": 18 + }, + "infoURL": "https://konetmain.com", + "shortName": "KONET", + "chainId": 17217, + "networkId": 17217, + "slip44": 1, + "icon": "konet", + "explorers": [ + { + "name": "konet-explorer", + "url": "https://explorer.kon-wallet.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "unreal", + "title": "unreal testnet for re.al", + "chain": "unreal", + "rpc": [ + "https://rpc.unreal.gelato.digital", + "wss://ws.unreal.gelato.digital" + ], + "nativeCurrency": { + "name": "unreal Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", + "faucets": [], + "shortName": "unreal", + "chainId": 18231, + "networkId": 18231, + "slip44": 60, + "icon": "unreal", + "explorers": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.unreal.gelato.digital" + } + ] + } + }, + { + "name": "Titan (TKX) Testnet", + "chain": "Titan (TKX)", + "rpc": [ + "https://titan-testnet-json-rpc-1.tokenize-dev.com", + "https://titan-testnet-json-rpc-2.tokenize-dev.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 + }, + "infoURL": "https://tokenize.exchange", + "shortName": "titan_tkx-testnet", + "chainId": 18889, + "networkId": 18889, + "slip44": 1, + "icon": "titan_tkx", + "explorers": [ + { + "name": "Titan Explorer", + "url": "https://titan-testnet-explorer-light.tokenize-dev.com", + "standard": "none", + "icon": "titan_tkx" + } + ] + }, + { + "name": "Decentraconnect Social", + "chain": "DCSM", + "icon": "dcsmIcon", + "rpc": [ + "https://rpc.decentraconnect.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Decentraconnect Social", + "symbol": "DCSM", + "decimals": 18 + }, + "infoURL": "https://docs.decentraconnect.io", + "shortName": "DCSMs", + "chainId": 19224, + "networkId": 19224, + "explorers": [ + { + "name": "Decentraconnect Social", + "url": "https://decentraconnect.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Magnet Network", + "chain": "Magnet", + "rpc": [ + "https://magnet-rpc.magport.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Magnet Network", + "symbol": "DOT", + "decimals": 18 + }, + "infoURL": "https://magnet.magport.io/", + "shortName": "mgt", + "chainId": 19527, + "networkId": 19527, + "explorers": [] + }, + { + "name": "Jono11 Subnet", + "chain": "JONO11", + "icon": "jono11", + "rpc": [ + "https://subnets.avax.network/jono11/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Jono11 Token", + "symbol": "JONO", + "decimals": 18 + }, + "infoURL": "", + "shortName": "jono11", + "chainId": 20765, + "networkId": 20765, + "explorers": [ + { + "name": "JONO11 Explorer", + "url": "https://subnets-test.avax.network/jono11", + "standard": "EIP3091" + } + ] + }, + { + "name": "C4EI", + "chain": "C4EI", + "rpc": [ + "https://rpc.c4ei.net" + ], + "faucets": [ + "https://play.google.com/store/apps/details?id=net.c4ei.fps2" + ], + "nativeCurrency": { + "name": "C4EI", + "symbol": "C4EI", + "decimals": 18 + }, + "infoURL": "https://c4ei.net", + "shortName": "c4ei", + "chainId": 21004, + "networkId": 21004, + "explorers": [ + { + "name": "C4EI sirato", + "url": "https://exp.c4ei.net", + "icon": "c4ei", + "standard": "none" + } + ] + }, + { + "name": "All About Healthy", + "chain": "AAH", + "rpc": [ + "https://rpc.c4ex.net" + ], + "faucets": [ + "https://t.me/c4eiAirdrop" + ], + "nativeCurrency": { + "name": "AAH", + "symbol": "AAH", + "decimals": 18 + }, + "infoURL": "https://c4ex.net", + "shortName": "aah", + "chainId": 21133, + "networkId": 21133, + "explorers": [ + { + "name": "AAH Blockscout", + "url": "https://exp.c4ex.net", + "icon": "aah", + "standard": "EIP3091" + } + ] + }, + { + "name": "LiquidLayer Mainnet", + "chain": "LiquidLayer", + "icon": "lila", + "rpc": [ + "https://mainnet.liquidlayer.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "LiquidLayer", + "symbol": "LILA", + "decimals": 18 + }, + "infoURL": "https://scan.liquidlayer.network", + "shortName": "LILA", + "chainId": 25186, + "networkId": 25186, + "explorers": [ + { + "name": "LiquidLayer Mainnet Explorer", + "url": "https://scan.liquidlayer.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "AlveyChain Testnet", + "chain": "tALV", + "rpc": [ + "https://testnet-rpc.alvey.io" + ], + "faucets": [ + "https://faucet.alveytestnet.com" + ], + "nativeCurrency": { + "name": "AlveyCoin Testnet", + "symbol": "tALV", + "decimals": 18 + }, + "infoURL": "https://alveychain.com/", + "shortName": "talv", + "chainId": 25839, + "networkId": 25839, + "icon": "alveychain", + "explorers": [ + { + "name": "AlveyScan Testnet", + "url": "https://alveytestnet.com", + "icon": "alveychain", + "standard": "EIP3091" + } + ] + }, + { + "name": "GUNZ Testnet", + "chain": "tGUN", + "rpc": [ + "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "GUN", + "symbol": "GUN", + "decimals": 18 + }, + "icon": "guntestnet", + "infoURL": "https://gunbygunz.com", + "shortName": "Stork", + "chainId": 49321, + "networkId": 49321, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.gunzscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "DOID", + "chain": "DOID", + "rpc": [ + "https://rpc.doid.tech" + ], + "faucets": [], + "nativeCurrency": { + "name": "DOID", + "symbol": "DOID", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://doid.tech", + "shortName": "DOID", + "chainId": 53277, + "networkId": 53277, + "icon": "doid", + "explorers": [ + { + "name": "DOID Scan", + "url": "https://scan.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } + ] + }, + { + "name": "DOID Testnet", + "chain": "DOID", + "rpc": [ + "https://rpc.testnet.doid.tech" + ], + "faucets": [], + "nativeCurrency": { + "name": "DOID", + "symbol": "DOID", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://doid.tech", + "shortName": "doidTestnet", + "chainId": 56797, + "networkId": 56797, + "icon": "doid", + "explorers": [ + { + "name": "DOID Testnet Scan", + "url": "https://scan.testnet.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vanguard", + "title": "Vanar Testnet Vanguard", + "chain": "VANAR", + "rpc": [ + "https://rpc-vanguard.vanarchain.com", + "wss://ws-vanguard.vanarchain.com" + ], + "faucets": [ + "https://faucet.vanarchain.com" + ], + "nativeCurrency": { + "name": "Vanguard Vanry", + "symbol": "VG", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://vanarchain.com", + "shortName": "vanguard", + "chainId": 78600, + "networkId": 78600, + "icon": "vanguard", + "explorers": [ + { + "name": "Vanguard Explorer", + "url": "https://explorer-vanguard.vanarchain.com", + "icon": "vanguard", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hizoco mainnet", + "chain": "HZC", + "icon": "hizoco", + "rpc": [ + "https://hizoco.net/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hizoco", + "symbol": "HZC", + "decimals": 18 + }, + "infoURL": "http://hizoco.net", + "shortName": "hzc", + "chainId": 80096, + "networkId": 80096, + "explorers": [ + { + "name": "blockscout", + "url": "https://hizoco.net:38443", + "standard": "none" + } + ] + }, + { + "name": "Blast", + "chain": "ETH", + "rpc": [ + "https://blast.blockpi.network/v1/rpc/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://blast.io/", + "shortName": "blastmainnet", + "chainId": 81457, + "networkId": 81457, + "icon": "blast", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1" + } + }, + { + "name": "MetaDAP Enterprise Mainnet", + "title": "MetaDAP Enterprise Mainnet", + "chain": "MetaDAP", + "icon": "metadap", + "faucets": [], + "rpc": [ + "https://rpc.chain.metadap.io", + "wss://rpc-ws.chain.metadap.io" + ], + "nativeCurrency": { + "name": "DAP", + "symbol": "DAP", + "decimals": 18 + }, + "infoURL": "https://metadap.io/", + "shortName": "MetaDAP", + "chainId": 91120, + "networkId": 91120, + "explorers": [ + { + "name": "MetaDAP Enterprise Mainnet explorer", + "url": "https://explorer.chain.metadap.io", + "standard": "none" + } + ] + }, + { + "name": "LiquidLayer Testnet", + "chain": "LILA", + "icon": "lila", + "rpc": [ + "https://testnet.liquidlayer.network" + ], + "faucets": [ + "https://claim.liquidlayer.network" + ], + "nativeCurrency": { + "name": "LiquidLayer Testnet", + "symbol": "LILA", + "decimals": 18 + }, + "infoURL": "https://testnet-scan.liquidlayer.network", + "shortName": "tLILA", + "chainId": 93572, + "networkId": 93572, + "explorers": [ + { + "name": "LiquidLayer Testnet Explorer", + "url": "https://testnet-scan.liquidlayer.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Masa Testnet", + "chain": "MASA", + "rpc": [ + "https://subnets.avax.network/masatestne/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "infoURL": "https://masa.finance", + "shortName": "masa", + "chainId": 103454, + "networkId": 103454, + "explorers": [ + { + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "MetaDAP Enterprise Testnet", + "title": "MetaDAP Enterprise Testnet", + "chain": "MetaDAP", + "icon": "metadap", + "faucets": [], + "rpc": [ + "https://rpc.testnet.chain.metadap.io", + "wss://rpc-ws.testnet.chain.metadap.io" + ], + "nativeCurrency": { + "name": "DAP", + "symbol": "DAP", + "decimals": 18 + }, + "infoURL": "https://metadap.io/", + "shortName": "MetaDAP-T", + "chainId": 119139, + "networkId": 119139, + "explorers": [ + { + "name": "MetaDAP Enterprise Testnet explorer", + "url": "https://explorer.testnet.chain.metadap.io", + "standard": "none" + } + ] + }, + { + "name": "Taiko (Alpha-2 Testnet)", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": [ + "https://rpc.a2.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-a2", + "chainId": 167004, + "networkId": 167004, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.a2.taiko.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taiko Grimsvotn L2", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": [ + "https://rpc.test.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-l2", + "chainId": 167005, + "networkId": 167005, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.test.taiko.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taiko Eldfell L3", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": [ + "https://rpc.l3test.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "taiko-l3", + "chainId": 167006, + "networkId": 167006, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.l3test.taiko.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitlayer Testnet", + "chain": "Bitlayer", + "rpc": [ + "https://testnet-rpc.bitlayer.org", + "wss://testnet-ws.bitlayer.org" + ], + "faucets": [ + "https://www.bitlayer.org/faucet" + ], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://docs.bitlayer.org/", + "shortName": "Bitlayer", + "chainId": 200810, + "networkId": 200810, + "slip44": 1, + "icon": "bitlayer", + "explorers": [ + { + "name": "bitlayer testnet scan", + "url": "https://testnet-scan.bitlayer.org", + "standard": "none" + } + ] + }, + { + "name": "Bloom Genesis Testnet", + "chain": "Bloom", + "icon": "bloom", + "rpc": [ + "https://testnet-rpc.bloomgenesis.com" + ], + "faucets": [ + "https://faucet.bloomgenesis.com" + ], + "nativeCurrency": { + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 + }, + "infoURL": "https://www.bloomgenesis.com", + "shortName": "BGBC-Testnet", + "chainId": 323213, + "networkId": 323213, + "explorers": [ + { + "name": "Bloom Genesis Testnet", + "url": "https://testnet.bloomgenesis.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bloom Genesis Mainnet", + "chain": "Bloom", + "icon": "bloom", + "rpc": [ + "https://mainnet-rpc.bloomgenesis.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 + }, + "infoURL": "https://www.bloomgenesis.com", + "shortName": "BGBC", + "chainId": 333313, + "networkId": 333313, + "explorers": [ + { + "name": "Bloom Genesis Mainnet", + "url": "https://explorer.bloomgenesis.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Syndr L3 Sepolia", + "title": "Syndr L3 Sepolia Rollup Testnet", + "chain": "SYNDRSEPOLIA", + "rpc": [ + "https://sepolia.syndr.com/http", + "wss://sepolia.syndr.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndr.com", + "shortName": "syndr", + "chainId": 444444, + "networkId": 444444, + "explorers": [ + { + "name": "Syndr L3 Sepolia Testnet Explorer", + "url": "https://sepolia-explorer.syndr.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://sepolia-bridge.syndr.com" + } + ] + } + }, + { + "name": "Sei Devnet", + "chain": "Sei", + "rpc": [ + "https://evm-rpc-arctic-1.sei-apis.com", + "https://evm-rpc.arctic-1.seinetwork.io" + ], + "faucets": [ + "https://sei-faucet.nima.enterprises", + "https://sei-evm.faucetme.pro" + ], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei-devnet", + "chainId": 713715, + "networkId": 713715, + "icon": "sei", + "explorers": [ + { + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" + }, + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Jono12 Subnet", + "chain": "JONO12", + "icon": "jono12", + "rpc": [ + "https://subnets.avax.network/jono12/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Jono12 Token", + "symbol": "JONO", + "decimals": 18 + }, + "infoURL": "", + "shortName": "jono12", + "chainId": 955081, + "networkId": 955081, + "explorers": [ + { + "name": "JONO12 Explorer", + "url": "https://subnets-test.avax.network/jono12", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Nebula Hub Testnet", + "title": "SKALE Nebula Hub Testnet", + "chain": "lanky-ill-funny-testnet", + "icon": "nebula", + "rpc": [ + "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet", + "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" + ], + "faucets": [ + "https://www.sfuelstation.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://nebulachain.io/", + "shortName": "nebula-testnet", + "chainId": 37084624, + "networkId": 37084624, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Plume Testnet", + "title": "Plume Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": [ + "https://plume-testnet.rpc.caldera.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plume Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.plumenetwork.xyz/", + "shortName": "plume-testnet", + "chainId": 161221135, + "networkId": 161221135, + "slip44": 1, + "icon": "plume", + "explorers": [ + { + "name": "Blockscout", + "url": "https://plume-testnet.explorer.caldera.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://plume-testnet.calderabridge.xyz" + } + ] + } + }, + { + "name": "Ancient8", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": [ + "https://rpc.ancient8.gg" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "ancient8", + "chainId": 888888888, + "networkId": 888888888, + "explorers": [ + { + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Calypso Hub Testnet", + "title": "SKALE Calypso Hub Testnet", + "chain": "giant-half-dual-testnet", + "icon": "calypso", + "rpc": [ + "https://testnet.skalenodes.com/v1/giant-half-dual-testnet" + ], + "faucets": [ + "https://www.sfuelstation.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://calypsohub.network/", + "shortName": "calypso-testnet", + "chainId": 974399131, + "networkId": 974399131, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Titan Hub Testnet", + "title": "SKALE Titan Hub Testnet", + "chain": "aware-fake-trim-testnet", + "icon": "titan", + "rpc": [ + "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet", + "wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet" + ], + "faucets": [ + "https://www.sfuelstation.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "", + "shortName": "titan-testnet", + "chainId": 1020352220, + "networkId": 1020352220, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "PowerGold", + "chain": "NEAR", + "rpc": [ + "https://powergold.aurora.dev" + ], + "icon": "powergold", + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.powergold.tech", + "shortName": "powergold", + "chainId": 1313161560, + "networkId": 1313161560, + "explorers": [ + { + "name": "PowerGold explorer", + "url": "https://explorer.powergold.aurora.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "SKALE Europa Hub Testnet", + "title": "SKALE Europa Hub Testnet", + "chain": "juicy-low-small-testnet", + "icon": "europa", + "rpc": [ + "https://testnet.skalenodes.com/v1/juicy-low-small-testnet" + ], + "faucets": [ + "https://www.sfuelstation.com/" + ], + "nativeCurrency": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "infoURL": "https://europahub.network/", + "shortName": "europa-testnet", + "chainId": 1444673419, + "networkId": 1444673419, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "GitSwarm Test Network", + "title": "GitSwarm Test Network", + "chain": "ETH", + "icon": "gitswarm", + "rpc": [ + "https://gitswarm.com:2096" + ], + "faucets": [], + "nativeCurrency": { + "name": "GitSwarm Ether", + "symbol": "GS-ETH", + "decimals": 18 + }, + "infoURL": "https://gitswarm.com/", + "shortName": "GS-ETH", + "chainId": 28872323069, + "networkId": 28872323069, + "slip44": 1, + "explorers": [], + "status": "incubating" + }, + { + "name": "Kakarot Sepolia", + "chain": "ETH", + "icon": "kakarot", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kakarot.org", + "shortName": "kkrt-sepolia", + "chainId": 107107114116, + "networkId": 107107114116, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } + }, + { + "name": "WDC Chain", + "chainId": 999999, + "shortName": "WDC", + "chain": "WDC", + "network": "mainnet", + "networkId": 999999, + "nativeCurrency": { + "name": "World", + "symbol": "WORLD", + "decimals": 18 + }, + "rpc": [ + "https://rpc.worldcoin.group" + ], + "faucets": [], + "explorers": [ + { + "name": "WDCScan", + "url": "https://scan.worldcoin.group", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1709901010969.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1709900938585.png", + "color_chain_bg": "0x110044", + "color_chain_text": "0x15cad3", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1709900563540.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1709900974713.png" + } + }, + { + "name": "Hoo Smart Chain Testnet", + "chain": "HSC", + "network": "testnet", + "rpc": [ + "https://http-testnet.hoosmartchain.com" + ], + "faucets": [ + "https://faucet-testnet.hscscan.com/" + ], + "nativeCurrency": { + "name": "HOO", + "symbol": "HOO", + "decimals": 18 + }, + "infoURL": "https://www.hoosmartchain.com", + "shortName": "HSC", + "chainId": 170, + "networkId": 170, + "app_resource": { + "ic_chain_select": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/1.png", + "ic_chain_unselect": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/0.png", + "ic_chain_unselect_dark": "https://tp-upload.cdn.bcebos.com/v1/blockChain/HooTest/2.png", + "color_chain_bg": "0x00C0AB" + } + }, + { + "name": "EtherLite Chain", + "chainId": 111, + "shortName": "ETL", + "chain": "EtherLite", + "network": "mainnet", + "networkId": 111, + "nativeCurrency": { + "name": "EtherLite Coin", + "symbol": "ETL", + "decimals": 18 + }, + "rpc": [ + "https://rpc.etherlite.org" + ], + "faucets": [ + "https://etherlite.org/faucets" + ], + "infoURL": "https://forum.etherlite.org/" + }, + { + "name": "Namefi Chain Mainnet", + "chain": "NFIC", + "rpc": [ + "https://rpc.chain.namefi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Namefi Coin", + "symbol": "NFIC", + "decimals": 18 + }, + "infoURL": "https://namefi.io/", + "shortName": "nfic", + "chainId": 132, + "networkId": 132 + }, + { + "name": "HashKey Chain Testnet", + "title": "HashKey Chain Testnet", + "chain": "HashKey Chain Testnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "HashKey EcoPoints", + "symbol": "HSK", + "decimals": 18 + }, + "infoURL": "https://hashkey.cloud", + "shortName": "HSKT", + "chainId": 133, + "networkId": 133, + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } + }, + { + "name": "EternalCoin Mainnet", + "chain": "Eter", + "icon": "eternal", + "rpc": [ + "https://mainnet.eternalcoin.io/v1", + "ws://mainnet.eternalcoin.io/v1/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eternal", + "symbol": "Eter", + "decimals": 18 + }, + "infoURL": "https://eternalcoin.io", + "shortName": "Eter", + "chainId": 140, + "networkId": 140 + }, + { + "name": "SoraAI Testnet", + "chain": "SETH", + "icon": "ethereum", + "rpc": [ + "https://rpc-testnet.soraai.bot" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "SoraETH", + "symbol": "SETH", + "decimals": 18 + }, + "infoURL": "https://soraai.bot", + "shortName": "SETH", + "chainId": 145, + "networkId": 145, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.soraai.bot", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.soraai.bot" + } + ] + } + }, + { + "name": "Flag Mainnet", + "chain": "Flag", + "icon": "flag", + "rpc": [ + "https://mainnet-rpc.flagscan.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Flag", + "symbol": "FLAG", + "decimals": 18 + }, + "infoURL": "https://flagscan.xyz", + "shortName": "FLAG", + "chainId": 147, + "networkId": 147, + "explorers": [ + { + "name": "Flag Mainnet Explorer", + "url": "https://flagscan.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Roburna Mainnet", + "chain": "RBA", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": [ + "https://dataseed.roburna.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Roburna", + "symbol": "RBA", + "decimals": 18 + }, + "infoURL": "https://www.roburna.com/", + "shortName": "rba", + "chainId": 158, + "networkId": 158, + "icon": "roburna", + "explorers": [ + { + "name": "Rbascan Explorer", + "url": "https://rbascan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Roburna Testnet", + "chain": "RBAT", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": [ + "https://preseed-testnet-1.roburna.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Roburna", + "symbol": "RBAT", + "decimals": 18 + }, + "infoURL": "https://www.roburna.com/", + "shortName": "rbat", + "chainId": 159, + "networkId": 159, + "icon": "roburna", + "explorers": [ + { + "name": "Rbascan Testnet Explorer", + "url": "https://testnet.rbascan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Omni Testnet", + "chain": "Omni", + "status": "active", + "rpc": [ + "https://testnet.omni.network" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "infoURL": "https://docs.omni.network", + "shortName": "omni_testnet", + "chainId": 164, + "networkId": 164, + "slip44": 1, + "explorers": [ + { + "name": "Omni X-Explorer", + "url": "https://explorer.testnet.omni.network", + "standard": "none" + }, + { + "name": "Omni EVM Explorer on Blockscout", + "url": "https://omni-testnet.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "Omni EVM Explorer on Routescan", + "url": "https://testnet.omniscan.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Omni", + "chain": "Omni", + "status": "incubating", + "rpc": [], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "infoURL": "https://docs.omni.network/", + "shortName": "omni", + "chainId": 166, + "networkId": 166, + "slip44": 1 + }, + { + "name": "DC Mainnet", + "chain": "dcchain", + "icon": "dcchain", + "rpc": [ + "https://rpc.dcnetio.cloud", + "wss://ws.dcnetio.cloud" + ], + "faucets": [], + "nativeCurrency": { + "name": "DC Native Token", + "symbol": "DCT", + "decimals": 18 + }, + "infoURL": "https://www.dcnetio.cloud", + "shortName": "dcchain", + "chainId": 176, + "networkId": 176, + "explorers": [ + { + "name": "dcscan", + "url": "https://exp.dcnetio.cloud", + "standard": "none" + } + ] + }, + { + "name": "Waterfall Network", + "chain": "Waterfall Network", + "rpc": [ + "https://rpc.waterfall.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://waterfall.network", + "shortName": "water", + "chainId": 181, + "networkId": 181, + "icon": "waterfall-main", + "explorers": [] + }, + { + "name": "Mint Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.mintchain.io", + "https://global.rpc.mintchain.io", + "https://asia.rpc.mintchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.mintchain.io", + "shortName": "mint", + "chainId": 185, + "networkId": 185, + "icon": "mint", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.mintchain.io", + "icon": "mint", + "standard": "EIP3091" + } + ] + }, + { + "name": "FileFileGo", + "chain": "FFG", + "icon": "ffgIcon", + "rpc": [ + "https://rpc.filefilego.com/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FFG", + "symbol": "FFG", + "decimals": 18 + }, + "infoURL": "https://filefilego.com", + "shortName": "ffg", + "chainId": 191, + "networkId": 191 + }, + { + "name": "X Layer Mainnet", + "chain": "X Layer", + "rpc": [ + "https://rpc.xlayer.tech", + "https://xlayerrpc.okx.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "X Layer Global Utility Token", + "symbol": "OKB", + "decimals": 18 + }, + "features": [], + "infoURL": "https://www.okx.com/xlayer", + "shortName": "okb", + "chainId": 196, + "networkId": 196, + "icon": "xlayer", + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", + "standard": "EIP3091" + } + ], + "status": "active" + }, + { + "name": "Edgeless Testnet", + "chain": "EdgelessTestnet", + "rpc": [ + "https://testnet.rpc.edgeless.network/http" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 + }, + "infoURL": "https://edgeless.network", + "shortName": "edgeless-testnet", + "chainId": 202, + "networkId": 202, + "explorers": [ + { + "name": "Edgeless Explorer", + "url": "https://testnet.explorer.edgeless.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "B2 Hub Mainnet", + "chain": "B2", + "rpc": [ + "https://hub-rpc.bsquared.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2Hub-mainnet", + "chainId": 213, + "networkId": 213, + "icon": "bsquare", + "explorers": [ + { + "name": "B2 Hub Mainnet Explorer", + "url": "https://hub-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ] + }, + { + "name": "B2 Mainnet", + "title": "B2 Mainnet", + "chain": "B2", + "rpc": [ + "https://mainnet.b2-rpc.com", + "https://rpc.bsquared.network", + "https://b2-mainnet.alt.technology", + "https://b2-mainnet-public.s.chainbase.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2-mainnet", + "chainId": 223, + "networkId": 223, + "icon": "bsquare", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-213", + "bridges": [ + { + "url": "https://www.bsquared.network/bridge" + } + ] + } + }, + { + "name": "Mind Network Mainnet", + "chain": "FHE", + "rpc": [ + "https://rpc_mainnet.mindnetwork.xyz", + "wss://rpc_mainnet.mindnetwork.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "FHE", + "symbol": "FHE", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://mindnetwork.xyz", + "shortName": "fhe", + "chainId": 228, + "networkId": 228 + }, + { + "name": "Blast Mainnet", + "chain": "ETH", + "icon": "blastIcon", + "rpc": [ + "https://rpc.blastblockchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.blastblockchain.com", + "shortName": "blast", + "chainId": 238, + "networkId": 238, + "explorers": [ + { + "name": "Blast Mainnet", + "url": "https://scan.blastblockchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Neura", + "title": "Neura Mainnet", + "chain": "NEURA", + "icon": "neura", + "rpc": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "infoURL": "https://www.neuraprotocol.io/", + "shortName": "neura", + "chainId": 266, + "networkId": 266, + "status": "incubating", + "explorers": [] + }, + { + "name": "Neura Testnet", + "title": "Neura Testnet", + "chain": "NEURA", + "icon": "neura", + "rpc": [ + "https://rpc.ankr.com/neura_testnet" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://testnet.neuraprotocol.io/faucet" + ], + "nativeCurrency": { + "name": "Testnet Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "infoURL": "https://www.neuraprotocol.io/", + "shortName": "tneura", + "chainId": 267, + "networkId": 267, + "explorers": [ + { + "name": "ankrscan-neura", + "url": "https://testnet.explorer.neuraprotocol.io", + "icon": "neura", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.neura-testnet.ankr.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "slip44": 1 + }, + { + "name": "Neura Devnet", + "title": "Neura Devnet", + "chain": "NEURA", + "icon": "neura", + "rpc": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Devnet Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "infoURL": "https://www.neuraprotocol.io/", + "shortName": "dneura", + "chainId": 268, + "networkId": 268, + "explorers": [], + "status": "incubating", + "slip44": 1 + }, + { + "name": "xFair.AI Mainnet", + "chain": "FAI", + "rpc": [ + "https://rpc_mainnet.xfair.ai", + "wss://rpc_mainnet.xfair.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "FAI", + "symbol": "FAI", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://xfair.ai", + "shortName": "fai", + "chainId": 278, + "networkId": 278 + }, + { + "name": "Cronos zkEVM Testnet", + "chain": "CronosZkEVMTestnet", + "rpc": [ + "https://testnet.zkevm.cronos.org" + ], + "faucets": [ + "https://zkevm.cronos.org/faucet" + ], + "nativeCurrency": { + "name": "Cronos zkEVM Test Coin", + "symbol": "zkTCRO", + "decimals": 18 + }, + "infoURL": "https://docs-zkevm.cronos.org", + "shortName": "zkTCRO", + "chainId": 282, + "networkId": 282, + "slip44": 1, + "explorers": [ + { + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } + ] + }, + { + "name": "zkCandy Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.rpc.zkcandy.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zkcandy.io/", + "shortName": "zkcandy-sepolia", + "chainId": 302, + "networkId": 302, + "icon": "zkcandy", + "explorers": [ + { + "name": "zkCandy Block Explorer", + "url": "https://sepolia.explorer.zkcandy.io", + "icon": "zkcandy", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://sepolia.bridge.zkcandy.io/" + } + ] + }, + "redFlags": [ + "reusedChainId" + ] + }, + { + "name": "Furtheon", + "chain": "Furtheon Network", + "rpc": [ + "https://rpc.furtheon.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Furtheon", + "symbol": "FTH", + "decimals": 18 + }, + "infoURL": "https://furtheon.org/", + "shortName": "furtheon", + "chainId": 308, + "networkId": 308, + "explorers": [ + { + "name": "furthscan", + "url": "http://furthscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "CamDL Testnet", + "chain": "CADL", + "rpc": [ + "https://rpc1.testnet.camdl.gov.kh/" + ], + "faucets": [ + "https://faucet.testnet.camdl.gov.kh/" + ], + "nativeCurrency": { + "name": "CADL", + "symbol": "CADL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://camdl.gov.kh/", + "shortName": "camdl-testnet", + "chainId": 395, + "networkId": 395, + "icon": "camdl", + "explorers": [ + { + "name": "CamDL Testnet Explorer", + "url": "https://explorer.testnet.camdl.gov.kh", + "standard": "EIP3091" + } + ], + "status": "active" + }, + { + "name": "Near Mainnet", + "chain": "NEAR", + "rpc": [], + "icon": "near", + "faucets": [], + "nativeCurrency": { + "name": "NEAR", + "symbol": "NEAR", + "decimals": 18 + }, + "infoURL": "https://near.org/", + "shortName": "near", + "chainId": 397, + "networkId": 397, + "explorers": [ + { + "name": "Near Blocks", + "url": "https://nearblocks.io", + "standard": "none" + } + ] + }, + { + "name": "Near Testnet", + "chain": "NEAR", + "rpc": [], + "icon": "near", + "faucets": [], + "nativeCurrency": { + "name": "Testnet NEAR", + "symbol": "NEAR", + "decimals": 18 + }, + "infoURL": "https://aurora.dev", + "shortName": "near-testnet", + "chainId": 398, + "networkId": 398, + "explorers": [ + { + "name": "Near blocks", + "url": "https://testnet.nearblocks.io", + "standard": "none" + } + ] + }, + { + "name": "Syndr L3", + "chainId": 404, + "shortName": "syndr-l3", + "title": "Syndr L3 Rollup", + "chain": "SYNDR", + "networkId": 404, + "icon": "syndr", + "rpc": [ + "https://rpc.syndr.com", + "wss://rpc.syndr.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndr.com", + "explorers": [ + { + "name": "Syndr L3 Explorer", + "url": "https://explorer.syndr.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.syndr.com" + } + ] + } + }, + { + "name": "Boyaa Mainnet", + "chain": "BYC", + "rpc": [ + "https://evm-rpc.mainnet.boyaa.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boyaa mainnet native coin", + "symbol": "BYC", + "decimals": 18 + }, + "infoURL": "https://boyaa.network", + "shortName": "BYC", + "chainId": 434, + "networkId": 434, + "icon": "boyaanetwork", + "explorers": [ + { + "name": "Boyaa explorer", + "url": "https://explorer.mainnet.boyaa.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "OpTrust Mainnet", + "chain": "OpTrust", + "rpc": [ + "https://rpc.optrust.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BSC", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://optrust.io", + "shortName": "optrust", + "chainId": 537, + "networkId": 537, + "icon": "optrust", + "explorers": [ + { + "name": "OpTrust explorer", + "url": "https://scan.optrust.io", + "icon": "optrust", + "standard": "none" + } + ] + }, + { + "name": "Testnet", + "chain": "Flow", + "rpc": [ + "https://testnet.evm.nodes.onflow.org" + ], + "faucets": [ + "https://testnet-faucet.onflow.org" + ], + "nativeCurrency": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "infoURL": "https://developers.flow.com/evm/about", + "shortName": "flow-testnet", + "chainId": 545, + "networkId": 545, + "icon": "flowevm", + "explorers": [ + { + "name": "Flow Diver", + "url": "https://testnet.flowdiver.io", + "standard": "none" + } + ] + }, + { + "name": "Filenova Mainnet", + "chain": "Filenova", + "rpc": [ + "https://rpc.filenova.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://filenova.org", + "shortName": "filenova", + "chainId": 579, + "networkId": 579, + "icon": "filenova", + "explorers": [ + { + "name": "filenova explorer", + "url": "https://scan.filenova.org", + "icon": "filenova", + "standard": "none" + } + ] + }, + { + "name": "Previewnet", + "chain": "Flow", + "rpc": [ + "https://previewnet.evm.nodes.onflow.org" + ], + "faucets": [ + "https://previewnet-faucet.onflow.org" + ], + "nativeCurrency": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "infoURL": "https://developers.flow.com/evm/about", + "shortName": "flow-previewnet", + "chainId": 646, + "networkId": 646, + "icon": "flowevm", + "explorers": [ + { + "name": "Flow Diver", + "url": "https://previewnet.flowdiver.io", + "standard": "none" + } + ] + }, + { + "name": "UltronSmartchain", + "chain": "UltronSmartchain", + "rpc": [ + "https://rpc.ultronsmartchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ulc", + "symbol": "ULC", + "decimals": 18 + }, + "infoURL": "https://ultronsmartchain.io", + "shortName": "ultronsmartchain", + "chainId": 662, + "networkId": 662, + "icon": "ultronsmartchain", + "explorers": [ + { + "name": "ultronsmartchain explorer", + "url": "https://scan.ultronsmartchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Redstone", + "chain": "ETH", + "rpc": [ + "https://rpc.redstonechain.com", + "wss://rpc.redstonechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz", + "shortName": "redstone", + "chainId": 690, + "networkId": 690, + "icon": "redstone", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://redstone.xyz/deposit" + } + ] + } + }, + { + "name": "Mainnet", + "chain": "Flow", + "rpc": [ + "https://mainnet.evm.nodes.onflow.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "infoURL": "https://developers.flow.com/evm/about", + "shortName": "flow-mainnet", + "chainId": 747, + "networkId": 747, + "icon": "flowevm", + "explorers": [ + { + "name": "Flow Diver", + "url": "https://flowdiver.io", + "standard": "none" + } + ] + }, + { + "name": "Runic Chain Testnet", + "chain": "Runic", + "rpc": [ + "https://rpc-testnet.runic.build" + ], + "faucets": [ + "https://faucet.runic.build" + ], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "rBTC", + "decimals": 18 + }, + "infoURL": "https://runic.build", + "shortName": "runic-testnet", + "chainId": 822, + "networkId": 822, + "status": "active", + "icon": "runic-testnet", + "explorers": [ + { + "name": "RunicScan", + "url": "https://scan.runic.build", + "icon": "runic-testnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "MAXI Chain Testnet", + "chain": "MAXI", + "rpc": [ + "https://rpc-testnet.maxi.network" + ], + "faucets": [ + "https://faucet.maxi.network" + ], + "nativeCurrency": { + "name": "MAXICOIN", + "symbol": "MAXI", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://maxi.network", + "shortName": "maxi-testnet", + "chainId": 898, + "networkId": 898, + "icon": "maxi", + "explorers": [ + { + "name": "Maxi Chain Testnet Explorer", + "url": "https://testnet.maxi.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "TAPROOT Mainnet", + "title": "TAPROOT Mainnet", + "chain": "TAPROOT CHAIN", + "rpc": [ + "https://rpc.taprootchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TBTC", + "symbol": "TBTC", + "decimals": 18 + }, + "infoURL": "https://taprootchain.io", + "shortName": "TAPROOT-Mainnet", + "chainId": 911, + "networkId": 911, + "icon": "taproot", + "explorers": [ + { + "name": "TAPROOT Scan", + "url": "https://scan.taprootchain.io", + "icon": "taproot", + "standard": "EIP3091" + } + ] + }, + { + "name": "EthXY", + "chain": "EthXY", + "rpc": [ + "https://rpc.ethxy.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 + }, + "icon": "sexy", + "infoURL": "https://ethxy.com", + "shortName": "sexy", + "chainId": 969, + "networkId": 969, + "explorers": [ + { + "name": "EthXY Network Explorer", + "url": "https://explorer.ethxy.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "EthXY Testnet", + "chain": "EthXY", + "rpc": [ + "https://rpc.testnet.ethxy.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 + }, + "icon": "sexyTestnet", + "infoURL": "https://ethxy.com", + "shortName": "sexyTestnet", + "chainId": 979, + "networkId": 979, + "explorers": [ + { + "name": "EthXY Testnet Network Explorer", + "url": "https://explorer.testnet.ethxy.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Jumbochain Mainnet", + "chain": "Jumbo", + "rpc": [ + "https://rpcpriv.jumbochain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://jumbochain.org", + "shortName": "Jumboscan", + "chainId": 1009, + "networkId": 1009, + "slip44": 1, + "explorers": [ + { + "name": "Jumboscan", + "url": "https://jumboscan.jumbochain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Rebus Mainnet", + "title": "Rebuschain Mainnet", + "chain": "REBUS", + "rpc": [ + "https://apievm.rebuschain.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 + }, + "infoURL": "https://www.rebuschain.com", + "shortName": "rebus", + "chainId": 1011, + "networkId": 1011, + "icon": "rebus", + "explorers": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm.rebuschain.com", + "icon": "rebus", + "standard": "none" + }, + { + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://cosmos.rebuschain.com", + "icon": "rebus", + "standard": "none" + } + ] + }, + { + "name": "IOTA EVM Testnet", + "title": "IOTA EVM Testnet", + "chain": "IOTA EVM", + "icon": "iotaevm", + "rpc": [ + "https://json-rpc.evm.testnet.iotaledger.net" + ], + "faucets": [ + "https://evm-toolkit.evm.testnet.iotaledger.net" + ], + "nativeCurrency": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "infoURL": "https://www.iota.org", + "shortName": "iotaevm-testnet", + "chainId": 1075, + "networkId": 1075, + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.iotaledger.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "B2 Hub Testnet", + "chain": "BSQ", + "rpc": [ + "https://testnet-hub-rpc.bsquared.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2Hub-testnet", + "chainId": 1113, + "networkId": 1113, + "icon": "bsquare", + "explorers": [ + { + "name": "B2 Hub Habitat Testnet Explorer", + "url": "https://testnet-hub-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ] + }, + { + "name": "B2 Testnet", + "title": "B2 Testnet", + "chain": "Habitat", + "rpc": [ + "https://b2-testnet.alt.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.bsquared.network", + "shortName": "B2-testnet", + "chainId": 1123, + "networkId": 1123, + "icon": "bsquare", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1113" + } + }, + { + "name": "Lisk", + "chain": "ETH", + "rpc": [ + "https://rpc.api.lisk.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lisk.com", + "shortName": "lisk", + "chainId": 1135, + "networkId": 1135, + "slip44": 134, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Flag Testnet", + "chain": "Flag", + "icon": "flag", + "rpc": [ + "https://testnet-rpc.flagscan.xyz" + ], + "faucets": [ + "https://faucet.flagscan.xyz" + ], + "nativeCurrency": { + "name": "Flag Testnet", + "symbol": "FLAG", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.flagscan.xyz", + "shortName": "tFLAG", + "chainId": 1147, + "networkId": 1147, + "explorers": [ + { + "name": "Flag Testnet Explorer", + "url": "https://testnet-explorer.flagscan.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "ClubMos Mainnet", + "chain": "MOS", + "rpc": [ + "https://mainnet.mosscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "ClubMos", + "symbol": "MOS", + "decimals": 18 + }, + "infoURL": "https://www.mosscan.com", + "shortName": "MOS", + "chainId": 1188, + "networkId": 1188, + "icon": "clubmos", + "explorers": [ + { + "name": "mosscan", + "url": "https://www.mosscan.com", + "icon": "clubmos", + "standard": "none" + } + ] + }, + { + "name": "SaitaBlockChain(SBC)", + "chain": "SaitaBlockChain(SBC)", + "rpc": [ + "https://rpc-nodes.saitascan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "SaitaBlockChain(SBC)", + "symbol": "STC", + "decimals": 18 + }, + "infoURL": "https://saitachain.com", + "shortName": "SBC", + "chainId": 1209, + "networkId": 1209, + "icon": "SaitaBlockChain(SBC)", + "explorers": [ + { + "name": "Saitascan explorer", + "url": "https://saitascan.io", + "standard": "none", + "icon": "SaitaBlockChain(SBC)" + } + ] + }, + { + "name": "Sei Network", + "chain": "Sei", + "rpc": [ + "https://evm-rpc.sei-apis.com", + "wss://evm-ws.sei-apis.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei", + "chainId": 1329, + "networkId": 1329, + "icon": "seiv2", + "explorers": [ + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ramestta Mainnet", + "chain": "Ramestta", + "icon": "ramestta", + "rpc": [ + "https://blockchain.ramestta.com", + "https://blockchain2.ramestta.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rama", + "symbol": "RAMA", + "decimals": 18 + }, + "infoURL": "https://www.ramestta.com", + "shortName": "RAMA", + "chainId": 1370, + "networkId": 1370, + "explorers": [ + { + "name": "ramascan", + "url": "https://ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } + ] + }, + { + "name": "Pingaksha testnet", + "chain": "Pingaksha", + "icon": "ramestta", + "rpc": [ + "https://testnet.ramestta.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rama", + "symbol": "tRAMA", + "decimals": 18 + }, + "infoURL": "https://www.ramestta.com", + "shortName": "tRAMA", + "chainId": 1377, + "networkId": 1377, + "explorers": [ + { + "name": "Pingaksha", + "url": "https://pingaksha.ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } + ] + }, + { + "name": "Silicon zkEVM Sepolia Testnet", + "title": "Silicon zkEVM Sepolia Testnet", + "chain": "Silicon", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "silicon-sepolia-testnet", + "chainId": 1414, + "networkId": 1414, + "icon": "silicon", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + }, + "status": "incubating" + }, + { + "name": "iDos Games Chain Testnet", + "chain": "IGC", + "icon": "igc-testnet", + "rpc": [ + "https://rpc-testnet.idos.games" + ], + "faucets": [], + "nativeCurrency": { + "name": "iDos Games Coin", + "symbol": "IGC", + "decimals": 18 + }, + "infoURL": "https://idosgames.com/", + "shortName": "IGC", + "chainId": 1499, + "networkId": 1499, + "explorers": [ + { + "name": "IGC-Scan", + "url": "https://igcscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ethereum Inscription Mainnet", + "chain": "ETINS", + "rpc": [ + "https://rpc.etins.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum Inscription", + "symbol": "ETINS", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.etins.org", + "shortName": "etins", + "chainId": 1617, + "networkId": 1617, + "explorers": [ + { + "name": "Ethereum Inscription Explorer", + "url": "https://explorer.etins.org", + "standard": "none" + } + ] + }, + { + "name": "Gravity Alpha Mainnet", + "chain": "Gravity", + "rpc": [ + "https://rpc.gravity.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gravity", + "symbol": "G.", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + }, + { + "name": "EIP1108" + } + ], + "infoURL": "https://gravity.xyz", + "shortName": "gravity", + "chainId": 1625, + "networkId": 1625, + "icon": "gravity", + "explorers": [ + { + "name": "Gravity Alpha Mainnet Explorer", + "url": "https://explorer.gravity.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.gravity.xyz" + } + ] + } + }, + { + "name": "Doric Network", + "chain": "DRC", + "icon": "doric", + "rpc": [ + "https://mainnet.doric.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Doric Native Token", + "symbol": "DRC", + "decimals": 18 + }, + "infoURL": "https://doric.network", + "shortName": "DRC", + "chainId": 1717, + "networkId": 1717, + "explorers": [ + { + "name": "Doric Explorer", + "url": "https://explorer.doric.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Reya Network", + "chain": "Reya", + "rpc": [ + "https://rpc.reya.network", + "wss://ws.reya.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://reya.network", + "shortName": "reya", + "chainId": 1729, + "networkId": 1729, + "explorers": [ + { + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metal L2 Testnet", + "chain": "Metal L2 Testnet", + "rpc": [ + "https://testnet.rpc.metall2.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://metall2.com", + "shortName": "metall2-testnet", + "chainId": 1740, + "networkId": 1740, + "icon": "metal", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Metal L2", + "chain": "Metal L2", + "rpc": [ + "https://rpc.metall2.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://metall2.com", + "shortName": "metall2", + "chainId": 1750, + "networkId": 1750, + "icon": "metal", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "ZKBase Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-rpc.zkbase.app" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zkbase.org/", + "shortName": "zkbase-sepolia", + "chainId": 1789, + "networkId": 1789, + "slip44": 1, + "icon": "zkbase", + "explorers": [ + { + "name": "ZKbase Block Explorer", + "url": "https://sepolia-explorer.zkbase.app", + "icon": "zkbase", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portral.zkbase.app/" + } + ] + }, + "redFlags": [ + "reusedChainId" + ] + }, + { + "name": "UPB CRESCDI Testnet", + "chain": "UPBEth", + "rpc": [ + "https://testnet.crescdi.pub.ro" + ], + "infoURL": "https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet", + "faucets": [], + "nativeCurrency": { + "name": "UPBEth", + "symbol": "UPBEth", + "decimals": 18 + }, + "shortName": "UPBEth", + "chainId": 1918, + "networkId": 1918, + "explorers": [] + }, + { + "name": "AIW3 Testnet", + "chain": "AIW3", + "rpc": [ + "https://rpc-testnet.aiw3.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://aiw3.io/", + "shortName": "AIW3-Testnet", + "chainId": 1956, + "networkId": 1956, + "icon": "aiw3", + "explorers": [ + { + "name": "aiw3 testnet scan", + "url": "https://scan-testnet.aiw3.io", + "standard": "none" + } + ] + }, + { + "name": "Hubble Exchange", + "chain": "Hubblenet", + "icon": "hubblenet", + "rpc": [ + "https://rpc.hubble.exchange", + "wss://ws-rpc.hubble.exchange" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "infoURL": "https://www.hubble.exchange", + "shortName": "hubblenet", + "chainId": 1992, + "networkId": 1992, + "slip44": 60, + "explorers": [ + { + "name": "routescan", + "url": "https://explorer.hubble.exchange", + "standard": "EIP3091" + } + ] + }, + { + "name": "Sanko", + "chain": "Sanko", + "rpc": [ + "https://mainnet.sanko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "DMT", + "symbol": "DMT", + "decimals": 18 + }, + "infoURL": "https://sanko.xyz/", + "shortName": "Sanko", + "chainId": 1996, + "networkId": 1996, + "icon": "sanko", + "explorers": [ + { + "name": "Sanko Explorer", + "url": "https://explorer.sanko.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Panarchy", + "chain": "Panarchy", + "rpc": [ + "https://polytopia.org:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "GAS", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://polytopia.org/", + "shortName": "panarchy", + "chainId": 2013, + "networkId": 1 + }, + { + "name": "NOW Chain", + "chain": "NOW", + "icon": "nowchain", + "rpc": [ + "https://rpc.nowscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "NOW Coin", + "symbol": "NOW", + "decimals": 18 + }, + "infoURL": "https://nowchain.co", + "shortName": "now", + "chainId": 2014, + "networkId": 2014, + "explorers": [ + { + "name": "nowscan", + "url": "https://nowscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Adiri", + "title": "Telcoin Network Testnet", + "chain": "TEL", + "icon": "telcoin", + "rpc": [ + "https://rpc.telcoin.network", + "https://adiri.tel", + "https://node1.telcoin.network", + "https://node2.telcoin.network", + "https://node3.telcoin.network", + "https://node4.telcoin.network" + ], + "faucets": [ + "https://telcoin.network/faucet" + ], + "nativeCurrency": { + "name": "Telcoin", + "symbol": "TEL", + "decimals": 18 + }, + "infoURL": "https://telcoin.network", + "shortName": "tel", + "chainId": 2017, + "networkId": 2017, + "slip44": 1, + "explorers": [ + { + "name": "telscan", + "url": "https://telscan.io", + "icon": "telcoin", + "standard": "EIP3091" + } + ] + }, + { + "name": "Edgeless Network", + "chain": "Edgeless", + "rpc": [ + "https://rpc.edgeless.network/http" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 + }, + "infoURL": "https://edgeless.network", + "shortName": "edgeless", + "chainId": 2026, + "networkId": 2026, + "explorers": [ + { + "name": "Edgeless Explorer", + "url": "https://explorer.edgeless.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Aleph Zero Testnet", + "chain": "Aleph Zero Testnet", + "icon": "aleph", + "rpc": [ + "https://rpc.alephzero-testnet.gelato.digital", + "wss://rpc.alephzero-testnet.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "TZERO", + "symbol": "TZERO", + "decimals": 18 + }, + "infoURL": "https://testnet.alephzero.org", + "shortName": "aleph", + "chainId": 2039, + "networkId": 2039, + "explorers": [ + { + "name": "Aleph Zero Testnet", + "url": "https://test.azero.dev/#/explorer", + "icon": "aleph", + "standard": "none" + } + ] + }, + { + "name": "Vanar Mainnet", + "title": "Vanarchain", + "chain": "VANAR", + "rpc": [ + "https://rpc.vanarchain.com", + "wss://ws.vanarchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "VANRY", + "symbol": "VANRY", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://vanarchain.com", + "shortName": "Vanar", + "chainId": 2040, + "networkId": 2040, + "icon": "vanar", + "explorers": [ + { + "name": "Vanar Explorer", + "url": "https://explorer.vanarchain.com", + "icon": "vanar", + "standard": "EIP3091" + } + ] + }, + { + "name": "AIW3 Mainnet", + "chain": "AIW3", + "status": "incubating", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://aiw3.io/", + "shortName": "AIW3", + "chainId": 2045, + "networkId": 2045, + "icon": "aiw3", + "explorers": [] + }, + { + "name": "UCHAIN Mainnet", + "chain": "UCHAIN", + "rpc": [ + "https://rpc.uchain.link/" + ], + "faucets": [], + "nativeCurrency": { + "name": "UCASH", + "symbol": "UCASH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://u.cash/", + "shortName": "uchain", + "chainId": 2112, + "networkId": 2112, + "icon": "ucash", + "explorers": [ + { + "name": "uchain.info", + "url": "https://uchain.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Catena Mainnet", + "chain": "CMCX", + "rpc": [ + "https://rpc1.catenarpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Catena", + "symbol": "CMCX", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://catena.network", + "shortName": "cmcx", + "chainId": 2121, + "networkId": 2121, + "icon": "catena", + "explorers": [ + { + "name": "catenascan", + "url": "https://catenascan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "BigShortBets Testnet", + "chain": "BIGSB Testnet", + "rpc": [ + "https://test-market.bigsb.io", + "wss://test-market.bigsb.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dolarz", + "symbol": "Dolarz", + "decimals": 18 + }, + "infoURL": "https://bigshortbets.com/", + "shortName": "bigsb_testnet", + "chainId": 2136, + "networkId": 2136, + "explorers": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", + "standard": "none" + } + ] + }, + { + "name": "Oneness Network", + "chain": "Oneness", + "rpc": [ + "https://rpc.onenesslabs.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "oneness", + "chainId": 2140, + "networkId": 2140, + "explorers": [ + { + "name": "oneness-mainnet", + "url": "https://scan.onenesslabs.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Oneness TestNet", + "chain": "Oneness-Testnet", + "rpc": [ + "https://rpc.testnet.onenesslabs.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "", + "shortName": "oneness-testnet", + "chainId": 2141, + "networkId": 2141, + "explorers": [ + { + "name": "oneness-testnet", + "url": "https://scan.testnet.onenesslabs.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "RSS3 VSL Sepolia Testnet", + "chain": "RSS3", + "rpc": [ + "https://rpc.testnet.rss3.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "infoURL": "https://rss3.io", + "shortName": "rss3-testnet", + "chainId": 2331, + "networkId": 2331, + "icon": "rss3-testnet", + "explorers": [ + { + "name": "RSS3 VSL Sepolia Testnet Scan", + "url": "https://scan.testnet.rss3.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://explorer.testnet.rss3.io/bridge" + } + ] + } + }, + { + "name": "Atleta Olympia", + "chain": "Atleta", + "rpc": [ + "wss://testnet-rpc.atleta.network:9944", + "https://testnet-rpc.atleta.network:9944", + "https://testnet-rpc.atleta.network" + ], + "faucets": [ + "https://app-olympia.atleta.network/faucet" + ], + "nativeCurrency": { + "name": "Atla", + "symbol": "ATLA", + "decimals": 18 + }, + "infoURL": "https://atleta.network", + "shortName": "atla", + "chainId": 2340, + "networkId": 2340, + "slip44": 1, + "icon": "atleta", + "explorers": [ + { + "name": "Atleta Olympia Explorer", + "icon": "atleta", + "url": "https://blockscout.atleta.network", + "standard": "none" + }, + { + "name": "Atleta Olympia Polka Explorer", + "icon": "atleta", + "url": "https://polkadot-explorer.atleta.network/#/explorer", + "standard": "none" + } + ] + }, + { + "name": "Omnia Chain", + "chain": "OMNIA", + "icon": "omnia", + "rpc": [ + "https://rpc.omniaverse.io" + ], + "faucets": [ + "https://www.omniaverse.io" + ], + "nativeCurrency": { + "name": "Omnia", + "symbol": "OMNIA", + "decimals": 18 + }, + "infoURL": "https://www.omniaverse.io", + "shortName": "omnia", + "chainId": 2342, + "networkId": 2342, + "explorers": [ + { + "name": "OmniaVerse Explorer", + "url": "https://scan.omniaverse.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Silicon zkEVM", + "title": "Silicon zkEVM Mainnet", + "chain": "Silicon", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "", + "shortName": "silicon-zk", + "chainId": 2355, + "networkId": 2355, + "icon": "silicon", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [] + }, + "status": "incubating" + }, + { + "name": "Nexis Network Testnet", + "chain": "Nexis Network", + "icon": "nexis", + "rpc": [ + "https://evm-testnet.nexis.network" + ], + "faucets": [ + "https://evm-faucet.nexis.network" + ], + "nativeCurrency": { + "name": "Nexis", + "symbol": "NZT", + "decimals": 18 + }, + "infoURL": "https://nexis.network/", + "shortName": "nzt", + "chainId": 2370, + "networkId": 2370, + "explorers": [ + { + "name": "Nexis Testnet Explorer", + "url": "https://evm-testnet.nexscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "King Of Legends Devnet", + "title": "King Of Legends Devnet", + "chain": "KOL", + "icon": "kol", + "rpc": [ + "https://rpc-devnet.kinggamer.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "King Of Legends", + "symbol": "KOL", + "decimals": 18 + }, + "infoURL": "https://kingoflegends.net/", + "shortName": "kol", + "chainId": 2425, + "networkId": 2425, + "slip44": 1, + "explorers": [ + { + "name": "King Of Legends Devnet Explorer", + "url": "https://devnet.kingscan.org", + "icon": "kol", + "standard": "EIP3091" + } + ] + }, + { + "name": "inEVM Mainnet", + "chain": "inEVM", + "icon": "inevm", + "rpc": [ + "https://mainnet.rpc.inevm.com/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Injective", + "symbol": "INJ", + "decimals": 18 + }, + "infoURL": "https://inevm.com", + "shortName": "inevm", + "chainId": 2525, + "networkId": 2525, + "explorers": [], + "status": "active" + }, + { + "name": "APEX", + "status": "incubating", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://apexlayer.xyz/", + "shortName": "apexmainnet", + "chainId": 2662, + "networkId": 2662, + "icon": "apexmainnet", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1" + } + }, + { + "name": "XR Sepolia", + "chain": "ETH", + "rpc": [ + "https://xr-sepolia-testnet.rpc.caldera.xyz/http" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "tXR", + "symbol": "tXR", + "decimals": 18 + }, + "infoURL": "https://xr-one.gitbook.io", + "shortName": "txr", + "chainId": 2730, + "networkId": 2730, + "icon": "xr", + "slip44": 60, + "explorers": [ + { + "name": "XR Sepolia Explorer", + "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://xr-sepolia-testnet.bridge.caldera.xyz" + } + ] + }, + "status": "active" + }, + { + "name": "Nanon", + "title": "Nanon Rollup", + "chain": "ETH", + "rpc": [ + "https://rpc.nanon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.nanon.network", + "shortName": "Nanon", + "chainId": 2748, + "networkId": 2748, + "slip44": 1, + "icon": "nanon", + "explorers": [ + { + "name": "Nanon Rollup Explorer", + "url": "https://explorer.nanon.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.nanon.network" + } + ] + } + }, + { + "name": "GM Network Mainnet", + "chain": "GM Network Mainnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gmnetwork.ai", + "shortName": "gmnetwork-mainnet", + "chainId": 2777, + "networkId": 2777, + "explorers": [], + "status": "incubating" + }, + { + "name": "Morph Holesky", + "title": "Morph Holesky Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc-quicknode-holesky.morphl2.io", + "wss://rpc-quicknode-holesky.morphl2.io", + "https://rpc-holesky.morphl2.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://morphl2.io", + "shortName": "hmorph", + "chainId": 2810, + "networkId": 2810, + "slip44": 1, + "explorers": [ + { + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge-holesky.morphl2.io" + } + ] + } + }, + { + "name": "Elux Chain", + "chain": "ELUX", + "icon": "eluxchain", + "rpc": [ + "https://rpc.eluxscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Elux Chain", + "symbol": "ELUX", + "decimals": 18 + }, + "infoURL": "https://eluxscan.com", + "shortName": "ELUX", + "chainId": 2907, + "networkId": 2907, + "explorers": [ + { + "name": "blockscout", + "url": "https://eluxscan.com", + "standard": "none" + } + ] + }, + { + "name": "HYCHAIN", + "chainId": 2911, + "shortName": "hychain", + "chain": "ETH", + "networkId": 2911, + "nativeCurrency": { + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 + }, + "rpc": [ + "https://rpc.hychain.com/http" + ], + "faucets": [], + "infoURL": "https://www.hychain.com", + "icon": "hychain", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.hychain.com" + } + ] + } + }, + { + "name": "Rebus Testnet", + "title": "Rebuschain Testnet", + "chain": "REBUS", + "rpc": [ + "https://testnet.rebus.money/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 + }, + "infoURL": "https://www.rebuschain.com", + "shortName": "rebus-testnet", + "chainId": 3033, + "networkId": 3033, + "icon": "rebus", + "explorers": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm.testnet.rebus.money", + "icon": "rebus", + "standard": "none" + }, + { + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://testnet.rebus.money/rebustestnet", + "icon": "rebus", + "standard": "none" + } + ] + }, + { + "name": "Movement EVM", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "move", + "chainId": 3073, + "networkId": 3073, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" + }, + { + "name": "SatoshiVM Alpha Mainnet", + "chain": "SatoshiVM", + "rpc": [ + "https://alpha-rpc-node-http.svmscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.satoshivm.io/", + "shortName": "SAVM", + "chainId": 3109, + "networkId": 3109, + "icon": "satoshivm" + }, + { + "name": "SatoshiVM Testnet", + "chain": "SatoshiVM", + "rpc": [ + "https://test-rpc-node-http.svmscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://www.satoshivm.io/", + "shortName": "tSAVM", + "chainId": 3110, + "networkId": 3110, + "icon": "satoshivm" + }, + { + "name": "EthStorage Mainnet", + "chain": "EthStorage", + "rpc": [ + "http://mainnet.ethstorage.io:9540" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethstorage.io/", + "shortName": "es-m", + "chainId": 3335, + "networkId": 3335, + "slip44": 1 + }, + { + "name": "EVOLVE Mainnet", + "chain": "EVO", + "icon": "evolveIcon", + "rpc": [ + "https://rpc.evolveblockchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 + }, + "infoURL": "https://evolveblockchain.io", + "shortName": "EVOm", + "chainId": 3424, + "networkId": 3424, + "explorers": [ + { + "name": "Evolve Mainnet Explorer", + "url": "https://evoexplorer.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Tycooncoin", + "chain": "TYCON", + "rpc": [ + "https://mainnet-rpc.tycoscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tycooncoin", + "symbol": "TYCO", + "decimals": 18 + }, + "infoURL": "", + "shortName": "TYCON", + "chainId": 3630, + "networkId": 3630 + }, + { + "name": "Astar zkEVM", + "shortName": "astrzk", + "title": "Astar zkEVM Mainnet", + "chain": "ETH", + "icon": "astar", + "rpc": [ + "https://rpc.startale.com/astar-zkevm" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 3776, + "networkId": 3776, + "explorers": [ + { + "name": "Blockscout Astar zkEVM explorer", + "url": "https://astar-zkevm.explorer.startale.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.astar.network" + } + ] + } + }, + { + "name": "Carbonium Testnet Network", + "chain": "CBR", + "rpc": [ + "https://rpc-dev.carbonium.network/", + "https://server-testnet.carbonium.network" + ], + "nativeCurrency": { + "name": "Carbonium", + "symbol": "tCBR", + "decimals": 18 + }, + "infoURL": "https://carbonium.network", + "shortName": "tcbr", + "chainId": 4040, + "networkId": 4040, + "slip44": 1, + "icon": "cbr", + "faucets": [ + "https://getfaucet.carbonium.network" + ], + "explorers": [ + { + "name": "Carbonium Network tesnet Explorer", + "icon": "cbr", + "url": "https://testnet.carboniumscan.com", + "standard": "none" + } + ] + }, + { + "name": "GAN Testnet", + "chain": "GAN", + "icon": "gpu", + "rpc": [ + "https://rpc.gpu.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "GP Token", + "symbol": "GP", + "decimals": 18 + }, + "infoURL": "https://docs.gpu.net/", + "shortName": "GANTestnet", + "chainId": 4048, + "networkId": 4048, + "explorers": [ + { + "name": "ganscan", + "url": "https://ganscan.gpu.net", + "standard": "none" + } + ] + }, + { + "name": "Tobe Chain", + "chain": "TBC", + "icon": "tobe", + "rpc": [ + "https://rpc.tobescan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tobe Coin", + "symbol": "TBC", + "decimals": 18 + }, + "infoURL": "https://tobechain.net", + "shortName": "tbc", + "chainId": 4080, + "networkId": 4080, + "explorers": [ + { + "name": "tobescan", + "url": "https://tobescan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "CrossFi Testnet", + "title": "CrossFi Testnet", + "chain": "XFI", + "rpc": [ + "https://rpc.testnet.ms" + ], + "faucets": [], + "nativeCurrency": { + "name": "XFI", + "symbol": "XFI", + "decimals": 18 + }, + "infoURL": "https://crossfi.org/", + "shortName": "crossfi-testnet", + "chainId": 4157, + "networkId": 4157, + "slip44": 1, + "explorers": [ + { + "name": "CrossFi Testnet Scan", + "url": "https://scan.testnet.ms", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hydra Chain", + "chain": "HYDRA", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Hydra", + "symbol": "HYDRA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://hydrachain.org", + "shortName": "hydra", + "chainId": 4488, + "networkId": 4488, + "icon": "hydra", + "explorers": [], + "status": "incubating" + }, + { + "name": "VERY Mainnet", + "title": "VERY Mainnet", + "chain": "VERY Mainnet", + "icon": "very", + "rpc": [ + "https://rpc.verylabs.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "VERY", + "symbol": "VERY", + "decimals": 18 + }, + "infoURL": "https://www.verylabs.io/", + "shortName": "very", + "chainId": 4613, + "networkId": 4613, + "explorers": [ + { + "name": "VERY explorer", + "url": "https://www.veryscan.io", + "standard": "none" + } + ] + }, + { + "name": "ONIGIRI Test Subnet", + "chain": "ONIGIRI", + "rpc": [ + "https://subnets.avax.network/onigiri/testnet/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 + }, + "infoURL": "https://www.ongr.org/", + "shortName": "onigiritest", + "chainId": 5039, + "networkId": 5039, + "icon": "onigiri", + "explorers": [ + { + "name": "ONIGIRI Explorer", + "url": "https://subnets-test.avax.network/onigiri", + "standard": "EIP3091" + } + ] + }, + { + "name": "ONIGIRI Subnet", + "chain": "ONIGIRI", + "rpc": [ + "https://subnets.avax.network/onigiri/mainnet/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 + }, + "infoURL": "https://www.ongr.org/", + "shortName": "onigiri", + "chainId": 5040, + "networkId": 5040, + "icon": "onigiri", + "explorers": [ + { + "name": "ONIGIRI Explorer", + "url": "https://subnets.avax.network/onigiri", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nollie Skatechain Testnet", + "chain": "Skatechain", + "rpc": [ + "https://nollie-rpc.skatechain.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "", + "shortName": "nollie-testnet", + "chainId": 5051, + "networkId": 5051, + "icon": "nollie", + "explorers": [ + { + "name": "Nollie Skate Chain Testnet Explorer", + "url": "https://nolliescan.skatechain.org", + "standard": "EIP3091" + } + ], + "status": "active" + }, + { + "name": "SIC Testnet", + "chain": "SIC Testnet", + "rpc": [ + "https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.fwb.help/", + "shortName": "sic-testnet", + "chainId": 5102, + "networkId": 5102, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Coordinape Testnet", + "chain": "Coordinape Testnet", + "rpc": [ + "https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://coordinape.com/", + "shortName": "coordinape-testnet", + "chainId": 5103, + "networkId": 5103 + }, + { + "name": "Charmverse Testnet", + "chain": "Charmverse Testnet", + "rpc": [ + "https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://charmverse.io/", + "shortName": "charmverse-testnet", + "chainId": 5104, + "networkId": 5104 + }, + { + "name": "Superloyalty Testnet", + "chain": "Superloyalty Testnet", + "rpc": [ + "https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.superloyal.com/", + "shortName": "superloyalty-testnet", + "chainId": 5105, + "networkId": 5105 + }, + { + "name": "Azra Testnet", + "chain": "Azra Testnet", + "rpc": [ + "https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://azragames.com", + "shortName": "azra-testnet", + "chainId": 5106, + "networkId": 5106, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "OpTrust Testnet", + "chain": "OpTrust", + "rpc": [ + "https://rpctest.optrust.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TestBSC", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://optrust.io", + "shortName": "toptrust", + "chainId": 5317, + "networkId": 5317, + "icon": "optrust", + "explorers": [ + { + "name": "OpTrust Testnet explorer", + "url": "https://scantest.optrust.io", + "icon": "optrust", + "standard": "none" + } + ] + }, + { + "name": "Settlus Testnet", + "chain": "Settlus", + "rpc": [ + "https://settlus-test-eth.settlus.io" + ], + "faucets": [ + "https://faucet.settlus.io" + ], + "nativeCurrency": { + "name": "Setl", + "symbol": "SETL", + "decimals": 18 + }, + "infoURL": "https://settlus.org", + "shortName": "settlus-testnet", + "chainId": 5372, + "networkId": 5372, + "explorers": [ + { + "name": "Settlus Scan", + "url": "https://testnet.settlus.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "edeXa Mainnet", + "chain": "edeXa Network", + "rpc": [ + "https://mainnet.edexa.network/rpc", + "https://mainnet.edexa.com/rpc", + "https://io-dataseed1.mainnet.edexa.io-market.com/rpc" + ], + "faucets": [], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 + }, + "infoURL": "https://edexa.network/", + "shortName": "edeXa", + "chainId": 5424, + "networkId": 5424, + "slip44": 1, + "icon": "edexa", + "explorers": [ + { + "name": "edexa-mainnet", + "url": "https://explorer.edexa.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Egochain", + "chainId": 5439, + "shortName": "egax", + "chain": "EGAX", + "networkId": 5439, + "nativeCurrency": { + "name": "EGAX", + "symbol": "EGAX", + "decimals": 18 + }, + "rpc": [ + "https://mainnet.egochain.org" + ], + "faucets": [], + "infoURL": "https://docs.egochain.org/", + "explorers": [ + { + "name": "egoscan", + "url": "https://egoscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Arcturus Testneet", + "chain": "Arcturus", + "rpc": [ + "https://rpc-testnet.arcturuschain.io/" + ], + "faucets": [ + "https://faucet.arcturuschain.io" + ], + "nativeCurrency": { + "name": "tARC", + "symbol": "tARC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://arcturuschain.io", + "shortName": "arcturus-testnet", + "chainId": 5615, + "networkId": 5615, + "explorers": [ + { + "name": "explorer-arcturus-testnet", + "url": "https://testnet.arcscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "QIE Blockchain", + "chain": "QIE", + "icon": "qie", + "rpc": [ + "https://rpc-main1.qiblockchain.online/", + "https://rpc-main2.qiblockchain.online/" + ], + "faucets": [], + "nativeCurrency": { + "name": "QIE Blockchain", + "symbol": "QIE", + "decimals": 18 + }, + "infoURL": "https://qiblockchain.online/", + "shortName": "QIE", + "chainId": 5656, + "networkId": 5656, + "explorers": [ + { + "name": "QIE Explorer", + "url": "https://mainnet.qiblockchain.online", + "standard": "EIP3091" + } + ] + }, + { + "name": "Filenova Testnet", + "chain": "Filenova", + "rpc": [ + "https://rpctest.filenova.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Test Filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filenova.org", + "shortName": "tfilenova", + "chainId": 5675, + "networkId": 5675, + "icon": "filenova", + "explorers": [ + { + "name": "filenova testnet explorer", + "url": "https://scantest.filenova.org", + "icon": "filenova", + "standard": "none" + } + ] + }, + { + "name": "Tangle", + "chain": "Tangle", + "rpc": [ + "https://rpc.tangle.tools", + "wss://rpc.tangle.tools" + ], + "faucets": [], + "nativeCurrency": { + "name": "Tangle", + "symbol": "TNT", + "decimals": 18 + }, + "infoURL": "https://docs.tangle.tools", + "shortName": "tangle", + "chainId": 5845, + "networkId": 5845, + "icon": "tangle", + "explorers": [ + { + "name": "Tangle EVM Explorer", + "url": "https://explorer.tangle.tools", + "standard": "EIP3091", + "icon": "tangle" + } + ] + }, + { + "name": "BounceBit Mainnet", + "chain": "BounceBit", + "rpc": [ + "https://fullnode-mainnet.bouncebitapi.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "infoURL": "https://bouncebit.io", + "shortName": "bouncebit-mainnet", + "chainId": 6001, + "networkId": 6001, + "icon": "bouncebit", + "explorers": [ + { + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } + ] + }, + { + "name": "Aura Euphoria Testnet", + "chain": "Aura", + "rpc": [ + "https://jsonrpc.euphoria.aura.network" + ], + "faucets": [ + "https://aura.faucetme.pro" + ], + "nativeCurrency": { + "name": "test-EAura", + "symbol": "eAura", + "decimals": 18 + }, + "infoURL": "https://aura.network", + "shortName": "eaura", + "chainId": 6321, + "networkId": 6321, + "slip44": 1, + "icon": "aura", + "explorers": [ + { + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" + } + ] + }, + { + "name": "Aura Mainnet", + "chain": "Aura", + "rpc": [ + "https://jsonrpc.aura.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aura", + "symbol": "AURA", + "decimals": 18 + }, + "infoURL": "https://aura.network", + "shortName": "aura", + "chainId": 6322, + "networkId": 6322, + "slip44": 1, + "icon": "aura", + "explorers": [ + { + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" + } + ] + }, + { + "name": "Pools Mainnet", + "chain": "Pools", + "rpc": [ + "https://rpc.poolsmobility.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "POOLS Native Token", + "symbol": "POOLS", + "decimals": 18 + }, + "infoURL": "https://www.poolschain.org", + "shortName": "POOLS", + "icon": "POOLS", + "chainId": 6868, + "networkId": 6868, + "slip44": 6868, + "explorers": [ + { + "name": "poolsscan", + "url": "https://scan.poolsmobility.com", + "icon": "POOLS", + "standard": "EIP3091" + } + ] + }, + { + "name": "Planq Atlas Testnet", + "chain": "Planq", + "icon": "planq", + "rpc": [ + "https://evm-rpc-atlas.planq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Planq", + "symbol": "tPLQ", + "decimals": 18 + }, + "infoURL": "https://planq.network", + "shortName": "planq-atlas-testnet", + "chainId": 7077, + "networkId": 7077, + "explorers": [] + }, + { + "name": "XPLA Verse", + "chain": "XPLA Verse", + "icon": "xpla_verse", + "rpc": [ + "https://rpc-xpla-verse.xpla.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://www.xpla.io", + "shortName": "XPLAVERSE", + "chainId": 7300, + "networkId": 7300, + "explorers": [ + { + "name": "XPLA Verse Explorer", + "url": "https://explorer-xpla-verse.xpla.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Cyber Mainnet", + "chain": "Cyber", + "rpc": [ + "https://cyber.alt.technology/", + "wss://cyber-ws.alt.technology/", + "https://rpc.cyber.co/", + "wss://rpc.cyber.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "cyber", + "infoURL": "https://cyber.co/", + "shortName": "cyeth", + "chainId": 7560, + "networkId": 7560, + "explorers": [ + { + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://cyber.co/bridge" + } + ] + } + }, + { + "name": "GDCC TESTNET", + "chain": "GDCC", + "icon": "gdcc", + "rpc": [ + "https://testnet-rpc1.gdccscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "GDCC", + "symbol": "GDCC", + "decimals": 18 + }, + "infoURL": "https://gdcchain.com", + "shortName": "GDCC", + "chainId": 7775, + "networkId": 7775, + "explorers": [ + { + "name": "GDCC", + "url": "https://testnet.gdccscan.io", + "standard": "none" + } + ] + }, + { + "name": "Orenium Mainnet Protocol", + "chain": "ORE", + "rpc": [ + "https://validator-mainnet.orenium.org", + "https://rpc-oracle-mainnet.orenium.org", + "https://portalmainnet.orenium.org" + ], + "nativeCurrency": { + "name": "ORENIUM", + "symbol": "ORE", + "decimals": 18 + }, + "infoURL": "https://orenium.org", + "shortName": "ore", + "chainId": 7778, + "networkId": 7778, + "slip44": 1, + "icon": "ore", + "faucets": [], + "explorers": [ + { + "name": "ORE Mainnet Explorer", + "icon": "ore", + "url": "https://oreniumscan.org", + "standard": "none" + } + ] + }, + { + "name": "OpenEX LONG Testnet", + "title": "OpenEX LONG Testnet", + "chain": "OEX", + "icon": "oex", + "rpc": [ + "https://long.rpc.openex.network/" + ], + "faucets": [ + "https://long.hub.openex.network/faucet" + ], + "nativeCurrency": { + "name": "USDT Testnet", + "symbol": "USDT", + "decimals": 18 + }, + "infoURL": "https://openex.network", + "shortName": "oex", + "chainId": 7798, + "networkId": 7798, + "slip44": 1, + "explorers": [ + { + "name": "OpenEX Long Testnet Explorer", + "url": "https://scan.long.openex.network", + "icon": "oex", + "standard": "EIP3091" + } + ] + }, + { + "name": "Dot Blox", + "chain": "DTBX", + "icon": "dotblox", + "rpc": [ + "https://rpc.dotblox.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dot Blox", + "symbol": "DTBX", + "decimals": 18 + }, + "infoURL": "https://explorer.dotblox.io", + "shortName": "DTBX", + "chainId": 7923, + "networkId": 7923, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.dotblox.io", + "standard": "none" + } + ] + }, + { + "name": "MO Mainnet", + "chainId": 7924, + "shortName": "MO", + "chain": "MO", + "icon": "mo", + "networkId": 7924, + "nativeCurrency": { + "name": "MO", + "symbol": "MO", + "decimals": 18 + }, + "rpc": [ + "https://mainnet-rpc.mochain.app/" + ], + "faucets": [ + "https://faucet.mochain.app/" + ], + "explorers": [ + { + "name": "MO Explorer", + "url": "https://moscan.app", + "standard": "none" + } + ], + "infoURL": "https://mochain.app" + }, + { + "name": "BOAT Mainnet", + "title": "BOAT Mainnet", + "chain": "BOAT", + "icon": "boat", + "rpc": [ + "https://rpc0.come.boat/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Best Of All Time Token", + "symbol": "BOAT", + "decimals": 18 + }, + "infoURL": "https://come.boats", + "shortName": "boat", + "chainId": 8047, + "networkId": 8047, + "slip44": 1, + "explorers": [ + { + "name": "BOAT Mainnet Explorer", + "url": "https://scan.come.boats", + "icon": "boat", + "standard": "EIP3091" + } + ] + }, + { + "name": "Karak Sepolia", + "title": "Karak Testnet Sepolia", + "chain": "Karak", + "icon": "karak", + "rpc": [ + "https://rpc.sepolia.karak.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://karak.network", + "shortName": "karak-sepolia", + "chainId": 8054, + "networkId": 8054, + "explorers": [ + { + "name": "Karak Sepolia Explorer", + "url": "https://explorer.sepolia.karak.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } + }, + { + "name": "Space Subnet", + "chain": "SPACE", + "rpc": [ + "https://subnets.avax.network/space/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 + }, + "infoURL": "https://otherworld.network", + "shortName": "space", + "chainId": 8227, + "networkId": 8227, + "explorers": [ + { + "name": "SPACE Explorer", + "url": "https://subnets.avax.network/space", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lorenzo", + "chain": "Lorenzo", + "rpc": [ + "https://rpc.lorenzo-protocol.xyz" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Lorenzo stBTC", + "symbol": "stBTC", + "decimals": 18 + }, + "infoURL": "https://www.lorenzo-protocol.xyz/", + "shortName": "lrz", + "chainId": 8329, + "networkId": 8329, + "icon": "lorenzo", + "explorers": [ + { + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" + } + ] + }, + { + "name": "IOTA EVM", + "title": "IOTA EVM", + "chain": "IOTA EVM", + "rpc": [ + "https://json-rpc.evm.iotaledger.net", + "https://ws.json-rpc.evm.iotaledger.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "infoURL": "https://www.iota.org", + "shortName": "iotaevm", + "chainId": 8822, + "networkId": 8822, + "icon": "iotaevm", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.iota.org", + "icon": "iotaevm", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hydra Chain Testnet", + "chain": "HYDRA", + "rpc": [ + "https://rpc.testnet.hydrachain.org" + ], + "faucets": [ + "https://app.testnet.hydrachain.org/faucet" + ], + "nativeCurrency": { + "name": "tHydra", + "symbol": "tHYDRA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://hydrachain.org", + "shortName": "thydra", + "chainId": 8844, + "networkId": 8844, + "icon": "hydra", + "explorers": [ + { + "name": "Hydra Chain Testnet explorer", + "url": "https://hydragon.hydrachain.org", + "icon": "hydra", + "standard": "EIP3091" + } + ] + }, + { + "name": "SuperLumio", + "chain": "SuperLumio", + "icon": "superlumio", + "rpc": [ + "https://mainnet.lumio.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lumio.io/", + "shortName": "superlumio", + "chainId": 8866, + "networkId": 8866, + "explorers": [ + { + "name": "Lumio explorer", + "url": "https://explorer.lumio.io", + "standard": "none" + } + ] + }, + { + "name": "Algen", + "chain": "ALG", + "rpc": [ + "https://rpc.algen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "alg", + "chainId": 8911, + "networkId": 8911, + "icon": "alg", + "explorers": [ + { + "name": "algscan", + "url": "https://scan.algen.network", + "icon": "alg", + "standard": "EIP3091" + } + ] + }, + { + "name": "Algen Testnet", + "chain": "ALG", + "rpc": [ + "https://rpc.test.algen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "algTest", + "chainId": 8912, + "networkId": 8912, + "icon": "alg", + "explorers": [ + { + "name": "algscan", + "url": "https://scan.test.algen.network", + "icon": "alg", + "standard": "EIP3091" + } + ] + }, + { + "name": "Algen Layer2", + "chain": "ALG L2", + "rpc": [ + "https://rpc.alg2.algen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "algl2", + "chainId": 8921, + "networkId": 8921, + "icon": "algl2", + "explorers": [ + { + "name": "algl2scan", + "url": "https://scan.alg2.algen.network", + "icon": "algl2", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-8911", + "type": "shard" + } + }, + { + "name": "Algen Layer2 Testnet", + "chain": "ALG L2", + "rpc": [ + "https://rpc.alg2-test.algen.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "infoURL": "https://www.algen.network", + "shortName": "algl2Test", + "chainId": 8922, + "networkId": 8922, + "icon": "algl2", + "explorers": [ + { + "name": "algl2scan", + "url": "https://scan.alg2-test.algen.network", + "icon": "algl2", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-8921", + "type": "shard" + } + }, + { + "name": "Shido Testnet Block", + "chain": "Shido Testnet", + "rpc": [ + "https://rpc-testnet-nodes.shidoscan.com", + "wss://wss-testnet-nodes.shidoscan.com" + ], + "faucets": [ + "https://testnet.shidoscan.com/faucet" + ], + "nativeCurrency": { + "name": "Shido Testnet Token", + "symbol": "SHIDO", + "decimals": 18 + }, + "infoURL": "https://www.nexablock.io", + "shortName": "ShidoTestnet", + "chainId": 9007, + "networkId": 9007, + "icon": "shidoChain", + "explorers": [ + { + "name": "Shidoblock Testnet Explorer", + "url": "https://testnet.shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } + ] + }, + { + "name": "Shido Mainnet Block", + "chain": "Shido Mainnet", + "rpc": [ + "https://rpc-nodes.shidoscan.com", + "wss://wss-nodes.shidoscan.com", + "https://rpc-delta-nodes.shidoscan.com", + "wss://wss-delta-nodes.shidoscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shido Mainnet Token", + "symbol": "SHIDO", + "decimals": 18 + }, + "infoURL": "https://shido.io", + "shortName": "Shido", + "chainId": 9008, + "networkId": 9008, + "icon": "shidoChain", + "explorers": [ + { + "name": "Shidoblock Mainnet Explorer", + "url": "https://shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } + ] + }, + { + "name": "Tabi Testnet", + "chain": "TabiNetwork", + "rpc": [ + "https://rpc.testnet.tabichain.com" + ], + "faucets": [ + "https://faucet.testnet.tabichain.com" + ], + "nativeCurrency": { + "name": "Tabi", + "symbol": "TABI", + "decimals": 18 + }, + "infoURL": "https://www.tabichain.com", + "shortName": "tabitest", + "chainId": 9789, + "networkId": 9789, + "explorers": [ + { + "name": "Tabi Testnet Explorer", + "url": "https://testnet.tabiscan.com", + "standard": "none" + } + ] + }, + { + "name": "OptimusZ7 Mainnet", + "chain": "OptimusZ7", + "icon": "OZ7Icon", + "rpc": [ + "https://rpc.optimusz7.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 + }, + "infoURL": "http://optimusz7.com", + "shortName": "OZ7m", + "chainId": 9797, + "networkId": 9797, + "explorers": [ + { + "name": "OptimusZ7 Mainnet Explorer", + "url": "https://explorer.optimusz7.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Larissa Chain", + "title": "Larissa Chain", + "chain": "Larissa", + "rpc": [ + "https://rpc.larissa.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Larissa", + "symbol": "LRS", + "decimals": 18 + }, + "infoURL": "https://larissa.network", + "shortName": "lrs", + "chainId": 9898, + "networkId": 1, + "slip44": 9898, + "status": "active", + "icon": "larissa", + "explorers": [ + { + "name": "Larissa Scan", + "url": "https://scan.larissa.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Espento Mainnet", + "chain": "SPENT", + "rpc": [ + "https://rpc.escscan.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ESPENTO", + "symbol": "SPENT", + "decimals": 18 + }, + "infoURL": "https://espento.network", + "shortName": "spent", + "chainId": 9911, + "networkId": 9911, + "icon": "espento", + "explorers": [ + { + "name": "escscan", + "url": "https://escscan.com", + "icon": "espento", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ztc Mainnet", + "chain": "ZTC", + "rpc": [ + "https://zitcoin.us" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ztcer", + "symbol": "ZTC", + "decimals": 5 + }, + "infoURL": "https://ztc.best", + "shortName": "ZTC", + "chainId": 9998, + "networkId": 9998 + }, + { + "name": "TAO EVM Mainnet", + "chain": "TAO EVM", + "icon": "taoevmIcon", + "rpc": [ + "https://rpc.taoevm.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://taoevm.io", + "shortName": "TAOm", + "chainId": 10321, + "networkId": 10321, + "explorers": [ + { + "name": "TAO Mainnet Explorer", + "url": "https://taoscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "TAO EVM Testnet", + "chain": "TAO EVM", + "icon": "taoevmIcon", + "rpc": [ + "https://testnet-rpc.taoevm.io" + ], + "faucets": [ + "https://faucet.taoevm.io" + ], + "nativeCurrency": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "infoURL": "https://taoevm.io", + "shortName": "TAOt", + "chainId": 10324, + "networkId": 10324, + "explorers": [ + { + "name": "TAO Testnet Explorer", + "url": "https://testnet.taoscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lamina1", + "chain": "Lamina1", + "rpc": [ + "https://subnets.avax.network/lamina1/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1", + "symbol": "L1", + "decimals": 18 + }, + "infoURL": "https://www.lamina1.com/", + "shortName": "lamina1", + "chainId": 10849, + "networkId": 10849, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lamina1 Identity", + "chain": "Lamina1 Identity", + "rpc": [ + "https://subnets.avax.network/lamina1id/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1 ID", + "symbol": "L1ID", + "decimals": 18 + }, + "infoURL": "https://www.lamina1.com/", + "shortName": "lamina1id", + "chainId": 10850, + "networkId": 10850, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Identity Explorer", + "url": "https://subnets.avax.network/lamina1id", + "standard": "EIP3091" + } + ] + }, + { + "name": "Shine Chain", + "chain": "SC20", + "rpc": [ + "https://rpc.shinescan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shine", + "symbol": "SC20", + "decimals": 18 + }, + "infoURL": "https://shinechain.tech", + "shortName": "SC20", + "chainId": 11221, + "networkId": 11221, + "icon": "shine", + "explorers": [ + { + "name": "shinescan", + "url": "https://shinescan.io", + "icon": "shine", + "standard": "none" + } + ] + }, + { + "name": "Jiritsu Testnet Subnet", + "chain": "JIRITSUTES", + "rpc": [ + "https://subnets.avax.network/jiritsutes/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "JIRI", + "symbol": "TZW", + "decimals": 18 + }, + "infoURL": "https://jiritsu.network", + "shortName": "jiritsutes", + "chainId": 11227, + "networkId": 11227, + "explorers": [ + { + "name": "JIRITSUTES Explorer", + "url": "https://subnets-test.avax.network/jiritsutes", + "standard": "EIP3091" + } + ] + }, + { + "name": "BEVM Mainnet", + "chain": "BEVM", + "rpc": [ + "https://rpc-mainnet-1.bevm.io/", + "https://rpc-mainnet-2.bevm.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bevm.io", + "shortName": "bevm", + "chainId": 11501, + "networkId": 11501, + "icon": "bevm", + "explorers": [ + { + "name": "bevm mainnet scan", + "url": "https://scan-mainnet.bevm.io", + "standard": "none" + } + ] + }, + { + "name": "L3X Protocol", + "chainId": 12324, + "shortName": "l3x", + "chain": "L3X", + "icon": "l3x", + "networkId": 12324, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.l3x.com" + ], + "faucets": [], + "explorers": [ + { + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://l3x.com", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } + }, + { + "name": "L3X Protocol Testnet", + "chainId": 12325, + "shortName": "l3x-testnet", + "chain": "L3X", + "icon": "l3x", + "networkId": 12325, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rpc-testnet.l3x.com" + ], + "faucets": [], + "explorers": [ + { + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://l3x.com", + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + } + }, + { + "name": "RSS3 VSL Mainnet", + "chain": "RSS3", + "rpc": [ + "https://rpc.rss3.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "infoURL": "https://rss3.io", + "shortName": "rss3", + "chainId": 12553, + "networkId": 12553, + "icon": "rss3", + "explorers": [ + { + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://explorer.rss3.io/bridge" + } + ] + } + }, + { + "name": "Playdapp Testnet", + "chain": "PDA", + "icon": "pda", + "rpc": [ + "https://subnets.avax.network/playdappte/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 + }, + "infoURL": "https://playdapp.io", + "shortName": "PDA-TESTNET", + "chainId": 12781, + "networkId": 12781, + "explorers": [ + { + "name": "Playdapp Testnet Explorer", + "url": "https://subnets-test.avax.network/playdappte", + "standard": "EIP3091" + } + ] + }, + { + "name": "PlayFair Testnet Subnet", + "chain": "PLAYFAIR", + "icon": "playfair", + "rpc": [ + "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTLT Token", + "symbol": "BTLT", + "decimals": 18 + }, + "infoURL": "https://letsplayfair.ai", + "shortName": "playfair", + "chainId": 12898, + "networkId": 12898, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/letsplayfair", + "standard": "EIP3091" + } + ] + }, + { + "name": "Masa", + "chain": "MASA", + "icon": "masa", + "rpc": [ + "https://subnets.avax.network/masanetwork/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "infoURL": "https://masa.finance", + "shortName": "masa", + "chainId": 13396, + "networkId": 13396, + "explorers": [ + { + "name": "Masa Explorer", + "url": "https://subnets.avax.network/masa", + "standard": "EIP3091" + } + ] + }, + { + "name": "Gravity Alpha Testnet Sepolia", + "chain": "Gravity", + "rpc": [ + "https://rpc-sepolia.gravity.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Gravity", + "symbol": "G.", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + }, + { + "name": "EIP1108" + } + ], + "infoURL": "https://gravity.xyz", + "shortName": "gravitysep", + "chainId": 13505, + "networkId": 13505, + "icon": "gravity", + "explorers": [ + { + "name": "Gravity Alpha Testnet Sepolia Explorer", + "url": "https://explorer-sepolia.gravity.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } + }, + { + "name": "Kronobit Mainnet", + "title": "Kronobit Mainnet", + "chain": "KNB", + "rpc": [ + "https://mainnet-rpc.qbitscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kronobit", + "symbol": "KNB", + "decimals": 18 + }, + "infoURL": "https://kronobit.org", + "shortName": "KNB", + "chainId": 13600, + "networkId": 13600, + "icon": "kronobit", + "explorers": [ + { + "name": "qbitscan", + "url": "https://explorer.qbitscan.com", + "icon": "kronobit", + "standard": "EIP3091" + } + ] + }, + { + "name": "EVOLVE Testnet", + "chain": "EVO", + "icon": "evolveIcon", + "rpc": [ + "https://testnet-rpc.evolveblockchain.io" + ], + "faucets": [ + "https://faucet.evolveblockchain.io" + ], + "nativeCurrency": { + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 + }, + "infoURL": "https://evolveblockchain.io", + "shortName": "evo", + "chainId": 14324, + "networkId": 14324, + "explorers": [ + { + "name": "Evolve Testnet Explorer", + "url": "https://testnet.evolveblockchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Poodl Testnet", + "chain": "Poodl", + "icon": "poodlIcon", + "rpc": [ + "https://testnet-rpc.poodl.org" + ], + "faucets": [ + "https://faucet.poodl.org" + ], + "nativeCurrency": { + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 + }, + "infoURL": "https://poodl.org", + "shortName": "poodlt", + "chainId": 15257, + "networkId": 15257, + "explorers": [ + { + "name": "Poodl Testnet Explorer", + "url": "https://testnet.poodl.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Poodl Mainnet", + "chain": "Poodl", + "icon": "poodlIcon", + "rpc": [ + "https://rpc.poodl.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 + }, + "infoURL": "https://poodl.org", + "shortName": "poodle", + "chainId": 15259, + "networkId": 15259, + "explorers": [ + { + "name": "Poodl Mainnet Explorer", + "url": "https://explorer.poodl.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeFiVerse Mainnet", + "chain": "DeFiVerse", + "icon": "defiverse", + "rpc": [ + "https://rpc.defi-verse.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://defi-verse.org", + "shortName": "DFV", + "chainId": 16116, + "networkId": 16116, + "explorers": [ + { + "name": "DeFiVerse Explorer", + "url": "https://scan.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-248" + } + }, + { + "name": "Garnet Holesky", + "chain": "ETH", + "rpc": [ + "https://rpc.garnetchain.com", + "wss://rpc.garnetchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz", + "shortName": "garnet", + "chainId": 17069, + "networkId": 17069, + "icon": "garnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.garnetchain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-17000", + "bridges": [ + { + "url": "https://garnetchain.com/deposit" + } + ] + } + }, + { + "name": "DeFiVerse Testnet", + "chain": "DeFiVerse Testnet", + "icon": "defiverse", + "rpc": [ + "https://rpc-testnet.defi-verse.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://defi-verse.org", + "shortName": "DFV-testnet", + "chainId": 17117, + "networkId": 17117, + "explorers": [ + { + "name": "DeFiVerse Testnet Explorer", + "url": "https://scan-testnet.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } + ] + }, + { + "name": "unreal", + "title": "unreal testnet for re.al", + "chain": "unreal", + "rpc": [ + "https://rpc.unreal-orbit.gelato.digital", + "wss://ws.unreal-orbit.gelato.digital" + ], + "nativeCurrency": { + "name": "unreal Ether", + "symbol": "reETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", + "faucets": [], + "shortName": "unreal", + "chainId": 18233, + "networkId": 18233, + "slip44": 60, + "icon": "unreal", + "explorers": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-17000", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/unreal" + } + ] + } + }, + { + "name": "Titan (TKX)", + "chain": "Titan (TKX)", + "rpc": [ + "https://titan-json-rpc.titanlab.io", + "https://titan-json-rpc-tokyo.titanlab.io", + "https://titan-json-rpc-seoul.titanlab.io", + "https://titan-json-rpc-hongkong.titanlab.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 + }, + "infoURL": "https://titanlab.io", + "shortName": "titan_tkx", + "chainId": 18888, + "networkId": 18888, + "slip44": 1, + "icon": "titan_tkx", + "explorers": [ + { + "name": "Titan Explorer", + "url": "https://tkxscan.io/Titan", + "standard": "none", + "icon": "titan_tkx" + } + ] + }, + { + "name": "LBRY Mainnet", + "chain": "LBRY", + "icon": "lbry", + "rpc": [ + "https://lbry.nl/rpc" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "LBRY Credits", + "symbol": "LBC", + "decimals": 8 + }, + "infoURL": "https://lbry.com", + "shortName": "LBRY", + "chainId": 19600, + "networkId": 19600, + "slip44": 140, + "explorers": [ + { + "name": "LBRY Block Explorer", + "url": "https://explorer.lbry.com", + "icon": "lbry", + "standard": "none" + } + ] + }, + { + "name": "Niza Chain Mainnet", + "chain": "NIZA", + "icon": "niza", + "rpc": [ + "https://nizascan.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 + }, + "infoURL": "https://niza.io", + "shortName": "niza", + "chainId": 20041, + "networkId": 20041, + "explorers": [ + { + "name": "NizaScan", + "url": "https://nizascan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Niza Chain Testnet", + "chain": "NIZA", + "icon": "niza", + "rpc": [ + "https://testnet.nizascan.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 + }, + "infoURL": "https://niza.io", + "shortName": "niza_testnet", + "chainId": 20073, + "networkId": 20073, + "explorers": [ + { + "name": "NizaScan", + "url": "https://testnet.nizascan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "DCpay Mainnet", + "chain": "DCpay", + "icon": "dcpayIcon", + "rpc": [ + "https://rpc.dcpay.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "DCP", + "symbol": "DCP", + "decimals": 18 + }, + "infoURL": "https://dcpay.io", + "shortName": "DCPm", + "chainId": 21223, + "networkId": 21223, + "explorers": [ + { + "name": "DCpay Mainnet Explorer", + "url": "https://mainnet.dcpay.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "DCpay Testnet", + "chain": "DCpay", + "icon": "dcpayIcon", + "rpc": [ + "https://testnet-rpc.dcpay.io" + ], + "faucets": [ + "https://faucet.dcpay.io" + ], + "nativeCurrency": { + "name": "DCP", + "symbol": "DCP", + "decimals": 18 + }, + "infoURL": "https://dcpay.io", + "shortName": "DCPt", + "chainId": 21224, + "networkId": 21224, + "explorers": [ + { + "name": "DCpay Testnet Explorer", + "url": "https://testnet.dcpay.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "DreyerX Mainnet", + "chain": "DreyerX", + "rpc": [ + "https://rpc.dreyerx.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 + }, + "infoURL": "https://dreyerx.com", + "shortName": "dreyerx", + "chainId": 23451, + "networkId": 23451, + "icon": "dreyerx", + "explorers": [ + { + "name": "drxscan", + "url": "https://scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } + ] + }, + { + "name": "DreyerX Testnet", + "chain": "DreyerX", + "rpc": [ + "https://testnet-rpc.dreyerx.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 + }, + "infoURL": "https://dreyerx.com", + "shortName": "dreyerx-testnet", + "chainId": 23452, + "networkId": 23452, + "icon": "dreyerx", + "explorers": [ + { + "name": "drxscan", + "url": "https://testnet-scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } + ] + }, + { + "name": "KLAOS Nova", + "title": "KLAOS Nova Test Chain", + "chain": "KLAOS Nova", + "icon": "k-laos", + "rpc": [ + "https://rpc.klaosnova.laosfoundation.io", + "wss://rpc.klaosnova.laosfoundation.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 + }, + "infoURL": "https://www.laosfoundation.io/", + "shortName": "klaosnova", + "chainId": 27181, + "networkId": 27181, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.klaosnova.laosfoundation.io", + "icon": "k-laos", + "standard": "EIP3091" + } + ] + }, + { + "name": "Nanon Sepolia", + "title": "Nanon Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-rpc.nanon.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.nanon.network", + "shortName": "Nanon-Testnet", + "chainId": 27483, + "networkId": 27483, + "slip44": 1, + "icon": "nanon", + "explorers": [ + { + "name": "Nanon Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.nanon.network", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://sepolia-bridge.nanon.network" + } + ] + } + }, + { + "name": "zeroone Mainnet Subnet", + "chain": "ZEROONEMAI", + "rpc": [ + "https://subnets.avax.network/zeroonemai/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://zeroone.art/", + "shortName": "zeroonemai", + "chainId": 27827, + "networkId": 27827, + "explorers": [ + { + "name": "ZEROONEMAI Explorer", + "url": "https://subnets.avax.network/zeroonemai", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vizing Testnet", + "title": "Vizing Testnet", + "chain": "Vizing Testnet", + "rpc": [ + "https://rpc-sepolia.vizing.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://vizing.com", + "shortName": "Vizing-Testnet", + "chainId": 28516, + "networkId": 28516, + "icon": "vizing", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-sepolia.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } + ] + }, + { + "name": "Vizing Mainnet", + "title": "Vizing Mainnet", + "chain": "Vizing Mainnet", + "rpc": [ + "https://rpc.vizing.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://vizing.com", + "shortName": "Vizing", + "chainId": 28518, + "networkId": 28518, + "icon": "vizing", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.vizing.com" + } + ] + } + }, + { + "name": "Boba Sepolia", + "chain": "ETH", + "rpc": [ + "https://sepolia.boba.network", + "https://boba-sepolia.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-sepolia", + "wss://boba-sepolia.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-sepolia" + ], + "faucets": [ + "https://www.l2faucet.com/boba" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaSepolia", + "chainId": 28882, + "networkId": 28882, + "explorers": [ + { + "name": "Bobascan", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + } + }, + { + "name": "HYCHAIN Testnet", + "chainId": 29112, + "shortName": "hychain-testnet", + "chain": "ETH", + "networkId": 29112, + "nativeCurrency": { + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 + }, + "rpc": [ + "https://testnet-rpc.hychain.com/http" + ], + "faucets": [], + "infoURL": "https://www.hychain.com", + "icon": "hychain", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-58008", + "bridges": [] + } + }, + { + "name": "KaiChain Testnet", + "chain": "KaiChain", + "rpc": [ + "https://testnet-rpc.kaichain.net" + ], + "faucets": [ + "https://faucet.kaichain.net" + ], + "nativeCurrency": { + "name": "KaiChain Testnet Native Token", + "symbol": "KEC", + "decimals": 18 + }, + "infoURL": "https://kaichain.net", + "shortName": "tkec", + "chainId": 29536, + "networkId": 29536, + "explorers": [ + { + "name": "KaiChain Explorer", + "url": "https://testnet-explorer.kaichain.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "MiYou Mainnet", + "chain": "MiYou Chain", + "icon": "miyou", + "faucets": [], + "rpc": [ + "https://blockchain.miyou.io", + "https://blockchain.miyoulab.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "Miyou", + "symbol": "MY", + "decimals": 18 + }, + "infoURL": "https://www.miyou.io", + "shortName": "MiYou", + "chainId": 30088, + "networkId": 30088, + "slip44": 60, + "ens": { + "registry": "0xFEfa9B3061435977424DD947E756566cFB60473E" + }, + "explorers": [ + { + "name": "MiYou block explorer", + "url": "https://myscan.miyou.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Movement EVM Legacy", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "moveleg", + "chainId": 30730, + "networkId": 30730, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" + }, + { + "name": "Movement EVM Devnet", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "movedev", + "chainId": 30731, + "networkId": 30731, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" + }, + { + "name": "Movement EVM Testnet", + "chain": "MOVE", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "infoURL": "https://movementlabs.xyz", + "shortName": "movetest", + "chainId": 30732, + "networkId": 30732, + "icon": "move", + "explorers": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "status": "incubating" + }, + { + "name": "Xchain Mainnet", + "chain": "Xchain", + "icon": "intd", + "rpc": [ + "https://rpc.xchainscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Intdestcoin", + "symbol": "INTD", + "decimals": 18 + }, + "infoURL": "https://xchainscan.com", + "shortName": "INTD", + "chainId": 31753, + "networkId": 31753, + "explorers": [ + { + "name": "Xchain Mainnet Explorer", + "url": "https://xchainscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Xchain Testnet", + "chain": "Xchain", + "icon": "intd", + "rpc": [ + "https://rpc.xchaintest.net" + ], + "faucets": [ + "https://xchainfaucet.net" + ], + "nativeCurrency": { + "name": "Intdestcoin Testnet", + "symbol": "INTD", + "decimals": 18 + }, + "infoURL": "https://xchaintest.net", + "shortName": "tINTD", + "chainId": 31754, + "networkId": 31754, + "explorers": [ + { + "name": "Xchain Testnet Explorer", + "url": "https://xchaintest.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Entangle Mainnet", + "chain": "NGL", + "icon": "ngl", + "rpc": [ + "https://json-rpc.entangle.fi" + ], + "faucets": [], + "nativeCurrency": { + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 + }, + "infoURL": "https://www.entangle.fi", + "shortName": "ngl", + "chainId": 33033, + "networkId": 33033, + "explorers": [ + { + "name": "Entangle Mainnet Explorer", + "url": "https://explorer.entangle.fi", + "standard": "none" + } + ] + }, + { + "name": "Entangle Testnet", + "chain": "NGL", + "icon": "ngl", + "rpc": [ + "https://evm-testnet.entangle.fi" + ], + "faucets": [], + "nativeCurrency": { + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 + }, + "infoURL": "https://www.entangle.fi", + "shortName": "tngl", + "chainId": 33133, + "networkId": 33133, + "explorers": [] + }, + { + "name": "Funki", + "chain": "ETH", + "icon": "funki", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://funkichain.com", + "shortName": "funki", + "chainId": 33979, + "networkId": 33979, + "explorers": [ + { + "name": "Funki Mainnet Explorer", + "url": "https://mainnet.funkichain.com", + "standard": "none" + } + ] + }, + { + "name": "PRM Mainnet", + "chain": "prm", + "icon": "prmIcon", + "rpc": [ + "https://mainnet-rpc.prmscan.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 + }, + "infoURL": "https://primalnetwork.org", + "shortName": "prm", + "chainId": 39656, + "networkId": 39656, + "explorers": [ + { + "name": "Primal Network", + "url": "https://prmscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "AgentLayer Testnet", + "chain": "AgentLayer", + "icon": "agentLayerIcon", + "rpc": [ + "https://testnet-rpc.agentlayer.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Agent", + "symbol": "AGENT", + "decimals": 18 + }, + "infoURL": "https://agentlayer.xyz/home", + "shortName": "agent", + "chainId": 42072, + "networkId": 42072, + "explorers": [ + { + "name": "AgentLayer Testnet Explorer", + "url": "https://testnet-explorer.agentlayer.xyz", + "standard": "EIP3091" + } + ] + }, + { + "name": "Etherlink Mainnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 42793, + "networkId": 42793, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://etherlink.com", + "shortName": "etlk", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": [ + "https://node.mainnet.etherlink.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Etherlink Explorer", + "url": "https://explorer.etherlink.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hemi Network", + "chain": "ETH", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hemi.xyz", + "shortName": "hemi", + "chainId": 43111, + "networkId": 43111, + "icon": "hemi", + "explorers": [], + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "status": "incubating" + }, + { + "name": "Quantum Network", + "chain": "Quantum", + "rpc": [ + "https://rpcqtm.avescoin.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Quantum", + "symbol": "QTM", + "decimals": 18 + }, + "infoURL": "https://avescoin.io/", + "shortName": "QTM", + "chainId": 44445, + "networkId": 44445, + "icon": "quantum", + "explorers": [ + { + "name": "Quantum Explorer", + "url": "https://qtm.avescoin.io", + "icon": "quantum", + "standard": "EIP3091" + } + ] + }, + { + "name": "Swamps L2", + "chain": "SWP", + "icon": "swamps", + "rpc": [ + "https://swamps.tc.l2aas.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SWP", + "symbol": "SWP", + "decimals": 18 + }, + "infoURL": "https://www.swamps.fi", + "shortName": "SWP", + "chainId": 45454, + "networkId": 45454, + "explorers": [ + { + "name": "blockscout", + "url": "https://swamps-explorer.tc.l2aas.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "DODOchain testnet", + "title": "DODOchain testnet", + "chain": "DODOchain", + "icon": "dodochain_testnet", + "rpc": [ + "https://dodochain-testnet.alt.technology", + "wss://dodochain-testnet.alt.technology/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "DODO", + "symbol": "DODO", + "decimals": 18 + }, + "infoURL": "https://www.dodochain.com", + "shortName": "dodochain", + "chainId": 53457, + "networkId": 53457, + "explorers": [ + { + "name": "DODOchain Testnet (Sepolia) Explorer", + "url": "https://testnet-scan.dodochain.com", + "icon": "dodochain_testnet", + "standard": "EIP3091" + } + ] + }, + { + "name": "Photon Testnet", + "chain": "Photon", + "rpc": [ + "https://rpc-test.photonchain.io" + ], + "faucets": [ + "https://photonchain.io/airdrop" + ], + "nativeCurrency": { + "name": "Photon", + "symbol": "PTON", + "decimals": 18 + }, + "infoURL": "https://photonchain.io", + "shortName": "pton", + "chainId": 54555, + "networkId": 54555, + "explorers": [ + { + "name": "photon_testnet_explorer", + "url": "https://testnet.photonchain.io", + "standard": "none" + } + ] + }, + { + "name": "Lambda Chain Mainnet", + "chain": "Lambda Chain", + "rpc": [ + "https://nrpc.lambda.im/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "lambda", + "chainId": 56026, + "networkId": 56026, + "slip44": 1, + "icon": "lambda-chain", + "explorers": [ + { + "name": "Lambda Chain Mainnet Explorer", + "url": "https://scan.lambda.im", + "standard": "EIP3091" + } + ] + }, + { + "name": "Testnet Zeroone Subnet", + "chain": "TESTNETZER", + "rpc": [ + "https://subnets.avax.network/testnetzer/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "infoURL": "https://zeroone.art/", + "shortName": "testnetzer", + "chainId": 56400, + "networkId": 56400, + "explorers": [ + { + "name": "TESTNETZER Explorer", + "url": "https://subnets-test.avax.network/testnetzer", + "standard": "EIP3091" + } + ] + }, + { + "name": "Linea Sepolia", + "title": "Linea Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia.linea.build", + "wss://rpc.sepolia.linea.build", + "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-sepolia", + "chainId": 59141, + "networkId": 59141, + "slip44": 1, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://bridge.linea.build/" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.sepolia.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active" + }, + { + "name": "BOB", + "chain": "ETH", + "rpc": [ + "https://rpc.gobob.xyz", + "wss://rpc.gobob.xyz", + "https://bob-mainnet.public.blastapi.io", + "wss://bob-mainnet.public.blastapi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gobob.xyz", + "shortName": "bob", + "chainId": 60808, + "networkId": 60808, + "icon": "bob", + "explorers": [ + { + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://app.gobob.xyz" + } + ] + } + }, + { + "name": "KaiChain", + "chain": "KaiChain", + "rpc": [ + "https://mainnet-rpc.kaichain.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "KaiChain Native Token", + "symbol": "KEC", + "decimals": 18 + }, + "infoURL": "https://kaichain.net", + "shortName": "kec", + "chainId": 61406, + "networkId": 61406, + "explorers": [ + { + "name": "KaiChain Explorer", + "url": "https://explorer.kaichain.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "OPTOPIA Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc-testnet.optopia.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://optopia.ai", + "shortName": "OPTOPIA-Testnet", + "chainId": 62049, + "networkId": 62049, + "icon": "optopia", + "explorers": [ + { + "name": "optopia-testnet-scan", + "url": "https://scan-testnet.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge-testnet.optopia.ai" + } + ] + } + }, + { + "name": "Optopia Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc-mainnet.optopia.ai", + "https://rpc-mainnet-2.optopia.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://optopia.ai", + "shortName": "Optopia", + "chainId": 62050, + "networkId": 62050, + "icon": "optopia", + "explorers": [ + { + "name": "optopia-scan", + "url": "https://scan.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.optopia.ai" + } + ] + } + }, + { + "name": "Citrea Devnet", + "chain": "Citrea", + "rpc": [ + "https://rpc.devnet.citrea.xyz" + ], + "faucets": [ + "https://citrea.xyz/bridge" + ], + "nativeCurrency": { + "name": "Citrea BTC", + "symbol": "cBTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://citrea.xyz", + "shortName": "citrea-devnet", + "chainId": 62298, + "networkId": 62298, + "icon": "citrea", + "explorers": [ + { + "name": "Citrea Devnet Explorer", + "url": "https://explorer.devnet.citrea.xyz", + "icon": "citrea", + "standard": "EIP3091" + } + ] + }, + { + "name": "PLYR TAU Testnet", + "chain": "PLYR", + "icon": "plyr", + "rpc": [ + "https://subnets.avax.network/plyr/testnet/rpc" + ], + "faucets": [ + "https://faucet.avax.network/?subnet=plyr" + ], + "nativeCurrency": { + "name": "PLYR", + "symbol": "PLYR", + "decimals": 18 + }, + "infoURL": "https://plyr.network", + "shortName": "plyr-tau-testnet", + "chainId": 62831, + "networkId": 62831, + "slip44": 1, + "explorers": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/plyr", + "standard": "EIP3091" + } + ] + }, + { + "name": "Proof of Play - Apex", + "chainId": 70700, + "shortName": "pop-apex", + "chain": "ETH", + "networkId": 70700, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rpc.apex.proofofplay.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Proof of Play Apex Explorer", + "url": "https://explorer.apex.proofofplay.com", + "icon": "pop-apex", + "standard": "EIP3091" + } + ], + "infoURL": "https://proofofplay.com", + "icon": "pop-apex", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + }, + { + "url": "https://relay.link/bridge/apex/" + } + ] + } + }, + { + "name": "CAGA crypto Ankara testnet", + "chain": "Ankara", + "rpc": [ + "https://www.ankara-cagacrypto.com", + "wss://wss.ankara-cagacrypto.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Caga", + "symbol": "CAGA", + "decimals": 18 + }, + "infoURL": "https://www.cagacrypto.com/", + "shortName": "caga", + "chainId": 72778, + "networkId": 72778, + "icon": "ankaracaga", + "explorers": [ + { + "name": "ankara", + "url": "https://explorer.ankara-cagacrypto.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "ICB Testnet", + "chain": "ICBT", + "icon": "icbnetwork", + "rpc": [ + "https://rpc1-testnet.icbnetwork.info/", + "https://rpc2-testnet.icbnetwork.info/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ICB Testnet Token", + "symbol": "ICBT", + "decimals": 18 + }, + "infoURL": "https://icb.network", + "shortName": "ICBT", + "chainId": 73114, + "networkId": 73114, + "explorers": [ + { + "name": "ICB Tesnet Explorer", + "url": "https://testnet.icbscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "ICB Network", + "chain": "ICB", + "icon": "icbnetwork", + "rpc": [ + "https://rpc1-mainnet.icbnetwork.info/", + "https://rpc2-mainnet.icbnetwork.info/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ICB Native Token", + "symbol": "ICBX", + "decimals": 18 + }, + "infoURL": "https://icb.network", + "shortName": "ICBX", + "chainId": 73115, + "networkId": 73115, + "explorers": [ + { + "name": "ICB Explorer", + "url": "https://icbscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "GEEK Verse Mainnet", + "chain": "GEEK", + "rpc": [ + "https://rpc.geekout-pte.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Geek", + "symbol": "GEEK", + "decimals": 18 + }, + "infoURL": "https://www.geekout-pte.com", + "shortName": "GEEK", + "chainId": 75512, + "networkId": 75512, + "explorers": [ + { + "name": "Geek Explorer", + "url": "https://explorer.geekout-pte.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "GEEK Verse Testnet", + "chain": "GEEK Test", + "rpc": [ + "https://rpc-testnet.geekout-pte.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Geek", + "symbol": "GEEK", + "decimals": 18 + }, + "infoURL": "https://www.geekout-pte.com", + "shortName": "GEEK_Test", + "chainId": 75513, + "networkId": 75513, + "explorers": [ + { + "name": "Geek Testnet Explorer", + "url": "https://explorer-testnet.geekout-pte.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "BORAchain mainnet", + "chain": "BORA", + "icon": "bora", + "rpc": [ + "https://public-node.api.boraportal.com/bora/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "BGAS", + "symbol": "BGAS", + "decimals": 18 + }, + "infoURL": "https://www.boraportal.com", + "shortName": "BORAchain", + "chainId": 77001, + "networkId": 77001, + "slip44": 8217, + "explorers": [ + { + "name": "BORAchainscope", + "url": "https://scope.boraportal.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Amoy", + "title": "Polygon Amoy Testnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-amoy.polygon.technology", + "https://polygon-amoy-bor-rpc.publicnode.com", + "wss://polygon-amoy-bor-rpc.publicnode.com" + ], + "faucets": [ + "https://faucet.polygon.technology/" + ], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "polygonamoy", + "chainId": 80002, + "networkId": 80002, + "slip44": 1, + "explorers": [ + { + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } + ] + }, + { + "name": "ZEDXION", + "chain": "ZEDXION", + "icon": "zedx", + "rpc": [ + "https://mainnet-rpc.zedscan.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zedxion", + "symbol": "ZEDX", + "decimals": 9 + }, + "infoURL": "https://docs.zedscan.net", + "shortName": "ZEDX", + "chainId": 83872, + "networkId": 83872, + "explorers": [ + { + "name": "Zedscan", + "url": "http://zedscan.net", + "standard": "EIP3091" + } + ] + }, + { + "name": "Inoai Network", + "chain": "INOAI", + "faucets": [], + "rpc": [ + "https://inoai-network.com" + ], + "nativeCurrency": { + "name": "Inoai", + "symbol": "INO", + "decimals": 18 + }, + "infoURL": "https://inoai.info", + "shortName": "INOAI", + "chainId": 88559, + "networkId": 88559, + "icon": "inoai", + "explorers": [ + { + "name": "inoai live", + "url": "https://inoai.live", + "standard": "none" + } + ] + }, + { + "name": "Unit Zero Testnet", + "chain": "Unit Zero", + "rpc": [ + "https://rpc-testnet.unit0.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://units.network", + "shortName": "unit0-testnet", + "chainId": 88817, + "networkId": 88817, + "explorers": [ + { + "name": "explorer-testnet", + "url": "https://explorer-testnet.unit0.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "Unit Zero Stagenet", + "chain": "Unit Zero", + "rpc": [ + "https://rpc-stagenet.unit0.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://units.network", + "shortName": "unit0-stagenet", + "chainId": 88819, + "networkId": 88819, + "explorers": [ + { + "name": "explorer-stagenet", + "url": "https://explorer-stagenet.unit0.dev", + "standard": "EIP3091" + } + ] + }, + { + "name": "Chiliz Spicy Testnet", + "chain": "CHZ", + "rpc": [ + "https://spicy-rpc.chiliz.com" + ], + "faucets": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" + ], + "nativeCurrency": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "icon": "chilizspicy", + "infoURL": "https://www.chiliz.com/en/chain", + "shortName": "chzspicy", + "chainId": 88882, + "networkId": 88882, + "slip44": 1, + "explorers": [ + { + "name": "spicy-explorer", + "url": "https://testnet.chiliscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "F(x)Core Testnet Network", + "chain": "Fxcore", + "rpc": [ + "https://testnet-fx-json-web3.functionx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "infoURL": "https://functionx.io/", + "shortName": "dhobyghaut", + "chainId": 90001, + "networkId": 90001, + "icon": "fxcore" + }, + { + "name": "Camp Testnet", + "chain": "ETH", + "icon": "camp", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": [ + "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" + ], + "faucets": [ + "https://www.campnetwork.xyz/faucet" + ], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://campaign-1.gitbook.io/camp-technical-docså", + "shortName": "camp", + "chainId": 90354, + "networkId": 90354, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://camp-testnet-bridge.vercel.app/" + } + ] + } + }, + { + "name": "Green Chain Testnet", + "chain": "Green Chain", + "icon": "greenchain", + "rpc": [ + "https://node.greenchain.app/rpc/" + ], + "faucets": [], + "nativeCurrency": { + "name": "GREEN", + "symbol": "GREEN", + "decimals": 18 + }, + "infoURL": "https://www.greenchain.app", + "shortName": "greenchain", + "chainId": 97531, + "networkId": 97531, + "explorers": [ + { + "name": "Green Chain Explorer", + "url": "https://explorer.greenchain.app", + "standard": "EIP3091" + } + ] + }, + { + "name": "OptimusZ7 Testnet", + "chain": "OptimusZ7", + "icon": "OZ7Icon", + "rpc": [ + "https://testnet-rpc.optimusz7.com" + ], + "faucets": [ + "https://faucet.optimusz7.com" + ], + "nativeCurrency": { + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 + }, + "infoURL": "http://optimusz7.com", + "shortName": "OZ7t", + "chainId": 97970, + "networkId": 97970, + "explorers": [ + { + "name": "OptimusZ7 Testnet Explorer", + "url": "https://testnet.optimusz7.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Ebi Chain", + "title": "Ebi Chain", + "chain": "Ebi", + "rpc": [ + "https://rpc.ebi.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ebi.xyz", + "shortName": "ebi", + "chainId": 98881, + "networkId": 98881, + "status": "incubating" + }, + { + "name": "QuarkChain L2 Mainnet", + "chain": "QuarkChain", + "rpc": [ + "https://mainnet-l2-ethapi.quarkchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-l2", + "chainId": 100011, + "networkId": 100011, + "parent": { + "type": "L2", + "chain": "eip155-100000" + } + }, + { + "name": "Creditcoin Testnet", + "chain": "CTC", + "icon": "creditcoin", + "rpc": [ + "https://rpc.cc3-testnet.creditcoin.network" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "nativeCurrency": { + "name": "Testnet CTC", + "symbol": "tCTC", + "decimals": 18 + }, + "infoURL": "https://creditcoin.org", + "shortName": "ctctest", + "chainId": 102031, + "networkId": 102031, + "faucets": [], + "explorers": [ + { + "name": "blockscout", + "url": "https://creditcoin-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "KaspaClassic Mainnet", + "chain": "KaspaClassic", + "icon": "kaspaclassic", + "rpc": [ + "https://api.kaspaclassic.world/", + "http://80.178.101.118:8000/" + ], + "faucets": [], + "nativeCurrency": { + "name": "KaspaClassic", + "symbol": "CAS", + "decimals": 18 + }, + "infoURL": "https://kaspaclassic.com/", + "shortName": "cas", + "chainId": 104566, + "networkId": 104566, + "explorers": [ + { + "name": "KaspaClassic Explorer", + "url": "https://explorer.kaspaclassic.world", + "standard": "none" + } + ] + }, + { + "name": "Stratis Mainnet", + "chain": "Stratis", + "rpc": [ + "https://rpc.stratisevm.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Stratis", + "symbol": "STRAX", + "decimals": 18 + }, + "infoURL": "https://www.stratisplatform.com", + "shortName": "stratis", + "chainId": 105105, + "networkId": 105105, + "icon": "stratis", + "explorers": [ + { + "name": "Stratis Explorer", + "url": "https://explorer.stratisevm.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "QuarkChain L2 Testnet", + "chain": "QuarkChain", + "rpc": [ + "https://testnet-l2-ethapi.quarkchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "infoURL": "https://www.quarkchain.io", + "shortName": "qkc-l2-t", + "chainId": 110011, + "networkId": 110011, + "parent": { + "type": "L2", + "chain": "eip155-110000" + } + }, + { + "name": "re.al", + "title": "re.al Real-World Assets network", + "chain": "re.al", + "rpc": [ + "https://real.drpc.org", + "wss://real.drpc.org" + ], + "nativeCurrency": { + "name": "re.al Ether", + "symbol": "reETH", + "decimals": 18 + }, + "infoURL": "https://re.al", + "faucets": [], + "shortName": "re-al", + "chainId": 111188, + "networkId": 111188, + "slip44": 60, + "icon": "real", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://re.al/bridge" + }, + { + "url": "https://bridge.gelato.network/bridge/real" + } + ] + } + }, + { + "name": "Odyssey Chain (Testnet)", + "chain": "DIONE", + "rpc": [ + "https://testnode.dioneprotocol.com/ext/bc/D/rpc" + ], + "faucets": [ + "https://faucet.dioneprotocol.com/" + ], + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://www.dioneprotocol.com/", + "shortName": "DIONE", + "chainId": 131313, + "networkId": 131313, + "icon": "odyssey", + "nativeCurrency": { + "name": "DIONE", + "symbol": "DIONE", + "decimals": 18 + } + }, + { + "name": "MagApe Testnet", + "title": "MagApeChain", + "chain": "MagApe", + "rpc": [ + "https://testnet-api.magape.io/chain/" + ], + "faucets": [], + "nativeCurrency": { + "name": "MagApe", + "symbol": "MAG", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://magape.io", + "shortName": "mag", + "chainId": 141319, + "networkId": 141319, + "icon": "magape", + "explorers": [ + { + "name": "etherscan", + "url": "http://testnet-api.magape.io:81", + "icon": "magape", + "standard": "EIP3091" + } + ] + }, + { + "name": "PlayFi Mainnet", + "chain": "PLAY", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Play", + "symbol": "PLAY", + "decimals": 18 + }, + "infoURL": "https://www.playfi.ai/", + "shortName": "playfi", + "chainId": 161212, + "networkId": 161212, + "explorers": [], + "status": "incubating" + }, + { + "name": "Eclat Mainnet", + "chain": "Eclat", + "icon": "eclat", + "rpc": [ + "https://mainnet-rpc.eclatscan.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclat", + "symbol": "ECLAT", + "decimals": 18 + }, + "infoURL": "https://eclatscan.com", + "shortName": "ECLAT", + "chainId": 165279, + "networkId": 165279, + "explorers": [ + { + "name": "Eclat Mainnet Explorer", + "url": "https://eclatscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taiko Mainnet", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": [ + "https://rpc.mainnet.taiko.xyz", + "wss://ws.mainnet.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-mainnet", + "chainId": 167000, + "networkId": 167000, + "explorers": [ + { + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Taiko Hekla L2", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": [ + "https://rpc.hekla.taiko.xyz", + "wss://ws.hekla.taiko.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-hekla", + "chainId": 167009, + "networkId": 167009, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscoutapi.hekla.taiko.xyz", + "standard": "EIP3091" + }, + { + "name": "routescan", + "url": "https://hekla.taikoscan.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "Mind Network Testnet", + "chain": "FHET", + "rpc": [ + "https://rpc-testnet.mindnetwork.xyz", + "wss://rpc-testnet.mindnetwork.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "FHE", + "symbol": "FHE", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://mindnetwork.xyz", + "shortName": "fhet", + "chainId": 192940, + "networkId": 192940 + }, + { + "name": "xFair.AI Testnet", + "chain": "FAIT", + "rpc": [ + "https://rpc_testnet.xfair.ai", + "wss://rpc_testnet.xfair.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "FAI", + "symbol": "FAI", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://xfair.ai", + "shortName": "fait", + "chainId": 200000, + "networkId": 200000 + }, + { + "name": "Bitlayer Mainnet", + "chain": "Bitlayer", + "rpc": [ + "https://rpc.bitlayer.org", + "https://rpc.bitlayer-rpc.com", + "https://rpc.ankr.com/bitlayer", + "https://rpc-bitlayer.rockx.com", + "wss://ws.bitlayer.org", + "wss://ws.bitlayer-rpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://docs.bitlayer.org/", + "shortName": "btr", + "chainId": 200901, + "networkId": 200901, + "slip44": 1, + "icon": "bitlayer", + "explorers": [ + { + "name": "bitlayer mainnet scan", + "url": "https://www.btrscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "YMTECH-BESU Testnet", + "chain": "YMTECH-BESU", + "rpc": [ + "http://39.119.118.216:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.ymtech.co.kr", + "shortName": "YMTECH-BESU", + "chainId": 202401, + "networkId": 202401, + "explorers": [ + { + "name": "YMTECH-BESU Chainlens", + "url": "http://39.119.118.198", + "standard": "none" + } + ] + }, + { + "name": "Auroria Testnet", + "title": "Stratis Testnet Auroria", + "chain": "Auroria", + "rpc": [ + "https://auroria.rpc.stratisevm.com" + ], + "faucets": [ + "https://auroria.faucet.stratisevm.com" + ], + "nativeCurrency": { + "name": "Auroria Stratis", + "symbol": "tSTRAX", + "decimals": 18 + }, + "infoURL": "https://www.stratisplatform.com", + "shortName": "auroria", + "chainId": 205205, + "networkId": 205205, + "icon": "auroria", + "explorers": [ + { + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.stratisevm.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "GitAGI Atlas Testnet", + "chain": "GitAGI", + "rpc": [ + "https://rpc.gitagi.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "GitAGI", + "symbol": "tGAGI", + "decimals": 18 + }, + "infoURL": "https://gitagi.org/", + "shortName": "atlas", + "chainId": 210049, + "networkId": 210049 + }, + { + "name": "HydraDX", + "chain": "HDX", + "rpc": [ + "https://rpc.hydradx.cloud", + "wss://rpc.hydradx.cloud" + ], + "faucets": [], + "nativeCurrency": { + "name": "Wrapped ETH", + "symbol": "WETH", + "decimals": 18 + }, + "infoURL": "https://hydradx.io", + "shortName": "hdx", + "chainId": 222222, + "networkId": 222222, + "icon": "hydradx", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.evm.hydration.cloud", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeepL Mainnet", + "chain": "DEEPL", + "rpc": [ + "https://rpc.deeplnetwork.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://deeplnetwork.org", + "shortName": "deepl", + "chainId": 222555, + "networkId": 222555, + "icon": "deepl", + "explorers": [ + { + "name": "DeepL Mainnet Explorer", + "url": "https://scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeepL Testnet", + "chain": "DEEPL", + "rpc": [ + "https://testnet.deeplnetwork.org" + ], + "faucets": [ + "https://faucet.deeplnetwork.org" + ], + "nativeCurrency": { + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://deeplnetwork.org", + "shortName": "tdeepl", + "chainId": 222666, + "networkId": 222666, + "icon": "deepl", + "explorers": [ + { + "name": "DeepL Testnet Explorer", + "url": "https://testnet-scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } + ] + }, + { + "name": "Orange Chain Testnet", + "title": "Orange Chain Testnet", + "chain": "Orange Chain", + "rpc": [ + "https://testnet-rpc.orangechain.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://orangechain.xyz", + "shortName": "Orange-Chain-Testnet", + "chainId": 240515, + "networkId": 240515, + "icon": "orange", + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-scan.orangechain.xyz", + "icon": "orange", + "standard": "EIP3091" + } + ] + }, + { + "name": "Eclat Testnet", + "chain": "Eclat", + "icon": "eclat", + "rpc": [ + "https://testnet-rpc.eclatscan.com" + ], + "faucets": [ + "https://faucet.eclatscan.com" + ], + "nativeCurrency": { + "name": "Eclat Testnet", + "symbol": "ECLAT", + "decimals": 18 + }, + "infoURL": "https://testnet-explorer.eclatscan.com", + "shortName": "tECLAT", + "chainId": 262371, + "networkId": 262371, + "explorers": [ + { + "name": "Eclat Testnet Explorer", + "url": "https://testnet-explorer.eclatscan.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Zillion Sepolia Testnet", + "status": "active", + "chain": "ETH", + "rpc": [ + "https://sepolia.zillnet.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zillnet.io", + "shortName": "zillsep", + "chainId": 282828, + "networkId": 282828, + "slip44": 1, + "icon": "zillion", + "explorers": [ + { + "name": "zillscout", + "url": "https://sepolia.zillnet.io", + "icon": "zillion", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + } + }, + { + "name": "One World Chain Mainnet", + "chain": "One World Chain", + "icon": "oneWorldChainIcon", + "rpc": [ + "https://mainnet-rpc.oneworldchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 + }, + "infoURL": "https://oneworldchain.org", + "shortName": "OWCTm", + "chainId": 309075, + "networkId": 309075, + "explorers": [ + { + "name": "One World Chain Mainnet Explorer", + "url": "https://mainnet.oneworldchain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "SaharaAI Testnet", + "chain": "Sahara", + "rpc": [ + "https://testnet.saharalabs.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "SAHARA", + "symbol": "SAH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://saharalabs.ai", + "shortName": "saharatest", + "chainId": 313313, + "networkId": 313313, + "icon": "sahara", + "explorers": [ + { + "name": "Testnet Scan", + "url": "https://explorer.saharaa.info", + "standard": "EIP3091" + } + ] + }, + { + "name": "Parex Mainnet", + "title": "Parex Mainnet", + "chain": "Parex", + "rpc": [ + "https://mainnet-rpc.parex.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "PAREX", + "symbol": "PRX", + "decimals": 18 + }, + "infoURL": "https://parex.network", + "shortName": "parex", + "chainId": 322202, + "networkId": 322202, + "icon": "parexmain", + "explorers": [ + { + "name": "Parex Mainnet Explorer", + "url": "https://scan.parex.network", + "icon": "parexmain", + "standard": "EIP3091" + } + ] + }, + { + "name": "UPchain Testnet", + "chain": "UPchain", + "rpc": [ + "https://rpc-testnet.uniport.network" + ], + "faucets": [ + "https://faucet-testnet.uniport.network" + ], + "nativeCurrency": { + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://uniport.network", + "shortName": "UPchain-testnet", + "chainId": 336655, + "networkId": 336655, + "icon": "up", + "explorers": [ + { + "name": "UPchain Testnet Explorer", + "url": "https://explorer-testnet.uniport.network", + "icon": "up", + "standard": "EIP3091" + } + ] + }, + { + "name": "UPchain Mainnet", + "chain": "UPchain", + "rpc": [ + "https://rpc.uniport.network" + ], + "nativeCurrency": { + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "infoURL": "https://uniport.network", + "shortName": "UPchain-mainnet", + "chainId": 336666, + "networkId": 336666, + "icon": "up", + "explorers": [ + { + "name": "UPchain Mainnet Explorer", + "url": "https://explorer.uniport.network", + "icon": "up", + "standard": "EIP3091" + } + ] + }, + { + "name": "Bitfinity Network Mainnet", + "chain": "BFT", + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "rpc": [ + "https://mainnet.bitfinity.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitfinity Token", + "symbol": "BFT", + "decimals": 18 + }, + "infoURL": "https://bitfinity.network", + "shortName": "bitfinity-mainnet", + "chainId": 355110, + "networkId": 355110, + "explorers": [ + { + "name": "Bitfinity Mainnet Block Explorer", + "url": "https://explorer.mainnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + } + ] + }, + { + "name": "LAVITA Mainnet", + "chain": "LAVITA", + "icon": "lavita", + "rpc": [ + "https://tsub360890-eth-rpc.thetatoken.org/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "vTFUEL", + "symbol": "vTFUEL", + "decimals": 18 + }, + "infoURL": "https://www.lavita.ai", + "shortName": "lavita-mainnet", + "chainId": 360890, + "networkId": 360890, + "explorers": [ + { + "name": "LAVITA Mainnet Explorer", + "url": "https://tsub360890-explorer.thetatoken.org", + "icon": "lavita", + "standard": "EIP3091" + } + ] + }, + { + "name": "AIE Testnet", + "chain": "AIE", + "rpc": [ + "https://rpc1-testnet.aiechain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "AIE", + "symbol": "tAIE", + "decimals": 18 + }, + "infoURL": "https://testnet.aiescan.io", + "shortName": "aiet", + "chainId": 413413, + "networkId": 413413, + "icon": "aie", + "explorers": [ + { + "name": "aiescan-testnet", + "icon": "aie", + "url": "https://testnet.aiescan.io", + "standard": "none" + } + ] + }, + { + "name": "Playdapp Network", + "chain": "PDA", + "icon": "pda", + "rpc": [ + "https://subnets.avax.network/playdappne/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 + }, + "infoURL": "https://playdapp.io", + "shortName": "PDA", + "chainId": 504441, + "networkId": 504441, + "explorers": [ + { + "name": "Playdapp Explorer", + "url": "https://subnets.avax.network/playdappne", + "standard": "EIP3091" + } + ] + }, + { + "name": "DoCoin Community Chain", + "title": "DoCoin Community Chain", + "chain": "DoCoin", + "rpc": [ + "https://rpc.docoin.shop" + ], + "faucets": [], + "nativeCurrency": { + "name": "DO", + "symbol": "DCT", + "decimals": 18 + }, + "infoURL": "https://docoin.network", + "shortName": "DoCoin", + "chainId": 526916, + "networkId": 526916, + "explorers": [ + { + "name": "DoCoin Community Chain Explorer", + "url": "https://explorer.docoin.shop", + "standard": "EIP3091" + } + ] + }, + { + "name": "One World Chain Testnet", + "chain": "One World Chain", + "icon": "oneWorldChainIcon", + "rpc": [ + "https://testnet-rpc.oneworldchain.org" + ], + "faucets": [ + "https://faucet.oneworldchain.org" + ], + "nativeCurrency": { + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 + }, + "infoURL": "https://oneworldchain.org", + "shortName": "OWCTt", + "chainId": 552981, + "networkId": 552981, + "explorers": [ + { + "name": "One World Chain Testnet Explorer", + "url": "https://testnet.oneworldchain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Eclipse Testnet", + "chain": "ECLIPSE", + "rpc": [ + "https://subnets.avax.network/eclipsecha/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclipse", + "symbol": "ECLPS", + "decimals": 18 + }, + "infoURL": "http://eclipsenet.io", + "shortName": "eclipset", + "chainId": 555666, + "networkId": 555666, + "explorers": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "standard": "EIP3091" + } + ] + }, + { + "name": "Xai Mainnet", + "chainId": 660279, + "shortName": "xai", + "chain": "XAI", + "networkId": 660279, + "nativeCurrency": { + "name": "Xai", + "symbol": "XAI", + "decimals": 18 + }, + "rpc": [ + "https://xai-chain.net/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.xai-chain.net", + "standard": "EIP3091" + } + ], + "infoURL": "https://xai.games" + }, + { + "name": "Won Network", + "chainId": 686868, + "shortName": "WonChain", + "chain": "WON", + "icon": "won", + "networkId": 686868, + "nativeCurrency": { + "name": "Won", + "symbol": "WON", + "decimals": 18 + }, + "rpc": [ + "https://rpc.wonnetwork.org" + ], + "faucets": [ + "https://faucet.wondollars.org" + ], + "explorers": [ + { + "name": "Won Explorer", + "url": "https://scan.wonnetwork.org", + "standard": "EIP3091" + } + ], + "infoURL": "https://wonnetwork.org" + }, + { + "name": "Galadriel Devnet", + "chain": "Galadriel", + "rpc": [ + "https://devnet.galadriel.com" + ], + "faucets": [ + "https://docs.galadriel.com/faucet" + ], + "nativeCurrency": { + "name": "Galadriel Devnet token", + "symbol": "GAL", + "decimals": 18 + }, + "infoURL": "https://galadriel.com", + "shortName": "galadriel-devnet", + "chainId": 696969, + "networkId": 696969, + "explorers": [ + { + "name": "Galadriel Explorer", + "url": "https://explorer.galadriel.com", + "standard": "none" + } + ] + }, + { + "name": "Tiltyard Mainnet Subnet", + "chain": "TILTYARD", + "rpc": [ + "https://subnets.avax.network/tiltyard/mainnet/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "TILT", + "symbol": "TILT", + "decimals": 18 + }, + "infoURL": "https://play.tiltyard.gg/", + "shortName": "tiltyardmainnet", + "chainId": 710420, + "networkId": 710420, + "explorers": [ + { + "name": "TILTYARD Explorer", + "url": "https://subnets.avax.network/tiltyard", + "standard": "EIP3091" + } + ] + }, + { + "name": "Hemi Sepolia", + "chain": "ETH", + "rpc": [ + "https://testnet.rpc.hemi.network/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://hemi.xyz", + "shortName": "hemi-sep", + "chainId": 743111, + "networkId": 743111, + "icon": "hemi", + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "status": "active" + }, + { + "name": "Lamina1 Testnet", + "chain": "Lamina1 Testnet", + "rpc": [ + "https://subnets.avax.network/lamina1tes/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Lamina1 Test", + "symbol": "L1T", + "decimals": 18 + }, + "infoURL": "https://fuji.lamina1.com/", + "shortName": "lamina1test", + "chainId": 764984, + "networkId": 764984, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Test Explorer", + "url": "https://subnets-test.avax.network/lamina1tes", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lamina1 Identity Testnet", + "chain": "Lamina1 Identity Testnet", + "rpc": [ + "https://subnets.avax.network/lamina1id/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1ID Test", + "symbol": "L1IDT", + "decimals": 18 + }, + "infoURL": "https://fuji.lamina1.com/", + "shortName": "lamina1idtest", + "chainId": 767368, + "networkId": 767368, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Identity Testnet Explorer", + "url": "https://subnets-test.avax.network/lamina1id", + "standard": "EIP3091" + } + ] + }, + { + "name": "BIZ Smart Chain Testnet", + "chain": "BIZT Testnet", + "rpc": [ + "https://rpc-testnet.bizex.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "tBIZT", + "symbol": "tBIZT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.biztoken.io/", + "shortName": "bizt-testnet", + "chainId": 808080, + "networkId": 808080, + "slip44": 1, + "icon": "biz", + "explorers": [ + { + "name": "BIZ Smart Chain Testnet Explorer", + "url": "https://testnet.btscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "zkLink Nova Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.rpc.zklink.io", + "wss://sepolia.rpc.zklink.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zklink.io", + "shortName": "zklink-nova-sepolia", + "chainId": 810181, + "networkId": 810181, + "slip44": 1, + "icon": "zklink-nova", + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://sepolia.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-59141", + "bridges": [ + { + "url": "https://sepolia.portal.zklink.io" + } + ] + } + }, + { + "name": "zkLink Nova Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.rpc.zklink.io", + "wss://goerli.rpc.zklink.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zklink.io", + "shortName": "zklink-nova-goerli", + "chainId": 810182, + "networkId": 810182, + "slip44": 1, + "icon": "zklink-nova", + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://goerli.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-59140", + "bridges": [ + { + "url": "https://goerli.portal.zklink.io" + } + ] + } + }, + { + "name": "TSC Testnet", + "chain": "Trust Smart Chain Testnet", + "rpc": [ + "https://testnet.tscscan.io/testrpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "TAS", + "symbol": "tTAS", + "decimals": 18 + }, + "infoURL": "https://www.trias.one", + "shortName": "tTSC", + "icon": "netx", + "chainId": 820522, + "networkId": 820025, + "explorers": [ + { + "name": "tscscan", + "url": "https://testnet.tscscan.io", + "icon": "netxscan", + "standard": "none" + } + ] + }, + { + "name": "PRM Testnet", + "chain": "prm", + "icon": "prmIcon", + "rpc": [ + "https://testnet-rpc.prmscan.org" + ], + "faucets": [ + "https://faucet.prmscan.org" + ], + "nativeCurrency": { + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 + }, + "infoURL": "https://primalnetwork.org", + "shortName": "prmtest", + "chainId": 839320, + "networkId": 839320, + "explorers": [ + { + "name": "Primal Network Testnet", + "url": "https://testnet-explorer.prmscan.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "REXX Mainnet", + "title": "REXX Mainnet", + "chain": "REXX", + "rpc": [ + "https://rpc.rexxnetwork.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "REXX", + "symbol": "REXX", + "decimals": 18 + }, + "infoURL": "https://rexxnetwork.com", + "shortName": "REXX", + "chainId": 888882, + "networkId": 888882, + "explorers": [ + { + "name": "REXX Mainnet Explorer", + "url": "https://rexxnetwork.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Forma", + "chain": "Forma", + "rpc": [ + "https://rpc.forma.art" + ], + "faucets": [], + "nativeCurrency": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://forma.art", + "shortName": "forma", + "chainId": 984122, + "networkId": 984122, + "icon": "forma", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Forma Sketchpad", + "chain": "Forma", + "rpc": [ + "https://rpc.sketchpad-1.forma.art" + ], + "faucets": [], + "nativeCurrency": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://forma.art", + "shortName": "sketchpad", + "chainId": 984123, + "networkId": 984123, + "icon": "forma", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sketchpad-1.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } + ] + }, + { + "name": "Netmind Chain Testnet", + "title": "NetMind Chain Testnet", + "chain": "NetMind", + "rpc": [ + "https://testblock.protago-dev.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "NMT", + "symbol": "NMT", + "decimals": 18 + }, + "infoURL": "https://netmind.ai", + "shortName": "nmtTest", + "chainId": 1100789, + "networkId": 1100789, + "icon": "netmind", + "explorers": [ + { + "name": "NetMind Testnet Explorer", + "url": "https://testbrower.protago-dev.com", + "icon": "netmind", + "standard": "EIP3091" + } + ] + }, + { + "name": "Automata Testnet", + "chain": "Automata Testnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ata.network", + "shortName": "automatatest", + "chainId": 1398243, + "networkId": 1398243, + "icon": "automata", + "explorers": [] + }, + { + "name": "PlayFi Albireo Testnet", + "chain": "ETH", + "rpc": [ + "https://albireo-rpc.playfi.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.playfi.ai/", + "shortName": "alberio", + "chainId": 1612127, + "networkId": 1612127, + "slip44": 1, + "explorers": [ + { + "name": "PlayFi Block Explorer", + "url": "https://albireo-explorer.playfi.ai", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.playfi.ai/bridge" + } + ] + } + }, + { + "name": "SaharaAI Network", + "chain": "Sahara", + "rpc": [ + "https://mainnet.saharalabs.ai" + ], + "faucets": [], + "nativeCurrency": { + "name": "SAHARA", + "symbol": "SAH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://saharalabs.ai", + "shortName": "sahara", + "chainId": 3132023, + "networkId": 3132023, + "icon": "sahara", + "explorers": [] + }, + { + "name": "Funki Sepolia Sandbox", + "chain": "ETH", + "icon": "funki", + "rpc": [ + "https://funki-testnet.alt.technology" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://funkichain.com", + "shortName": "funkisepolia", + "chainId": 3397901, + "networkId": 3397901, + "explorers": [ + { + "name": "Funki Sepolia Sandbox Explorer", + "url": "https://sepolia-sandbox.funkichain.com", + "standard": "none" + } + ] + }, + { + "name": "Manta Pacific Sepolia Testnet", + "chain": "Manta Pacific", + "rpc": [ + "https://pacific-rpc.sepolia-testnet.manta.network/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://manta-testnet.caldera.dev/", + "shortName": "mantaSepoliaTestnet", + "chainId": 3441006, + "networkId": 3441006, + "slip44": 1, + "icon": "manta", + "explorers": [ + { + "name": "manta-testnet Explorer", + "url": "https://pacific-explorer.sepolia-testnet.manta.network", + "standard": "EIP3091" + } + ] + }, + { + "name": "NumBlock Chain", + "chain": "NumBlock", + "rpc": [ + "https://rpc-mainnet.numblock.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "NUMB Token", + "symbol": "NUMB", + "decimals": 18 + }, + "infoURL": "https://numblock.org", + "shortName": "NUMB", + "chainId": 5112023, + "networkId": 5112023, + "icon": "NumBlock", + "explorers": [ + { + "name": "NumBlock Explorer", + "url": "https://mainnet.numblock.org", + "standard": "none", + "icon": "NumBlock" + } + ] + }, + { + "name": "Moonchain Geneva Testnet", + "chain": "MXC zkEVM", + "icon": "mxc", + "rpc": [ + "https://geneva-rpc.moonchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Moonchain Geneva Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "infoURL": "https://doc.mxc.com/docs/intro", + "shortName": "MXC", + "chainId": 5167004, + "networkId": 5167004, + "slip44": 1, + "explorers": [ + { + "name": "Moonchain Geneva Testnet", + "url": "https://geneva-explorer.moonchain.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Reactive Kopli", + "title": "Reactive Network Testnet Kopli", + "chain": "REACT", + "rpc": [ + "https://kopli-rpc.reactive.network", + "http://kopli-rpc.rkt.ink" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://dev.reactive.network/docs/kopli-testnet#faucet" + ], + "nativeCurrency": { + "name": "Kopli React", + "symbol": "REACT", + "decimals": 18 + }, + "infoURL": "https://reactive.network", + "shortName": "kreact", + "icon": "reactive", + "chainId": 5318008, + "networkId": 5318008, + "explorers": [ + { + "name": "reactscan", + "url": "https://kopli.reactscan.net", + "standard": "none" + } + ] + }, + { + "name": "Astar zKyoto", + "shortName": "azkyt", + "title": "Astar zkEVM Testnet zKyoto", + "chain": "ETH", + "icon": "astarzk", + "rpc": [ + "https://rpc.startale.com/zkyoto", + "https://rpc.zkyoto.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 6038361, + "networkId": 6038361, + "explorers": [ + { + "name": "Blockscout zKyoto explorer", + "url": "https://astar-zkyoto.blockscout.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.astar.network" + }, + { + "url": "https://bridge.gelato.network/bridge/astar-zkyoto" + } + ] + } + }, + { + "name": "Safe(AnWang) Mainnet", + "chain": "Safe(AnWang)", + "icon": "safe-anwang", + "rpc": [ + "https://rpc.anwang.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 + }, + "infoURL": "https://www.anwang.com", + "shortName": "SafeMainnet", + "chainId": 6666665, + "networkId": 6666665, + "explorers": [ + { + "name": "Safe(AnWang) Explorer", + "url": "http://safe4.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } + ] + }, + { + "name": "Safe(AnWang) Testnet", + "chain": "Safe(AnWang)", + "icon": "safe-anwang", + "rpc": [ + "https://rpc-testnet.anwang.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 + }, + "infoURL": "https://www.anwang.com", + "shortName": "SafeTestnet", + "chainId": 6666666, + "networkId": 6666666, + "explorers": [ + { + "name": "Safe(AnWang) Testnet Explorer", + "url": "http://safe4-testnet.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } + ] + }, + { + "name": "Waterfall 8 Test Network", + "chain": "Waterfall Testnet8", + "rpc": [ + "https://rpc.testnet8.waterfall.network/" + ], + "faucets": [ + "https://faucet.testnet8.waterfall.network" + ], + "nativeCurrency": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://waterfall.network", + "shortName": "waterfall", + "chainId": 8601152, + "networkId": 8601152, + "icon": "waterfall", + "explorers": [] + }, + { + "name": "ALIENX Hal Testnet", + "chain": "ALIENX Hal", + "rpc": [ + "https://hal-rpc.alienxchain.io/http", + "https://hal.rpc.caldera.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://alienxchain.io/home", + "shortName": "ALIENXHal", + "chainId": 10241025, + "networkId": 10241025, + "icon": "hal", + "explorers": [ + { + "name": "Hal Explorer", + "url": "https://hal-explorer.alienxchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "COTI Devnet", + "title": "COTI Devnet", + "chain": "COTI", + "icon": "coti", + "rpc": [ + "https://devnet.coti.io/rpc" + ], + "faucets": [ + "https://faucet.coti.io" + ], + "nativeCurrency": { + "name": "COTI2", + "symbol": "COTI2", + "decimals": 18 + }, + "infoURL": "https://coti.io/", + "shortName": "coti-devnet", + "chainId": 13068200, + "networkId": 13068200, + "explorers": [ + { + "name": "coti devnet explorer", + "url": "https://explorer-devnet.coti.io", + "icon": "ethernal", + "standard": "EIP3091" + } + ] + }, + { + "name": "Lambda Chain Testnet", + "chain": "Lambda Chain", + "rpc": [ + "https://testnrpc.lambda.im/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lambda.im", + "shortName": "tlambda", + "chainId": 17000920, + "networkId": 17000920, + "slip44": 1, + "icon": "lambda-chain", + "explorers": [ + { + "name": "Lambda Chain Testnet Explorer", + "url": "https://testscan.lambda.im", + "standard": "EIP3091" + } + ] + }, + { + "name": "Stability Testnet", + "chain": "stabilityTestnet", + "icon": "stabilitytestnet", + "rpc": [ + "https://free.testnet.stabilityprotocol.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "FREE", + "symbol": "FREE", + "decimals": 18 + }, + "infoURL": "https://stabilityprotocol.com", + "shortName": "stabilitytestnet", + "chainId": 20180427, + "networkId": 20180427, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://stability-testnet.blockscout.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "DeBank Sepolia Testnet", + "chain": "DeBank", + "rpc": [ + "https://sepolia-rpc.testnet.debank.com" + ], + "faucets": [], + "icon": "debank", + "nativeCurrency": { + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://debank.com", + "shortName": "dbkse", + "chainId": 20240324, + "networkId": 20240324, + "slip44": 1, + "explorers": [ + { + "name": "DeBank Chain Explorer", + "url": "https://sepolia-explorer.testnet.debank.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "Swan Proxima Testnet", + "chain": "SWAN", + "rpc": [ + "https://rpc-proxima.swanchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 + }, + "infoURL": "https://swanchain.io/", + "shortName": "Proxima", + "chainId": 20241133, + "networkId": 20241133, + "explorers": [ + { + "name": "Swan Proxima Chain explorer", + "url": "https://proxima-explorer.swanchain.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kingdom Chain", + "chain": "KingdomChain", + "rpc": [ + "https://kingdomchain.observer/rpc" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Kozi", + "symbol": "KOZI", + "decimals": 18 + }, + "infoURL": "https://www.beastkingdom.io/", + "shortName": "kchain", + "chainId": 39916801, + "networkId": 39916801, + "explorers": [ + { + "name": "TravelSong", + "url": "https://www.beastkingdom.io/travelsong", + "standard": "EIP3091" + } + ] + }, + { + "name": "Autonity Bakerloo (Sumida) Testnet", + "chain": "AUT", + "rpc": [ + "https://rpc1.bakerloo.autonity.org/", + "wss://rpc1.bakerloo.autonity.org/ws/" + ], + "faucets": [ + "https://faucet.autonity.org/" + ], + "nativeCurrency": { + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "bakerloo-02", + "chainId": 65010002, + "networkId": 65010002, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Autonity Piccadilly (Sumida) Testnet", + "chain": "AUT", + "rpc": [ + "https://rpc1.piccadilly.autonity.org/", + "wss://rpc1.piccadilly.autonity.org/ws/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "infoURL": "https://autonity.org/", + "shortName": "piccadilly-02", + "chainId": 65100002, + "networkId": 65100002, + "slip44": 1, + "icon": "autonity", + "explorers": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "0xHash Testnet", + "chain": "HETH", + "icon": "ethereum", + "rpc": [ + "https://rpc-test.0xhash.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "0xHash", + "symbol": "HETH", + "decimals": 18 + }, + "infoURL": "https://0xhash.io", + "shortName": "HETH", + "chainId": 77787778, + "networkId": 77787778, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://test.0xhashscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://app.optimism.io/bridge/deposit" + } + ] + } + }, + { + "name": "Polygon Blackberry", + "title": "Polygon Blackberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.polygon-blackberry.gelato.digital", + "wss://ws.polygon-blackberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/polygon-blackberry", + "shortName": "polygon-blackberry", + "chainId": 94204209, + "networkId": 94204209, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/polygon-blackberry" + } + ] + }, + "status": "active" + }, + { + "name": "Oraichain Mainnet", + "title": "Oraichain Mainnet", + "chain": "Oraichain", + "rpc": [ + "https://evm.orai.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Oraichain Token", + "symbol": "ORAI", + "decimals": 18 + }, + "infoURL": "https://orai.io", + "shortName": "Oraichain", + "chainId": 108160679, + "networkId": 108160679 + }, + { + "name": "Cyber Testnet", + "chain": "Cyber", + "rpc": [ + "https://cyber-testnet.alt.technology/", + "wss://cyber-testnet.alt.technology/ws", + "https://rpc.testnet.cyber.co/", + "wss://rpc.testnet.cyber.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "cyber", + "infoURL": "https://cyber.co/", + "shortName": "cysep", + "chainId": 111557560, + "networkId": 111557560, + "explorers": [ + { + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://cyber-testnet.testnets.rollbridge.app/" + } + ] + } + }, + { + "name": "OP Celestia Raspberry", + "title": "OP Celestia Raspberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.opcelestia-raspberry.gelato.digital", + "wss://ws.opcelestia-raspberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry", + "shortName": "opcelestia-raspberry", + "chainId": 123420111, + "networkId": 123420111, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://opcelestia-raspberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/opcelestia-raspberry" + } + ] + }, + "status": "active" + }, + { + "name": "Degen Chain", + "title": "Degen Chain", + "chain": "Degen", + "rpc": [ + "https://rpc.degen.tips" + ], + "faucets": [], + "nativeCurrency": { + "name": "DEGEN", + "symbol": "DEGEN", + "decimals": 18 + }, + "infoURL": "https://degen.tips", + "shortName": "degen-chain", + "chainId": 666666666, + "networkId": 666666666, + "status": "incubating", + "icon": "degen" + }, + { + "name": "PTCESCAN Testnet", + "title": "PTCESCAN Testnet", + "chain": "PTCE", + "rpc": [ + "https://rpc-testnet.ptcscan.io" + ], + "faucets": [ + "https://faucet.ptcscan.io/" + ], + "nativeCurrency": { + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 + }, + "infoURL": "https://ptcscan.io", + "shortName": "PTCE", + "chainId": 889910245, + "networkId": 889910245, + "explorers": [ + { + "name": "PTCESCAN Testnet Explorer", + "url": "https://explorer-testnet.ptcscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "PTCESCAN Mainnet", + "title": "PTCESCAN Mainnet", + "chain": "PTCE", + "rpc": [ + "https://rpc.ptcscan.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 + }, + "infoURL": "https://ptcscan.io", + "shortName": "POLYTECH", + "chainId": 889910246, + "networkId": 889910246, + "explorers": [ + { + "name": "PTCESCAN Explorer", + "url": "https://ptcscan.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "RARI Chain Mainnet", + "chain": "RARI", + "rpc": [ + "https://rari.calderachain.xyz/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://rarichain.org/", + "shortName": "rari-mainnet", + "chainId": 1380012617, + "networkId": 1380012617, + "explorers": [ + { + "name": "rarichain-explorer", + "url": "https://mainnet.explorer.rarichain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Kakarot Sepolia", + "chain": "ETH", + "icon": "kakarot", + "rpc": [ + "https://sepolia-rpc.kakarot.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kakarot.org", + "shortName": "kkrt-sepolia", + "chainId": 1802203764, + "networkId": 1802203764, + "explorers": [ + { + "name": "Kakarot Scan", + "url": "https://sepolia.kakarotscan.org", + "standard": "EIP3091" + }, + { + "name": "Kakarot Explorer", + "url": "https://sepolia-explorer.kakarot.org", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + } + }, + { + "name": "RARI Chain Testnet", + "chain": "RARI", + "rpc": [ + "https://testnet.rpc.rarichain.org/http" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://rarichain.org/", + "shortName": "rari-testnet", + "chainId": 1918988905, + "networkId": 1918988905, + "explorers": [ + { + "name": "rarichain-testnet-explorer", + "url": "https://explorer.rarichain.org", + "standard": "EIP3091" + } + ] + }, + { + "name": "Xai Testnet v2", + "chainId": 37714555429, + "shortName": "xaitestnet", + "chain": "XAI Testnet", + "networkId": 37714555429, + "nativeCurrency": { + "name": "sXai", + "symbol": "sXAI", + "decimals": 18 + }, + "rpc": [ + "https://testnet-v2.xai-chain.net/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer-v2.xai-chain.net", + "standard": "EIP3091" + } + ], + "infoURL": "https://xai.games" + }, + { + "name": "Arbitrum Blueberry", + "title": "Arbitrum Blueberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.arb-blueberry.gelato.digital", + "wss://ws.arb-blueberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "GelatoCGT", + "symbol": "CGT", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/arb-blueberry", + "shortName": "arb-blueberry", + "chainId": 88153591557, + "networkId": 88153591557, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://arb-blueberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/arb-blueberry" + } + ] + }, + "status": "active" + }, + { + "name": "DCHAIN Testnet", + "title": "DCHAIN Testnet", + "chain": "dchaint", + "icon": "dchaint", + "rpc": [ + "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.dchain.foundation/", + "shortName": "dchaint", + "chainId": 2713017997578000, + "networkId": 2713017997578000, + "explorers": [ + { + "name": "dchaint scan", + "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "DCHAIN", + "title": "DCHAIN Mainnet", + "chain": "dchainmainnet", + "icon": "dchainmainnet", + "rpc": [ + "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.dchain.foundation/", + "shortName": "dchainmainnet", + "chainId": 2716446429837000, + "networkId": 2716446429837000, + "explorers": [ + { + "name": "dchain scan", + "url": "https://dchain-2716446429837000-1.sagaexplorer.io", + "standard": "EIP3091" + } + ] + }, + { + "name": "tixoncoin Mainnet", + "chainId": 5888, + "shortName": "tixon", + "chain": "TIXON", + "network": "mainnet", + "networkId": 5888, + "nativeCurrency": { + "name": "tixoncoin", + "symbol": "TIXON", + "decimals": 18 + }, + "rpc": [ + "http://rpc.tixoncoin.com" + ], + "faucets": [], + "infoURL": "http://www.tixoncoin.net", + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1721045647797.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1721045511750.png", + "color_chain_bg": "0x0000FF", + "color_chain_text": "0xFFFFFF", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1721045671096.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1721045683750.png" + } + }, + { + "name": "Matchain", + "title": "Matchain Mainnet", + "chain": "matchain", + "icon": "matchain", + "rpc": [ + "https://rpc.matchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://www.matchain.io/", + "shortName": "matchain", + "chainId": 698, + "networkId": 698, + "explorers": [ + { + "name": "Matchain scan", + "url": "https://matchscan.io", + "standard": "EIP3091" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1725341898223.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1725341881501.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xFFA723", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1725341914873.png", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1725341927989.png" + } + }, + { + "name": "Phecda Mainnet", + "chainId": 8188, + "shortName": "PCD", + "chain": "PCD", + "network": "mainnet", + "networkId": 8188, + "nativeCurrency": { + "name": "Phecda", + "symbol": "PCD", + "decimals": 18 + }, + "rpc": [ + "https://rpc.pcddao.com", + "wss://rpc.pcddao.com/wss", + "https://validator-01.pcddao.com", + "https://validator-02.pcddao.com", + "https://validator-03.pcddao.com", + "https://validator-04.pcddao.com", + "https://validator-05.pcddao.com", + "https://validator-06.pcddao.com", + "https://validator-07.pcddao.com", + "https://validator-08.pcddao.com", + "https://validator-09.pcddao.com", + "https://validator-10.pcddao.com", + "https://validator-11.pcddao.com", + "https://validator-12.pcddao.com", + "https://validator-13.pcddao.com", + "https://validator-14.pcddao.com", + "https://validator-15.pcddao.com", + "https://validator-16.pcddao.com", + "https://validator-17.pcddao.com", + "https://validator-18.pcddao.com", + "https://validator-19.pcddao.com", + "https://validator-20.pcddao.com", + "https://validator-21.pcddao.com", + "https://validator-22.pcddao.com", + "https://validator-23.pcddao.com", + "https://validator-24.pcddao.com", + "https://validator-25.pcddao.com", + "https://validator-26.pcddao.com", + "https://validator-27.pcddao.com", + "https://validator-28.pcddao.com", + "https://validator-29.pcddao.com", + "https://validator-30.pcddao.com", + "https://validator-31.pcddao.com", + "https://validator-32.pcddao.com", + "https://validator-33.pcddao.com" + ], + "faucets": [], + "infoURL": "https://www.pcddao.com", + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1726129442644.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1726129467588.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1726129484449.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xFFFFFF", + "ic_home_logo": "https://hk.tpstatic.net/token/tokenpocket-1726129520717.png" + }, + "explorers": [ + { + "name": "Phecda Chain Explorer", + "icon": "PCD", + "url": "https://pcdscan.pcddao.com", + "standard": "EIP3091" + } + ] + }, + { + "name": "MAK Chain", + "chainId": 69916, + "shortName": "mak", + "chain": "MAK", + "network": "mainnet", + "networkId": 69916, + "nativeCurrency": { + "name": "MAK", + "symbol": "MAK", + "decimals": 18 + }, + "rpc": [ + "https://node.mak.top" + ], + "faucets": [ ], + "infoURL": "https://makchain.com", + "explorers": [ + { + "name": "MakScan", + "url": "https://scan.mak.top", + "standard": "EIP3091", + "icon": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png" + } + ], + "app_resource": { + "ic_chain_select": "https://hk.tpstatic.net/token/tokenpocket-1727683950446.png", + "ic_chain_unselect": "https://hk.tpstatic.net/token/tokenpocket-1727683925035.png", + "ic_chain_unselect_dark": "https://hk.tpstatic.net/token/tokenpocket-1727683937912.png", + "color_chain_bg": "0x000000", + "color_chain_text": "0xF8F8FF", + "ic_home_logo":"https://hk.tpstatic.net/token/tokenpocket-1727683966410.png" + } + } +] diff --git a/Maskchain/chains.json b/xxx.json similarity index 96% rename from Maskchain/chains.json rename to xxx.json index e0ae2128e..32b1df8c3 100644 --- a/Maskchain/chains.json +++ b/xxx.json @@ -24,4 +24,4 @@ "color_chain_text": "0xF8F8FF", "ic_home_logo":"https://img10.360buyimg.com/imgzone/jfs/t1/111359/37/49767/89180/66f81196Fe870e85e/5ec853e27babde6e.png" } -} \ No newline at end of file +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 000000000..0d7b037d2 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,1341 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@adraffy/ens-normalize@^1.8.8": + version "1.11.0" + resolved "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz" + integrity sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg== + +"@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7": + version "7.12.5" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz" + integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== + dependencies: + regenerator-runtime "^0.13.4" + +"@emnapi/runtime@^1.2.0": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.3.1.tgz#0fcaa575afc31f455fd33534c19381cfce6c6f60" + integrity sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw== + dependencies: + tslib "^2.4.0" + +"@emotion/hash@^0.8.0": + version "0.8.0" + resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz" + integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== + +"@ethereumjs/rlp@^4.0.1": + version "4.0.1" + resolved "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-4.0.1.tgz" + integrity sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw== + +"@ethereumjs/rlp@^5.0.2": + version "5.0.2" + resolved "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.2.tgz" + integrity sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA== + +"@img/sharp-darwin-arm64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz#ef5b5a07862805f1e8145a377c8ba6e98813ca08" + integrity sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ== + optionalDependencies: + "@img/sharp-libvips-darwin-arm64" "1.0.4" + +"@img/sharp-darwin-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz#e03d3451cd9e664faa72948cc70a403ea4063d61" + integrity sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q== + optionalDependencies: + "@img/sharp-libvips-darwin-x64" "1.0.4" + +"@img/sharp-libvips-darwin-arm64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz#447c5026700c01a993c7804eb8af5f6e9868c07f" + integrity sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg== + +"@img/sharp-libvips-darwin-x64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz#e0456f8f7c623f9dbfbdc77383caa72281d86062" + integrity sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ== + +"@img/sharp-libvips-linux-arm64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz#979b1c66c9a91f7ff2893556ef267f90ebe51704" + integrity sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA== + +"@img/sharp-libvips-linux-arm@1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz#99f922d4e15216ec205dcb6891b721bfd2884197" + integrity sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g== + +"@img/sharp-libvips-linux-s390x@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz#f8a5eb1f374a082f72b3f45e2fb25b8118a8a5ce" + integrity sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA== + +"@img/sharp-libvips-linux-x64@1.0.4": + version "1.0.4" + resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz" + integrity sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw== + +"@img/sharp-libvips-linuxmusl-arm64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz#166778da0f48dd2bded1fa3033cee6b588f0d5d5" + integrity sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA== + +"@img/sharp-libvips-linuxmusl-x64@1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz#93794e4d7720b077fcad3e02982f2f1c246751ff" + integrity sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw== + +"@img/sharp-linux-arm64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz#edb0697e7a8279c9fc829a60fc35644c4839bb22" + integrity sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA== + optionalDependencies: + "@img/sharp-libvips-linux-arm64" "1.0.4" + +"@img/sharp-linux-arm@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz#422c1a352e7b5832842577dc51602bcd5b6f5eff" + integrity sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ== + optionalDependencies: + "@img/sharp-libvips-linux-arm" "1.0.5" + +"@img/sharp-linux-s390x@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz#f5c077926b48e97e4a04d004dfaf175972059667" + integrity sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q== + optionalDependencies: + "@img/sharp-libvips-linux-s390x" "1.0.4" + +"@img/sharp-linux-x64@0.33.5": + version "0.33.5" + resolved "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz" + integrity sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA== + optionalDependencies: + "@img/sharp-libvips-linux-x64" "1.0.4" + +"@img/sharp-linuxmusl-arm64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz#252975b915894fb315af5deea174651e208d3d6b" + integrity sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-arm64" "1.0.4" + +"@img/sharp-linuxmusl-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz#3f4609ac5d8ef8ec7dadee80b560961a60fd4f48" + integrity sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw== + optionalDependencies: + "@img/sharp-libvips-linuxmusl-x64" "1.0.4" + +"@img/sharp-wasm32@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz#6f44f3283069d935bb5ca5813153572f3e6f61a1" + integrity sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg== + dependencies: + "@emnapi/runtime" "^1.2.0" + +"@img/sharp-win32-ia32@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz#1a0c839a40c5351e9885628c85f2e5dfd02b52a9" + integrity sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ== + +"@img/sharp-win32-x64@0.33.5": + version "0.33.5" + resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz#56f00962ff0c4e0eb93d34a047d29fa995e3e342" + integrity sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg== + +"@material-ui/core@^4.11.3": + version "4.11.3" + resolved "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz" + integrity sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw== + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/styles" "^4.11.3" + "@material-ui/system" "^4.11.3" + "@material-ui/types" "^5.1.0" + "@material-ui/utils" "^4.11.2" + "@types/react-transition-group" "^4.2.0" + clsx "^1.0.4" + hoist-non-react-statics "^3.3.2" + popper.js "1.16.1-lts" + prop-types "^15.7.2" + react-is "^16.8.0 || ^17.0.0" + react-transition-group "^4.4.0" + +"@material-ui/icons@^4.11.2": + version "4.11.2" + resolved "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz" + integrity sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ== + dependencies: + "@babel/runtime" "^7.4.4" + +"@material-ui/lab@^4.0.0-alpha.57": + version "4.0.0-alpha.57" + resolved "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz" + integrity sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw== + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + clsx "^1.0.4" + prop-types "^15.7.2" + react-is "^16.8.0 || ^17.0.0" + +"@material-ui/styles@^4.11.3": + version "4.11.3" + resolved "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz" + integrity sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg== + dependencies: + "@babel/runtime" "^7.4.4" + "@emotion/hash" "^0.8.0" + "@material-ui/types" "^5.1.0" + "@material-ui/utils" "^4.11.2" + clsx "^1.0.4" + csstype "^2.5.2" + hoist-non-react-statics "^3.3.2" + jss "^10.5.1" + jss-plugin-camel-case "^10.5.1" + jss-plugin-default-unit "^10.5.1" + jss-plugin-global "^10.5.1" + jss-plugin-nested "^10.5.1" + jss-plugin-props-sort "^10.5.1" + jss-plugin-rule-value-function "^10.5.1" + jss-plugin-vendor-prefixer "^10.5.1" + prop-types "^15.7.2" + +"@material-ui/system@^4.11.3": + version "4.11.3" + resolved "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz" + integrity sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw== + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + csstype "^2.5.2" + prop-types "^15.7.2" + +"@material-ui/types@^5.1.0": + version "5.1.0" + resolved "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz" + integrity sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A== + +"@material-ui/utils@^4.11.2": + version "4.11.2" + resolved "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz" + integrity sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA== + dependencies: + "@babel/runtime" "^7.4.4" + prop-types "^15.7.2" + react-is "^16.8.0 || ^17.0.0" + +"@next/env@15.2.0": + version "15.2.0" + resolved "https://registry.npmjs.org/@next/env/-/env-15.2.0.tgz" + integrity sha512-eMgJu1RBXxxqqnuRJQh5RozhskoNUDHBFybvi+Z+yK9qzKeG7dadhv/Vp1YooSZmCnegf7JxWuapV77necLZNA== + +"@next/swc-darwin-arm64@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.2.0.tgz#51ebba2162330ee3e8b3412bf31defd94a7b85e7" + integrity sha512-rlp22GZwNJjFCyL7h5wz9vtpBVuCt3ZYjFWpEPBGzG712/uL1bbSkS675rVAUCRZ4hjoTJ26Q7IKhr5DfJrHDA== + +"@next/swc-darwin-x64@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-15.2.0.tgz#90fd6c6cee494d4348342434cfb9ca9506eae895" + integrity sha512-DiU85EqSHogCz80+sgsx90/ecygfCSGl5P3b4XDRVZpgujBm5lp4ts7YaHru7eVTyZMjHInzKr+w0/7+qDrvMA== + +"@next/swc-linux-arm64-gnu@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.2.0.tgz#f10a26cdbacf2e3de2a02a926c72857b3cb613e1" + integrity sha512-VnpoMaGukiNWVxeqKHwi8MN47yKGyki5q+7ql/7p/3ifuU2341i/gDwGK1rivk0pVYbdv5D8z63uu9yMw0QhpQ== + +"@next/swc-linux-arm64-musl@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.2.0.tgz#1821c9a1dd17c441d8182f5cefd586f7902fcdb5" + integrity sha512-ka97/ssYE5nPH4Qs+8bd8RlYeNeUVBhcnsNUmFM6VWEob4jfN9FTr0NBhXVi1XEJpj3cMfgSRW+LdE3SUZbPrw== + +"@next/swc-linux-x64-gnu@15.2.0": + version "15.2.0" + resolved "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.2.0.tgz" + integrity sha512-zY1JduE4B3q0k2ZCE+DAF/1efjTXUsKP+VXRtrt/rJCTgDlUyyryx7aOgYXNc1d8gobys/Lof9P9ze8IyRDn7Q== + +"@next/swc-linux-x64-musl@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.2.0.tgz#e23be1d046c9a630a0315588f9d692d9705ac355" + integrity sha512-QqvLZpurBD46RhaVaVBepkVQzh8xtlUN00RlG4Iq1sBheNugamUNPuZEH1r9X1YGQo1KqAe1iiShF0acva3jHQ== + +"@next/swc-win32-arm64-msvc@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.2.0.tgz#9e2cb008b82c676dad7d632a43549f969cb2194f" + integrity sha512-ODZ0r9WMyylTHAN6pLtvUtQlGXBL9voljv6ujSlcsjOxhtXPI1Ag6AhZK0SE8hEpR1374WZZ5w33ChpJd5fsjw== + +"@next/swc-win32-x64-msvc@15.2.0": + version "15.2.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.2.0.tgz#d280f450a5b6dbb7437c3265f81ea62febf4bf3c" + integrity sha512-8+4Z3Z7xa13NdUuUAcpVNA6o76lNPniBd9Xbo02bwXQXnZgFvEopwY2at5+z7yHl47X9qbZpvwatZ2BRo3EdZw== + +"@noble/curves@1.4.2", "@noble/curves@~1.4.0": + version "1.4.2" + resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz" + integrity sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw== + dependencies: + "@noble/hashes" "1.4.0" + +"@noble/hashes@1.4.0", "@noble/hashes@~1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz" + integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== + +"@scure/base@~1.1.6": + version "1.1.9" + resolved "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz" + integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg== + +"@scure/bip32@1.4.0": + version "1.4.0" + resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz" + integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg== + dependencies: + "@noble/curves" "~1.4.0" + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" + +"@scure/bip39@1.3.0": + version "1.3.0" + resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz" + integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ== + dependencies: + "@noble/hashes" "~1.4.0" + "@scure/base" "~1.1.6" + +"@swc/counter@0.1.3": + version "0.1.3" + resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz" + integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ== + +"@swc/helpers@0.5.15": + version "0.5.15" + resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz" + integrity sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g== + dependencies: + tslib "^2.8.0" + +"@types/node@*": + version "22.13.8" + resolved "https://registry.npmjs.org/@types/node/-/node-22.13.8.tgz" + integrity sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ== + dependencies: + undici-types "~6.20.0" + +"@types/prop-types@*": + version "15.7.3" + resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz" + integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== + +"@types/react-transition-group@^4.2.0": + version "4.4.1" + resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz" + integrity sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ== + dependencies: + "@types/react" "*" + +"@types/react@*": + version "17.0.2" + resolved "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz" + integrity sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA== + dependencies: + "@types/prop-types" "*" + csstype "^3.0.2" + +"@types/ws@8.5.3": + version "8.5.3" + resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz" + integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== + dependencies: + "@types/node" "*" + +abitype@0.7.1: + version "0.7.1" + resolved "https://registry.npmjs.org/abitype/-/abitype-0.7.1.tgz" + integrity sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ== + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +busboy@1.6.0: + version "1.6.0" + resolved "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz" + integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== + dependencies: + streamsearch "^1.1.0" + +call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" + integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + +call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" + get-intrinsic "^1.2.4" + set-function-length "^1.2.2" + +call-bound@^1.0.2, call-bound@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz" + integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA== + dependencies: + call-bind-apply-helpers "^1.0.1" + get-intrinsic "^1.2.6" + +caniuse-lite@^1.0.30001579: + version "1.0.30001701" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001701.tgz" + integrity sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw== + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +clsx@^1.0.4: + version "1.1.1" + resolved "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz" + integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.9.0: + version "1.9.1" + resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^4.2.3: + version "4.2.3" + resolved "https://registry.npmjs.org/color/-/color-4.2.3.tgz" + integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A== + dependencies: + color-convert "^2.0.1" + color-string "^1.9.0" + +crc-32@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz" + integrity sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== + +cross-fetch@^3.0.4: + version "3.2.0" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.2.0.tgz" + integrity sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q== + dependencies: + node-fetch "^2.7.0" + +cross-fetch@^4.0.0: + version "4.1.0" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.1.0.tgz" + integrity sha512-uKm5PU+MHTootlWEY+mZ4vvXoCn4fLQxT9dSc1sXVMSFkINTJVN8cAQROpwcKm8bJ/c7rgZVIBWzH5T78sNZZw== + dependencies: + node-fetch "^2.7.0" + +css-vendor@^2.0.8: + version "2.0.8" + resolved "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz" + integrity sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ== + dependencies: + "@babel/runtime" "^7.8.3" + is-in-browser "^1.0.2" + +csstype@^2.5.2: + version "2.6.16" + resolved "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz" + integrity sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q== + +csstype@^3.0.2: + version "3.0.7" + resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz" + integrity sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g== + +define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +dequal@2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz" + integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug== + +detect-libc@^2.0.3: + version "2.0.3" + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz" + integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== + +dom-helpers@^5.0.1: + version "5.2.0" + resolved "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz" + integrity sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +dunder-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" + integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== + dependencies: + call-bind-apply-helpers "^1.0.1" + es-errors "^1.3.0" + gopd "^1.2.0" + +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== + +es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" + integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== + dependencies: + es-errors "^1.3.0" + +ethereum-cryptography@^2.0.0: + version "2.2.1" + resolved "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz" + integrity sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg== + dependencies: + "@noble/curves" "1.4.2" + "@noble/hashes" "1.4.0" + "@scure/bip32" "1.4.0" + "@scure/bip39" "1.3.0" + +eventemitter3@^5.0.1: + version "5.0.1" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz" + integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== + +fbemitter@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/fbemitter/-/fbemitter-3.0.0.tgz" + integrity sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw== + dependencies: + fbjs "^3.0.0" + +fbjs-css-vars@^1.0.0: + version "1.0.2" + resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz" + integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== + +fbjs@^3.0.0: + version "3.0.0" + resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.0.tgz" + integrity sha512-dJd4PiDOFuhe7vk4F80Mba83Vr2QuK86FoxtgPmzBqEJahncp+13YCmfoa53KHCo6OnlXLG7eeMWPfB5CrpVKg== + dependencies: + cross-fetch "^3.0.4" + fbjs-css-vars "^1.0.0" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + +flux@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/flux/-/flux-4.0.1.tgz" + integrity sha512-emk4RCvJ8RzNP2lNpphKnG7r18q8elDYNAPx7xn+bDeOIo9FFfxEfIQ2y6YbQNmnsGD3nH1noxtLE64Puz1bRQ== + dependencies: + fbemitter "^3.0.0" + fbjs "^3.0.0" + +for-each@^0.3.3: + version "0.3.5" + resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz" + integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg== + dependencies: + is-callable "^1.2.7" + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +get-intrinsic@^1.2.4, get-intrinsic@^1.2.6: + version "1.3.0" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" + integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== + dependencies: + call-bind-apply-helpers "^1.0.2" + es-define-property "^1.0.1" + es-errors "^1.3.0" + es-object-atoms "^1.1.1" + function-bind "^1.1.2" + get-proto "^1.0.1" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" + math-intrinsics "^1.1.0" + +get-proto@^1.0.0, get-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" + integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== + dependencies: + dunder-proto "^1.0.1" + es-object-atoms "^1.0.0" + +gopd@^1.0.1, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== + +has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-symbols@^1.0.3, has-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" + integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== + +has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +hoist-non-react-statics@^3.3.2: + version "3.3.2" + resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +hyphenate-style-name@^1.0.3: + version "1.0.4" + resolved "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz" + integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== + +indefinite-observable@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz" + integrity sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ== + dependencies: + symbol-observable "1.2.0" + +inherits@^2.0.3: + version "2.0.4" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +is-arguments@^1.0.4: + version "1.2.0" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz" + integrity sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA== + dependencies: + call-bound "^1.0.2" + has-tostringtag "^1.0.2" + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-generator-function@^1.0.7: + version "1.1.0" + resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz" + integrity sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ== + dependencies: + call-bound "^1.0.3" + get-proto "^1.0.0" + has-tostringtag "^1.0.2" + safe-regex-test "^1.1.0" + +is-in-browser@^1.0.2, is-in-browser@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz" + integrity sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU= + +is-regex@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz" + integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g== + dependencies: + call-bound "^1.0.2" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + hasown "^2.0.2" + +is-typed-array@^1.1.3: + version "1.1.15" + resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz" + integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ== + dependencies: + which-typed-array "^1.1.16" + +isomorphic-ws@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz" + integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw== + +"js-tokens@^3.0.0 || ^4.0.0": + version "4.0.0" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +jss-plugin-camel-case@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz" + integrity sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg== + dependencies: + "@babel/runtime" "^7.3.1" + hyphenate-style-name "^1.0.3" + jss "10.5.1" + +jss-plugin-default-unit@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz" + integrity sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + +jss-plugin-global@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz" + integrity sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + +jss-plugin-nested@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz" + integrity sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + tiny-warning "^1.0.2" + +jss-plugin-props-sort@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz" + integrity sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + +jss-plugin-rule-value-function@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz" + integrity sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ== + dependencies: + "@babel/runtime" "^7.3.1" + jss "10.5.1" + tiny-warning "^1.0.2" + +jss-plugin-vendor-prefixer@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz" + integrity sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ== + dependencies: + "@babel/runtime" "^7.3.1" + css-vendor "^2.0.8" + jss "10.5.1" + +jss@10.5.1, jss@^10.5.1: + version "10.5.1" + resolved "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz" + integrity sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg== + dependencies: + "@babel/runtime" "^7.3.1" + csstype "^3.0.2" + indefinite-observable "^2.0.1" + is-in-browser "^1.1.3" + tiny-warning "^1.0.2" + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +math-intrinsics@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" + integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== + +nanoid@^3.3.6: + version "3.3.8" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== + +next@^15.2.0: + version "15.2.0" + resolved "https://registry.npmjs.org/next/-/next-15.2.0.tgz" + integrity sha512-VaiM7sZYX8KIAHBrRGSFytKknkrexNfGb8GlG6e93JqueCspuGte8i4ybn8z4ww1x3f2uzY4YpTaBEW4/hvsoQ== + dependencies: + "@next/env" "15.2.0" + "@swc/counter" "0.1.3" + "@swc/helpers" "0.5.15" + busboy "1.6.0" + caniuse-lite "^1.0.30001579" + postcss "8.4.31" + styled-jsx "5.1.6" + optionalDependencies: + "@next/swc-darwin-arm64" "15.2.0" + "@next/swc-darwin-x64" "15.2.0" + "@next/swc-linux-arm64-gnu" "15.2.0" + "@next/swc-linux-arm64-musl" "15.2.0" + "@next/swc-linux-x64-gnu" "15.2.0" + "@next/swc-linux-x64-musl" "15.2.0" + "@next/swc-win32-arm64-msvc" "15.2.0" + "@next/swc-win32-x64-msvc" "15.2.0" + sharp "^0.33.5" + +node-fetch@^2.7.0: + version "2.7.0" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" + integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== + dependencies: + whatwg-url "^5.0.0" + +object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +picocolors@^1.0.0: + version "1.1.1" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" + integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== + +popper.js@1.16.1-lts: + version "1.16.1-lts" + resolved "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz" + integrity sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA== + +possible-typed-array-names@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz" + integrity sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg== + +postcss@8.4.31: + version "8.4.31" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" + integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== + dependencies: + nanoid "^3.3.6" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +prop-types@^15.6.2, prop-types@^15.7.2: + version "15.7.2" + resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.8.1" + +react-dom@17.0.1: + version "17.0.1" + resolved "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz" + integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + scheduler "^0.20.1" + +react-is@^16.7.0, "react-is@^16.8.0 || ^17.0.0", react-is@^16.8.1: + version "16.13.1" + resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-transition-group@^4.4.0: + version "4.4.1" + resolved "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz" + integrity sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react@17.0.1: + version "17.0.1" + resolved "https://registry.npmjs.org/react/-/react-17.0.1.tgz" + integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +regenerator-runtime@^0.13.4: + version "0.13.7" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz" + integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== + +safe-regex-test@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz" + integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw== + dependencies: + call-bound "^1.0.2" + es-errors "^1.3.0" + is-regex "^1.2.1" + +scheduler@^0.20.1: + version "0.20.1" + resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz" + integrity sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +semver@^7.6.3: + version "7.7.1" + resolved "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz" + integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA== + +set-function-length@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +sharp@^0.33.5: + version "0.33.5" + resolved "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz" + integrity sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw== + dependencies: + color "^4.2.3" + detect-libc "^2.0.3" + semver "^7.6.3" + optionalDependencies: + "@img/sharp-darwin-arm64" "0.33.5" + "@img/sharp-darwin-x64" "0.33.5" + "@img/sharp-libvips-darwin-arm64" "1.0.4" + "@img/sharp-libvips-darwin-x64" "1.0.4" + "@img/sharp-libvips-linux-arm" "1.0.5" + "@img/sharp-libvips-linux-arm64" "1.0.4" + "@img/sharp-libvips-linux-s390x" "1.0.4" + "@img/sharp-libvips-linux-x64" "1.0.4" + "@img/sharp-libvips-linuxmusl-arm64" "1.0.4" + "@img/sharp-libvips-linuxmusl-x64" "1.0.4" + "@img/sharp-linux-arm" "0.33.5" + "@img/sharp-linux-arm64" "0.33.5" + "@img/sharp-linux-s390x" "0.33.5" + "@img/sharp-linux-x64" "0.33.5" + "@img/sharp-linuxmusl-arm64" "0.33.5" + "@img/sharp-linuxmusl-x64" "0.33.5" + "@img/sharp-wasm32" "0.33.5" + "@img/sharp-win32-ia32" "0.33.5" + "@img/sharp-win32-x64" "0.33.5" + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + +source-map-js@^1.0.2: + version "1.2.1" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + +streamsearch@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz" + integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg== + +styled-jsx@5.1.6: + version "5.1.6" + resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz" + integrity sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA== + dependencies: + client-only "0.0.1" + +swr@^0.5.6: + version "0.5.6" + resolved "https://registry.npmjs.org/swr/-/swr-0.5.6.tgz" + integrity sha512-Bmx3L4geMZjYT5S2Z6EE6/5Cx6v1Ka0LhqZKq8d6WL2eu9y6gHWz3dUzfIK/ymZVHVfwT/EweFXiYGgfifei3w== + dependencies: + dequal "2.0.2" + +symbol-observable@1.2.0: + version "1.2.0" + resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +tiny-warning@^1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +tslib@^2.4.0, tslib@^2.8.0: + version "2.8.1" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" + integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== + +ua-parser-js@^0.7.18: + version "0.7.40" + resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.40.tgz" + integrity sha512-us1E3K+3jJppDBa3Tl0L3MOJiGhe1C6P0+nIvQAFYbxlMAx0h81eOwLmU57xgqToduDDPx3y5QsdjPfDu+FgOQ== + +undici-types@~6.20.0: + version "6.20.0" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz" + integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== + +util@^0.12.5: + version "0.12.5" + resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz" + integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + dependencies: + inherits "^2.0.3" + is-arguments "^1.0.4" + is-generator-function "^1.0.7" + is-typed-array "^1.1.3" + which-typed-array "^1.1.2" + +web3-core@^4.4.0, web3-core@^4.5.0, web3-core@^4.6.0, web3-core@^4.7.1: + version "4.7.1" + resolved "https://registry.npmjs.org/web3-core/-/web3-core-4.7.1.tgz" + integrity sha512-9KSeASCb/y6BG7rwhgtYC4CvYY66JfkmGNEYb7q1xgjt9BWfkf09MJPaRyoyT5trdOxYDHkT9tDlypvQWaU8UQ== + dependencies: + web3-errors "^1.3.1" + web3-eth-accounts "^4.3.1" + web3-eth-iban "^4.0.7" + web3-providers-http "^4.2.0" + web3-providers-ws "^4.0.8" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + optionalDependencies: + web3-providers-ipc "^4.0.7" + +web3-errors@^1.1.3, web3-errors@^1.2.0, web3-errors@^1.3.0, web3-errors@^1.3.1: + version "1.3.1" + resolved "https://registry.npmjs.org/web3-errors/-/web3-errors-1.3.1.tgz" + integrity sha512-w3NMJujH+ZSW4ltIZZKtdbkbyQEvBzyp3JRn59Ckli0Nz4VMsVq8aF1bLWM7A2kuQ+yVEm3ySeNU+7mSRwx7RQ== + dependencies: + web3-types "^1.10.0" + +web3-eth-abi@^4.4.1: + version "4.4.1" + resolved "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-4.4.1.tgz" + integrity sha512-60ecEkF6kQ9zAfbTY04Nc9q4eEYM0++BySpGi8wZ2PD1tw/c0SDvsKhV6IKURxLJhsDlb08dATc3iD6IbtWJmg== + dependencies: + abitype "0.7.1" + web3-errors "^1.3.1" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-eth-accounts@^4.3.1: + version "4.3.1" + resolved "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-4.3.1.tgz" + integrity sha512-rTXf+H9OKze6lxi7WMMOF1/2cZvJb2AOnbNQxPhBDssKOllAMzLhg1FbZ4Mf3lWecWfN6luWgRhaeSqO1l+IBQ== + dependencies: + "@ethereumjs/rlp" "^4.0.1" + crc-32 "^1.2.2" + ethereum-cryptography "^2.0.0" + web3-errors "^1.3.1" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-eth-contract@^4.5.0, web3-eth-contract@^4.7.2: + version "4.7.2" + resolved "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-4.7.2.tgz" + integrity sha512-3ETqs2pMNPEAc7BVY/C3voOhTUeJdkf2aM3X1v+edbngJLHAxbvxKpOqrcO0cjXzC4uc2Q8Zpf8n8zT5r0eLnA== + dependencies: + "@ethereumjs/rlp" "^5.0.2" + web3-core "^4.7.1" + web3-errors "^1.3.1" + web3-eth "^4.11.1" + web3-eth-abi "^4.4.1" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-eth-ens@^4.4.0: + version "4.4.0" + resolved "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-4.4.0.tgz" + integrity sha512-DeyVIS060hNV9g8dnTx92syqvgbvPricE3MerCxe/DquNZT3tD8aVgFfq65GATtpCgDDJffO2bVeHp3XBemnSQ== + dependencies: + "@adraffy/ens-normalize" "^1.8.8" + web3-core "^4.5.0" + web3-errors "^1.2.0" + web3-eth "^4.8.0" + web3-eth-contract "^4.5.0" + web3-net "^4.1.0" + web3-types "^1.7.0" + web3-utils "^4.3.0" + web3-validator "^2.0.6" + +web3-eth-iban@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-4.0.7.tgz" + integrity sha512-8weKLa9KuKRzibC87vNLdkinpUE30gn0IGY027F8doeJdcPUfsa4IlBgNC4k4HLBembBB2CTU0Kr/HAOqMeYVQ== + dependencies: + web3-errors "^1.1.3" + web3-types "^1.3.0" + web3-utils "^4.0.7" + web3-validator "^2.0.3" + +web3-eth-personal@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-4.1.0.tgz" + integrity sha512-RFN83uMuvA5cu1zIwwJh9A/bAj0OBxmGN3tgx19OD/9ygeUZbifOL06jgFzN0t+1ekHqm3DXYQM8UfHpXi7yDQ== + dependencies: + web3-core "^4.6.0" + web3-eth "^4.9.0" + web3-rpc-methods "^1.3.0" + web3-types "^1.8.0" + web3-utils "^4.3.1" + web3-validator "^2.0.6" + +web3-eth@^4.11.1, web3-eth@^4.8.0, web3-eth@^4.9.0: + version "4.11.1" + resolved "https://registry.npmjs.org/web3-eth/-/web3-eth-4.11.1.tgz" + integrity sha512-q9zOkzHnbLv44mwgLjLXuyqszHuUgZWsQayD2i/rus2uk0G7hMn11bE2Q3hOVnJS4ws4VCtUznlMxwKQ+38V2w== + dependencies: + setimmediate "^1.0.5" + web3-core "^4.7.1" + web3-errors "^1.3.1" + web3-eth-abi "^4.4.1" + web3-eth-accounts "^4.3.1" + web3-net "^4.1.0" + web3-providers-ws "^4.0.8" + web3-rpc-methods "^1.3.0" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-net@^4.1.0: + version "4.1.0" + resolved "https://registry.npmjs.org/web3-net/-/web3-net-4.1.0.tgz" + integrity sha512-WWmfvHVIXWEoBDWdgKNYKN8rAy6SgluZ0abyRyXOL3ESr7ym7pKWbfP4fjApIHlYTh8tNqkrdPfM4Dyi6CA0SA== + dependencies: + web3-core "^4.4.0" + web3-rpc-methods "^1.3.0" + web3-types "^1.6.0" + web3-utils "^4.3.0" + +web3-providers-http@^4.2.0: + version "4.2.0" + resolved "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-4.2.0.tgz" + integrity sha512-IPMnDtHB7dVwaB7/mMxAZzyq7d5ezfO1+Vw0bNfAeIi7gaDlJiggp85SdyAfOgov8AMUA/dyiY72kQ0KmjXKvQ== + dependencies: + cross-fetch "^4.0.0" + web3-errors "^1.3.0" + web3-types "^1.7.0" + web3-utils "^4.3.1" + +web3-providers-ipc@^4.0.7: + version "4.0.7" + resolved "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-4.0.7.tgz" + integrity sha512-YbNqY4zUvIaK2MHr1lQFE53/8t/ejHtJchrWn9zVbFMGXlTsOAbNoIoZWROrg1v+hCBvT2c9z8xt7e/+uz5p1g== + dependencies: + web3-errors "^1.1.3" + web3-types "^1.3.0" + web3-utils "^4.0.7" + +web3-providers-ws@^4.0.8: + version "4.0.8" + resolved "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-4.0.8.tgz" + integrity sha512-goJdgata7v4pyzHRsg9fSegUG4gVnHZSHODhNnn6J93ykHkBI1nz4fjlGpcQLUMi4jAMz6SHl9Ibzs2jj9xqPw== + dependencies: + "@types/ws" "8.5.3" + isomorphic-ws "^5.0.0" + web3-errors "^1.2.0" + web3-types "^1.7.0" + web3-utils "^4.3.1" + ws "^8.17.1" + +web3-rpc-methods@^1.3.0: + version "1.3.0" + resolved "https://registry.npmjs.org/web3-rpc-methods/-/web3-rpc-methods-1.3.0.tgz" + integrity sha512-/CHmzGN+IYgdBOme7PdqzF+FNeMleefzqs0LVOduncSaqsppeOEoskLXb2anSpzmQAP3xZJPaTrkQPWSJMORig== + dependencies: + web3-core "^4.4.0" + web3-types "^1.6.0" + web3-validator "^2.0.6" + +web3-rpc-providers@^1.0.0-rc.4: + version "1.0.0-rc.4" + resolved "https://registry.npmjs.org/web3-rpc-providers/-/web3-rpc-providers-1.0.0-rc.4.tgz" + integrity sha512-PXosCqHW0EADrYzgmueNHP3Y5jcSmSwH+Dkqvn7EYD0T2jcsdDAIHqk6szBiwIdhumM7gv9Raprsu/s/f7h1fw== + dependencies: + web3-errors "^1.3.1" + web3-providers-http "^4.2.0" + web3-providers-ws "^4.0.8" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +web3-types@^1.10.0, web3-types@^1.3.0, web3-types@^1.6.0, web3-types@^1.7.0, web3-types@^1.8.0: + version "1.10.0" + resolved "https://registry.npmjs.org/web3-types/-/web3-types-1.10.0.tgz" + integrity sha512-0IXoaAFtFc8Yin7cCdQfB9ZmjafrbP6BO0f0KT/khMhXKUpoJ6yShrVhiNpyRBo8QQjuOagsWzwSK2H49I7sbw== + +web3-utils@^4.0.7, web3-utils@^4.3.0, web3-utils@^4.3.1, web3-utils@^4.3.3: + version "4.3.3" + resolved "https://registry.npmjs.org/web3-utils/-/web3-utils-4.3.3.tgz" + integrity sha512-kZUeCwaQm+RNc2Bf1V3BYbF29lQQKz28L0y+FA4G0lS8IxtJVGi5SeDTUkpwqqkdHHC7JcapPDnyyzJ1lfWlOw== + dependencies: + ethereum-cryptography "^2.0.0" + eventemitter3 "^5.0.1" + web3-errors "^1.3.1" + web3-types "^1.10.0" + web3-validator "^2.0.6" + +web3-validator@^2.0.3, web3-validator@^2.0.6: + version "2.0.6" + resolved "https://registry.npmjs.org/web3-validator/-/web3-validator-2.0.6.tgz" + integrity sha512-qn9id0/l1bWmvH4XfnG/JtGKKwut2Vokl6YXP5Kfg424npysmtRLe9DgiNBM9Op7QL/aSiaA0TVXibuIuWcizg== + dependencies: + ethereum-cryptography "^2.0.0" + util "^0.12.5" + web3-errors "^1.2.0" + web3-types "^1.6.0" + zod "^3.21.4" + +web3@^4.16.0: + version "4.16.0" + resolved "https://registry.npmjs.org/web3/-/web3-4.16.0.tgz" + integrity sha512-SgoMSBo6EsJ5GFCGar2E/pR2lcR/xmUSuQ61iK6yDqzxmm42aPPxSqZfJz2z/UCR6pk03u77pU8TGV6lgMDdIQ== + dependencies: + web3-core "^4.7.1" + web3-errors "^1.3.1" + web3-eth "^4.11.1" + web3-eth-abi "^4.4.1" + web3-eth-accounts "^4.3.1" + web3-eth-contract "^4.7.2" + web3-eth-ens "^4.4.0" + web3-eth-iban "^4.0.7" + web3-eth-personal "^4.1.0" + web3-net "^4.1.0" + web3-providers-http "^4.2.0" + web3-providers-ws "^4.0.8" + web3-rpc-methods "^1.3.0" + web3-rpc-providers "^1.0.0-rc.4" + web3-types "^1.10.0" + web3-utils "^4.3.3" + web3-validator "^2.0.6" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +which-typed-array@^1.1.16, which-typed-array@^1.1.2: + version "1.1.18" + resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz" + integrity sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.8" + call-bound "^1.0.3" + for-each "^0.3.3" + gopd "^1.2.0" + has-tostringtag "^1.0.2" + +ws@^8.17.1: + version "8.18.1" + resolved "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz" + integrity sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w== + +zod@^3.21.4: + version "3.24.2" + resolved "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz" + integrity sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==