diff --git a/Dockerfile b/Dockerfile index ae3ac37..ff5907a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,26 +1,15 @@ -# syntax=docker/dockerfile:1 -# Stage 1: Build the static files -FROM node:22-alpine3.18 as ui-builder -WORKDIR /ui -RUN corepack enable && corepack prepare pnpm@latest --activate -COPY /ui/package.json /ui/pnpm-lock.yaml ./ -RUN pnpm i --frozen-lockfile -COPY /ui . -RUN pnpm run build - -# Stage 2: Build the Go binary FROM golang:1.18.2-alpine3.14 AS builder WORKDIR /app RUN apk update && apk upgrade && apk add --no-cache ca-certificates RUN update-ca-certificates COPY . . -COPY --from=ui-builder /ui/build ./ui/build/ RUN go mod download RUN CGO_ENABLED=0 go build -o pocketbase . FROM scratch WORKDIR /app +COPY --from=builder /app/pb_public /app/pb_public COPY --from=builder /app/pocketbase /app/pocketbase COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ diff --git a/main.go b/main.go index b453b52..f250f21 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,6 @@ import ( "github.com/labstack/echo/v5" "github.com/labstack/echo/v5/middleware" _ "github.com/mark3labs/anyabi.xyz/migrations" - "github.com/mark3labs/anyabi.xyz/ui" "github.com/pocketbase/dbx" "github.com/pocketbase/pocketbase" "github.com/pocketbase/pocketbase/apis" @@ -102,6 +101,11 @@ func main() { app.OnBeforeServe().Add(func(e *core.ServeEvent) error { + e.Router.GET( + "/*", + apis.StaticDirectoryHandler(os.DirFS("./pb_public"), true), + ) + rateLimiterConfig := middleware.RateLimiterConfig{ Skipper: middleware.DefaultSkipper, Store: middleware.NewRateLimiterMemoryStore(rate.Limit(30)), @@ -126,6 +130,7 @@ func main() { return next(c) } }) + // GET ABI e.Router.AddRoute(echo.Route{ Method: http.MethodGet, @@ -253,8 +258,6 @@ func main() { }, }) - e.Router.GET("/*", apis.StaticDirectoryHandler(ui.BuildDirFS, true)) - return nil }) diff --git a/pb_public/index.html b/pb_public/index.html new file mode 100644 index 0000000..de57e72 --- /dev/null +++ b/pb_public/index.html @@ -0,0 +1,34 @@ + + + + + + + + AnyABI - The easiest way to fetch an ABI + + + + + + + + + + + +
+

+ + AnyABI +

+
The easiest way to fetch an ABI.
+
+ + + + + + \ No newline at end of file diff --git a/ui/static/logo.png b/pb_public/logo.png similarity index 100% rename from ui/static/logo.png rename to pb_public/logo.png diff --git a/ui/.env.example b/ui/.env.example deleted file mode 100644 index b18725d..0000000 --- a/ui/.env.example +++ /dev/null @@ -1 +0,0 @@ -PUBLIC_API_URL=http://localhost:8090 diff --git a/ui/.env.production.example b/ui/.env.production.example deleted file mode 100644 index af886b3..0000000 --- a/ui/.env.production.example +++ /dev/null @@ -1 +0,0 @@ -PUBLIC_API_URL=https://anyabi.xyz diff --git a/ui/.eslintignore b/ui/.eslintignore deleted file mode 100644 index 3897265..0000000 --- a/ui/.eslintignore +++ /dev/null @@ -1,13 +0,0 @@ -.DS_Store -node_modules -/build -/.svelte-kit -/package -.env -.env.* -!.env.example - -# Ignore files for PNPM, NPM and YARN -pnpm-lock.yaml -package-lock.json -yarn.lock diff --git a/ui/.eslintrc.cjs b/ui/.eslintrc.cjs deleted file mode 100644 index 28b14aa..0000000 --- a/ui/.eslintrc.cjs +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - root: true, - parser: '@typescript-eslint/parser', - extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], - plugins: ['svelte3', '@typescript-eslint'], - ignorePatterns: ['*.cjs'], - overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }], - settings: { - 'svelte3/typescript': () => require('typescript'), - }, - parserOptions: { - sourceType: 'module', - ecmaVersion: 2020, - }, - env: { - browser: true, - es2017: true, - node: true, - }, -} diff --git a/ui/.gitignore b/ui/.gitignore deleted file mode 100644 index c7764b6..0000000 --- a/ui/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -.DS_Store -node_modules -/build -/.svelte-kit -/package -.env -.env.* -!.env.example -!.env.production.example -vite.config.js.timestamp-* -vite.config.ts.timestamp-* diff --git a/ui/.npmrc b/ui/.npmrc deleted file mode 100644 index b6f27f1..0000000 --- a/ui/.npmrc +++ /dev/null @@ -1 +0,0 @@ -engine-strict=true diff --git a/ui/.prettierignore b/ui/.prettierignore deleted file mode 100644 index 3897265..0000000 --- a/ui/.prettierignore +++ /dev/null @@ -1,13 +0,0 @@ -.DS_Store -node_modules -/build -/.svelte-kit -/package -.env -.env.* -!.env.example - -# Ignore files for PNPM, NPM and YARN -pnpm-lock.yaml -package-lock.json -yarn.lock diff --git a/ui/.prettierrc b/ui/.prettierrc deleted file mode 100644 index d99e25f..0000000 --- a/ui/.prettierrc +++ /dev/null @@ -1,17 +0,0 @@ -{ - "useTabs": false, - "singleQuote": true, - "trailingComma": "all", - "semi": false, - "printWidth": 100, - "plugins": ["prettier-plugin-svelte"], - "pluginSearchDirs": ["."], - "overrides": [ - { - "files": "*.svelte", - "options": { - "parser": "svelte" - } - } - ] -} diff --git a/ui/.vscode/settings.json b/ui/.vscode/settings.json deleted file mode 100644 index fb613ca..0000000 --- a/ui/.vscode/settings.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "tailwindCSS.classAttributes": [ - "class", - "accent", - "active", - "background", - "badge", - "border", - "borderColor", - "borderWidth", - "button", - "buttonBack", - "buttonClasses", - "buttonComplete", - "buttonNext", - "buttonTextNext", - "buttonTextPrevious", - "chips", - "color", - "cursor", - "display", - "element", - "fill", - "flex", - "gap", - "gridColumns", - "height", - "hover", - "invalid", - "justify", - "meter", - "padding", - "regionBody", - "regionCaption", - "regionCaret", - "regionCone", - "regionContent", - "regionControl", - "regionDefault", - "regionFoot", - "regionHead", - "regionHeader", - "regionIcon", - "regionInterface", - "regionInterfaceText", - "regionLabel", - "regionLead", - "regionLegend", - "regionList", - "regionNavigation", - "regionPage", - "regionPanel", - "regionRowHeadline", - "regionRowMain", - "regionTrail", - "rounded", - "select", - "shadow", - "slotDefault", - "slotFooter", - "slotHeader", - "slotLead", - "slotMessage", - "slotMeta", - "slotPageContent", - "slotPageFooter", - "slotPageHeader", - "slotSidebarLeft", - "slotSidebarRight", - "slotTrail", - "space", - "spacing", - "text", - "track", - "width" - ] -} diff --git a/ui/README.md b/ui/README.md deleted file mode 100644 index 5c91169..0000000 --- a/ui/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# create-svelte - -Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). - -## Creating a project - -If you're seeing this, you've probably already done this step. Congrats! - -```bash -# create a new project in the current directory -npm create svelte@latest - -# create a new project in my-app -npm create svelte@latest my-app -``` - -## Developing - -Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: - -```bash -npm run dev - -# or start the server and open the app in a new browser tab -npm run dev -- --open -``` - -## Building - -To create a production version of your app: - -```bash -npm run build -``` - -You can preview the production build with `npm run preview`. - -> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. diff --git a/ui/package.json b/ui/package.json deleted file mode 100644 index 36363a9..0000000 --- a/ui/package.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "name": "ui", - "version": "0.0.1", - "private": true, - "scripts": { - "dev": "vite dev", - "build": "vite build", - "preview": "vite preview", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "lint": "prettier --plugin-search-dir . --check . && eslint .", - "format": "prettier --plugin-search-dir . --write ." - }, - "devDependencies": { - "@iconify/svelte": "^3.1.0", - "@skeletonlabs/skeleton": "^1.2.0", - "@sveltejs/adapter-auto": "^2.0.0", - "@sveltejs/kit": "^1.5.0", - "@tailwindcss/forms": "^0.5.3", - "@tailwindcss/line-clamp": "^0.4.2", - "@tailwindcss/typography": "^0.5.9", - "@typescript-eslint/eslint-plugin": "^5.45.0", - "@typescript-eslint/parser": "^5.45.0", - "autoprefixer": "^10.4.13", - "eslint": "^8.28.0", - "eslint-config-prettier": "^8.5.0", - "eslint-plugin-svelte3": "^4.0.0", - "postcss": "^8.4.21", - "postcss-import": "^15.1.0", - "prettier": "^2.8.0", - "prettier-plugin-svelte": "^2.8.1", - "svelte": "^3.54.0", - "svelte-check": "^3.0.1", - "svelte-preprocess": "^5.0.1", - "tailwindcss": "^3.2.7", - "tslib": "^2.4.1", - "typescript": "^4.9.3", - "vite": "^4.0.0" - }, - "type": "module", - "dependencies": { - "@floating-ui/dom": "^1.2.6", - "@sveltejs/adapter-static": "^2.0.1", - "ethers": "^6.0.8", - "highlight.js": "^11.7.0", - "svelte-loading-spinners": "^0.3.4" - } -} diff --git a/ui/pnpm-lock.yaml b/ui/pnpm-lock.yaml deleted file mode 100644 index 5bcb118..0000000 --- a/ui/pnpm-lock.yaml +++ /dev/null @@ -1,2517 +0,0 @@ -lockfileVersion: '9.0' - -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - -importers: - - .: - dependencies: - '@floating-ui/dom': - specifier: ^1.2.6 - version: 1.2.6 - '@sveltejs/adapter-static': - specifier: ^2.0.1 - version: 2.0.1(@sveltejs/kit@1.8.5) - ethers: - specifier: ^6.0.8 - version: 6.0.8 - highlight.js: - specifier: ^11.7.0 - version: 11.7.0 - svelte-loading-spinners: - specifier: ^0.3.4 - version: 0.3.4 - devDependencies: - '@iconify/svelte': - specifier: ^3.1.0 - version: 3.1.0(svelte@3.55.1) - '@skeletonlabs/skeleton': - specifier: ^1.2.0 - version: 1.2.0 - '@sveltejs/adapter-auto': - specifier: ^2.0.0 - version: 2.0.0(@sveltejs/kit@1.8.5) - '@sveltejs/kit': - specifier: ^1.5.0 - version: 1.8.5(svelte@3.55.1)(vite@4.1.4) - '@tailwindcss/forms': - specifier: ^0.5.3 - version: 0.5.3(tailwindcss@3.2.7) - '@tailwindcss/line-clamp': - specifier: ^0.4.2 - version: 0.4.2(tailwindcss@3.2.7) - '@tailwindcss/typography': - specifier: ^0.5.9 - version: 0.5.9(tailwindcss@3.2.7) - '@typescript-eslint/eslint-plugin': - specifier: ^5.45.0 - version: 5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.35.0)(typescript@4.9.5) - '@typescript-eslint/parser': - specifier: ^5.45.0 - version: 5.53.0(eslint@8.35.0)(typescript@4.9.5) - autoprefixer: - specifier: ^10.4.13 - version: 10.4.13(postcss@8.4.21) - eslint: - specifier: ^8.28.0 - version: 8.35.0 - eslint-config-prettier: - specifier: ^8.5.0 - version: 8.6.0(eslint@8.35.0) - eslint-plugin-svelte3: - specifier: ^4.0.0 - version: 4.0.0(eslint@8.35.0)(svelte@3.55.1) - postcss: - specifier: ^8.4.21 - version: 8.4.21 - postcss-import: - specifier: ^15.1.0 - version: 15.1.0(postcss@8.4.21) - prettier: - specifier: ^2.8.0 - version: 2.8.4 - prettier-plugin-svelte: - specifier: ^2.8.1 - version: 2.9.0(prettier@2.8.4)(svelte@3.55.1) - svelte: - specifier: ^3.54.0 - version: 3.55.1 - svelte-check: - specifier: ^3.0.1 - version: 3.0.4(postcss@8.4.21)(svelte@3.55.1) - svelte-preprocess: - specifier: ^5.0.1 - version: 5.0.1(postcss@8.4.21)(svelte@3.55.1)(typescript@4.9.5) - tailwindcss: - specifier: ^3.2.7 - version: 3.2.7(postcss@8.4.21) - tslib: - specifier: ^2.4.1 - version: 2.5.0 - typescript: - specifier: ^4.9.3 - version: 4.9.5 - vite: - specifier: ^4.0.0 - version: 4.1.4 - -packages: - - '@adraffy/ens-normalize@1.8.9': - resolution: {integrity: sha512-93OmGCV0vO8+JQ3FHG+gZk/MPHzzMPDRiCiFcCQNTCnHaaxsacO3ScTPGlu2wX2dOtgfalbchPcw1cOYYjHCYQ==} - - '@esbuild/android-arm64@0.16.17': - resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - - '@esbuild/android-arm@0.16.17': - resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - - '@esbuild/android-x64@0.16.17': - resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - - '@esbuild/darwin-arm64@0.16.17': - resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - - '@esbuild/darwin-x64@0.16.17': - resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - - '@esbuild/freebsd-arm64@0.16.17': - resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - - '@esbuild/freebsd-x64@0.16.17': - resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - - '@esbuild/linux-arm64@0.16.17': - resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - - '@esbuild/linux-arm@0.16.17': - resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - - '@esbuild/linux-ia32@0.16.17': - resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - - '@esbuild/linux-loong64@0.16.17': - resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - - '@esbuild/linux-mips64el@0.16.17': - resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - - '@esbuild/linux-ppc64@0.16.17': - resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - - '@esbuild/linux-riscv64@0.16.17': - resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - - '@esbuild/linux-s390x@0.16.17': - resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - - '@esbuild/linux-x64@0.16.17': - resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - - '@esbuild/netbsd-x64@0.16.17': - resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - - '@esbuild/openbsd-x64@0.16.17': - resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - - '@esbuild/sunos-x64@0.16.17': - resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - - '@esbuild/win32-arm64@0.16.17': - resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - - '@esbuild/win32-ia32@0.16.17': - resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - - '@esbuild/win32-x64@0.16.17': - resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - - '@eslint/eslintrc@2.0.0': - resolution: {integrity: sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/js@8.35.0': - resolution: {integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@floating-ui/core@1.2.6': - resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==} - - '@floating-ui/dom@1.2.6': - resolution: {integrity: sha512-02vxFDuvuVPs22iJICacezYJyf7zwwOCWkPNkWNBr1U0Qt1cKFYzWvxts0AmqcOQGwt/3KJWcWIgtbUU38keyw==} - - '@humanwhocodes/config-array@0.11.8': - resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} - engines: {node: '>=10.10.0'} - - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/object-schema@1.2.1': - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - - '@iconify/svelte@3.1.0': - resolution: {integrity: sha512-G1w1dcO7eiD+JmQJNwNW4qnAn86oQxKLe1P/iAPjJ0qYYuF7Pb60TPrlcj4+2gu4SXe3a0Jrv++8YmceG+gX/g==} - peerDependencies: - svelte: '>=3' - - '@iconify/types@2.0.0': - resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} - - '@jridgewell/resolve-uri@3.1.0': - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} - - '@jridgewell/sourcemap-codec@1.4.14': - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - - '@jridgewell/trace-mapping@0.3.17': - resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} - - '@noble/hashes@1.1.2': - resolution: {integrity: sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==} - - '@noble/secp256k1@1.7.1': - resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} - - '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} - - '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} - - '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} - - '@polka/url@1.0.0-next.21': - resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} - - '@skeletonlabs/skeleton@1.2.0': - resolution: {integrity: sha512-WM+vPS3kf2b9bnN4Gr8YpMjRj7Z6gNNgGLeRlmcS50lotpH5oGpbiGh8oxf/j2j0cJeHv2bIwtXkqISuypZs+Q==} - - '@sveltejs/adapter-auto@2.0.0': - resolution: {integrity: sha512-b+gkHFZgD771kgV3aO4avHFd7y1zhmMYy9i6xOK7m/rwmwaRO8gnF5zBc0Rgca80B2PMU1bKNxyBTHA14OzUAQ==} - peerDependencies: - '@sveltejs/kit': ^1.0.0 - - '@sveltejs/adapter-static@2.0.1': - resolution: {integrity: sha512-o5/q3YwD/ErxYCFlK1v3ydvldyNKk1lh3oeyxn4mhz+Pkbx/uuxhzmbOpytTlp5aVqNHDVsb04xadUzOFCDDzw==} - peerDependencies: - '@sveltejs/kit': ^1.5.0 - - '@sveltejs/kit@1.8.5': - resolution: {integrity: sha512-b6kbjVAivoPd3oL9IVBaZBWiuHeI0qBKfszSDXcqsPfiSMyUK7ilHDFVSWNn+2EMPO48+87iuho71yTCOXZE3w==} - engines: {node: ^16.14 || >=18} - hasBin: true - peerDependencies: - svelte: ^3.54.0 - vite: ^4.0.0 - - '@sveltejs/vite-plugin-svelte@2.0.3': - resolution: {integrity: sha512-o+cguBFdwIGtRbNkYOyqTM7KvRUffxh5bfK4oJsWKG2obu+v/cbpT03tJrGl58C7tRXo/aEC0/axN5FVHBj0nA==} - engines: {node: ^14.18.0 || >= 16} - peerDependencies: - svelte: ^3.54.0 - vite: ^4.0.0 - - '@tailwindcss/forms@0.5.3': - resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==} - peerDependencies: - tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' - - '@tailwindcss/line-clamp@0.4.2': - resolution: {integrity: sha512-HFzAQuqYCjyy/SX9sLGB1lroPzmcnWv1FHkIpmypte10hptf4oPUfucryMKovZh2u0uiS9U5Ty3GghWfEJGwVw==} - peerDependencies: - tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' - - '@tailwindcss/typography@0.5.9': - resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==} - peerDependencies: - tailwindcss: '>=3.0.0 || insiders' - - '@types/cookie@0.5.1': - resolution: {integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==} - - '@types/json-schema@7.0.11': - resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} - - '@types/node@18.14.2': - resolution: {integrity: sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA==} - - '@types/pug@2.0.6': - resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} - - '@types/sass@1.43.1': - resolution: {integrity: sha512-BPdoIt1lfJ6B7rw35ncdwBZrAssjcwzI5LByIrYs+tpXlj/CAkuVdRsgZDdP4lq5EjyWzwxZCqAoFyHKFwp32g==} - - '@types/semver@7.3.13': - resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} - - '@typescript-eslint/eslint-plugin@5.53.0': - resolution: {integrity: sha512-alFpFWNucPLdUOySmXCJpzr6HKC3bu7XooShWM+3w/EL6J2HIoB2PFxpLnq4JauWVk6DiVeNKzQlFEaE+X9sGw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/parser@5.53.0': - resolution: {integrity: sha512-MKBw9i0DLYlmdOb3Oq/526+al20AJZpANdT6Ct9ffxcV8nKCHz63t/S0IhlTFNsBIHJv+GY5SFJ0XfqVeydQrQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/scope-manager@5.53.0': - resolution: {integrity: sha512-Opy3dqNsp/9kBBeCPhkCNR7fmdSQqA+47r21hr9a14Bx0xnkElEQmhoHga+VoaoQ6uDHjDKmQPIYcUcKJifS7w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/type-utils@5.53.0': - resolution: {integrity: sha512-HO2hh0fmtqNLzTAme/KnND5uFNwbsdYhCZghK2SoxGp3Ifn2emv+hi0PBUjzzSh0dstUIFqOj3bp0AwQlK4OWw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/types@5.53.0': - resolution: {integrity: sha512-5kcDL9ZUIP756K6+QOAfPkigJmCPHcLN7Zjdz76lQWWDdzfOhZDTj1irs6gPBKiXx5/6O3L0+AvupAut3z7D2A==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/typescript-estree@5.53.0': - resolution: {integrity: sha512-eKmipH7QyScpHSkhbptBBYh9v8FxtngLquq292YTEQ1pxVs39yFBlLC1xeIZcPPz1RWGqb7YgERJRGkjw8ZV7w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/utils@5.53.0': - resolution: {integrity: sha512-VUOOtPv27UNWLxFwQK/8+7kvxVC+hPHNsJjzlJyotlaHjLSIgOCKj9I0DBUjwOOA64qjBwx5afAPjksqOxMO0g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - - '@typescript-eslint/visitor-keys@5.53.0': - resolution: {integrity: sha512-JqNLnX3leaHFZEN0gCh81sIvgrp/2GOACZNgO4+Tkf64u51kTpAyWFOY8XHx8XuXr3N2C9zgPPHtcpMg6z1g0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} - peerDependencies: - acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - - acorn-node@1.8.2: - resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} - - acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} - - acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} - hasBin: true - - acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} - engines: {node: '>=0.4.0'} - hasBin: true - - aes-js@4.0.0-beta.3: - resolution: {integrity: sha512-/xJX0/VTPcbc5xQE2VUP91y1xN8q/rDfhEzLm+vLc3hYvb5+qHCnpJRuFcrKn63zumK/sCwYYzhG8HP78JYSTA==} - - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - - ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} - - ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} - - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - - arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - - argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - - autoprefixer@10.4.13: - resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - - binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} - - brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - - braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} - - browserslist@4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} - - busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} - - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - - caniuse-lite@1.0.30001458: - resolution: {integrity: sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w==} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} - - color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} - - color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - - concat-map@0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} - - cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} - - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} - - cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} - hasBin: true - - debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - - deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - - deepmerge@4.3.0: - resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} - engines: {node: '>=0.10.0'} - - defined@1.0.1: - resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} - - detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} - - detective@5.2.1: - resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} - engines: {node: '>=0.8.0'} - hasBin: true - - devalue@4.3.0: - resolution: {integrity: sha512-n94yQo4LI3w7erwf84mhRUkUJfhLoCZiLyoOZ/QFsDbcWNZePrLwbQpvZBUG2TNxwV3VjCKPxkiiQA6pe3TrTA==} - - didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - - dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - - electron-to-chromium@1.4.311: - resolution: {integrity: sha512-RoDlZufvrtr2Nx3Yx5MB8jX3aHIxm8nRWPJm3yVvyHmyKaRvn90RjzB6hNnt0AkhS3IInJdyRfQb4mWhPvUjVw==} - - es6-promise@3.3.1: - resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} - - esbuild@0.16.17: - resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} - engines: {node: '>=12'} - hasBin: true - - escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} - - escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} - - eslint-config-prettier@8.6.0: - resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} - hasBin: true - peerDependencies: - eslint: '>=7.0.0' - - eslint-plugin-svelte3@4.0.0: - resolution: {integrity: sha512-OIx9lgaNzD02+MDFNLw0GEUbuovNcglg+wnd/UY0fbZmlQSz7GlQiQ1f+yX0XvC07XPcDOnFcichqI3xCwp71g==} - peerDependencies: - eslint: '>=8.0.0' - svelte: ^3.2.0 - - eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} - - eslint-scope@7.1.1: - resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint-utils@3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - - eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - - eslint-visitor-keys@3.3.0: - resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - eslint@8.35.0: - resolution: {integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true - - esm-env@1.0.0: - resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} - - espree@9.4.1: - resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - esquery@1.4.2: - resolution: {integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==} - engines: {node: '>=0.10'} - - esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} - - estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} - - estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} - - esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} - - ethers@6.0.8: - resolution: {integrity: sha512-j5smdMwn4t4vEARcfUv54mTJ2NMCorYLL51wPjFInEnrRr2SF5Sl9a7Z4DXS8UO1fBJVGHnjDDrF1b7msY3f7Q==} - engines: {node: '>=14.0.0'} - - fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - - fast-glob@3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} - engines: {node: '>=8.6.0'} - - fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - - fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - - fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} - - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} - - fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} - - find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} - - flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} - - flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} - - fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} - - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - - fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - - function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - - glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} - - glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} - - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - - globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} - engines: {node: '>=8'} - - globalyzer@0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} - - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - - globrex@0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} - - graceful-fs@4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - - grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - - has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} - - highlight.js@11.7.0: - resolution: {integrity: sha512-1rRqesRFhMO/PRF+G86evnyJkCgaZFOI+Z6kdj15TA18funfoqJXvgPCLSf0SWq3SRfg1j3HlDs8o4s3EGq1oQ==} - engines: {node: '>=12.0.0'} - - ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} - - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-meta-resolve@2.2.1: - resolution: {integrity: sha512-C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw==} - - imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} - - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - - inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - - is-core-module@2.11.0: - resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} - - is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} - - is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} - - is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} - - is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - - isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - - js-sdsl@4.3.0: - resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true - - json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - - json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - - kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - - levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} - - lilconfig@2.0.6: - resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} - engines: {node: '>=10'} - - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} - - lodash.castarray@4.4.0: - resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} - - lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} - - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - - lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} - - magic-string@0.27.0: - resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} - engines: {node: '>=12'} - - magic-string@0.29.0: - resolution: {integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==} - engines: {node: '>=12'} - - magic-string@0.30.0: - resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} - engines: {node: '>=12'} - - merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} - - micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} - - mime@3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} - hasBin: true - - min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} - - mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} - hasBin: true - - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - - mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true - - mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} - - mrmime@1.0.1: - resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} - engines: {node: '>=10'} - - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - - nanoid@3.3.4: - resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} - - natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - - node-releases@2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} - - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - - object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} - - once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} - - optionator@0.9.1: - resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} - engines: {node: '>= 0.8.0'} - - p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} - - p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} - - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} - - path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} - - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - - path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} - - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - - postcss-import@14.1.0: - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} - peerDependencies: - postcss: ^8.0.0 - - postcss-import@15.1.0: - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 - - postcss-js@4.0.1: - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 - - postcss-load-config@3.1.4: - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - - postcss-nested@6.0.0: - resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 - - postcss-selector-parser@6.0.10: - resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} - engines: {node: '>=4'} - - postcss-selector-parser@6.0.11: - resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} - engines: {node: '>=4'} - - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@8.4.21: - resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} - engines: {node: ^10 || ^12 || >=14} - - prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} - - prettier-plugin-svelte@2.9.0: - resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==} - peerDependencies: - prettier: ^1.16.4 || ^2.0.0 - svelte: ^3.2.0 - - prettier@2.8.4: - resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} - engines: {node: '>=10.13.0'} - hasBin: true - - punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} - - queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - - read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} - - regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve@1.22.1: - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} - hasBin: true - - reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - - rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - hasBin: true - - rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true - - rollup@3.17.3: - resolution: {integrity: sha512-p5LaCXiiOL/wrOkj8djsIDFmyU9ysUxcyW+EKRLHb6TKldJzXpImjcRSR+vgo09DBdofGcOoLOsRyxxG2n5/qQ==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - - run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} - - sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} - - sander@0.5.1: - resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} - - semver@7.3.8: - resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} - engines: {node: '>=10'} - hasBin: true - - set-cookie-parser@2.5.1: - resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==} - - shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} - - shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} - - sirv@2.0.2: - resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} - engines: {node: '>= 10'} - - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} - - sorcery@0.11.0: - resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==} - hasBin: true - - source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} - - streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} - - strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} - - strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svelte-check@3.0.4: - resolution: {integrity: sha512-feIyBAA5cSIxq4vq6mwGvGQTHy/wBVQbs5b+/VvE21WN8X7nonAuSqwvZv0UDBowzRka3Rh4gmLPH8rPePz3/w==} - hasBin: true - peerDependencies: - svelte: ^3.55.0 - - svelte-hmr@0.15.1: - resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} - engines: {node: ^12.20 || ^14.13.1 || >= 16} - peerDependencies: - svelte: '>=3.19.0' - - svelte-loading-spinners@0.3.4: - resolution: {integrity: sha512-vKaW71QMCBcTNijAGc0mUl8k3DQ66iYmp6MB8BMGCXyWk82bTrcLy8FOnSm9fE+8q6TwzD6PLUoYFHt0II93Xw==} - - svelte-preprocess@5.0.1: - resolution: {integrity: sha512-0HXyhCoc9rsW4zGOgtInylC6qj259E1hpFnJMJWTf+aIfeqh4O/QHT31KT2hvPEqQfdjmqBR/kO2JDkkciBLrQ==} - engines: {node: '>= 14.10.0'} - peerDependencies: - '@babel/core': ^7.10.2 - coffeescript: ^2.5.1 - less: ^3.11.3 || ^4.0.0 - postcss: ^7 || ^8 - postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 - pug: ^3.0.0 - sass: ^1.26.8 - stylus: ^0.55.0 - sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 - svelte: ^3.23.0 - typescript: ^3.9.5 || ^4.0.0 - peerDependenciesMeta: - '@babel/core': - optional: true - coffeescript: - optional: true - less: - optional: true - postcss: - optional: true - postcss-load-config: - optional: true - pug: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - typescript: - optional: true - - svelte@3.55.1: - resolution: {integrity: sha512-S+87/P0Ve67HxKkEV23iCdAh/SX1xiSfjF1HOglno/YTbSTW7RniICMCofWGdJJbdjw3S+0PfFb1JtGfTXE0oQ==} - engines: {node: '>= 8'} - - svelte@3.58.0: - resolution: {integrity: sha512-brIBNNB76mXFmU/Kerm4wFnkskBbluBDCjx/8TcpYRb298Yh2dztS2kQ6bhtjMcvUhd5ynClfwpz5h2gnzdQ1A==} - engines: {node: '>= 8'} - - tailwindcss@3.2.7: - resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==} - engines: {node: '>=12.13.0'} - hasBin: true - peerDependencies: - postcss: ^8.0.9 - - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - - tiny-glob@0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} - - to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} - - totalist@3.0.0: - resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} - engines: {node: '>=6'} - - tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - - tslib@2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - - tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - - tsutils@3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - - type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} - - type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - - typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} - hasBin: true - - undici@5.20.0: - resolution: {integrity: sha512-J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g==} - engines: {node: '>=12.18'} - - update-browserslist-db@1.0.10: - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - - uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - - util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - - vite@4.1.4: - resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - - vitefu@0.2.4: - resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 - peerDependenciesMeta: - vite: - optional: true - - which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} - hasBin: true - - word-wrap@1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} - engines: {node: '>=0.10.0'} - - wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - - ws@8.5.0: - resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==} - engines: {node: '>=10.0.0'} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - - xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} - - yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - - yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - - yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} - -snapshots: - - '@adraffy/ens-normalize@1.8.9': {} - - '@esbuild/android-arm64@0.16.17': - optional: true - - '@esbuild/android-arm@0.16.17': - optional: true - - '@esbuild/android-x64@0.16.17': - optional: true - - '@esbuild/darwin-arm64@0.16.17': - optional: true - - '@esbuild/darwin-x64@0.16.17': - optional: true - - '@esbuild/freebsd-arm64@0.16.17': - optional: true - - '@esbuild/freebsd-x64@0.16.17': - optional: true - - '@esbuild/linux-arm64@0.16.17': - optional: true - - '@esbuild/linux-arm@0.16.17': - optional: true - - '@esbuild/linux-ia32@0.16.17': - optional: true - - '@esbuild/linux-loong64@0.16.17': - optional: true - - '@esbuild/linux-mips64el@0.16.17': - optional: true - - '@esbuild/linux-ppc64@0.16.17': - optional: true - - '@esbuild/linux-riscv64@0.16.17': - optional: true - - '@esbuild/linux-s390x@0.16.17': - optional: true - - '@esbuild/linux-x64@0.16.17': - optional: true - - '@esbuild/netbsd-x64@0.16.17': - optional: true - - '@esbuild/openbsd-x64@0.16.17': - optional: true - - '@esbuild/sunos-x64@0.16.17': - optional: true - - '@esbuild/win32-arm64@0.16.17': - optional: true - - '@esbuild/win32-ia32@0.16.17': - optional: true - - '@esbuild/win32-x64@0.16.17': - optional: true - - '@eslint/eslintrc@2.0.0': - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 9.4.1 - globals: 13.20.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/js@8.35.0': {} - - '@floating-ui/core@1.2.6': {} - - '@floating-ui/dom@1.2.6': - dependencies: - '@floating-ui/core': 1.2.6 - - '@humanwhocodes/config-array@0.11.8': - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - - '@humanwhocodes/module-importer@1.0.1': {} - - '@humanwhocodes/object-schema@1.2.1': {} - - '@iconify/svelte@3.1.0(svelte@3.55.1)': - dependencies: - '@iconify/types': 2.0.0 - svelte: 3.55.1 - - '@iconify/types@2.0.0': {} - - '@jridgewell/resolve-uri@3.1.0': {} - - '@jridgewell/sourcemap-codec@1.4.14': {} - - '@jridgewell/trace-mapping@0.3.17': - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 - - '@noble/hashes@1.1.2': {} - - '@noble/secp256k1@1.7.1': {} - - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - - '@nodelib/fs.stat@2.0.5': {} - - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 - - '@polka/url@1.0.0-next.21': {} - - '@skeletonlabs/skeleton@1.2.0': - dependencies: - svelte: 3.58.0 - - '@sveltejs/adapter-auto@2.0.0(@sveltejs/kit@1.8.5)': - dependencies: - '@sveltejs/kit': 1.8.5(svelte@3.55.1)(vite@4.1.4) - import-meta-resolve: 2.2.1 - - '@sveltejs/adapter-static@2.0.1(@sveltejs/kit@1.8.5)': - dependencies: - '@sveltejs/kit': 1.8.5(svelte@3.55.1)(vite@4.1.4) - - '@sveltejs/kit@1.8.5(svelte@3.55.1)(vite@4.1.4)': - dependencies: - '@sveltejs/vite-plugin-svelte': 2.0.3(svelte@3.55.1)(vite@4.1.4) - '@types/cookie': 0.5.1 - cookie: 0.5.0 - devalue: 4.3.0 - esm-env: 1.0.0 - kleur: 4.1.5 - magic-string: 0.30.0 - mime: 3.0.0 - sade: 1.8.1 - set-cookie-parser: 2.5.1 - sirv: 2.0.2 - svelte: 3.55.1 - tiny-glob: 0.2.9 - undici: 5.20.0 - vite: 4.1.4 - transitivePeerDependencies: - - supports-color - - '@sveltejs/vite-plugin-svelte@2.0.3(svelte@3.55.1)(vite@4.1.4)': - dependencies: - debug: 4.3.4 - deepmerge: 4.3.0 - kleur: 4.1.5 - magic-string: 0.29.0 - svelte: 3.55.1 - svelte-hmr: 0.15.1(svelte@3.55.1) - vite: 4.1.4 - vitefu: 0.2.4(vite@4.1.4) - transitivePeerDependencies: - - supports-color - - '@tailwindcss/forms@0.5.3(tailwindcss@3.2.7)': - dependencies: - mini-svg-data-uri: 1.4.4 - tailwindcss: 3.2.7(postcss@8.4.21) - - '@tailwindcss/line-clamp@0.4.2(tailwindcss@3.2.7)': - dependencies: - tailwindcss: 3.2.7(postcss@8.4.21) - - '@tailwindcss/typography@0.5.9(tailwindcss@3.2.7)': - dependencies: - lodash.castarray: 4.4.0 - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - postcss-selector-parser: 6.0.10 - tailwindcss: 3.2.7(postcss@8.4.21) - - '@types/cookie@0.5.1': {} - - '@types/json-schema@7.0.11': {} - - '@types/node@18.14.2': {} - - '@types/pug@2.0.6': {} - - '@types/sass@1.43.1': - dependencies: - '@types/node': 18.14.2 - - '@types/semver@7.3.13': {} - - '@typescript-eslint/eslint-plugin@5.53.0(@typescript-eslint/parser@5.53.0)(eslint@8.35.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/parser': 5.53.0(eslint@8.35.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/type-utils': 5.53.0(eslint@8.35.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.53.0(eslint@8.35.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.35.0 - grapheme-splitter: 1.0.4 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.3.8 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@5.53.0(eslint@8.35.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.35.0 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/scope-manager@5.53.0': - dependencies: - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/visitor-keys': 5.53.0 - - '@typescript-eslint/type-utils@5.53.0(eslint@8.35.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.53.0(eslint@8.35.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 8.35.0 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/types@5.53.0': {} - - '@typescript-eslint/typescript-estree@5.53.0(typescript@4.9.5)': - dependencies: - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/visitor-keys': 5.53.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/utils@5.53.0(eslint@8.35.0)(typescript@4.9.5)': - dependencies: - '@types/json-schema': 7.0.11 - '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/typescript-estree': 5.53.0(typescript@4.9.5) - eslint: 8.35.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.35.0) - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/visitor-keys@5.53.0': - dependencies: - '@typescript-eslint/types': 5.53.0 - eslint-visitor-keys: 3.3.0 - - acorn-jsx@5.3.2(acorn@8.8.2): - dependencies: - acorn: 8.8.2 - - acorn-node@1.8.2: - dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - xtend: 4.0.2 - - acorn-walk@7.2.0: {} - - acorn@7.4.1: {} - - acorn@8.8.2: {} - - aes-js@4.0.0-beta.3: {} - - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - - ansi-regex@5.0.1: {} - - ansi-styles@4.3.0: - dependencies: - color-convert: 2.0.1 - - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - - arg@5.0.2: {} - - argparse@2.0.1: {} - - array-union@2.1.0: {} - - autoprefixer@10.4.13(postcss@8.4.21): - dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001458 - fraction.js: 4.2.0 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - - balanced-match@1.0.2: {} - - binary-extensions@2.2.0: {} - - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - - braces@3.0.2: - dependencies: - fill-range: 7.0.1 - - browserslist@4.21.5: - dependencies: - caniuse-lite: 1.0.30001458 - electron-to-chromium: 1.4.311 - node-releases: 2.0.10 - update-browserslist-db: 1.0.10(browserslist@4.21.5) - - buffer-crc32@0.2.13: {} - - busboy@1.6.0: - dependencies: - streamsearch: 1.1.0 - - callsites@3.1.0: {} - - camelcase-css@2.0.1: {} - - caniuse-lite@1.0.30001458: {} - - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chokidar@3.5.3: - dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.2 - - color-convert@2.0.1: - dependencies: - color-name: 1.1.4 - - color-name@1.1.4: {} - - concat-map@0.0.1: {} - - cookie@0.5.0: {} - - cross-spawn@7.0.3: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - - cssesc@3.0.0: {} - - debug@4.3.4: - dependencies: - ms: 2.1.2 - - deep-is@0.1.4: {} - - deepmerge@4.3.0: {} - - defined@1.0.1: {} - - detect-indent@6.1.0: {} - - detective@5.2.1: - dependencies: - acorn-node: 1.8.2 - defined: 1.0.1 - minimist: 1.2.8 - - devalue@4.3.0: {} - - didyoumean@1.2.2: {} - - dir-glob@3.0.1: - dependencies: - path-type: 4.0.0 - - dlv@1.1.3: {} - - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - - electron-to-chromium@1.4.311: {} - - es6-promise@3.3.1: {} - - esbuild@0.16.17: - optionalDependencies: - '@esbuild/android-arm': 0.16.17 - '@esbuild/android-arm64': 0.16.17 - '@esbuild/android-x64': 0.16.17 - '@esbuild/darwin-arm64': 0.16.17 - '@esbuild/darwin-x64': 0.16.17 - '@esbuild/freebsd-arm64': 0.16.17 - '@esbuild/freebsd-x64': 0.16.17 - '@esbuild/linux-arm': 0.16.17 - '@esbuild/linux-arm64': 0.16.17 - '@esbuild/linux-ia32': 0.16.17 - '@esbuild/linux-loong64': 0.16.17 - '@esbuild/linux-mips64el': 0.16.17 - '@esbuild/linux-ppc64': 0.16.17 - '@esbuild/linux-riscv64': 0.16.17 - '@esbuild/linux-s390x': 0.16.17 - '@esbuild/linux-x64': 0.16.17 - '@esbuild/netbsd-x64': 0.16.17 - '@esbuild/openbsd-x64': 0.16.17 - '@esbuild/sunos-x64': 0.16.17 - '@esbuild/win32-arm64': 0.16.17 - '@esbuild/win32-ia32': 0.16.17 - '@esbuild/win32-x64': 0.16.17 - - escalade@3.1.1: {} - - escape-string-regexp@4.0.0: {} - - eslint-config-prettier@8.6.0(eslint@8.35.0): - dependencies: - eslint: 8.35.0 - - eslint-plugin-svelte3@4.0.0(eslint@8.35.0)(svelte@3.55.1): - dependencies: - eslint: 8.35.0 - svelte: 3.55.1 - - eslint-scope@5.1.1: - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 - - eslint-scope@7.1.1: - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 - - eslint-utils@3.0.0(eslint@8.35.0): - dependencies: - eslint: 8.35.0 - eslint-visitor-keys: 2.1.0 - - eslint-visitor-keys@2.1.0: {} - - eslint-visitor-keys@3.3.0: {} - - eslint@8.35.0: - dependencies: - '@eslint/eslintrc': 2.0.0 - '@eslint/js': 8.35.0 - '@humanwhocodes/config-array': 0.11.8 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 - escape-string-regexp: 4.0.0 - eslint-scope: 7.1.1 - eslint-utils: 3.0.0(eslint@8.35.0) - eslint-visitor-keys: 3.3.0 - espree: 9.4.1 - esquery: 1.4.2 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - find-up: 5.0.0 - glob-parent: 6.0.2 - globals: 13.20.0 - grapheme-splitter: 1.0.4 - ignore: 5.2.4 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-sdsl: 4.3.0 - js-yaml: 4.1.0 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.1 - regexpp: 3.2.0 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - text-table: 0.2.0 - transitivePeerDependencies: - - supports-color - - esm-env@1.0.0: {} - - espree@9.4.1: - dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) - eslint-visitor-keys: 3.3.0 - - esquery@1.4.2: - dependencies: - estraverse: 5.3.0 - - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - - estraverse@4.3.0: {} - - estraverse@5.3.0: {} - - esutils@2.0.3: {} - - ethers@6.0.8: - dependencies: - '@adraffy/ens-normalize': 1.8.9 - '@noble/hashes': 1.1.2 - '@noble/secp256k1': 1.7.1 - aes-js: 4.0.0-beta.3 - tslib: 2.4.0 - ws: 8.5.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - - fast-deep-equal@3.1.3: {} - - fast-glob@3.2.12: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 - - fast-json-stable-stringify@2.1.0: {} - - fast-levenshtein@2.0.6: {} - - fastq@1.15.0: - dependencies: - reusify: 1.0.4 - - file-entry-cache@6.0.1: - dependencies: - flat-cache: 3.0.4 - - fill-range@7.0.1: - dependencies: - to-regex-range: 5.0.1 - - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - - flat-cache@3.0.4: - dependencies: - flatted: 3.2.7 - rimraf: 3.0.2 - - flatted@3.2.7: {} - - fraction.js@4.2.0: {} - - fs.realpath@1.0.0: {} - - fsevents@2.3.2: - optional: true - - function-bind@1.1.1: {} - - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - - glob-parent@6.0.2: - dependencies: - is-glob: 4.0.3 - - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - - globals@13.20.0: - dependencies: - type-fest: 0.20.2 - - globalyzer@0.1.0: {} - - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 3.0.0 - - globrex@0.1.2: {} - - graceful-fs@4.2.10: {} - - grapheme-splitter@1.0.4: {} - - has-flag@4.0.0: {} - - has@1.0.3: - dependencies: - function-bind: 1.1.1 - - highlight.js@11.7.0: {} - - ignore@5.2.4: {} - - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - import-meta-resolve@2.2.1: {} - - imurmurhash@0.1.4: {} - - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - - inherits@2.0.4: {} - - is-binary-path@2.1.0: - dependencies: - binary-extensions: 2.2.0 - - is-core-module@2.11.0: - dependencies: - has: 1.0.3 - - is-extglob@2.1.1: {} - - is-glob@4.0.3: - dependencies: - is-extglob: 2.1.1 - - is-number@7.0.0: {} - - is-path-inside@3.0.3: {} - - isexe@2.0.0: {} - - js-sdsl@4.3.0: {} - - js-yaml@4.1.0: - dependencies: - argparse: 2.0.1 - - json-schema-traverse@0.4.1: {} - - json-stable-stringify-without-jsonify@1.0.1: {} - - kleur@4.1.5: {} - - levn@0.4.1: - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - - lilconfig@2.0.6: {} - - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - - lodash.castarray@4.4.0: {} - - lodash.isplainobject@4.0.6: {} - - lodash.merge@4.6.2: {} - - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - - magic-string@0.27.0: - dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 - - magic-string@0.29.0: - dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 - - magic-string@0.30.0: - dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 - - merge2@1.4.1: {} - - micromatch@4.0.5: - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - - mime@3.0.0: {} - - min-indent@1.0.1: {} - - mini-svg-data-uri@1.4.4: {} - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - - minimist@1.2.8: {} - - mkdirp@0.5.6: - dependencies: - minimist: 1.2.8 - - mri@1.2.0: {} - - mrmime@1.0.1: {} - - ms@2.1.2: {} - - nanoid@3.3.4: {} - - natural-compare-lite@1.4.0: {} - - natural-compare@1.4.0: {} - - node-releases@2.0.10: {} - - normalize-path@3.0.0: {} - - normalize-range@0.1.2: {} - - object-hash@3.0.0: {} - - once@1.4.0: - dependencies: - wrappy: 1.0.2 - - optionator@0.9.1: - dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - word-wrap: 1.2.3 - - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 - - path-exists@4.0.0: {} - - path-is-absolute@1.0.1: {} - - path-key@3.1.1: {} - - path-parse@1.0.7: {} - - path-type@4.0.0: {} - - picocolors@1.0.0: {} - - picomatch@2.3.1: {} - - pify@2.3.0: {} - - postcss-import@14.1.0(postcss@8.4.21): - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.1 - - postcss-import@15.1.0(postcss@8.4.21): - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.1 - - postcss-js@4.0.1(postcss@8.4.21): - dependencies: - camelcase-css: 2.0.1 - postcss: 8.4.21 - - postcss-load-config@3.1.4(postcss@8.4.21): - dependencies: - lilconfig: 2.0.6 - postcss: 8.4.21 - yaml: 1.10.2 - - postcss-nested@6.0.0(postcss@8.4.21): - dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 - - postcss-selector-parser@6.0.10: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-selector-parser@6.0.11: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-value-parser@4.2.0: {} - - postcss@8.4.21: - dependencies: - nanoid: 3.3.4 - picocolors: 1.0.0 - source-map-js: 1.0.2 - - prelude-ls@1.2.1: {} - - prettier-plugin-svelte@2.9.0(prettier@2.8.4)(svelte@3.55.1): - dependencies: - prettier: 2.8.4 - svelte: 3.55.1 - - prettier@2.8.4: {} - - punycode@2.3.0: {} - - queue-microtask@1.2.3: {} - - quick-lru@5.1.1: {} - - read-cache@1.0.0: - dependencies: - pify: 2.3.0 - - readdirp@3.6.0: - dependencies: - picomatch: 2.3.1 - - regexpp@3.2.0: {} - - resolve-from@4.0.0: {} - - resolve@1.22.1: - dependencies: - is-core-module: 2.11.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - reusify@1.0.4: {} - - rimraf@2.7.1: - dependencies: - glob: 7.2.3 - - rimraf@3.0.2: - dependencies: - glob: 7.2.3 - - rollup@3.17.3: - optionalDependencies: - fsevents: 2.3.2 - - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - - sade@1.8.1: - dependencies: - mri: 1.2.0 - - sander@0.5.1: - dependencies: - es6-promise: 3.3.1 - graceful-fs: 4.2.10 - mkdirp: 0.5.6 - rimraf: 2.7.1 - - semver@7.3.8: - dependencies: - lru-cache: 6.0.0 - - set-cookie-parser@2.5.1: {} - - shebang-command@2.0.0: - dependencies: - shebang-regex: 3.0.0 - - shebang-regex@3.0.0: {} - - sirv@2.0.2: - dependencies: - '@polka/url': 1.0.0-next.21 - mrmime: 1.0.1 - totalist: 3.0.0 - - slash@3.0.0: {} - - sorcery@0.11.0: - dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 - buffer-crc32: 0.2.13 - minimist: 1.2.8 - sander: 0.5.1 - - source-map-js@1.0.2: {} - - streamsearch@1.1.0: {} - - strip-ansi@6.0.1: - dependencies: - ansi-regex: 5.0.1 - - strip-indent@3.0.0: - dependencies: - min-indent: 1.0.1 - - strip-json-comments@3.1.1: {} - - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - - supports-preserve-symlinks-flag@1.0.0: {} - - svelte-check@3.0.4(postcss@8.4.21)(svelte@3.55.1): - dependencies: - '@jridgewell/trace-mapping': 0.3.17 - chokidar: 3.5.3 - fast-glob: 3.2.12 - import-fresh: 3.3.0 - picocolors: 1.0.0 - sade: 1.8.1 - svelte: 3.55.1 - svelte-preprocess: 5.0.1(postcss@8.4.21)(svelte@3.55.1)(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - '@babel/core' - - coffeescript - - less - - postcss - - postcss-load-config - - pug - - sass - - stylus - - sugarss - - svelte-hmr@0.15.1(svelte@3.55.1): - dependencies: - svelte: 3.55.1 - - svelte-loading-spinners@0.3.4: {} - - svelte-preprocess@5.0.1(postcss@8.4.21)(svelte@3.55.1)(typescript@4.9.5): - dependencies: - '@types/pug': 2.0.6 - '@types/sass': 1.43.1 - detect-indent: 6.1.0 - magic-string: 0.27.0 - postcss: 8.4.21 - sorcery: 0.11.0 - strip-indent: 3.0.0 - svelte: 3.55.1 - typescript: 4.9.5 - - svelte@3.55.1: {} - - svelte@3.58.0: {} - - tailwindcss@3.2.7(postcss@8.4.21): - dependencies: - arg: 5.0.2 - chokidar: 3.5.3 - color-name: 1.1.4 - detective: 5.2.1 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.2.12 - glob-parent: 6.0.2 - is-glob: 4.0.3 - lilconfig: 2.0.6 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.21 - postcss-import: 14.1.0(postcss@8.4.21) - postcss-js: 4.0.1(postcss@8.4.21) - postcss-load-config: 3.1.4(postcss@8.4.21) - postcss-nested: 6.0.0(postcss@8.4.21) - postcss-selector-parser: 6.0.11 - postcss-value-parser: 4.2.0 - quick-lru: 5.1.1 - resolve: 1.22.1 - transitivePeerDependencies: - - ts-node - - text-table@0.2.0: {} - - tiny-glob@0.2.9: - dependencies: - globalyzer: 0.1.0 - globrex: 0.1.2 - - to-regex-range@5.0.1: - dependencies: - is-number: 7.0.0 - - totalist@3.0.0: {} - - tslib@1.14.1: {} - - tslib@2.4.0: {} - - tslib@2.5.0: {} - - tsutils@3.21.0(typescript@4.9.5): - dependencies: - tslib: 1.14.1 - typescript: 4.9.5 - - type-check@0.4.0: - dependencies: - prelude-ls: 1.2.1 - - type-fest@0.20.2: {} - - typescript@4.9.5: {} - - undici@5.20.0: - dependencies: - busboy: 1.6.0 - - update-browserslist-db@1.0.10(browserslist@4.21.5): - dependencies: - browserslist: 4.21.5 - escalade: 3.1.1 - picocolors: 1.0.0 - - uri-js@4.4.1: - dependencies: - punycode: 2.3.0 - - util-deprecate@1.0.2: {} - - vite@4.1.4: - dependencies: - esbuild: 0.16.17 - postcss: 8.4.21 - resolve: 1.22.1 - rollup: 3.17.3 - optionalDependencies: - fsevents: 2.3.2 - - vitefu@0.2.4(vite@4.1.4): - dependencies: - vite: 4.1.4 - - which@2.0.2: - dependencies: - isexe: 2.0.0 - - word-wrap@1.2.3: {} - - wrappy@1.0.2: {} - - ws@8.5.0: {} - - xtend@4.0.2: {} - - yallist@4.0.0: {} - - yaml@1.10.2: {} - - yocto-queue@0.1.0: {} diff --git a/ui/postcss.config.cjs b/ui/postcss.config.cjs deleted file mode 100644 index d0ffab7..0000000 --- a/ui/postcss.config.cjs +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - plugins: { - 'postcss-import': {}, - tailwindcss: {}, - autoprefixer: {}, - }, -} diff --git a/ui/src/app.d.ts b/ui/src/app.d.ts deleted file mode 100644 index 3e4ed20..0000000 --- a/ui/src/app.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -// See https://kit.svelte.dev/docs/types#app -// for information about these interfaces -// and what to do when importing types -declare namespace App { - // interface Locals {} - // interface PageData {} - // interface Error {} - // interface Platform {} -} diff --git a/ui/src/app.html b/ui/src/app.html deleted file mode 100644 index 3336860..0000000 --- a/ui/src/app.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - AnyABI - The easiest way to fetch an ABI - - - - - - - %sveltekit.head% - - -
%sveltekit.body%
- - - - - diff --git a/ui/src/app.postcss b/ui/src/app.postcss deleted file mode 100644 index c53cae3..0000000 --- a/ui/src/app.postcss +++ /dev/null @@ -1,5 +0,0 @@ -/*place global styles here */ -html, -body { - @apply h-full overflow-hidden; -} diff --git a/ui/src/lib/chains.json b/ui/src/lib/chains.json deleted file mode 100644 index 03c1988..0000000 --- a/ui/src/lib/chains.json +++ /dev/null @@ -1 +0,0 @@ -[{"name":"Ethereum Mainnet","chainId":1,"shortName":"eth","networkId":1,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://mainnet.infura.io/v3/${INFURA_API_KEY}","wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}","https://api.mycryptoapi.com/eth","https://cloudflare-eth.com","https://ethereum.publicnode.com"],"faucets":[],"infoURL":"https://ethereum.org"},{"name":"Expanse Network","chainId":2,"shortName":"exp","networkId":1,"nativeCurrency":{"name":"Expanse Network Ether","symbol":"EXP","decimals":18},"rpc":["https://node.expanse.tech"],"faucets":[],"infoURL":"https://expanse.tech"},{"name":"Ropsten","chainId":3,"shortName":"rop","networkId":3,"nativeCurrency":{"name":"Ropsten Ether","symbol":"ETH","decimals":18},"rpc":["https://ropsten.infura.io/v3/${INFURA_API_KEY}","wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":["http://fauceth.komputing.org?chain=3&address=${ADDRESS}","https://faucet.ropsten.be?${ADDRESS}"],"infoURL":"https://github.com/ethereum/ropsten"},{"name":"Rinkeby","chainId":4,"shortName":"rin","networkId":4,"nativeCurrency":{"name":"Rinkeby Ether","symbol":"ETH","decimals":18},"rpc":["https://rinkeby.infura.io/v3/${INFURA_API_KEY}","wss://rinkeby.infura.io/ws/v3/${INFURA_API_KEY}"],"faucets":["http://fauceth.komputing.org?chain=4&address=${ADDRESS}","https://faucet.rinkeby.io"],"infoURL":"https://www.rinkeby.io"},{"name":"Goerli","chainId":5,"shortName":"gor","networkId":5,"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"rpc":["https://goerli.infura.io/v3/${INFURA_API_KEY}","wss://goerli.infura.io/v3/${INFURA_API_KEY}","https://rpc.goerli.mudit.blog/","https://ethereum-goerli.publicnode.com"],"faucets":["http://fauceth.komputing.org?chain=5&address=${ADDRESS}","https://goerli-faucet.slock.it?address=${ADDRESS}","https://faucet.goerli.mudit.blog"],"infoURL":"https://goerli.net/#about"},{"name":"Ethereum Classic Testnet Kotti","chainId":6,"shortName":"kot","networkId":6,"nativeCurrency":{"name":"Kotti Ether","symbol":"KOT","decimals":18},"rpc":["https://www.ethercluster.com/kotti"],"faucets":[],"infoURL":"https://explorer.jade.builders/?network=kotti"},{"name":"ThaiChain","chainId":7,"shortName":"tch","networkId":7,"nativeCurrency":{"name":"ThaiChain Ether","symbol":"TCH","decimals":18},"rpc":["https://rpc.dome.cloud","https://rpc.thaichain.org"],"faucets":[],"infoURL":"https://thaichain.io"},{"name":"Ubiq","chainId":8,"shortName":"ubq","networkId":8,"nativeCurrency":{"name":"Ubiq Ether","symbol":"UBQ","decimals":18},"rpc":["https://rpc.octano.dev","https://pyrus2.ubiqscan.io"],"faucets":[],"infoURL":"https://ubiqsmart.com"},{"name":"Ubiq Network Testnet","chainId":9,"shortName":"tubq","networkId":2,"nativeCurrency":{"name":"Ubiq Testnet Ether","symbol":"TUBQ","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://ethersocial.org"},{"name":"OP Mainnet","chainId":10,"shortName":"oeth","networkId":10,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://mainnet.optimism.io","https://optimism.publicnode.com"],"faucets":[],"infoURL":"https://optimism.io"},{"name":"Metadium Mainnet","chainId":11,"shortName":"meta","networkId":11,"nativeCurrency":{"name":"Metadium Mainnet Ether","symbol":"META","decimals":18},"rpc":["https://api.metadium.com/prod"],"faucets":[],"infoURL":"https://metadium.com"},{"name":"Metadium Testnet","chainId":12,"shortName":"kal","networkId":12,"nativeCurrency":{"name":"Metadium Testnet Ether","symbol":"KAL","decimals":18},"rpc":["https://api.metadium.com/dev"],"faucets":[],"infoURL":"https://metadium.com"},{"name":"Diode Testnet Staging","chainId":13,"shortName":"dstg","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":"Flare Mainnet","chainId":14,"shortName":"flr","networkId":14,"nativeCurrency":{"name":"Flare","symbol":"FLR","decimals":18},"rpc":["https://flare-api.flare.network/ext/C/rpc"],"faucets":[],"infoURL":"https://flare.xyz"},{"name":"Diode Prenet","chainId":15,"shortName":"diode","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","networkId":16,"nativeCurrency":{"name":"Coston Flare","symbol":"CFLR","decimals":18},"rpc":["https://coston-api.flare.network/ext/bc/C/rpc"],"faucets":["https://faucet.towolabs.com","https://fauceth.komputing.org?chain=16&address=${ADDRESS}"],"infoURL":"https://flare.xyz"},{"name":"ThaiChain 2.0 ThaiFi","chainId":17,"shortName":"tfi","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","networkId":18,"nativeCurrency":{"name":"ThunderCore Testnet Token","symbol":"TST","decimals":18},"rpc":["https://testnet-rpc.thundercore.com"],"faucets":["https://faucet-testnet.thundercore.com"],"infoURL":"https://thundercore.com"},{"name":"Songbird Canary-Network","chainId":19,"shortName":"sgb","networkId":19,"nativeCurrency":{"name":"Songbird","symbol":"SGB","decimals":18},"rpc":["https://songbird-api.flare.network/ext/C/rpc","https://sgb.ftso.com.au/ext/bc/C/rpc","https://sgb.lightft.so/rpc","https://sgb-rpc.ftso.eu"],"faucets":[],"infoURL":"https://flare.xyz"},{"name":"Elastos Smart Chain","chainId":20,"shortName":"esc","networkId":20,"nativeCurrency":{"name":"Elastos","symbol":"ELA","decimals":18},"rpc":["https://api.elastos.io/eth"],"faucets":["https://faucet.elastos.org/"],"infoURL":"https://www.elastos.org/"},{"name":"Elastos Smart Chain Testnet","chainId":21,"shortName":"esct","networkId":21,"nativeCurrency":{"name":"Elastos","symbol":"tELA","decimals":18},"rpc":["https://api-testnet.elastos.io/eth"],"faucets":["https://esc-faucet.elastos.io/"],"infoURL":"https://www.elastos.org/"},{"name":"ELA-DID-Sidechain Mainnet","chainId":22,"shortName":"eladid","networkId":22,"nativeCurrency":{"name":"Elastos","symbol":"ELA","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://www.elastos.org/"},{"name":"ELA-DID-Sidechain Testnet","chainId":23,"shortName":"eladidt","networkId":23,"nativeCurrency":{"name":"Elastos","symbol":"tELA","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://elaeth.io/"},{"name":"KardiaChain Mainnet","chainId":24,"shortName":"kardiachain","networkId":0,"nativeCurrency":{"name":"KardiaChain","symbol":"KAI","decimals":18},"rpc":["https://rpc.kardiachain.io"],"faucets":[],"infoURL":"https://kardiachain.io"},{"name":"Cronos Mainnet","chainId":25,"shortName":"cro","networkId":25,"nativeCurrency":{"name":"Cronos","symbol":"CRO","decimals":18},"rpc":["https://evm.cronos.org","https://cronos-evm.publicnode.com"],"faucets":[],"infoURL":"https://cronos.org/"},{"name":"Genesis L1 testnet","chainId":26,"shortName":"L1test","networkId":26,"nativeCurrency":{"name":"L1 testcoin","symbol":"L1test","decimals":18},"rpc":["https://testrpc.genesisl1.org"],"faucets":[],"infoURL":"https://www.genesisl1.com"},{"name":"ShibaChain","chainId":27,"shortName":"shib","networkId":27,"nativeCurrency":{"name":"SHIBA INU COIN","symbol":"SHIB","decimals":18},"rpc":["https://rpc.shibchain.org"],"faucets":[],"infoURL":"https://shibchain.org"},{"name":"Boba Network Rinkeby Testnet","chainId":28,"shortName":"BobaRinkeby","networkId":28,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rinkeby.boba.network/"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Genesis L1","chainId":29,"shortName":"L1","networkId":29,"nativeCurrency":{"name":"L1 coin","symbol":"L1","decimals":18},"rpc":["https://rpc.genesisl1.org"],"faucets":[],"infoURL":"https://www.genesisl1.com"},{"name":"RSK Mainnet","chainId":30,"shortName":"rsk","networkId":30,"nativeCurrency":{"name":"Smart Bitcoin","symbol":"RBTC","decimals":18},"rpc":["https://public-node.rsk.co","https://mycrypto.rsk.co"],"faucets":["https://faucet.rsk.co/"],"infoURL":"https://rsk.co"},{"name":"RSK Testnet","chainId":31,"shortName":"trsk","networkId":31,"nativeCurrency":{"name":"Testnet Smart Bitcoin","symbol":"tRBTC","decimals":18},"rpc":["https://public-node.testnet.rsk.co","https://mycrypto.testnet.rsk.co"],"faucets":["https://faucet.rsk.co/"],"infoURL":"https://rsk.co"},{"name":"GoodData Testnet","chainId":32,"shortName":"GooDT","networkId":32,"nativeCurrency":{"name":"GoodData Testnet Ether","symbol":"GooD","decimals":18},"rpc":["https://test2.goodata.io"],"faucets":[],"infoURL":"https://www.goodata.org"},{"name":"GoodData Mainnet","chainId":33,"shortName":"GooD","networkId":33,"nativeCurrency":{"name":"GoodData Mainnet Ether","symbol":"GooD","decimals":18},"rpc":["https://rpc.goodata.io"],"faucets":[],"infoURL":"https://www.goodata.org"},{"name":"Dithereum Testnet","chainId":34,"shortName":"dth","networkId":34,"nativeCurrency":{"name":"Dither","symbol":"DTH","decimals":18},"rpc":["https://node-testnet.dithereum.io"],"faucets":["https://faucet.dithereum.org"],"infoURL":"https://dithereum.org"},{"name":"TBWG Chain","chainId":35,"shortName":"tbwg","networkId":35,"nativeCurrency":{"name":"TBWG Ether","symbol":"TBG","decimals":18},"rpc":["https://rpc.tbwg.io"],"faucets":[],"infoURL":"https://tbwg.io"},{"name":"Dxchain Mainnet","chainId":36,"shortName":"dx","networkId":36,"nativeCurrency":{"name":"Dxchain","symbol":"DX","decimals":18},"rpc":["https://mainnet.dxchain.com"],"faucets":[],"infoURL":"https://www.dxchain.com/"},{"name":"SeedCoin-Network","chainId":37,"shortName":"SEED","networkId":37,"nativeCurrency":{"name":"SeedCoin","symbol":"SEED","decimals":18},"rpc":["https://node.seedcoin.network"],"faucets":[],"infoURL":"https://www.seedcoin.network/"},{"name":"Valorbit","chainId":38,"shortName":"val","networkId":38,"nativeCurrency":{"name":"Valorbit","symbol":"VAL","decimals":18},"rpc":["https://rpc.valorbit.com/v2"],"faucets":[],"infoURL":"https://valorbit.com"},{"name":"Unicorn Ultra Testnet","chainId":39,"shortName":"u2u","networkId":39,"nativeCurrency":{"name":"Unicorn Ultra","symbol":"U2U","decimals":18},"rpc":["https://rpc-testnet.uniultra.xyz"],"faucets":["https://faucet.uniultra.xyz"],"infoURL":"https://uniultra.xyz"},{"name":"Telos EVM Mainnet","chainId":40,"shortName":"TelosEVM","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":"TelosEVMTestnet","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":"LUKSO Mainnet","chainId":42,"shortName":"lukso","networkId":42,"nativeCurrency":{"name":"LUKSO","symbol":"LYX","decimals":18},"rpc":["https://rpc.mainnet.lukso.network","wss://ws-rpc.mainnet.lukso.network"],"faucets":[],"infoURL":"https://lukso.network"},{"name":"Darwinia Pangolin Testnet","chainId":43,"shortName":"pangolin","networkId":43,"nativeCurrency":{"name":"Pangolin Network Native Token","symbol":"PRING","decimals":18},"rpc":["https://pangolin-rpc.darwinia.network"],"faucets":["https://docs.crab.network/dvm/wallets/dvm-metamask#apply-for-the-test-token"],"infoURL":"https://darwinia.network/"},{"name":"Darwinia Crab Network","chainId":44,"shortName":"crab","networkId":44,"nativeCurrency":{"name":"Crab Network Native Token","symbol":"CRAB","decimals":18},"rpc":["https://crab-rpc.darwinia.network"],"faucets":[],"infoURL":"https://crab.network/"},{"name":"Darwinia Pangoro Testnet","chainId":45,"shortName":"pangoro","networkId":45,"nativeCurrency":{"name":"Pangoro Network Native Token","symbol":"ORING","decimals":18},"rpc":["https://pangoro-rpc.darwinia.network"],"faucets":[],"infoURL":"https://darwinia.network/"},{"name":"Darwinia Network","chainId":46,"shortName":"darwinia","networkId":46,"nativeCurrency":{"name":"Darwinia Network Native Token","symbol":"RING","decimals":18},"rpc":["https://rpc.darwinia.network"],"faucets":[],"infoURL":"https://darwinia.network/"},{"name":"Acria IntelliChain","chainId":47,"shortName":"aic","networkId":47,"nativeCurrency":{"name":"ACRIA","symbol":"ACRIA","decimals":18},"rpc":["https://aic.acria.ai"],"faucets":[],"infoURL":"https://acria.ai"},{"name":"Ennothem Mainnet Proterozoic","chainId":48,"shortName":"etmp","networkId":48,"nativeCurrency":{"name":"Ennothem","symbol":"ETMP","decimals":18},"rpc":["https://rpc.etm.network"],"faucets":[],"infoURL":"https://etm.network"},{"name":"Ennothem Testnet Pioneer","chainId":49,"shortName":"etmpTest","networkId":49,"nativeCurrency":{"name":"Ennothem","symbol":"ETMP","decimals":18},"rpc":["https://rpc.pioneer.etm.network"],"faucets":[],"infoURL":"https://etm.network"},{"name":"XinFin XDC Network","chainId":50,"shortName":"xdc","networkId":50,"nativeCurrency":{"name":"XinFin","symbol":"XDC","decimals":18},"rpc":["https://erpc.xinfin.network","https://rpc.xinfin.network","https://rpc1.xinfin.network","https://rpc-xdc.icecreamswap.com"],"faucets":[],"infoURL":"https://xinfin.org"},{"name":"XDC Apothem Network","chainId":51,"shortName":"txdc","networkId":51,"nativeCurrency":{"name":"XinFin","symbol":"TXDC","decimals":18},"rpc":["https://rpc.apothem.network","https://erpc.apothem.network"],"faucets":["https://faucet.apothem.network"],"infoURL":"https://xinfin.org"},{"name":"CoinEx Smart Chain Mainnet","chainId":52,"shortName":"cet","networkId":52,"nativeCurrency":{"name":"CoinEx Chain Native Token","symbol":"cet","decimals":18},"rpc":["https://rpc.coinex.net"],"faucets":[],"infoURL":"https://www.coinex.org/"},{"name":"CoinEx Smart Chain Testnet","chainId":53,"shortName":"tcet","networkId":53,"nativeCurrency":{"name":"CoinEx Chain Test Native Token","symbol":"cett","decimals":18},"rpc":["https://testnet-rpc.coinex.net/"],"faucets":[],"infoURL":"https://www.coinex.org/"},{"name":"Openpiece Mainnet","chainId":54,"shortName":"OP","networkId":54,"nativeCurrency":{"name":"Belly","symbol":"BELLY","decimals":18},"rpc":["https://mainnet.openpiece.io"],"faucets":[],"infoURL":"https://cryptopiece.online"},{"name":"Zyx Mainnet","chainId":55,"shortName":"ZYX","networkId":55,"nativeCurrency":{"name":"Zyx","symbol":"ZYX","decimals":18},"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":[],"infoURL":"https://zyx.network/"},{"name":"BNB Smart Chain Mainnet","chainId":56,"shortName":"bnb","networkId":56,"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"BNB","decimals":18},"rpc":["https://bsc-dataseed1.bnbchain.org","https://bsc-dataseed2.bnbchain.org","https://bsc-dataseed3.bnbchain.org","https://bsc-dataseed4.bnbchain.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","https://bsc.publicnode.com","wss://bsc-ws-node.nariox.org"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://www.bnbchain.org/en"},{"name":"Syscoin Mainnet","chainId":57,"shortName":"sys","networkId":57,"nativeCurrency":{"name":"Syscoin","symbol":"SYS","decimals":18},"rpc":["https://rpc.syscoin.org","https://rpc.ankr.com/syscoin/${ANKR_API_KEY}","https://syscoin.public-rpc.com","wss://rpc.syscoin.org/wss","https://syscoin-evm.publicnode.com"],"faucets":["https://faucet.syscoin.org"],"infoURL":"https://www.syscoin.org"},{"name":"Ontology Mainnet","chainId":58,"shortName":"OntologyMainnet","networkId":58,"nativeCurrency":{"name":"ONG","symbol":"ONG","decimals":18},"rpc":["http://dappnode1.ont.io:20339","http://dappnode2.ont.io:20339","http://dappnode3.ont.io:20339","http://dappnode4.ont.io:20339","https://dappnode1.ont.io:10339","https://dappnode2.ont.io:10339","https://dappnode3.ont.io:10339","https://dappnode4.ont.io:10339"],"faucets":[],"infoURL":"https://ont.io/"},{"name":"EOS EVM Legacy","chainId":59,"shortName":"eos-legacy","networkId":59,"nativeCurrency":{"name":"EOS","symbol":"EOS","decimals":18},"rpc":["https://api.eosargentina.io"],"faucets":[],"infoURL":"https://eosargentina.io"},{"name":"GoChain","chainId":60,"shortName":"go","networkId":60,"nativeCurrency":{"name":"GoChain Ether","symbol":"GO","decimals":18},"rpc":["https://rpc.gochain.io"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://gochain.io"},{"name":"Ethereum Classic Mainnet","chainId":61,"shortName":"etc","networkId":1,"nativeCurrency":{"name":"Ethereum Classic Ether","symbol":"ETC","decimals":18},"rpc":["https://etc.rivet.link"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/?"],"infoURL":"https://ethereumclassic.org"},{"name":"Ethereum Classic Testnet Morden","chainId":62,"shortName":"tetc","networkId":2,"nativeCurrency":{"name":"Ethereum Classic Testnet Ether","symbol":"TETC","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://ethereumclassic.org"},{"name":"Ethereum Classic Testnet Mordor","chainId":63,"shortName":"metc","networkId":7,"nativeCurrency":{"name":"Mordor Classic Testnet Ether","symbol":"METC","decimals":18},"rpc":["https://rpc.mordor.etccooperative.org"],"faucets":[],"infoURL":"https://github.com/eth-classic/mordor/"},{"name":"Ellaism","chainId":64,"shortName":"ellaism","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","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"},{"name":"OKXChain Mainnet","chainId":66,"shortName":"okt","networkId":66,"nativeCurrency":{"name":"OKXChain Global Utility Token","symbol":"OKT","decimals":18},"rpc":["https://exchainrpc.okex.org","https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/?"],"infoURL":"https://www.okex.com/okc"},{"name":"DBChain Testnet","chainId":67,"shortName":"dbm","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","networkId":68,"nativeCurrency":{"name":"SoterOne Mainnet Ether","symbol":"SOTER","decimals":18},"rpc":["https://rpc.soter.one"],"faucets":[],"infoURL":"https://www.soterone.com"},{"name":"Optimism Kovan","chainId":69,"shortName":"okov","networkId":69,"nativeCurrency":{"name":"Kovan Ether","symbol":"ETH","decimals":18},"rpc":["https://kovan.optimism.io/"],"faucets":["http://fauceth.komputing.org?chain=69&address=${ADDRESS}"],"infoURL":"https://optimism.io"},{"name":"Hoo Smart Chain","chainId":70,"shortName":"hsc","networkId":70,"nativeCurrency":{"name":"Hoo Smart Chain Native Token","symbol":"HOO","decimals":18},"rpc":["https://http-mainnet.hoosmartchain.com","https://http-mainnet2.hoosmartchain.com","wss://ws-mainnet.hoosmartchain.com","wss://ws-mainnet2.hoosmartchain.com"],"faucets":[],"infoURL":"https://www.hoosmartchain.com"},{"name":"Conflux eSpace (Testnet)","chainId":71,"shortName":"cfxtest","networkId":71,"nativeCurrency":{"name":"CFX","symbol":"CFX","decimals":18},"rpc":["https://evmtestnet.confluxrpc.com"],"faucets":["https://faucet.confluxnetwork.org"],"infoURL":"https://confluxnetwork.org"},{"name":"DxChain Testnet","chainId":72,"shortName":"dxc","networkId":72,"nativeCurrency":{"name":"DxChain Testnet","symbol":"DX","decimals":18},"rpc":["https://testnet-http.dxchain.com"],"faucets":["https://faucet.dxscan.io"],"infoURL":"https://testnet.dxscan.io/"},{"name":"FNCY","chainId":73,"shortName":"FNCY","networkId":73,"nativeCurrency":{"name":"FNCY","symbol":"FNCY","decimals":18},"rpc":["https://fncy-seed1.fncy.world"],"faucets":["https://faucet-testnet.fncy.world"],"infoURL":"https://fncyscan.fncy.world"},{"name":"IDChain Mainnet","chainId":74,"shortName":"idchain","networkId":74,"nativeCurrency":{"name":"EIDI","symbol":"EIDI","decimals":18},"rpc":["https://idchain.one/rpc/","wss://idchain.one/ws/"],"faucets":[],"infoURL":"https://idchain.one/begin/"},{"name":"Decimal Smart Chain Mainnet","chainId":75,"shortName":"DSC","networkId":75,"nativeCurrency":{"name":"Decimal","symbol":"DEL","decimals":18},"rpc":["https://node.decimalchain.com/web3/"],"faucets":[],"infoURL":"https://decimalchain.com"},{"name":"Mix","chainId":76,"shortName":"mix","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":"spoa","networkId":77,"nativeCurrency":{"name":"POA Sokol Ether","symbol":"SPOA","decimals":18},"rpc":["https://sokol.poa.network","wss://sokol.poa.network/wss","ws://sokol.poa.network:8546"],"faucets":["https://faucet.poa.network"],"infoURL":"https://poa.network"},{"name":"PrimusChain mainnet","chainId":78,"shortName":"primuschain","networkId":78,"nativeCurrency":{"name":"Primus Ether","symbol":"PETH","decimals":18},"rpc":["https://ethnode.primusmoney.com/mainnet"],"faucets":[],"infoURL":"https://primusmoney.com"},{"name":"Zenith Mainnet","chainId":79,"shortName":"zenith","networkId":79,"nativeCurrency":{"name":"ZENITH","symbol":"ZENITH","decimals":18},"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/","https://dataserver-asia-5.zenithchain.co/","https://dataserver-asia-6.zenithchain.co/","https://dataserver-asia-7.zenithchain.co/"],"faucets":[],"infoURL":"https://www.zenithchain.co/"},{"name":"GeneChain","chainId":80,"shortName":"GeneChain","networkId":80,"nativeCurrency":{"name":"RNA","symbol":"RNA","decimals":18},"rpc":["https://rpc.genechain.io"],"faucets":[],"infoURL":"https://scan.genechain.io/"},{"name":"Japan Open Chain Mainnet","chainId":81,"shortName":"joc","networkId":81,"nativeCurrency":{"name":"Japan Open Chain Token","symbol":"JOC","decimals":18},"rpc":["https://rpc-1.japanopenchain.org:8545","https://rpc-2.japanopenchain.org:8545"],"faucets":[],"infoURL":"https://www.japanopenchain.org/"},{"name":"Meter Mainnet","chainId":82,"shortName":"Meter","networkId":82,"nativeCurrency":{"name":"Meter","symbol":"MTR","decimals":18},"rpc":["https://rpc.meter.io"],"faucets":["https://faucet.meter.io"],"infoURL":"https://www.meter.io"},{"name":"Meter Testnet","chainId":83,"shortName":"MeterTest","networkId":83,"nativeCurrency":{"name":"Meter","symbol":"MTR","decimals":18},"rpc":["https://rpctest.meter.io"],"faucets":["https://faucet-warringstakes.meter.io"],"infoURL":"https://www.meter.io"},{"name":"Linqto Devnet","chainId":84,"shortName":"linqto-devnet","networkId":84,"nativeCurrency":{"name":"XRP","symbol":"XRP","decimals":18},"rpc":["https://linqto-dev.com"],"faucets":[],"infoURL":"https://linqto.com"},{"name":"GateChain Testnet","chainId":85,"shortName":"gttest","networkId":85,"nativeCurrency":{"name":"GateToken","symbol":"GT","decimals":18},"rpc":["https://testnet.gatenode.cc"],"faucets":["https://www.gatescan.org/testnet/faucet"],"infoURL":"https://www.gatechain.io"},{"name":"GateChain Mainnet","chainId":86,"shortName":"gt","networkId":86,"nativeCurrency":{"name":"GateToken","symbol":"GT","decimals":18},"rpc":["https://evm.gatenode.cc"],"faucets":["https://www.gatescan.org/faucet"],"infoURL":"https://www.gatechain.io"},{"name":"Nova Network","chainId":87,"shortName":"nnw","networkId":87,"nativeCurrency":{"name":"Supernova","symbol":"SNT","decimals":18},"rpc":["https://connect.novanetwork.io","https://0x57.redjackstudio.com","https://rpc.novanetwork.io:9070"],"faucets":[],"infoURL":"https://novanetwork.io"},{"name":"TomoChain","chainId":88,"shortName":"tomo","networkId":88,"nativeCurrency":{"name":"TomoChain","symbol":"TOMO","decimals":18},"rpc":["https://rpc.tomochain.com"],"faucets":[],"infoURL":"https://tomochain.com"},{"name":"TomoChain Testnet","chainId":89,"shortName":"tomot","networkId":89,"nativeCurrency":{"name":"TomoChain","symbol":"TOMO","decimals":18},"rpc":["https://rpc.testnet.tomochain.com"],"faucets":[],"infoURL":"https://tomochain.com"},{"name":"Garizon Stage0","chainId":90,"shortName":"gar-s0","networkId":90,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s0.garizon.net/rpc"],"faucets":[],"infoURL":"https://garizon.com"},{"name":"Garizon Stage1","chainId":91,"shortName":"gar-s1","networkId":91,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s1.garizon.net/rpc"],"faucets":[],"infoURL":"https://garizon.com"},{"name":"Garizon Stage2","chainId":92,"shortName":"gar-s2","networkId":92,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s2.garizon.net/rpc"],"faucets":[],"infoURL":"https://garizon.com"},{"name":"Garizon Stage3","chainId":93,"shortName":"gar-s3","networkId":93,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s3.garizon.net/rpc"],"faucets":[],"infoURL":"https://garizon.com"},{"name":"SwissDLT","chainId":94,"shortName":"sdlt","networkId":94,"nativeCurrency":{"name":"BCTS","symbol":"BCTS","decimals":18},"rpc":["https://rpc.swissdlt.ch"],"faucets":[],"infoURL":"https://bcts.ch"},{"name":"CamDL Mainnet","chainId":95,"shortName":"camdl","networkId":95,"nativeCurrency":{"name":"CADL","symbol":"CADL","decimals":18},"rpc":["https://rpc1.camdl.gov.kh/"],"faucets":["https://faucet.camdl.gov.kh/"],"infoURL":"https://camdl.gov.kh/"},{"name":"Bitkub Chain","chainId":96,"shortName":"bkc","networkId":96,"nativeCurrency":{"name":"Bitkub Coin","symbol":"KUB","decimals":18},"rpc":["https://rpc.bitkubchain.io","wss://wss.bitkubchain.io"],"faucets":[],"infoURL":"https://www.bitkubchain.com/"},{"name":"BNB Smart Chain Testnet","chainId":97,"shortName":"bnbt","networkId":97,"nativeCurrency":{"name":"BNB Chain Native Token","symbol":"tBNB","decimals":18},"rpc":["https://data-seed-prebsc-1-s1.bnbchain.org:8545","https://data-seed-prebsc-2-s1.bnbchain.org:8545","https://data-seed-prebsc-1-s2.bnbchain.org:8545","https://data-seed-prebsc-2-s2.bnbchain.org:8545","https://data-seed-prebsc-1-s3.bnbchain.org:8545","https://data-seed-prebsc-2-s3.bnbchain.org:8545","https://bsc-testnet.publicnode.com"],"faucets":["https://testnet.bnbchain.org/faucet-smart"],"infoURL":"https://www.bnbchain.org/en"},{"name":"Six Protocol","chainId":98,"shortName":"six","networkId":98,"nativeCurrency":{"name":"SIX evm token","symbol":"SIX","decimals":18},"rpc":["https://sixnet-rpc-evm.sixprotocol.net"],"faucets":[],"infoURL":"https://six.network/"},{"name":"POA Network Core","chainId":99,"shortName":"poa","networkId":99,"nativeCurrency":{"name":"POA Network Core Ether","symbol":"POA","decimals":18},"rpc":["https://core.poa.network"],"faucets":[],"infoURL":"https://poa.network"},{"name":"Gnosis","chainId":100,"shortName":"gno","networkId":100,"nativeCurrency":{"name":"xDAI","symbol":"XDAI","decimals":18},"rpc":["https://rpc.gnosischain.com","https://rpc.gnosis.gateway.fm","https://rpc.ankr.com/gnosis","https://gnosischain-rpc.gateway.pokt.network","https://gnosis-mainnet.public.blastapi.io","https://gnosis.api.onfinality.io/public","https://gnosis.blockpi.network/v1/rpc/public","https://web3endpoints.com/gnosischain-mainnet","wss://rpc.gnosischain.com/wss"],"faucets":["https://gnosisfaucet.com","https://stakely.io/faucet/gnosis-chain-xdai","https://faucet.prussia.dev/xdai"],"infoURL":"https://docs.gnosischain.com"},{"name":"EtherInc","chainId":101,"shortName":"eti","networkId":1,"nativeCurrency":{"name":"EtherInc Ether","symbol":"ETI","decimals":18},"rpc":["https://api.einc.io/jsonrpc/mainnet"],"faucets":[],"infoURL":"https://einc.io"},{"name":"Web3Games Testnet","chainId":102,"shortName":"tw3g","networkId":102,"nativeCurrency":{"name":"Web3Games","symbol":"W3G","decimals":18},"rpc":["https://testnet-rpc-0.web3games.org/evm","https://testnet-rpc-1.web3games.org/evm","https://testnet-rpc-2.web3games.org/evm"],"faucets":[],"infoURL":"https://web3games.org/"},{"name":"Kaiba Lightning Chain Testnet","chainId":104,"shortName":"tklc","networkId":104,"nativeCurrency":{"name":"Kaiba Testnet Token","symbol":"tKAIBA","decimals":18},"rpc":["https://klc.live/"],"faucets":[],"infoURL":"https://kaibadefi.com"},{"name":"Web3Games Devnet","chainId":105,"shortName":"dw3g","networkId":105,"nativeCurrency":{"name":"Web3Games","symbol":"W3G","decimals":18},"rpc":["https://devnet.web3games.org/evm"],"faucets":[],"infoURL":"https://web3games.org/"},{"name":"Velas EVM Mainnet","chainId":106,"shortName":"vlx","networkId":106,"nativeCurrency":{"name":"Velas","symbol":"VLX","decimals":18},"rpc":["https://evmexplorer.velas.com/rpc","https://explorer.velas.com/rpc"],"faucets":[],"infoURL":"https://velas.com"},{"name":"Nebula Testnet","chainId":107,"shortName":"ntn","networkId":107,"nativeCurrency":{"name":"Nebula X","symbol":"NBX","decimals":18},"rpc":["https://testnet.rpc.novanetwork.io"],"faucets":["https://faucet.novanetwork.io"],"infoURL":"https://novanetwork.io"},{"name":"ThunderCore Mainnet","chainId":108,"shortName":"TT","networkId":108,"nativeCurrency":{"name":"ThunderCore Token","symbol":"TT","decimals":18},"rpc":["https://mainnet-rpc.thundercore.com","https://mainnet-rpc.thundertoken.net","https://mainnet-rpc.thundercore.io"],"faucets":["https://faucet.thundercore.com"],"infoURL":"https://thundercore.com"},{"name":"Proton Testnet","chainId":110,"shortName":"xpr","networkId":110,"nativeCurrency":{"name":"Proton","symbol":"XPR","decimals":4},"rpc":["https://protontestnet.greymass.com/"],"faucets":[],"infoURL":"https://protonchain.com"},{"name":"EtherLite Chain","chainId":111,"shortName":"ETL","networkId":111,"nativeCurrency":{"name":"EtherLite","symbol":"ETL","decimals":18},"rpc":["https://rpc.etherlite.org"],"faucets":["https://etherlite.org/faucets"],"infoURL":"https://etherlite.org"},{"name":"Coinbit Mainnet","chainId":112,"shortName":"coinbit","networkId":112,"nativeCurrency":{"name":"Gas IDR","symbol":"GIDR","decimals":18},"rpc":["https://coinbit-rpc-mainnet.chain.sbcrypto.app"],"faucets":[],"infoURL":"https://crypto.stockbit.com/"},{"name":"Dehvo","chainId":113,"shortName":"deh","networkId":113,"nativeCurrency":{"name":"Dehvo","symbol":"Deh","decimals":18},"rpc":["https://connect.dehvo.com","https://rpc.dehvo.com","https://rpc1.dehvo.com","https://rpc2.dehvo.com"],"faucets":["https://buy.dehvo.com"],"infoURL":"https://dehvo.com"},{"name":"Flare Testnet Coston2","chainId":114,"shortName":"c2flr","networkId":114,"nativeCurrency":{"name":"Coston2 Flare","symbol":"C2FLR","decimals":18},"rpc":["https://coston2-api.flare.network/ext/bc/C/rpc"],"faucets":["https://coston2-faucet.towolabs.com"],"infoURL":"https://flare.xyz"},{"name":"DeBank Testnet","chainId":115,"shortName":"debank-testnet","networkId":115,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://debank.com"},{"name":"DeBank Mainnet","chainId":116,"shortName":"debank-mainnet","networkId":116,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://debank.com"},{"name":"Uptick Mainnet","chainId":117,"shortName":"auptick","networkId":117,"nativeCurrency":{"name":"Uptick","symbol":"UPTICK","decimals":18},"rpc":["https://json-rpc.uptick.network"],"faucets":[],"infoURL":"https://www.uptick.network"},{"name":"Arcology Testnet","chainId":118,"shortName":"arcology","networkId":118,"nativeCurrency":{"name":"Arcology Coin","symbol":"Acol","decimals":18},"rpc":["https://testnet.arcology.network/rpc"],"faucets":[],"infoURL":"https://arcology.network/"},{"name":"ENULS Mainnet","chainId":119,"shortName":"enuls","networkId":119,"nativeCurrency":{"name":"NULS","symbol":"NULS","decimals":18},"rpc":["https://evmapi.nuls.io","https://evmapi2.nuls.io"],"faucets":[],"infoURL":"https://nuls.io"},{"name":"ENULS Testnet","chainId":120,"shortName":"enulst","networkId":120,"nativeCurrency":{"name":"NULS","symbol":"NULS","decimals":18},"rpc":["https://beta.evmapi.nuls.io","https://beta.evmapi2.nuls.io"],"faucets":["http://faucet.nuls.io"],"infoURL":"https://nuls.io"},{"name":"Realchain Mainnet","chainId":121,"shortName":"REAL","networkId":121,"nativeCurrency":{"name":"Realchain","symbol":"REAL","decimals":18},"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"],"infoURL":"https://www.rclsidechain.com/"},{"name":"Fuse Mainnet","chainId":122,"shortName":"fuse","networkId":122,"nativeCurrency":{"name":"Fuse","symbol":"FUSE","decimals":18},"rpc":["https://rpc.fuse.io"],"faucets":[],"infoURL":"https://fuse.io/"},{"name":"Fuse Sparknet","chainId":123,"shortName":"spark","networkId":123,"nativeCurrency":{"name":"Spark","symbol":"SPARK","decimals":18},"rpc":["https://rpc.fusespark.io"],"faucets":["https://get.fusespark.io"],"infoURL":"https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet"},{"name":"Decentralized Web Mainnet","chainId":124,"shortName":"dwu","networkId":124,"nativeCurrency":{"name":"Decentralized Web Utility","symbol":"DWU","decimals":18},"rpc":["https://decentralized-web.tech/dw_rpc.php"],"faucets":[],"infoURL":"https://decentralized-web.tech/dw_chain.php"},{"name":"OYchain Testnet","chainId":125,"shortName":"OYchainTestnet","networkId":125,"nativeCurrency":{"name":"OYchain Token","symbol":"OY","decimals":18},"rpc":["https://rpc.testnet.oychain.io"],"faucets":["https://faucet.oychain.io"],"infoURL":"https://www.oychain.io"},{"name":"OYchain Mainnet","chainId":126,"shortName":"OYchainMainnet","networkId":126,"nativeCurrency":{"name":"OYchain Token","symbol":"OY","decimals":18},"rpc":["https://rpc.mainnet.oychain.io"],"faucets":[],"infoURL":"https://www.oychain.io"},{"name":"Factory 127 Mainnet","chainId":127,"shortName":"feth","networkId":127,"nativeCurrency":{"name":"Factory 127 Token","symbol":"FETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://www.factory127.com"},{"name":"Huobi ECO Chain Mainnet","chainId":128,"shortName":"heco","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":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://www.hecochain.com"},{"name":"iExec Sidechain","chainId":134,"shortName":"rlc","networkId":134,"nativeCurrency":{"name":"xRLC","symbol":"xRLC","decimals":18},"rpc":["https://bellecour.iex.ec"],"faucets":[],"infoURL":"https://iex.ec"},{"name":"Alyx Chain Testnet","chainId":135,"shortName":"AlyxTestnet","networkId":135,"nativeCurrency":{"name":"Alyx Testnet Native Token","symbol":"ALYX","decimals":18},"rpc":["https://testnet-rpc.alyxchain.com"],"faucets":["https://faucet.alyxchain.com"],"infoURL":"https://www.alyxchain.com"},{"name":"Deamchain Mainnet","chainId":136,"shortName":"deam","networkId":136,"nativeCurrency":{"name":"Deamchain Native Token","symbol":"DEAM","decimals":18},"rpc":["https://mainnet.deamchain.com"],"faucets":[],"infoURL":"https://deamchain.com"},{"name":"Polygon Mainnet","chainId":137,"shortName":"matic","networkId":137,"nativeCurrency":{"name":"MATIC","symbol":"MATIC","decimals":18},"rpc":["https://polygon-rpc.com/","https://rpc-mainnet.matic.network","https://matic-mainnet.chainstacklabs.com","https://rpc-mainnet.maticvigil.com","https://rpc-mainnet.matic.quiknode.pro","https://matic-mainnet-full-rpc.bwarelabs.com","https://polygon-bor.publicnode.com"],"faucets":[],"infoURL":"https://polygon.technology/"},{"name":"Defi Oracle Meta Mainnet","chainId":138,"shortName":"dfio-meta-main","networkId":1,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.public-0138.defi-oracle.io","wss://rpc.public-0138.defi-oracle.io"],"faucets":[],"infoURL":"https://defi-oracle.io/"},{"name":"WoopChain Mainnet","chainId":139,"shortName":"woop","networkId":139,"nativeCurrency":{"name":"WoopCoin","symbol":"WOOC","decimals":18},"rpc":["https://rpc.woop.ai/rpc"],"faucets":[],"infoURL":"https://wikiwoop.com"},{"name":"Openpiece Testnet","chainId":141,"shortName":"OPtest","networkId":141,"nativeCurrency":{"name":"Belly","symbol":"BELLY","decimals":18},"rpc":["https://testnet.openpiece.io"],"faucets":[],"infoURL":"https://cryptopiece.online"},{"name":"DAX CHAIN","chainId":142,"shortName":"dax","networkId":142,"nativeCurrency":{"name":"Prodax","symbol":"DAX","decimals":18},"rpc":["https://rpc.prodax.io"],"faucets":[],"infoURL":"https://prodax.io/"},{"name":"PHI Network v2","chainId":144,"shortName":"PHI","networkId":144,"nativeCurrency":{"name":"PHI","symbol":"Φ","decimals":18},"rpc":["https://connect.phi.network"],"faucets":[],"infoURL":"https://phi.network"},{"name":"Six Protocol Testnet","chainId":150,"shortName":"sixt","networkId":150,"nativeCurrency":{"name":"SIX testnet evm token","symbol":"tSIX","decimals":18},"rpc":["https://rpc-evm.fivenet.sixprotocol.net"],"faucets":["https://faucet.sixprotocol.net"],"infoURL":"https://six.network/"},{"name":"Tenet Testnet","chainId":155,"shortName":"tenet-testnet","networkId":155,"nativeCurrency":{"name":"TENET","symbol":"TENET","decimals":18},"rpc":["https://rpc.testnet.tenet.org"],"faucets":["https://faucet.testnet.tenet.org"],"infoURL":"https://tenet.org/"},{"name":"OEBlock Testnet","chainId":156,"shortName":"obe","networkId":156,"nativeCurrency":{"name":"OEBlock","symbol":"OEB","decimals":18},"rpc":["https://testnet-rpc.oeblock.com"],"faucets":[],"infoURL":"https://www.oeblock.com/"},{"name":"Armonia Eva Chain Mainnet","chainId":160,"shortName":"eva","networkId":160,"nativeCurrency":{"name":"Armonia Multichain Native Token","symbol":"AMAX","decimals":18},"rpc":["https://evascan.io/api/eth-rpc/"],"faucets":[],"infoURL":"https://amax.network"},{"name":"Armonia Eva Chain Testnet","chainId":161,"shortName":"wall-e","networkId":161,"nativeCurrency":{"name":"Armonia Multichain Native Token","symbol":"AMAX","decimals":18},"rpc":["https://testnet.evascan.io/api/eth-rpc/"],"faucets":[],"infoURL":"https://amax.network"},{"name":"Lightstreams Testnet","chainId":162,"shortName":"tpht","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":"Lightstreams Mainnet","chainId":163,"shortName":"pht","networkId":163,"nativeCurrency":{"name":"Lightstreams PHT","symbol":"PHT","decimals":18},"rpc":["https://node.mainnet.lightstreams.io"],"faucets":[],"infoURL":"https://explorer.lightstreams.io"},{"name":"Omni Testnet 1","chainId":165,"shortName":"omni_testnet","networkId":165,"nativeCurrency":{"name":"Omni","symbol":"OMNI","decimals":18},"rpc":["https://testnet-1.omni.network"],"faucets":[],"infoURL":"https://docs.omni.network/"},{"name":"Atoshi Testnet","chainId":167,"shortName":"atoshi","networkId":167,"nativeCurrency":{"name":"ATOSHI","symbol":"ATOS","decimals":18},"rpc":["https://node.atoshi.io/"],"faucets":[],"infoURL":"https://atoshi.org"},{"name":"AIOZ Network","chainId":168,"shortName":"aioz","networkId":168,"nativeCurrency":{"name":"AIOZ","symbol":"AIOZ","decimals":18},"rpc":["https://eth-dataseed.aioz.network"],"faucets":[],"infoURL":"https://aioz.network"},{"name":"HOO Smart Chain Testnet","chainId":170,"shortName":"hoosmartchain","networkId":170,"nativeCurrency":{"name":"HOO","symbol":"HOO","decimals":18},"rpc":["https://http-testnet.hoosmartchain.com"],"faucets":["https://faucet-testnet.hscscan.com/"],"infoURL":"https://www.hoosmartchain.com"},{"name":"Latam-Blockchain Resil Testnet","chainId":172,"shortName":"resil","networkId":172,"nativeCurrency":{"name":"Latam-Blockchain Resil Test Native Token","symbol":"usd","decimals":18},"rpc":["https://rpc.latam-blockchain.com","wss://ws.latam-blockchain.com"],"faucets":["https://faucet.latam-blockchain.com"],"infoURL":"https://latam-blockchain.com"},{"name":"AME Chain Mainnet","chainId":180,"shortName":"ame","networkId":180,"nativeCurrency":{"name":"AME","symbol":"AME","decimals":18},"rpc":["https://node1.amechain.io/"],"faucets":[],"infoURL":"https://amechain.io/"},{"name":"Seele Mainnet","chainId":186,"shortName":"Seele","networkId":186,"nativeCurrency":{"name":"Seele","symbol":"Seele","decimals":18},"rpc":["https://rpc.seelen.pro/"],"faucets":[],"infoURL":"https://seelen.pro/"},{"name":"BMC Mainnet","chainId":188,"shortName":"BMC","networkId":188,"nativeCurrency":{"name":"BTM","symbol":"BTM","decimals":18},"rpc":["https://mainnet.bmcchain.com/"],"faucets":[],"infoURL":"https://bmc.bytom.io/"},{"name":"BMC Testnet","chainId":189,"shortName":"BMCT","networkId":189,"nativeCurrency":{"name":"BTM","symbol":"BTM","decimals":18},"rpc":["https://testnet.bmcchain.com"],"faucets":[],"infoURL":"https://bmc.bytom.io/"},{"name":"Crypto Emergency","chainId":193,"shortName":"cem","networkId":193,"nativeCurrency":{"name":"Crypto Emergency","symbol":"CEM","decimals":18},"rpc":["https://cemchain.com"],"faucets":[],"infoURL":"https://cemblockchain.com/"},{"name":"OKBChain Testnet","chainId":195,"shortName":"tokb","networkId":195,"nativeCurrency":{"name":"OKBChain Global Utility Token in testnet","symbol":"OKB","decimals":18},"rpc":["https://okbtestrpc.okbchain.org"],"faucets":["https://www.oklink.com/okbc-test"],"infoURL":"https://www.okx.com/okbc/docs/dev/quick-start/introduction/introduction-to-okbchain"},{"name":"OKBChain Mainnet","chainId":196,"shortName":"okb","networkId":196,"nativeCurrency":{"name":"OKBChain Global Utility Token","symbol":"OKB","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://www.okex.com/okc"},{"name":"Neutrinos TestNet","chainId":197,"shortName":"NEUTR","networkId":197,"nativeCurrency":{"name":"Neutrinos","symbol":"NEUTR","decimals":18},"rpc":["https://testnet-rpc.neutrinoschain.com"],"faucets":["https://neutrinoschain.com/faucet"],"infoURL":"https://docs.neutrinoschain.com"},{"name":"BitTorrent Chain Mainnet","chainId":199,"shortName":"BTT","networkId":199,"nativeCurrency":{"name":"BitTorrent","symbol":"BTT","decimals":18},"rpc":["https://rpc.bittorrentchain.io/"],"faucets":[],"infoURL":"https:/bt.io"},{"name":"Arbitrum on xDai","chainId":200,"shortName":"aox","networkId":200,"nativeCurrency":{"name":"xDAI","symbol":"xDAI","decimals":18},"rpc":["https://arbitrum.xdaichain.com/"],"faucets":[],"infoURL":"https://xdaichain.com"},{"name":"MOAC testnet","chainId":201,"shortName":"moactest","networkId":201,"nativeCurrency":{"name":"MOAC","symbol":"mc","decimals":18},"rpc":["https://gateway.moac.io/testnet"],"faucets":[],"infoURL":"https://moac.io"},{"name":"Structx Mainnet","chainId":208,"shortName":"utx","networkId":208,"nativeCurrency":{"name":"Notes","symbol":"utx","decimals":18},"rpc":["https://mainnet.structx.io"],"faucets":[],"infoURL":"https://structx.io"},{"name":"Bitnet","chainId":210,"shortName":"BTN","networkId":210,"nativeCurrency":{"name":"Bitnet","symbol":"BTN","decimals":18},"rpc":["https://rpc.bitnet.money","https://rpc.btnscan.com"],"faucets":[],"infoURL":"https://bitnet.money"},{"name":"Freight Trust Network","chainId":211,"shortName":"EDI","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":"MAP Makalu","chainId":212,"shortName":"makalu","networkId":212,"nativeCurrency":{"name":"Makalu MAP","symbol":"MAP","decimals":18},"rpc":["https://testnet-rpc.maplabs.io"],"faucets":["https://faucet.maplabs.io"],"infoURL":"https://maplabs.io"},{"name":"SiriusNet V2","chainId":217,"shortName":"SIN2","networkId":217,"nativeCurrency":{"name":"MCD","symbol":"MCD","decimals":18},"rpc":["https://rpc2.siriusnet.io"],"faucets":[],"infoURL":"https://siriusnet.io"},{"name":"SoterOne Mainnet old","chainId":218,"shortName":"SO1-old","networkId":218,"nativeCurrency":{"name":"SoterOne Mainnet Ether","symbol":"SOTER","decimals":18},"rpc":["https://rpc.soter.one"],"faucets":[],"infoURL":"https://www.soterone.com"},{"name":"Permission","chainId":222,"shortName":"ASK","networkId":2221,"nativeCurrency":{"name":"ASK","symbol":"ASK","decimals":18},"rpc":["https://blockchain-api-mainnet.permission.io/rpc"],"faucets":[],"infoURL":"https://permission.io/"},{"name":"LACHAIN Mainnet","chainId":225,"shortName":"LA","networkId":225,"nativeCurrency":{"name":"LA","symbol":"LA","decimals":18},"rpc":["https://rpc-mainnet.lachain.io"],"faucets":[],"infoURL":"https://lachain.io"},{"name":"LACHAIN Testnet","chainId":226,"shortName":"TLA","networkId":226,"nativeCurrency":{"name":"TLA","symbol":"TLA","decimals":18},"rpc":["https://rpc-testnet.lachain.io"],"faucets":[],"infoURL":"https://lachain.io"},{"name":"SwapDEX","chainId":230,"shortName":"SDX","networkId":230,"nativeCurrency":{"name":"SwapDEX","symbol":"SDX","decimals":18},"rpc":["https://rpc.swapdex.network","wss://ss.swapdex.network"],"faucets":[],"infoURL":"https://swapdex.network/"},{"name":"Deamchain Testnet","chainId":236,"shortName":"deamtest","networkId":236,"nativeCurrency":{"name":"Deamchain Native Token","symbol":"DEAM","decimals":18},"rpc":["https://testnet.deamchain.com"],"faucets":["https://faucet.deamchain.com"],"infoURL":"https://deamchain.com"},{"name":"Plinga Mainnet","chainId":242,"shortName":"plgchain","networkId":242,"nativeCurrency":{"name":"Plinga","symbol":"PLINGA","decimals":18},"rpc":["https://rpcurl.mainnet.plgchain.com","https://rpcurl.plgchain.blockchain.evmnode.online","https://rpcurl.mainnet.plgchain.plinga.technology"],"faucets":[],"infoURL":"https://www.plinga.technology/"},{"name":"Energy Web Chain","chainId":246,"shortName":"ewt","networkId":246,"nativeCurrency":{"name":"Energy Web Token","symbol":"EWT","decimals":18},"rpc":["https://rpc.energyweb.org","wss://rpc.energyweb.org/ws"],"faucets":["https://faucet.carbonswap.exchange","https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://energyweb.org"},{"name":"Oasys Mainnet","chainId":248,"shortName":"OAS","networkId":248,"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"rpc":["https://rpc.mainnet.oasys.games"],"faucets":[],"infoURL":"https://oasys.games"},{"name":"Fantom Opera","chainId":250,"shortName":"ftm","networkId":250,"nativeCurrency":{"name":"Fantom","symbol":"FTM","decimals":18},"rpc":["https://rpc.ftm.tools","https://fantom.publicnode.com"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://fantom.foundation"},{"name":"Huobi ECO Chain Testnet","chainId":256,"shortName":"hecot","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://testnet.hecoinfo.com"},{"name":"Setheum","chainId":258,"shortName":"setm","networkId":258,"nativeCurrency":{"name":"Setheum","symbol":"SETM","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://setheum.xyz"},{"name":"Neonlink Mainnet","chainId":259,"shortName":"neon","networkId":259,"nativeCurrency":{"name":"Neonlink Native Token","symbol":"NEON","decimals":18},"rpc":["https://mainnet.neonlink.io"],"faucets":[],"infoURL":"https://neonlink.io"},{"name":"SUR Blockchain Network","chainId":262,"shortName":"SUR","networkId":1,"nativeCurrency":{"name":"Suren","symbol":"SRN","decimals":18},"rpc":["https://sur.nilin.org"],"faucets":[],"infoURL":"https://surnet.org"},{"name":"High Performance Blockchain","chainId":269,"shortName":"hpb","networkId":269,"nativeCurrency":{"name":"High Performance Blockchain Ether","symbol":"HPB","decimals":18},"rpc":["https://hpbnode.com","wss://ws.hpbnode.com"],"faucets":["https://myhpbwallet.com/"],"infoURL":"https://hpb.io"},{"name":"EgonCoin Mainnet","chainId":271,"shortName":"EGONm","networkId":271,"nativeCurrency":{"name":"EgonCoin","symbol":"EGON","decimals":18},"rpc":["https://rpc.egcscan.com"],"faucets":["https://faucet.egcscan.com"],"infoURL":"https://egcscan.com"},{"name":"LaChain","chainId":274,"shortName":"lachain","networkId":274,"nativeCurrency":{"name":"LaCoin","symbol":"LAC","decimals":18},"rpc":["https://rpc1.mainnet.lachain.network","https://rpc2.mainnet.lachain.network","https://lachain.rpc-nodes.cedalio.dev"],"faucets":[],"infoURL":""},{"name":"zkSync Era Testnet","chainId":280,"shortName":"zksync-goerli","networkId":280,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://testnet.era.zksync.dev"],"faucets":["https://goerli.portal.zksync.io/faucet"],"infoURL":"https://era.zksync.io/docs/"},{"name":"Boba Network","chainId":288,"shortName":"Boba","networkId":288,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://mainnet.boba.network","https://replica.boba.network","http://boba-ethereum.gateway.tenderly.co","http://gateway.tenderly.co/public/boba-ethereum","wss://boba-ethereum.gateway.tenderly.co/","wss://gateway.tenderly.co/public/boba-ethereum"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Hedera Mainnet","chainId":295,"shortName":"hedera-mainnet","networkId":295,"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"rpc":["https://mainnet.hashio.io/api"],"faucets":[],"infoURL":"https://hedera.com"},{"name":"Hedera Testnet","chainId":296,"shortName":"hedera-testnet","networkId":296,"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"rpc":["https://testnet.hashio.io/api"],"faucets":["https://portal.hedera.com"],"infoURL":"https://hedera.com"},{"name":"Hedera Previewnet","chainId":297,"shortName":"hedera-previewnet","networkId":297,"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"rpc":["https://previewnet.hashio.io/api"],"faucets":["https://portal.hedera.com"],"infoURL":"https://hedera.com"},{"name":"Hedera Localnet","chainId":298,"shortName":"hedera-localnet","networkId":298,"nativeCurrency":{"name":"hbar","symbol":"HBAR","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://hedera.com"},{"name":"(deprecated) Optimism on GC","chainId":300,"shortName":"ogc","networkId":300,"nativeCurrency":{"name":"xDAI","symbol":"xDAI","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://docs.gnosischain.com"},{"name":"Bobaopera","chainId":301,"shortName":"Bobaopera","networkId":301,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":["https://bobaopera.boba.network","wss://wss.bobaopera.boba.network","https://replica.bobaopera.boba.network","wss://replica-wss.bobaopera.boba.network"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Neurochain Testnet","chainId":303,"shortName":"ncnt","networkId":303,"nativeCurrency":{"name":"Neurochain","symbol":"tNCN","decimals":18},"rpc":["https://nc-rpc-test1.neurochain.io"],"faucets":[],"infoURL":"https://www.neurochain.ai"},{"name":"Omax Mainnet","chainId":311,"shortName":"omax","networkId":311,"nativeCurrency":{"name":"OMAX COIN","symbol":"OMAX","decimals":18},"rpc":["https://mainapi.omaxray.com"],"faucets":["https://faucet.omaxray.com/"],"infoURL":"https://www.omaxcoin.com/"},{"name":"Neurochain Mainnet","chainId":313,"shortName":"ncn","networkId":313,"nativeCurrency":{"name":"Neurochain","symbol":"NCN","decimals":18},"rpc":["https://nc-rpc-prd1.neurochain.io","https://nc-rpc-prd2.neurochain.io"],"faucets":[],"infoURL":"https://www.neurochain.ai"},{"name":"Filecoin - Mainnet","chainId":314,"shortName":"filecoin","networkId":314,"nativeCurrency":{"name":"filecoin","symbol":"FIL","decimals":18},"rpc":["https://api.node.glif.io/","https://rpc.ankr.com/filecoin","https://filecoin-mainnet.chainstacklabs.com/rpc/v1"],"faucets":[],"infoURL":"https://filecoin.io"},{"name":"KCC Mainnet","chainId":321,"shortName":"kcs","networkId":321,"nativeCurrency":{"name":"KuCoin Token","symbol":"KCS","decimals":18},"rpc":["https://rpc-mainnet.kcc.network","https://kcc.mytokenpocket.vip","https://public-rpc.blockpi.io/http/kcc"],"faucets":["https://faucet.kcc.io/","https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://kcc.io"},{"name":"KCC Testnet","chainId":322,"shortName":"kcst","networkId":322,"nativeCurrency":{"name":"KuCoin Testnet Token","symbol":"tKCS","decimals":18},"rpc":["https://rpc-testnet.kcc.network"],"faucets":["https://faucet-testnet.kcc.network"],"infoURL":"https://scan-testnet.kcc.network"},{"name":"zkSync Era Mainnet","chainId":324,"shortName":"zksync","networkId":324,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://mainnet.era.zksync.io"],"faucets":[],"infoURL":"https://zksync.io/"},{"name":"Web3Q Mainnet","chainId":333,"shortName":"w3q","networkId":333,"nativeCurrency":{"name":"Web3Q","symbol":"W3Q","decimals":18},"rpc":["https://mainnet.web3q.io:8545"],"faucets":[],"infoURL":"https://web3q.io/home.w3q/"},{"name":"DFK Chain Test","chainId":335,"shortName":"DFKTEST","networkId":335,"nativeCurrency":{"name":"Jewel","symbol":"JEWEL","decimals":18},"rpc":["https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc"],"faucets":[],"infoURL":"https://defikingdoms.com"},{"name":"Shiden","chainId":336,"shortName":"sdn","networkId":336,"nativeCurrency":{"name":"Shiden","symbol":"SDN","decimals":18},"rpc":["https://shiden.api.onfinality.io/public","https://shiden-rpc.dwellir.com","https://shiden.public.blastapi.io","wss://shiden.api.onfinality.io/public-ws","wss://shiden.public.blastapi.io","wss://shiden-rpc.dwellir.com"],"faucets":[],"infoURL":"https://shiden.astar.network/"},{"name":"Cronos Testnet","chainId":338,"shortName":"tcro","networkId":338,"nativeCurrency":{"name":"Cronos Test Coin","symbol":"TCRO","decimals":18},"rpc":["https://evm-t3.cronos.org"],"faucets":["https://cronos.org/faucet"],"infoURL":"https://cronos.org"},{"name":"Theta Mainnet","chainId":361,"shortName":"theta-mainnet","networkId":361,"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"rpc":["https://eth-rpc-api.thetatoken.org/rpc"],"faucets":[],"infoURL":"https://www.thetatoken.org/"},{"name":"Theta Sapphire Testnet","chainId":363,"shortName":"theta-sapphire","networkId":363,"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"rpc":["https://eth-rpc-api-sapphire.thetatoken.org/rpc"],"faucets":[],"infoURL":"https://www.thetatoken.org/"},{"name":"Theta Amber Testnet","chainId":364,"shortName":"theta-amber","networkId":364,"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"rpc":["https://eth-rpc-api-amber.thetatoken.org/rpc"],"faucets":[],"infoURL":"https://www.thetatoken.org/"},{"name":"Theta Testnet","chainId":365,"shortName":"theta-testnet","networkId":365,"nativeCurrency":{"name":"Theta Fuel","symbol":"TFUEL","decimals":18},"rpc":["https://eth-rpc-api-testnet.thetatoken.org/rpc"],"faucets":[],"infoURL":"https://www.thetatoken.org/"},{"name":"PulseChain","chainId":369,"shortName":"pls","networkId":369,"nativeCurrency":{"name":"Pulse","symbol":"PLS","decimals":18},"rpc":["https://rpc.pulsechain.com","wss://rpc.pulsechain.com","https://pulsechain.publicnode.com"],"faucets":[],"infoURL":"https://pulsechain.com/"},{"name":"Consta Testnet","chainId":371,"shortName":"tCNT","networkId":371,"nativeCurrency":{"name":"tCNT","symbol":"tCNT","decimals":18},"rpc":["https://rpc-testnet.theconsta.com"],"faucets":[],"infoURL":"http://theconsta.com"},{"name":"Lisinski","chainId":385,"shortName":"lisinski","networkId":385,"nativeCurrency":{"name":"Lisinski Ether","symbol":"LISINS","decimals":18},"rpc":["https://rpc-bitfalls1.lisinski.online"],"faucets":["https://pipa.lisinski.online"],"infoURL":"https://lisinski.online"},{"name":"HyperonChain TestNet","chainId":400,"shortName":"hpn","networkId":400,"nativeCurrency":{"name":"HyperonChain","symbol":"HPN","decimals":18},"rpc":["https://testnet-rpc.hyperonchain.com"],"faucets":["https://faucet.hyperonchain.com"],"infoURL":"https://docs.hyperonchain.com"},{"name":"Ozone Chain Testnet","chainId":401,"shortName":"ozo_tst","networkId":401,"nativeCurrency":{"name":"OZONE","symbol":"OZO","decimals":18},"rpc":["https://node1.testnet.ozonechain.io"],"faucets":[],"infoURL":"https://ozonechain.io"},{"name":"Pepe Chain Mainnet","chainId":411,"shortName":"pepe","networkId":411,"nativeCurrency":{"name":"Pepe","symbol":"PEPE","decimals":18},"rpc":["https://rpc.pepe-chain.vip"],"faucets":[],"infoURL":"https://pepe-chain.vip"},{"name":"SX Network Mainnet","chainId":416,"shortName":"SX","networkId":416,"nativeCurrency":{"name":"SX Network","symbol":"SX","decimals":18},"rpc":["https://rpc.sx.technology"],"faucets":[],"infoURL":"https://www.sx.technology"},{"name":"LaTestnet","chainId":418,"shortName":"latestnet","networkId":418,"nativeCurrency":{"name":"Test LaCoin","symbol":"TLA","decimals":18},"rpc":["https://rpc.testnet.lachain.network","https://lachain-testnet.rpc-nodes.cedalio.dev"],"faucets":["https://faucet.lachain.network"],"infoURL":""},{"name":"Optimism Goerli Testnet","chainId":420,"shortName":"ogor","networkId":420,"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"rpc":["https://goerli.optimism.io","https://optimism-goerli.publicnode.com"],"faucets":[],"infoURL":"https://optimism.io"},{"name":"PGN (Public Goods Network)","chainId":424,"shortName":"PGN","networkId":424,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.publicgoods.network"],"faucets":[],"infoURL":"https://publicgoods.network/"},{"name":"Zeeth Chain","chainId":427,"shortName":"zeeth","networkId":427,"nativeCurrency":{"name":"Zeeth Token","symbol":"ZTH","decimals":18},"rpc":["https://rpc.zeeth.io"],"faucets":[],"infoURL":""},{"name":"Obscuro Testnet","chainId":443,"shortName":"obs-testnet","networkId":443,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://testnet.obscu.ro"],"faucets":[],"infoURL":"https://obscu.ro"},{"name":"Frenchain Testnet","chainId":444,"shortName":"tFREN","networkId":444,"nativeCurrency":{"name":"tFREN","symbol":"FtREN","decimals":18},"rpc":["https://rpc-01tn.frenchain.app"],"faucets":[],"infoURL":"https://frenchain.app"},{"name":"ARZIO Chain","chainId":456,"shortName":"arzio","networkId":456,"nativeCurrency":{"name":"ARZIO","symbol":"AZO","decimals":18},"rpc":["https://chain-rpc.arzio.co"],"faucets":[],"infoURL":"https://chain.arzio.co"},{"name":"Rupaya","chainId":499,"shortName":"rupx","networkId":499,"nativeCurrency":{"name":"Rupaya","symbol":"RUPX","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://www.rupx.io"},{"name":"Camino C-Chain","chainId":500,"shortName":"Camino","networkId":1000,"nativeCurrency":{"name":"Camino","symbol":"CAM","decimals":18},"rpc":["https://api.camino.network/ext/bc/C/rpc"],"faucets":[],"infoURL":"https://camino.network/"},{"name":"Columbus Test Network","chainId":501,"shortName":"Columbus","networkId":1001,"nativeCurrency":{"name":"Camino","symbol":"CAM","decimals":18},"rpc":["https://columbus.camino.network/ext/bc/C/rpc"],"faucets":[],"infoURL":"https://camino.network/"},{"name":"Double-A Chain Mainnet","chainId":512,"shortName":"aac","networkId":512,"nativeCurrency":{"name":"Acuteangle Native Token","symbol":"AAC","decimals":18},"rpc":["https://rpc.acuteangle.com"],"faucets":[],"infoURL":"https://www.acuteangle.com/"},{"name":"Double-A Chain Testnet","chainId":513,"shortName":"aact","networkId":513,"nativeCurrency":{"name":"Acuteangle Native Token","symbol":"AAC","decimals":18},"rpc":["https://rpc-testnet.acuteangle.com"],"faucets":["https://scan-testnet.acuteangle.com/faucet"],"infoURL":"https://www.acuteangle.com/"},{"name":"Gear Zero Network Mainnet","chainId":516,"shortName":"gz-mainnet","networkId":516,"nativeCurrency":{"name":"Gear Zero Network Native Token","symbol":"GZN","decimals":18},"rpc":["https://gzn.linksme.info"],"faucets":[],"infoURL":"https://token.gearzero.ca/mainnet"},{"name":"XT Smart Chain Mainnet","chainId":520,"shortName":"xt","networkId":1024,"nativeCurrency":{"name":"XT Smart Chain Native Token","symbol":"XT","decimals":18},"rpc":["https://datarpc1.xsc.pub","https://datarpc2.xsc.pub","https://datarpc3.xsc.pub"],"faucets":["https://xsc.pub/faucet"],"infoURL":"https://xsc.pub/"},{"name":"Firechain Mainnet","chainId":529,"shortName":"fire","networkId":529,"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"rpc":["https://mainnet.rpc1.thefirechain.com"],"faucets":[],"infoURL":"https://thefirechain.com"},{"name":"F(x)Core Mainnet Network","chainId":530,"shortName":"FxCore","networkId":530,"nativeCurrency":{"name":"Function X","symbol":"FX","decimals":18},"rpc":["https://fx-json-web3.functionx.io:8545"],"faucets":[],"infoURL":"https://functionx.io/"},{"name":"Candle","chainId":534,"shortName":"CNDL","networkId":534,"nativeCurrency":{"name":"CANDLE","symbol":"CNDL","decimals":18},"rpc":["https://candle-rpc.com/","https://rpc.cndlchain.com"],"faucets":[],"infoURL":"https://candlelabs.org/"},{"name":"Vela1 Chain Mainnet","chainId":555,"shortName":"CLASS","networkId":555,"nativeCurrency":{"name":"CLASS COIN","symbol":"CLASS","decimals":18},"rpc":["https://rpc.velaverse.io"],"faucets":[],"infoURL":"https://velaverse.io"},{"name":"Tao Network","chainId":558,"shortName":"tao","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":"Dogechain Testnet","chainId":568,"shortName":"dct","networkId":568,"nativeCurrency":{"name":"Dogecoin","symbol":"DOGE","decimals":18},"rpc":["https://rpc-testnet.dogechain.dog"],"faucets":["https://faucet.dogechain.dog"],"infoURL":"https://dogechain.dog"},{"name":"Rollux Mainnet","chainId":570,"shortName":"sys-rollux","networkId":570,"nativeCurrency":{"name":"Syscoin","symbol":"SYS","decimals":18},"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"],"infoURL":"https://rollux.com"},{"name":"Metis Stardust Testnet","chainId":588,"shortName":"metis-stardust","networkId":588,"nativeCurrency":{"name":"tMetis","symbol":"METIS","decimals":18},"rpc":["https://stardust.metis.io/?owner=588"],"faucets":[],"infoURL":"https://www.metis.io"},{"name":"Astar","chainId":592,"shortName":"astr","networkId":592,"nativeCurrency":{"name":"Astar","symbol":"ASTR","decimals":18},"rpc":["https://rpc.astar.network:8545"],"faucets":[],"infoURL":"https://astar.network/"},{"name":"Acala Mandala Testnet TC9","chainId":595,"shortName":"maca","networkId":595,"nativeCurrency":{"name":"Acala Mandala Token","symbol":"mACA","decimals":18},"rpc":["https://eth-rpc-tc9.aca-staging.network","wss://eth-rpc-tc9.aca-staging.network"],"faucets":[],"infoURL":"https://acala.network"},{"name":"Karura Network Testnet","chainId":596,"shortName":"tkar","networkId":596,"nativeCurrency":{"name":"Karura Token","symbol":"KAR","decimals":18},"rpc":["https://eth-rpc-karura-testnet.aca-staging.network","wss://eth-rpc-karura-testnet.aca-staging.network"],"faucets":[],"infoURL":"https://karura.network"},{"name":"Acala Network Testnet","chainId":597,"shortName":"taca","networkId":597,"nativeCurrency":{"name":"Acala Token","symbol":"ACA","decimals":18},"rpc":["https://eth-rpc-acala-testnet.aca-staging.network","wss://eth-rpc-acala-testnet.aca-staging.network"],"faucets":[],"infoURL":"https://acala.network"},{"name":"Metis Goerli Testnet","chainId":599,"shortName":"metis-goerli","networkId":599,"nativeCurrency":{"name":"Goerli Metis","symbol":"METIS","decimals":18},"rpc":["https://goerli.gateway.metisdevops.link"],"faucets":["https://goerli.faucet.metisdevops.link"],"infoURL":"https://www.metis.io"},{"name":"Meshnyan testnet","chainId":600,"shortName":"mesh-chain-testnet","networkId":600,"nativeCurrency":{"name":"Meshnyan Testnet Native Token","symbol":"MESHT","decimals":18},"rpc":[],"faucets":[],"infoURL":""},{"name":"PEER Testnet","chainId":601,"shortName":"PEER","networkId":601,"nativeCurrency":{"name":"PEER Token","symbol":"PEER","decimals":18},"rpc":["http://testnet-polka-host-232813573.us-west-1.elb.amazonaws.com"],"faucets":["https://testnet.peer.inc"],"infoURL":"https://peer.inc"},{"name":"Graphlinq Blockchain Mainnet","chainId":614,"shortName":"glq","networkId":614,"nativeCurrency":{"name":"GLQ","symbol":"GLQ","decimals":18},"rpc":["https://glq-dataseed.graphlinq.io"],"faucets":[],"infoURL":"https://graphlinq.io"},{"name":"Avocado","chainId":634,"shortName":"avocado","networkId":634,"nativeCurrency":{"name":"USDC","symbol":"USDC","decimals":18},"rpc":["https://rpc.avocado.instadapp.io"],"faucets":[],"infoURL":"https://avocado.instadapp.io"},{"name":"SX Network Testnet","chainId":647,"shortName":"SX-Testnet","networkId":647,"nativeCurrency":{"name":"SX Network","symbol":"SX","decimals":18},"rpc":["https://rpc.toronto.sx.technology"],"faucets":["https://faucet.toronto.sx.technology"],"infoURL":"https://www.sx.technology"},{"name":"Endurance Smart Chain Mainnet","chainId":648,"shortName":"ace","networkId":648,"nativeCurrency":{"name":"Endurance Chain Native Token","symbol":"ACE","decimals":18},"rpc":["https://rpc-endurance.fusionist.io/"],"faucets":[],"infoURL":"https://ace.fusionist.io/"},{"name":"Pixie Chain Testnet","chainId":666,"shortName":"pixie-chain-testnet","networkId":666,"nativeCurrency":{"name":"Pixie Chain Testnet Native Token","symbol":"PCTT","decimals":18},"rpc":["https://http-testnet.chain.pixie.xyz","wss://ws-testnet.chain.pixie.xyz"],"faucets":["https://chain.pixie.xyz/faucet"],"infoURL":"https://scan-testnet.chain.pixie.xyz"},{"name":"Karura Network","chainId":686,"shortName":"kar","networkId":686,"nativeCurrency":{"name":"Karura Token","symbol":"KAR","decimals":18},"rpc":["https://eth-rpc-karura.aca-api.network","wss://eth-rpc-karura.aca-api.network"],"faucets":[],"infoURL":"https://acala.network/karura"},{"name":"Star Social Testnet","chainId":700,"shortName":"SNS","networkId":700,"nativeCurrency":{"name":"Social","symbol":"SNS","decimals":18},"rpc":["https://avastar.cc/ext/bc/C/rpc"],"faucets":[],"infoURL":"https://info.avastar.cc"},{"name":"BlockChain Station Mainnet","chainId":707,"shortName":"bcs","networkId":707,"nativeCurrency":{"name":"BCS Token","symbol":"BCS","decimals":18},"rpc":["https://rpc-mainnet.bcsdev.io","wss://rpc-ws-mainnet.bcsdev.io"],"faucets":[],"infoURL":"https://blockchainstation.io"},{"name":"BlockChain Station Testnet","chainId":708,"shortName":"tbcs","networkId":708,"nativeCurrency":{"name":"BCS Testnet Token","symbol":"tBCS","decimals":18},"rpc":["https://rpc-testnet.bcsdev.io","wss://rpc-ws-testnet.bcsdev.io"],"faucets":["https://faucet.bcsdev.io"],"infoURL":"https://blockchainstation.io"},{"name":"Shibarium Beta","chainId":719,"shortName":"shibarium","networkId":719,"nativeCurrency":{"name":"BONE","symbol":"BONE","decimals":18},"rpc":["https://puppynet.shibrpc.com"],"faucets":[],"infoURL":"https://beta.shibariumtech.com"},{"name":"Lycan Chain","chainId":721,"shortName":"LYC","networkId":721,"nativeCurrency":{"name":"Lycan","symbol":"LYC","decimals":18},"rpc":["https://rpc.lycanchain.com/"],"faucets":[],"infoURL":"https://lycanchain.com"},{"name":"Canto Testnet","chainId":740,"shortName":"tcanto","networkId":740,"nativeCurrency":{"name":"Canto","symbol":"CANTO","decimals":18},"rpc":["https://eth.plexnode.wtf/"],"faucets":[],"infoURL":"https://canto.io"},{"name":"Vention Smart Chain Testnet","chainId":741,"shortName":"vsct","networkId":741,"nativeCurrency":{"name":"VNT","symbol":"VNT","decimals":18},"rpc":["https://node-testnet.vention.network"],"faucets":["https://faucet.vention.network"],"infoURL":"https://testnet.ventionscan.io"},{"name":"Script Testnet","chainId":742,"shortName":"SPAY","networkId":742,"nativeCurrency":{"name":"Script","symbol":"SPAY","decimals":18},"rpc":["https://testeth-rpc-api.script.tv/rpc"],"faucets":[],"infoURL":"https://token.script.tv"},{"name":"QL1","chainId":766,"shortName":"qom","networkId":766,"nativeCurrency":{"name":"Shiba Predator","symbol":"QOM","decimals":18},"rpc":["https://rpc.qom.one"],"faucets":[],"infoURL":"https://qom.one"},{"name":"OpenChain Testnet","chainId":776,"shortName":"opc","networkId":776,"nativeCurrency":{"name":"Openchain Testnet","symbol":"TOPC","decimals":18},"rpc":[],"faucets":["https://faucet.openchain.info/"],"infoURL":"https://testnet.openchain.info/"},{"name":"cheapETH","chainId":777,"shortName":"cth","networkId":777,"nativeCurrency":{"name":"cTH","symbol":"cTH","decimals":18},"rpc":["https://node.cheapeth.org/rpc"],"faucets":[],"infoURL":"https://cheapeth.org/"},{"name":"MAAL Sharia Chain","chainId":786,"shortName":"maal","networkId":786,"nativeCurrency":{"name":"MAAL","symbol":"MAAL","decimals":18},"rpc":["https://node1-mainnet.maalscan.io/","https://node2-mainnet.maalscan.io/","https://node3-mainnet.maalscan.io/"],"faucets":[],"infoURL":"https://www.maalblockchain.com/"},{"name":"Acala Network","chainId":787,"shortName":"aca","networkId":787,"nativeCurrency":{"name":"Acala Token","symbol":"ACA","decimals":18},"rpc":["https://eth-rpc-acala.aca-api.network","wss://eth-rpc-acala.aca-api.network"],"faucets":[],"infoURL":"https://acala.network"},{"name":"Aerochain Testnet","chainId":788,"shortName":"taero","networkId":788,"nativeCurrency":{"name":"Aerochain Testnet","symbol":"TAero","decimals":18},"rpc":["https://testnet-rpc.aerochain.id/"],"faucets":["https://faucet.aerochain.id/"],"infoURL":"https://aerochaincoin.org/"},{"name":"Patex","chainId":789,"shortName":"peth","networkId":789,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.patex.io/"],"faucets":[],"infoURL":"https://patex.io/"},{"name":"Lucid Blockchain","chainId":800,"shortName":"LUCID","networkId":800,"nativeCurrency":{"name":"LUCID","symbol":"LUCID","decimals":18},"rpc":["https://rpc.lucidcoin.io"],"faucets":["https://faucet.lucidcoin.io"],"infoURL":"https://lucidcoin.io"},{"name":"Haic","chainId":803,"shortName":"haic","networkId":803,"nativeCurrency":{"name":"Haicoin","symbol":"HAIC","decimals":18},"rpc":["https://orig.haichain.io/"],"faucets":[],"infoURL":"https://www.haichain.io/"},{"name":"Portal Fantasy Chain Test","chainId":808,"shortName":"PFTEST","networkId":808,"nativeCurrency":{"name":"Portal Fantasy Token","symbol":"PFT","decimals":18},"rpc":["https://subnets.avax.network/portal-fantasy/testnet/rpc"],"faucets":[],"infoURL":"https://portalfantasy.io"},{"name":"Qitmeer","chainId":813,"shortName":"meer","networkId":813,"nativeCurrency":{"name":"Qitmeer","symbol":"MEER","decimals":18},"rpc":["https://evm-dataseed1.meerscan.io","https://evm-dataseed2.meerscan.io","https://evm-dataseed3.meerscan.io","https://evm-dataseed.meerscan.com","https://evm-dataseed1.meerscan.com","https://evm-dataseed2.meerscan.com","https://qng.rpc.qitmeer.io","https://mainnet.meerlabs.com","https://rpc.dimai.ai","https://rpc.woowow.io"],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"BeOne Chain Mainnet","chainId":818,"shortName":"BOC","networkId":818,"nativeCurrency":{"name":"BeOne Chain Mainnet","symbol":"BOC","decimals":18},"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":[],"infoURL":"https://beonechain.com"},{"name":"Callisto Mainnet","chainId":820,"shortName":"clo","networkId":1,"nativeCurrency":{"name":"Callisto","symbol":"CLO","decimals":18},"rpc":["https://rpc.callisto.network/"],"faucets":[],"infoURL":"https://callisto.network"},{"name":"Callisto Testnet Deprecated","chainId":821,"shortName":"tclo","networkId":2,"nativeCurrency":{"name":"Callisto Testnet Ether","symbol":"TCLO","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://callisto.network"},{"name":"Taraxa Mainnet","chainId":841,"shortName":"tara","networkId":841,"nativeCurrency":{"name":"Tara","symbol":"TARA","decimals":18},"rpc":["https://rpc.mainnet.taraxa.io/"],"faucets":[],"infoURL":"https://taraxa.io"},{"name":"Taraxa Testnet","chainId":842,"shortName":"taratest","networkId":842,"nativeCurrency":{"name":"Tara","symbol":"TARA","decimals":18},"rpc":["https://rpc.testnet.taraxa.io/"],"faucets":[],"infoURL":"https://taraxa.io"},{"name":"Zeeth Chain Dev","chainId":859,"shortName":"zeethdev","networkId":859,"nativeCurrency":{"name":"Zeeth Token","symbol":"ZTH","decimals":18},"rpc":["https://rpc.dev.zeeth.io"],"faucets":[],"infoURL":""},{"name":"Fantasia Chain Mainnet","chainId":868,"shortName":"FSCMainnet","networkId":868,"nativeCurrency":{"name":"FST","symbol":"FST","decimals":18},"rpc":["https://mainnet-data1.fantasiachain.com/","https://mainnet-data2.fantasiachain.com/","https://mainnet-data3.fantasiachain.com/"],"faucets":[],"infoURL":"https://fantasia.technology/"},{"name":"Bandai Namco Research Verse Mainnet","chainId":876,"shortName":"BNKEN","networkId":876,"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"rpc":["https://rpc.main.oasvrs.bnken.net"],"faucets":[],"infoURL":"https://www.bandainamco-mirai.com/en/"},{"name":"Dexit Network","chainId":877,"shortName":"DXT","networkId":877,"nativeCurrency":{"name":"Dexit network","symbol":"DXT","decimals":18},"rpc":["https://dxt.dexit.network"],"faucets":["https://faucet.dexit.network"],"infoURL":"https://dexit.network"},{"name":"Ambros Chain Mainnet","chainId":880,"shortName":"ambros","networkId":880,"nativeCurrency":{"name":"AMBROS","symbol":"AMBROS","decimals":18},"rpc":["https://api.ambros.network"],"faucets":[],"infoURL":"https://ambros.network"},{"name":"Wanchain","chainId":888,"shortName":"wan","networkId":888,"nativeCurrency":{"name":"Wancoin","symbol":"WAN","decimals":18},"rpc":["https://gwan-ssl.wandevs.org:56891/"],"faucets":[],"infoURL":"https://www.wanscan.org"},{"name":"Garizon Testnet Stage0","chainId":900,"shortName":"gar-test-s0","networkId":900,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s0-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"infoURL":"https://garizon.com"},{"name":"Garizon Testnet Stage1","chainId":901,"shortName":"gar-test-s1","networkId":901,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s1-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"infoURL":"https://garizon.com"},{"name":"Garizon Testnet Stage2","chainId":902,"shortName":"gar-test-s2","networkId":902,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s2-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"infoURL":"https://garizon.com"},{"name":"Garizon Testnet Stage3","chainId":903,"shortName":"gar-test-s3","networkId":903,"nativeCurrency":{"name":"Garizon","symbol":"GAR","decimals":18},"rpc":["https://s3-testnet.garizon.net/rpc"],"faucets":["https://faucet-testnet.garizon.com"],"infoURL":"https://garizon.com"},{"name":"Portal Fantasy Chain","chainId":909,"shortName":"PF","networkId":909,"nativeCurrency":{"name":"Portal Fantasy Token","symbol":"PFT","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://portalfantasy.io"},{"name":"DecentraBone Layer1 Testnet","chainId":910,"shortName":"DBONE","networkId":910,"nativeCurrency":{"name":"DecentraBone","symbol":"DBONE","decimals":18},"rpc":["https://layer1test.decentrabone.com"],"faucets":[],"infoURL":"https://decentrabone.com"},{"name":"Rinia Testnet","chainId":917,"shortName":"tfire","networkId":917,"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"rpc":["https://rinia.rpc1.thefirechain.com"],"faucets":["https://faucet.thefirechain.com"],"infoURL":"https://thefirechain.com"},{"name":"Mode Testnet","chainId":919,"shortName":"modesep","networkId":919,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://sepolia.mode.network"],"faucets":["https://sepoliafaucet.com/"],"infoURL":"https://docs.mode.network/"},{"name":"PulseChain Testnet","chainId":940,"shortName":"tpls","networkId":940,"nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18},"rpc":["https://rpc.v2.testnet.pulsechain.com/","wss://rpc.v2.testnet.pulsechain.com/"],"faucets":["https://faucet.v2.testnet.pulsechain.com/"],"infoURL":"https://pulsechain.com/"},{"name":"PulseChain Testnet v2b","chainId":941,"shortName":"t2bpls","networkId":941,"nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18},"rpc":["https://rpc.v2b.testnet.pulsechain.com/","wss://rpc.v2b.testnet.pulsechain.com/"],"faucets":["https://faucet.v2b.testnet.pulsechain.com/"],"infoURL":"https://pulsechain.com/"},{"name":"PulseChain Testnet v3","chainId":942,"shortName":"t3pls","networkId":942,"nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18},"rpc":["https://rpc.v3.testnet.pulsechain.com/","wss://rpc.v3.testnet.pulsechain.com/"],"faucets":["https://faucet.v3.testnet.pulsechain.com/"],"infoURL":"https://pulsechain.com/"},{"name":"PulseChain Testnet v4","chainId":943,"shortName":"t4pls","networkId":943,"nativeCurrency":{"name":"Test Pulse","symbol":"tPLS","decimals":18},"rpc":["https://rpc.v4.testnet.pulsechain.com/","wss://rpc.v4.testnet.pulsechain.com/","https://pulsechain-testnet.publicnode.com"],"faucets":["https://faucet.v4.testnet.pulsechain.com/"],"infoURL":"https://pulsechain.com"},{"name":"muNode Testnet","chainId":956,"shortName":"munode","networkId":956,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://munode.dev/"},{"name":"Oort Mainnet","chainId":970,"shortName":"ccn","networkId":970,"nativeCurrency":{"name":"Oort","symbol":"CCN","decimals":18},"rpc":["https://rpc.oortech.com"],"faucets":[],"infoURL":"https://oortech.com"},{"name":"Oort Huygens","chainId":971,"shortName":"Huygens","networkId":971,"nativeCurrency":{"name":"Oort","symbol":"CCN","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://oortech.com"},{"name":"Oort Ascraeus","chainId":972,"shortName":"Ascraeus","networkId":972,"nativeCurrency":{"name":"Oort","symbol":"CCNA","decimals":18},"rpc":["https://ascraeus-rpc.oortech.com"],"faucets":[],"infoURL":"https://oortech.com"},{"name":"Nepal Blockchain Network","chainId":977,"shortName":"yeti","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":"TOP Mainnet EVM","chainId":980,"shortName":"top_evm","networkId":0,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://ethapi.topnetwork.org"],"faucets":[],"infoURL":"https://www.topnetwork.org/"},{"name":"Memo Smart Chain Mainnet","chainId":985,"shortName":"memochain","networkId":985,"nativeCurrency":{"name":"Memo","symbol":"CMEMO","decimals":18},"rpc":["https://chain.metamemo.one:8501","wss://chain.metamemo.one:16801"],"faucets":["https://faucet.metamemo.one/"],"infoURL":"www.memolabs.org"},{"name":"TOP Mainnet","chainId":989,"shortName":"top","networkId":0,"nativeCurrency":{"name":"TOP","symbol":"TOP","decimals":6},"rpc":[],"faucets":[],"infoURL":"https://www.topnetwork.org/"},{"name":"eLiberty Mainnet","chainId":990,"shortName":"ELm","networkId":990,"nativeCurrency":{"name":"eLiberty","symbol":"$EL","decimals":18},"rpc":["https://rpc.eliberty.ngo"],"faucets":["https://faucet.eliberty.ngo"],"infoURL":"https://eliberty.ngo"},{"name":"5ireChain Thunder","chainId":997,"shortName":"5ire","networkId":997,"nativeCurrency":{"name":"5ire Token","symbol":"5ire","decimals":18},"rpc":["https://rpc-testnet.5ire.network"],"faucets":["https://explorer.5ire.network/faucet"],"infoURL":"https://5ire.org"},{"name":"Lucky Network","chainId":998,"shortName":"ln","networkId":998,"nativeCurrency":{"name":"Lucky","symbol":"L99","decimals":18},"rpc":["https://rpc.luckynetwork.org","wss://ws.lnscan.org","https://rpc.lnscan.org"],"faucets":[],"infoURL":"https://luckynetwork.org"},{"name":"Wanchain Testnet","chainId":999,"shortName":"twan","networkId":999,"nativeCurrency":{"name":"Wancoin","symbol":"WAN","decimals":18},"rpc":["https://gwan-ssl.wandevs.org:46891/"],"faucets":[],"infoURL":"https://testnet.wanscan.org"},{"name":"GTON Mainnet","chainId":1000,"shortName":"gton","networkId":1000,"nativeCurrency":{"name":"GCD","symbol":"GCD","decimals":18},"rpc":["https://rpc.gton.network/"],"faucets":[],"infoURL":"https://gton.capital"},{"name":"Klaytn Testnet Baobab","chainId":1001,"shortName":"Baobab","networkId":1001,"nativeCurrency":{"name":"KLAY","symbol":"KLAY","decimals":18},"rpc":["https://api.baobab.klaytn.net:8651"],"faucets":["https://baobab.wallet.klaytn.com/access?next=faucet"],"infoURL":"https://www.klaytn.com/"},{"name":"T-EKTA","chainId":1004,"shortName":"t-ekta","networkId":1004,"nativeCurrency":{"name":"T-EKTA","symbol":"T-EKTA","decimals":18},"rpc":["https://test.ekta.io:8545"],"faucets":[],"infoURL":"https://www.ekta.io"},{"name":"Newton Testnet","chainId":1007,"shortName":"tnew","networkId":1007,"nativeCurrency":{"name":"Newton","symbol":"NEW","decimals":18},"rpc":["https://rpc1.newchain.newtonproject.org"],"faucets":[],"infoURL":"https://www.newtonproject.org/"},{"name":"Eurus Mainnet","chainId":1008,"shortName":"eun","networkId":1008,"nativeCurrency":{"name":"Eurus","symbol":"EUN","decimals":18},"rpc":["https://mainnet.eurus.network/"],"faucets":[],"infoURL":"https://eurus.network"},{"name":"Evrice Network","chainId":1010,"shortName":"EVC","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","networkId":1012,"nativeCurrency":{"name":"Newton","symbol":"NEW","decimals":18},"rpc":["https://global.rpc.mainnet.newtonproject.org"],"faucets":[],"infoURL":"https://www.newtonproject.org/"},{"name":"Sakura","chainId":1022,"shortName":"sku","networkId":1022,"nativeCurrency":{"name":"Sakura","symbol":"SKU","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://clover.finance/sakura"},{"name":"Clover Testnet","chainId":1023,"shortName":"tclv","networkId":1023,"nativeCurrency":{"name":"Clover","symbol":"CLV","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://clover.finance"},{"name":"CLV Parachain","chainId":1024,"shortName":"clv","networkId":1024,"nativeCurrency":{"name":"CLV","symbol":"CLV","decimals":18},"rpc":["https://api-para.clover.finance"],"faucets":[],"infoURL":"https://clv.org"},{"name":"BitTorrent Chain Testnet","chainId":1028,"shortName":"tbtt","networkId":1028,"nativeCurrency":{"name":"BitTorrent","symbol":"BTT","decimals":18},"rpc":["https://testrpc.bittorrentchain.io/"],"faucets":[],"infoURL":"https://bittorrentchain.io/"},{"name":"Conflux eSpace","chainId":1030,"shortName":"cfx","networkId":1030,"nativeCurrency":{"name":"CFX","symbol":"CFX","decimals":18},"rpc":["https://evm.confluxrpc.com"],"faucets":[],"infoURL":"https://confluxnetwork.org"},{"name":"Proxy Network Testnet","chainId":1031,"shortName":"prx","networkId":1031,"nativeCurrency":{"name":"PRX","symbol":"PRX","decimals":18},"rpc":["http://128.199.94.183:8041"],"faucets":[],"infoURL":"https://theproxy.network"},{"name":"Bronos Testnet","chainId":1038,"shortName":"bronos-testnet","networkId":1038,"nativeCurrency":{"name":"tBRO","symbol":"tBRO","decimals":18},"rpc":["https://evm-testnet.bronos.org"],"faucets":["https://faucet.bronos.org"],"infoURL":"https://bronos.org"},{"name":"Bronos Mainnet","chainId":1039,"shortName":"bronos-mainnet","networkId":1039,"nativeCurrency":{"name":"BRO","symbol":"BRO","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://bronos.org"},{"name":"ShimmerEVM Testnet Deprecated","chainId":1071,"shortName":"shimmerevm-testnet-deprecated","networkId":1071,"nativeCurrency":{"name":"SMR","symbol":"SMR","decimals":18},"rpc":[],"faucets":["https://evm-toolkit.evm.testnet.shimmer.network","https://evm-faucet.testnet.shimmer.network"],"infoURL":"https://shimmer.network"},{"name":"ShimmerEVM Testnet","chainId":1072,"shortName":"shimmerevm-testnet","networkId":1072,"nativeCurrency":{"name":"SMR","symbol":"SMR","decimals":6},"rpc":["https://json-rpc.evm.testnet.shimmer.network"],"faucets":["https://evm-toolkit.evm.testnet.shimmer.network","https://evm-faucet.testnet.shimmer.network"],"infoURL":"https://shimmer.network"},{"name":"Mintara Testnet","chainId":1079,"shortName":"mintara-testnet","networkId":1079,"nativeCurrency":{"name":"MINTARA","symbol":"MNTR","decimals":18},"rpc":["https://subnets.avax.network/mintara/testnet/rpc"],"faucets":[],"infoURL":"https://playthink.co.jp"},{"name":"Mintara Mainnet","chainId":1080,"shortName":"mintara","networkId":1080,"nativeCurrency":{"name":"MINTARA","symbol":"MNTR","decimals":18},"rpc":["https://subnets.avax.network/mintara/mainnet/rpc"],"faucets":[],"infoURL":"https://playthink.co.jp"},{"name":"Metis Andromeda Mainnet","chainId":1088,"shortName":"metis-andromeda","networkId":1088,"nativeCurrency":{"name":"Metis","symbol":"METIS","decimals":18},"rpc":["https://andromeda.metis.io/?owner=1088"],"faucets":[],"infoURL":"https://www.metis.io"},{"name":"MOAC mainnet","chainId":1099,"shortName":"moac","networkId":1099,"nativeCurrency":{"name":"MOAC","symbol":"mc","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://moac.io"},{"name":"Polygon zkEVM","chainId":1101,"shortName":"zkevm","networkId":1101,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://zkevm-rpc.com"],"faucets":[],"infoURL":"https://polygon.technology/polygon-zkevm"},{"name":"WEMIX3.0 Mainnet","chainId":1111,"shortName":"wemix","networkId":1111,"nativeCurrency":{"name":"WEMIX","symbol":"WEMIX","decimals":18},"rpc":["https://api.wemix.com","wss://ws.wemix.com"],"faucets":[],"infoURL":"https://wemix.com"},{"name":"WEMIX3.0 Testnet","chainId":1112,"shortName":"twemix","networkId":1112,"nativeCurrency":{"name":"TestnetWEMIX","symbol":"tWEMIX","decimals":18},"rpc":["https://api.test.wemix.com","wss://ws.test.wemix.com"],"faucets":["https://wallet.test.wemix.com/faucet"],"infoURL":"https://wemix.com"},{"name":"Core Blockchain Testnet","chainId":1115,"shortName":"tcore","networkId":1115,"nativeCurrency":{"name":"Core Blockchain Testnet Native Token","symbol":"tCORE","decimals":18},"rpc":["https://rpc.test.btcs.network/"],"faucets":["https://scan.test.btcs.network/faucet"],"infoURL":"https://www.coredao.org"},{"name":"Core Blockchain Mainnet","chainId":1116,"shortName":"core","networkId":1116,"nativeCurrency":{"name":"Core Blockchain Native Token","symbol":"CORE","decimals":18},"rpc":["https://rpc.coredao.org/","https://rpc-core.icecreamswap.com"],"faucets":[],"infoURL":"https://www.coredao.org"},{"name":"Dogcoin Mainnet","chainId":1117,"shortName":"DOGSm","networkId":1117,"nativeCurrency":{"name":"Dogcoin","symbol":"DOGS","decimals":18},"rpc":["https://mainnet-rpc.dogcoin.me"],"faucets":["https://faucet.dogcoin.network"],"infoURL":"https://dogcoin.network"},{"name":"DeFiChain EVM Network Mainnet","chainId":1130,"shortName":"DFI","networkId":1130,"nativeCurrency":{"name":"DeFiChain","symbol":"DFI","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://meta.defichain.com/"},{"name":"DeFiChain EVM Network Testnet","chainId":1131,"shortName":"DFI-T","networkId":1131,"nativeCurrency":{"name":"DeFiChain","symbol":"DFI","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://meta.defichain.com/"},{"name":"AmStar Testnet","chainId":1138,"shortName":"ASARt","networkId":1138,"nativeCurrency":{"name":"SINSO","symbol":"SINSO","decimals":18},"rpc":["https://testnet-rpc.amstarscan.com"],"faucets":[],"infoURL":"https://sinso.io"},{"name":"MathChain","chainId":1139,"shortName":"MATH","networkId":1139,"nativeCurrency":{"name":"MathChain","symbol":"MATH","decimals":18},"rpc":["https://mathchain-asia.maiziqianbao.net/rpc","https://mathchain-us.maiziqianbao.net/rpc"],"faucets":[],"infoURL":"https://mathchain.org"},{"name":"MathChain Testnet","chainId":1140,"shortName":"tMATH","networkId":1140,"nativeCurrency":{"name":"MathChain","symbol":"MATH","decimals":18},"rpc":["https://galois-hk.maiziqianbao.net/rpc"],"faucets":["https://scan.boka.network/#/Galois/faucet"],"infoURL":"https://mathchain.org"},{"name":"Symplexia Smart Chain","chainId":1149,"shortName":"Plexchain","networkId":1149,"nativeCurrency":{"name":"Plex Native Token","symbol":"PLEX","decimals":18},"rpc":["https://plex-rpc.plexfinance.us"],"faucets":[],"infoURL":"https://plexfinance.us/"},{"name":"Origin Testnet","chainId":1170,"shortName":"auoc","networkId":1170,"nativeCurrency":{"name":"Origin","symbol":"UOC","decimals":18},"rpc":["https://json-rpc.origin.uptick.network"],"faucets":[],"infoURL":"https://www.uptick.network"},{"name":"Smart Host Teknoloji TESTNET","chainId":1177,"shortName":"sht","networkId":1177,"nativeCurrency":{"name":"Smart Host Teknoloji TESTNET","symbol":"tSHT","decimals":18},"rpc":["https://s2.tl.web.tr:4041"],"faucets":[],"infoURL":"https://smart-host.com.tr"},{"name":"Iora Chain","chainId":1197,"shortName":"iora","networkId":1197,"nativeCurrency":{"name":"Iora","symbol":"IORA","decimals":18},"rpc":["https://dataseed.iorachain.com"],"faucets":[],"infoURL":"https://iorachain.com"},{"name":"Evanesco Testnet","chainId":1201,"shortName":"avis","networkId":1201,"nativeCurrency":{"name":"AVIS","symbol":"AVIS","decimals":18},"rpc":["https://seed5.evanesco.org:8547"],"faucets":[],"infoURL":"https://evanesco.org/"},{"name":"World Trade Technical Chain Mainnet","chainId":1202,"shortName":"wtt","networkId":2048,"nativeCurrency":{"name":"World Trade Token","symbol":"WTT","decimals":18},"rpc":["https://rpc.cadaut.com","wss://rpc.cadaut.com/ws"],"faucets":[],"infoURL":"http://www.cadaut.com"},{"name":"Popcateum Mainnet","chainId":1213,"shortName":"popcat","networkId":1213,"nativeCurrency":{"name":"Popcat","symbol":"POP","decimals":18},"rpc":["https://dataseed.popcateum.org"],"faucets":[],"infoURL":"https://popcateum.org"},{"name":"EnterChain Mainnet","chainId":1214,"shortName":"enter","networkId":1214,"nativeCurrency":{"name":"EnterCoin","symbol":"ENTER","decimals":18},"rpc":["https://tapi.entercoin.net/"],"faucets":[],"infoURL":"https://entercoin.net"},{"name":"Exzo Network Mainnet","chainId":1229,"shortName":"xzo","networkId":1229,"nativeCurrency":{"name":"Exzo","symbol":"XZO","decimals":18},"rpc":["https://mainnet.exzo.technology"],"faucets":[],"infoURL":"https://exzo.network"},{"name":"Ultron Testnet","chainId":1230,"shortName":"UltronTestnet","networkId":1230,"nativeCurrency":{"name":"Ultron","symbol":"ULX","decimals":18},"rpc":["https://ultron-dev.io"],"faucets":[],"infoURL":"https://ultron.foundation"},{"name":"Ultron Mainnet","chainId":1231,"shortName":"UtronMainnet","networkId":1231,"nativeCurrency":{"name":"Ultron","symbol":"ULX","decimals":18},"rpc":["https://ultron-rpc.net"],"faucets":[],"infoURL":"https://ultron.foundation"},{"name":"Step Network","chainId":1234,"shortName":"step","networkId":1234,"nativeCurrency":{"name":"FITFI","symbol":"FITFI","decimals":18},"rpc":["https://rpc.step.network"],"faucets":[],"infoURL":"https://step.network"},{"name":"ARC Mainnet","chainId":1243,"shortName":"ARC","networkId":1243,"nativeCurrency":{"name":"ARC","symbol":"ARC","decimals":18},"rpc":["https://rpc-main-1.archiechain.io"],"faucets":[],"infoURL":"https://archiechain.io/"},{"name":"ARC Testnet","chainId":1244,"shortName":"TARC","networkId":1244,"nativeCurrency":{"name":"ARC","symbol":"ARC","decimals":18},"rpc":["https://rpc-test-1.archiechain.io"],"faucets":["https://faucet.archiechain.io"],"infoURL":"https://archiechain.io/"},{"name":"OM Platform Mainnet","chainId":1246,"shortName":"om","networkId":1246,"nativeCurrency":{"name":"OMCOIN","symbol":"OM","decimals":18},"rpc":["https://rpc-cnx.omplatform.com/"],"faucets":[],"infoURL":"https://omplatform.com/"},{"name":"CIC Chain Testnet","chainId":1252,"shortName":"CICT","networkId":1252,"nativeCurrency":{"name":"Crazy Internet Coin","symbol":"CICT","decimals":18},"rpc":["https://testapi.cicscan.com"],"faucets":["https://cicfaucet.com"],"infoURL":"https://www.cicchain.net"},{"name":"HALO Mainnet","chainId":1280,"shortName":"HO","networkId":1280,"nativeCurrency":{"name":"HALO","symbol":"HO","decimals":18},"rpc":["https://nodes.halo.land"],"faucets":[],"infoURL":"https://halo.land/#/"},{"name":"Moonbeam","chainId":1284,"shortName":"mbeam","networkId":1284,"nativeCurrency":{"name":"Glimmer","symbol":"GLMR","decimals":18},"rpc":["https://rpc.api.moonbeam.network","wss://wss.api.moonbeam.network"],"faucets":[],"infoURL":"https://moonbeam.network/networks/moonbeam/"},{"name":"Moonriver","chainId":1285,"shortName":"mriver","networkId":1285,"nativeCurrency":{"name":"Moonriver","symbol":"MOVR","decimals":18},"rpc":["https://rpc.api.moonriver.moonbeam.network","wss://wss.api.moonriver.moonbeam.network"],"faucets":[],"infoURL":"https://moonbeam.network/networks/moonriver/"},{"name":"Moonrock old","chainId":1286,"shortName":"mrock-old","networkId":1286,"nativeCurrency":{"name":"Rocs","symbol":"ROC","decimals":18},"rpc":[],"faucets":[],"infoURL":""},{"name":"Moonbase Alpha","chainId":1287,"shortName":"mbase","networkId":1287,"nativeCurrency":{"name":"Dev","symbol":"DEV","decimals":18},"rpc":["https://rpc.api.moonbase.moonbeam.network","wss://wss.api.moonbase.moonbeam.network"],"faucets":[],"infoURL":"https://docs.moonbeam.network/networks/testnet/"},{"name":"Moonrock","chainId":1288,"shortName":"mrock","networkId":1288,"nativeCurrency":{"name":"Rocs","symbol":"ROC","decimals":18},"rpc":["https://rpc.api.moonrock.moonbeam.network","wss://wss.api.moonrock.moonbeam.network"],"faucets":[],"infoURL":"https://docs.moonbeam.network/learn/platform/networks/overview/"},{"name":"Bobabeam","chainId":1294,"shortName":"Bobabeam","networkId":1294,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":["https://bobabeam.boba.network","wss://wss.bobabeam.boba.network","https://replica.bobabeam.boba.network","wss://replica-wss.bobabeam.boba.network"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Bobabase Testnet","chainId":1297,"shortName":"Bobabase","networkId":1297,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":["https://bobabase.boba.network","wss://wss.bobabase.boba.network","https://replica.bobabase.boba.network","wss://replica-wss.bobabase.boba.network"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Dos Fuji Subnet","chainId":1311,"shortName":"TDOS","networkId":1311,"nativeCurrency":{"name":"Dos Native Token","symbol":"DOS","decimals":18},"rpc":["https://test.doschain.com/jsonrpc"],"faucets":[],"infoURL":"http://doschain.io/"},{"name":"Alyx Mainnet","chainId":1314,"shortName":"alyx","networkId":1314,"nativeCurrency":{"name":"Alyx Chain Native Token","symbol":"ALYX","decimals":18},"rpc":["https://rpc.alyxchain.com"],"faucets":[],"infoURL":"https://www.alyxchain.com"},{"name":"Aitd Mainnet","chainId":1319,"shortName":"aitd","networkId":1319,"nativeCurrency":{"name":"AITD Mainnet","symbol":"AITD","decimals":18},"rpc":["https://walletrpc.aitd.io","https://node.aitd.io"],"faucets":[],"infoURL":"https://www.aitd.io/"},{"name":"Aitd Testnet","chainId":1320,"shortName":"aitdtestnet","networkId":1320,"nativeCurrency":{"name":"AITD Testnet","symbol":"AITD","decimals":18},"rpc":["http://http-testnet.aitd.io"],"faucets":["https://aitd-faucet-pre.aitdcoin.com/"],"infoURL":"https://www.aitd.io/"},{"name":"Geth Testnet","chainId":1337,"shortName":"geth","networkId":1337,"nativeCurrency":{"name":"Geth Testnet Ether","symbol":"ETH","decimals":18},"rpc":["http://127.0.0.1:8545"],"faucets":[],"infoURL":"https://geth.ethereum.org"},{"name":"Elysium Testnet","chainId":1338,"shortName":"ELST","networkId":1338,"nativeCurrency":{"name":"LAVA","symbol":"LAVA","decimals":18},"rpc":["https://elysium-test-rpc.vulcanforged.com"],"faucets":[],"infoURL":"https://elysiumscan.vulcanforged.com"},{"name":"Elysium Mainnet","chainId":1339,"shortName":"ELSM","networkId":1339,"nativeCurrency":{"name":"LAVA","symbol":"LAVA","decimals":18},"rpc":["https://rpc.elysiumchain.tech/"],"faucets":[],"infoURL":"https://elysiumscan.vulcanforged.com"},{"name":"CIC Chain Mainnet","chainId":1353,"shortName":"CIC","networkId":1353,"nativeCurrency":{"name":"Crazy Internet Coin","symbol":"CIC","decimals":18},"rpc":["https://xapi.cicscan.com"],"faucets":[],"infoURL":"https://www.cicchain.net"},{"name":"Zafirium Mainnet","chainId":1369,"shortName":"zafic","networkId":1369,"nativeCurrency":{"name":"Zakumi Chain Native Token","symbol":"ZAFIC","decimals":18},"rpc":["https://mainnet.zakumi.io"],"faucets":[],"infoURL":"https://www.zakumi.io"},{"name":"Kalar Chain","chainId":1379,"shortName":"KLC","networkId":1379,"nativeCurrency":{"name":"Kalar","symbol":"KLC","decimals":18},"rpc":["https://rpc-api.kalarchain.tech"],"faucets":[],"infoURL":"https://kalarchain.tech"},{"name":"AmStar Mainnet","chainId":1388,"shortName":"ASAR","networkId":1388,"nativeCurrency":{"name":"SINSO","symbol":"SINSO","decimals":18},"rpc":["https://mainnet-rpc.amstarscan.com"],"faucets":[],"infoURL":"https://sinso.io"},{"name":"Joseon Mainnet","chainId":1392,"shortName":"mun","networkId":1392,"nativeCurrency":{"name":"Joseon Mun","symbol":"JSM","decimals":18},"rpc":["https://rpc.modchain.net/blockchain.joseon.com/rpc"],"faucets":[],"infoURL":"https://www.joseon.com/"},{"name":"Polygon zkEVM Testnet old","chainId":1402,"shortName":"zkevmtest","networkId":1402,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://polygon.technology/solutions/polygon-zkevm/"},{"name":"Polygon zkEVM Testnet Pre Audit-Upgraded","chainId":1422,"shortName":"testnet-zkEVM-mango-pre-audit-upgraded","networkId":1422,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://polygon.technology/solutions/polygon-zkevm/"},{"name":"Rikeza Network Mainnet","chainId":1433,"shortName":"RIK","networkId":1433,"nativeCurrency":{"name":"Rikeza","symbol":"RIK","decimals":18},"rpc":["https://rpc.rikscan.com"],"faucets":[],"infoURL":"https://rikeza.io"},{"name":"Living Assets Mainnet","chainId":1440,"shortName":"LAS","networkId":1440,"nativeCurrency":{"name":"LAS","symbol":"LAS","decimals":18},"rpc":["https://beta.mainnet.livingassets.io/rpc","https://gamma.mainnet.livingassets.io/rpc"],"faucets":[],"infoURL":"https://dev.livingassets.io/"},{"name":"Polygon zkEVM Testnet","chainId":1442,"shortName":"testnet-zkEVM-mango","networkId":1442,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.public.zkevm-test.net"],"faucets":[],"infoURL":"https://polygon.technology/solutions/polygon-zkevm/"},{"name":"GIL Testnet","chainId":1452,"shortName":"gil","networkId":1452,"nativeCurrency":{"name":"GANG","symbol":"GANG","decimals":18},"rpc":["https://rpc.giltestnet.com"],"faucets":[],"infoURL":"https://gaussgang.com/"},{"name":"Ctex Scan Blockchain","chainId":1455,"shortName":"CTEX","networkId":1455,"nativeCurrency":{"name":"CTEX","symbol":"CTEX","decimals":18},"rpc":["https://mainnet-rpc.ctexscan.com/"],"faucets":["https://faucet.ctexscan.com"],"infoURL":"https://ctextoken.io"},{"name":"BEVM","chainId":1501,"shortName":"chainx","networkId":1501,"nativeCurrency":{"name":"BTC","symbol":"BTC","decimals":18},"rpc":["https://rpc-1.bevm.io/","https://rpc-2.bevm.io/"],"faucets":[],"infoURL":"https://chainx.org"},{"name":"Sherpax Mainnet","chainId":1506,"shortName":"Sherpax","networkId":1506,"nativeCurrency":{"name":"KSX","symbol":"KSX","decimals":18},"rpc":["https://mainnet.sherpax.io/rpc"],"faucets":[],"infoURL":"https://sherpax.io/"},{"name":"Sherpax Testnet","chainId":1507,"shortName":"SherpaxTestnet","networkId":1507,"nativeCurrency":{"name":"KSX","symbol":"KSX","decimals":18},"rpc":["https://sherpax-testnet.chainx.org/rpc"],"faucets":[],"infoURL":"https://sherpax.io/"},{"name":"Beagle Messaging Chain","chainId":1515,"shortName":"beagle","networkId":1515,"nativeCurrency":{"name":"Beagle","symbol":"BG","decimals":18},"rpc":["https://beagle.chat/eth"],"faucets":["https://faucet.beagle.chat/"],"infoURL":"https://beagle.chat/"},{"name":"Tenet","chainId":1559,"shortName":"tenet","networkId":1559,"nativeCurrency":{"name":"TENET","symbol":"TENET","decimals":18},"rpc":["https://rpc.tenet.org","https://tenet-evm.publicnode.com"],"faucets":[],"infoURL":"https://tenet.org/"},{"name":"Catecoin Chain Mainnet","chainId":1618,"shortName":"cate","networkId":1618,"nativeCurrency":{"name":"Catecoin","symbol":"CATE","decimals":18},"rpc":["https://send.catechain.com"],"faucets":[],"infoURL":"https://catechain.com"},{"name":"Atheios","chainId":1620,"shortName":"ath","networkId":11235813,"nativeCurrency":{"name":"Atheios Ether","symbol":"ATH","decimals":18},"rpc":["https://rpc.atheios.org/"],"faucets":[],"infoURL":"https://atheios.org"},{"name":"Btachain","chainId":1657,"shortName":"bta","networkId":1657,"nativeCurrency":{"name":"Bitcoin Asset","symbol":"BTA","decimals":18},"rpc":["https://dataseed1.btachain.com/"],"faucets":[],"infoURL":"https://bitcoinasset.io/"},{"name":"Horizen Yuma Testnet Deprecated","chainId":1662,"shortName":"Yuma","networkId":1662,"nativeCurrency":{"name":"Testnet Zen","symbol":"tZEN","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://horizen.io/"},{"name":"Horizen Gobi Testnet","chainId":1663,"shortName":"Gobi","networkId":1663,"nativeCurrency":{"name":"Testnet Zen","symbol":"tZEN","decimals":18},"rpc":["https://gobi-testnet.horizenlabs.io/ethv1","https://rpc.ankr.com/horizen_testnet_evm"],"faucets":["https://faucet.horizen.io"],"infoURL":"https://horizen.io/"},{"name":"LUDAN Mainnet","chainId":1688,"shortName":"LUDAN","networkId":1688,"nativeCurrency":{"name":"LUDAN","symbol":"LUDAN","decimals":18},"rpc":["https://rpc.ludan.org/"],"faucets":[],"infoURL":"https://www.ludan.org/"},{"name":"Anytype EVM Chain","chainId":1701,"shortName":"AnytypeChain","networkId":1701,"nativeCurrency":{"name":"ANY","symbol":"ANY","decimals":18},"rpc":["https://geth.anytype.io"],"faucets":["https://evm.anytype.io/faucet"],"infoURL":"https://evm.anytype.io"},{"name":"TBSI Mainnet","chainId":1707,"shortName":"TBSI","networkId":1707,"nativeCurrency":{"name":"Jinda","symbol":"JINDA","decimals":18},"rpc":["https://rpc.blockchain.or.th"],"faucets":[],"infoURL":"https://blockchain.or.th"},{"name":"TBSI Testnet","chainId":1708,"shortName":"tTBSI","networkId":1708,"nativeCurrency":{"name":"Jinda","symbol":"JINDA","decimals":18},"rpc":["https://rpc.testnet.blockchain.or.th"],"faucets":["https://faucet.blockchain.or.th"],"infoURL":"https://blockchain.or.th"},{"name":"Palette Chain Mainnet","chainId":1718,"shortName":"PCM","networkId":1718,"nativeCurrency":{"name":"Palette Token","symbol":"PLT","decimals":18},"rpc":["https://palette-rpc.com:22000"],"faucets":[],"infoURL":"https://hashpalette.com/"},{"name":"PartyChain","chainId":1773,"shortName":"TeaParty","networkId":1773,"nativeCurrency":{"name":"Grams","symbol":"GRAMS","decimals":18},"rpc":["https://tea.mining4people.com/rpc","http://172.104.194.36:8545"],"faucets":[],"infoURL":"TeaPartyCrypto.com"},{"name":"Gauss Mainnet","chainId":1777,"shortName":"gauss","networkId":1777,"nativeCurrency":{"name":"GANG","symbol":"GANG","decimals":18},"rpc":["https://rpc.gaussgang.com"],"faucets":[],"infoURL":"https://gaussgang.com/"},{"name":"Kerleano","chainId":1804,"shortName":"kerleano","networkId":1804,"nativeCurrency":{"name":"Climate awaReness Coin","symbol":"CRC","decimals":18},"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"],"infoURL":"https://github.com/ethereum-pocr/kerleano"},{"name":"Rabbit Analog Testnet Chain","chainId":1807,"shortName":"rAna","networkId":1807,"nativeCurrency":{"name":"Rabbit Analog Test Chain Native Token ","symbol":"rAna","decimals":18},"rpc":["https://rabbit.analog-rpc.com"],"faucets":["https://analogfaucet.com"],"infoURL":"https://rabbit.analogscan.com"},{"name":"Cube Chain Mainnet","chainId":1818,"shortName":"cube","networkId":1818,"nativeCurrency":{"name":"Cube Chain Native Token","symbol":"CUBE","decimals":18},"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":[],"infoURL":"https://www.cube.network"},{"name":"Cube Chain Testnet","chainId":1819,"shortName":"cubet","networkId":1819,"nativeCurrency":{"name":"Cube Chain Test Native Token","symbol":"CUBET","decimals":18},"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"],"infoURL":"https://www.cube.network"},{"name":"Teslafunds","chainId":1856,"shortName":"tsf","networkId":1,"nativeCurrency":{"name":"Teslafunds Ether","symbol":"TSF","decimals":18},"rpc":["https://tsfapi.europool.me"],"faucets":[],"infoURL":"https://teslafunds.io"},{"name":"WhiteBIT Network","chainId":1875,"shortName":"wbt","networkId":1875,"nativeCurrency":{"name":"WhiteBIT Coin","symbol":"WBT","decimals":18},"rpc":["https://rpc.whitebit.network"],"faucets":[],"infoURL":"https://whitebit.network"},{"name":"Gitshock Cartenz Testnet","chainId":1881,"shortName":"gitshockchain","networkId":1881,"nativeCurrency":{"name":"Gitshock Cartenz","symbol":"tGTFX","decimals":18},"rpc":["https://rpc.cartenz.works"],"faucets":[],"infoURL":"https://gitshock.com"},{"name":"Lightlink Phoenix Mainnet","chainId":1890,"shortName":"lightlink_phoenix","networkId":1890,"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"rpc":["https://replicator-01.phoenix.lightlink.io/rpc/v1","https://replicator-02.phoenix.lightlink.io/rpc/v1"],"faucets":[],"infoURL":"https://lightlink.io"},{"name":"Lightlink Pegasus Testnet","chainId":1891,"shortName":"lightlink_pegasus","networkId":1891,"nativeCurrency":{"name":"Ethereum","symbol":"ETH","decimals":18},"rpc":["https://replicator-01.pegasus.lightlink.io/rpc/v1","https://replicator-02.pegasus.lightlink.io/rpc/v1"],"faucets":["https://pegasus-faucet-react.vercel.app"],"infoURL":"https://lightlink.io"},{"name":"BON Network","chainId":1898,"shortName":"boya","networkId":1,"nativeCurrency":{"name":"BOYACoin","symbol":"BOY","decimals":18},"rpc":["http://rpc.boyanet.org:8545","ws://rpc.boyanet.org:8546"],"faucets":[],"infoURL":"https://boyanet.org"},{"name":"Bitcichain Mainnet","chainId":1907,"shortName":"bitci","networkId":1907,"nativeCurrency":{"name":"Bitci","symbol":"BITCI","decimals":18},"rpc":["https://rpc.bitci.com"],"faucets":[],"infoURL":"https://www.bitcichain.com"},{"name":"Bitcichain Testnet","chainId":1908,"shortName":"tbitci","networkId":1908,"nativeCurrency":{"name":"Test Bitci","symbol":"TBITCI","decimals":18},"rpc":["https://testnet.bitcichain.com"],"faucets":["https://faucet.bitcichain.com"],"infoURL":"https://www.bitcichain.com"},{"name":"ONUS Chain Testnet","chainId":1945,"shortName":"onus-testnet","networkId":1945,"nativeCurrency":{"name":"ONUS","symbol":"ONUS","decimals":18},"rpc":["https://rpc-testnet.onuschain.io"],"faucets":[],"infoURL":"https://onuschain.io"},{"name":"D-Chain Mainnet","chainId":1951,"shortName":"dchain-mainnet","networkId":1951,"nativeCurrency":{"name":"DOINX","symbol":"DOINX","decimals":18},"rpc":["https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc"],"faucets":[],"infoURL":""},{"name":"Dexilla Testnet","chainId":1954,"shortName":"Dexilla","networkId":1954,"nativeCurrency":{"name":"Dexilla Native Token","symbol":"DXZ","decimals":18},"rpc":["https://rpc.dexilla.com"],"faucets":[],"infoURL":"https://dexilla.com"},{"name":"Eleanor","chainId":1967,"shortName":"mtc","networkId":1967,"nativeCurrency":{"name":"Eleanor Metacoin","symbol":"MTC","decimals":18},"rpc":["https://rpc.metatime.com/eleanor","wss://ws.metatime.com/eleanor"],"faucets":["https://faucet.metatime.com/eleanor"],"infoURL":"https://eleanor.metatime.com"},{"name":"Super Smart Chain Testnet","chainId":1969,"shortName":"tscs","networkId":1969,"nativeCurrency":{"name":"Super Chain Native Token","symbol":"TSCS","decimals":18},"rpc":["https://testnetrpc.scschain.com"],"faucets":["https://testnet.scschain.com"],"infoURL":"https://testnet.scschain.com"},{"name":"Super Smart Chain Mainnet","chainId":1970,"shortName":"scs","networkId":1970,"nativeCurrency":{"name":"Super Chain Native Token","symbol":"SCS","decimals":18},"rpc":["https://rpc.scschain.com"],"faucets":[],"infoURL":"https://scschain.com"},{"name":"Atelier","chainId":1971,"shortName":"atlr","networkId":1971,"nativeCurrency":{"name":"ATLR","symbol":"ATLR","decimals":18},"rpc":["https://1971.network/atlr","wss://1971.network/atlr"],"faucets":[],"infoURL":"https://1971.network/"},{"name":"ONUS Chain Mainnet","chainId":1975,"shortName":"onus-mainnet","networkId":1975,"nativeCurrency":{"name":"ONUS","symbol":"ONUS","decimals":18},"rpc":["https://rpc.onuschain.io","wss://ws.onuschain.io"],"faucets":[],"infoURL":"https://onuschain.io"},{"name":"Eurus Testnet","chainId":1984,"shortName":"euntest","networkId":1984,"nativeCurrency":{"name":"Eurus","symbol":"EUN","decimals":18},"rpc":["https://testnet.eurus.network"],"faucets":[],"infoURL":"https://eurus.network"},{"name":"EtherGem","chainId":1987,"shortName":"egem","networkId":1987,"nativeCurrency":{"name":"EtherGem Ether","symbol":"EGEM","decimals":18},"rpc":["https://jsonrpc.egem.io/custom"],"faucets":[],"infoURL":"https://egem.io"},{"name":"Ekta","chainId":1994,"shortName":"ekta","networkId":1994,"nativeCurrency":{"name":"EKTA","symbol":"EKTA","decimals":18},"rpc":["https://main.ekta.io"],"faucets":[],"infoURL":"https://www.ekta.io"},{"name":"edeXa Testnet","chainId":1995,"shortName":"edx","networkId":1995,"nativeCurrency":{"name":"EDEXA","symbol":"EDX","decimals":18},"rpc":["https://testnet.edexa.com/rpc","https://io-dataseed1.testnet.edexa.io-market.com/rpc"],"faucets":["https://faucet.edexa.com/"],"infoURL":"https://edexa.com/"},{"name":"Dogechain Mainnet","chainId":2000,"shortName":"dc","networkId":2000,"nativeCurrency":{"name":"Dogecoin","symbol":"DOGE","decimals":18},"rpc":["https://rpc.dogechain.dog","https://rpc01-sg.dogechain.dog","https://rpc.ankr.com/dogechain"],"faucets":[],"infoURL":"https://dogechain.dog"},{"name":"Milkomeda C1 Mainnet","chainId":2001,"shortName":"milkAda","networkId":2001,"nativeCurrency":{"name":"milkAda","symbol":"mADA","decimals":18},"rpc":["https://rpc-mainnet-cardano-evm.c1.milkomeda.com","wss://rpc-mainnet-cardano-evm.c1.milkomeda.com"],"faucets":[],"infoURL":"https://milkomeda.com"},{"name":"Milkomeda A1 Mainnet","chainId":2002,"shortName":"milkALGO","networkId":2002,"nativeCurrency":{"name":"milkALGO","symbol":"mALGO","decimals":18},"rpc":["https://rpc-mainnet-algorand-rollup.a1.milkomeda.com","wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws"],"faucets":[],"infoURL":"https://milkomeda.com"},{"name":"CloudWalk Testnet","chainId":2008,"shortName":"cloudwalk_testnet","networkId":2008,"nativeCurrency":{"name":"CloudWalk Native Token","symbol":"CWN","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://cloudwalk.io"},{"name":"CloudWalk Mainnet","chainId":2009,"shortName":"cloudwalk_mainnet","networkId":2009,"nativeCurrency":{"name":"CloudWalk Native Token","symbol":"CWN","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://cloudwalk.io"},{"name":"MainnetZ Mainnet","chainId":2016,"shortName":"NetZm","networkId":2016,"nativeCurrency":{"name":"MainnetZ","symbol":"NetZ","decimals":18},"rpc":["https://mainnet-rpc.mainnetz.io"],"faucets":["https://faucet.mainnetz.io"],"infoURL":"https://mainnetz.io"},{"name":"PublicMint Devnet","chainId":2018,"shortName":"pmint_dev","networkId":2018,"nativeCurrency":{"name":"USD","symbol":"USD","decimals":18},"rpc":["https://rpc.dev.publicmint.io:8545"],"faucets":[],"infoURL":"https://publicmint.com"},{"name":"PublicMint Testnet","chainId":2019,"shortName":"pmint_test","networkId":2019,"nativeCurrency":{"name":"USD","symbol":"USD","decimals":18},"rpc":["https://rpc.tst.publicmint.io:8545"],"faucets":[],"infoURL":"https://publicmint.com"},{"name":"PublicMint Mainnet","chainId":2020,"shortName":"pmint","networkId":2020,"nativeCurrency":{"name":"USD","symbol":"USD","decimals":18},"rpc":["https://rpc.publicmint.io:8545"],"faucets":[],"infoURL":"https://publicmint.com"},{"name":"Edgeware EdgeEVM Mainnet","chainId":2021,"shortName":"edg","networkId":2021,"nativeCurrency":{"name":"Edgeware","symbol":"EDG","decimals":18},"rpc":["https://edgeware-evm.jelliedowl.net","https://mainnet2.edgewa.re/evm","https://mainnet3.edgewa.re/evm","https://mainnet4.edgewa.re/evm","https://mainnet5.edgewa.re/evm","wss://edgeware.jelliedowl.net","wss://mainnet2.edgewa.re","wss://mainnet3.edgewa.re","wss://mainnet4.edgewa.re","wss://mainnet5.edgewa.re"],"faucets":[],"infoURL":"https://edgeware.io"},{"name":"Beresheet BereEVM Testnet","chainId":2022,"shortName":"edgt","networkId":2022,"nativeCurrency":{"name":"Testnet EDG","symbol":"tEDG","decimals":18},"rpc":["https://beresheet-evm.jelliedowl.net","wss://beresheet.jelliedowl.net"],"faucets":[],"infoURL":"https://edgeware.io/build"},{"name":"Taycan Testnet","chainId":2023,"shortName":"taycan-testnet","networkId":2023,"nativeCurrency":{"name":"test-Shuffle","symbol":"tSFL","decimals":18},"rpc":["https://test-taycan.hupayx.io"],"faucets":["https://ttaycan-faucet.hupayx.io/"],"infoURL":"https://hupayx.io"},{"name":"Rangers Protocol Mainnet","chainId":2025,"shortName":"rpg","networkId":2025,"nativeCurrency":{"name":"Rangers Protocol Gas","symbol":"RPG","decimals":18},"rpc":["https://mainnet.rangersprotocol.com/api/jsonrpc"],"faucets":[],"infoURL":"https://rangersprotocol.com"},{"name":"OriginTrail Parachain","chainId":2043,"shortName":"otp","networkId":2043,"nativeCurrency":{"name":"OriginTrail Parachain Token","symbol":"OTP","decimals":12},"rpc":["https://astrosat.origintrail.network","wss://parachain-rpc.origin-trail.network"],"faucets":[],"infoURL":"https://parachain.origintrail.io"},{"name":"Shrapnel Subnet","chainId":2044,"shortName":"Shrapnel","networkId":2044,"nativeCurrency":{"name":"Shrapnel Gas Token","symbol":"SHRAPG","decimals":18},"rpc":["https://subnets.avax.network/shrapnel/mainnet/rpc"],"faucets":[],"infoURL":"https://www.shrapnel.com/"},{"name":"Stratos Testnet","chainId":2047,"shortName":"stos-testnet","networkId":2047,"nativeCurrency":{"name":"STOS","symbol":"STOS","decimals":18},"rpc":["https://web3-rpc-mesos.thestratos.org"],"faucets":[],"infoURL":"https://www.thestratos.org"},{"name":"Stratos Mainnet","chainId":2048,"shortName":"stos-mainnet","networkId":2048,"nativeCurrency":{"name":"STOS","symbol":"STOS","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://www.thestratos.org"},{"name":"Quokkacoin Mainnet","chainId":2077,"shortName":"QKA","networkId":2077,"nativeCurrency":{"name":"Qkacoin","symbol":"QKA","decimals":18},"rpc":["https://rpc.qkacoin.org"],"faucets":[],"infoURL":"https://qkacoin.org"},{"name":"Ecoball Mainnet","chainId":2100,"shortName":"eco","networkId":2100,"nativeCurrency":{"name":"Ecoball Coin","symbol":"ECO","decimals":18},"rpc":["https://api.ecoball.org/ecoball/"],"faucets":[],"infoURL":"https://ecoball.org"},{"name":"Ecoball Testnet Espuma","chainId":2101,"shortName":"esp","networkId":2101,"nativeCurrency":{"name":"Espuma Coin","symbol":"ECO","decimals":18},"rpc":["https://api.ecoball.org/espuma/"],"faucets":[],"infoURL":"https://ecoball.org"},{"name":"Exosama Network","chainId":2109,"shortName":"exn","networkId":2109,"nativeCurrency":{"name":"Sama Token","symbol":"SAMA","decimals":18},"rpc":["https://rpc.exosama.com","wss://rpc.exosama.com"],"faucets":[],"infoURL":"https://moonsama.com"},{"name":"Metaplayerone Mainnet","chainId":2122,"shortName":"Metad","networkId":2122,"nativeCurrency":{"name":"METAD","symbol":"METAD","decimals":18},"rpc":["https://rpc.metaplayer.one/"],"faucets":[],"infoURL":"https://docs.metaplayer.one/"},{"name":"Metaplayerone Dubai Testnet","chainId":2124,"shortName":"MEU","networkId":2124,"nativeCurrency":{"name":"Metaunit","symbol":"MEU","decimals":18},"rpc":["https://rpc-dubai.mp1network.com/"],"faucets":[],"infoURL":"https://docs.metaplayer.one/"},{"name":"Defi Oracle Meta Testnet","chainId":2138,"shortName":"dfio-meta-test","networkId":21,"nativeCurrency":{"name":"testEther","symbol":"tETH","decimals":18},"rpc":["https://rpc.public-2138.defi-oracle.io","wss://rpc.public-2138.defi-oracle.io"],"faucets":[],"infoURL":"https://defi-oracle.io/"},{"name":"BOSagora Mainnet","chainId":2151,"shortName":"boa","networkId":2151,"nativeCurrency":{"name":"BOSAGORA","symbol":"BOA","decimals":18},"rpc":["https://mainnet.bosagora.org","https://rpc.bosagora.org"],"faucets":[],"infoURL":"https://docs.bosagora.org"},{"name":"Findora Mainnet","chainId":2152,"shortName":"fra","networkId":2152,"nativeCurrency":{"name":"FRA","symbol":"FRA","decimals":18},"rpc":["https://rpc-mainnet.findora.org"],"faucets":[],"infoURL":"https://findora.org/"},{"name":"Findora Testnet","chainId":2153,"shortName":"findora-testnet","networkId":2153,"nativeCurrency":{"name":"FRA","symbol":"FRA","decimals":18},"rpc":["https://prod-testnet.prod.findora.org:8545/"],"faucets":[],"infoURL":"https://findora.org/"},{"name":"Findora Forge","chainId":2154,"shortName":"findora-forge","networkId":2154,"nativeCurrency":{"name":"FRA","symbol":"FRA","decimals":18},"rpc":["https://prod-forge.prod.findora.org:8545/"],"faucets":[],"infoURL":"https://findora.org/"},{"name":"Moonsama Network","chainId":2199,"shortName":"msn","networkId":2199,"nativeCurrency":{"name":"Sama Token","symbol":"SAMA","decimals":18},"rpc":["https://rpc.moonsama.com","wss://rpc.moonsama.com/ws"],"faucets":["https://multiverse.moonsama.com/faucet"],"infoURL":"https://moonsama.com"},{"name":"Antofy Mainnet","chainId":2202,"shortName":"ABNm","networkId":2202,"nativeCurrency":{"name":"Antofy","symbol":"ABN","decimals":18},"rpc":["https://rpc.antofy.io"],"faucets":["https://faucet.antofy.io"],"infoURL":"https://antofy.io"},{"name":"Bitcoin EVM","chainId":2203,"shortName":"BTC","networkId":2203,"nativeCurrency":{"name":"Bitcoin","symbol":"BTC","decimals":18},"rpc":["https://connect.bitcoinevm.com"],"faucets":[],"infoURL":"https://bitcoinevm.com"},{"name":"Evanesco Mainnet","chainId":2213,"shortName":"evanesco","networkId":2213,"nativeCurrency":{"name":"EVA","symbol":"EVA","decimals":18},"rpc":["https://seed4.evanesco.org:8546"],"faucets":[],"infoURL":"https://evanesco.org/"},{"name":"Kava EVM Testnet","chainId":2221,"shortName":"tkava","networkId":2221,"nativeCurrency":{"name":"TKava","symbol":"TKAVA","decimals":18},"rpc":["https://evm.testnet.kava.io","wss://wevm.testnet.kava.io"],"faucets":["https://faucet.kava.io"],"infoURL":"https://www.kava.io"},{"name":"Kava EVM","chainId":2222,"shortName":"kava","networkId":2222,"nativeCurrency":{"name":"Kava","symbol":"KAVA","decimals":18},"rpc":["https://evm.kava.io","https://evm2.kava.io","wss://wevm.kava.io","wss://wevm2.kava.io","https://kava-evm.publicnode.com"],"faucets":[],"infoURL":"https://www.kava.io"},{"name":"VChain Mainnet","chainId":2223,"shortName":"VChain","networkId":2223,"nativeCurrency":{"name":"VNDT","symbol":"VNDT","decimals":18},"rpc":["https://bc.vcex.xyz"],"faucets":[],"infoURL":"https://bo.vcex.xyz/"},{"name":"BOMB Chain","chainId":2300,"shortName":"bomb","networkId":2300,"nativeCurrency":{"name":"BOMB Token","symbol":"BOMB","decimals":18},"rpc":["https://rpc.bombchain.com"],"faucets":[],"infoURL":"https://www.bombchain.com"},{"name":"Arevia","chainId":2309,"shortName":"arevia","networkId":2309,"nativeCurrency":{"name":"Arev","symbol":"ARÉV","decimals":18},"rpc":[],"faucets":[],"infoURL":""},{"name":"SOMA Network Testnet","chainId":2323,"shortName":"sma","networkId":2323,"nativeCurrency":{"name":"SMA","symbol":"tSMA","decimals":18},"rpc":["https://data-testnet-v1.somanetwork.io/"],"faucets":["https://faucet.somanetwork.io"],"infoURL":"https://somanetwork.io"},{"name":"Altcoinchain","chainId":2330,"shortName":"alt","networkId":2330,"nativeCurrency":{"name":"Altcoin","symbol":"ALT","decimals":18},"rpc":["https://rpc0.altcoinchain.org/rpc"],"faucets":[],"infoURL":"https://altcoinchain.org"},{"name":"SOMA Network Mainnet","chainId":2332,"shortName":"smam","networkId":2332,"nativeCurrency":{"name":"Soma Native Token","symbol":"SMA","decimals":18},"rpc":["https://data-mainnet-v1.somanetwork.io/"],"faucets":["https://airdrop.somanetwork.io"],"infoURL":"https://somanetwork.io"},{"name":"(deprecated) Kroma Sepolia","chainId":2357,"shortName":"deprecated-kroma-sepolia","networkId":2357,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://api.sepolia-deprecated.kroma.network"],"faucets":[],"infoURL":"https://kroma.network"},{"name":"Kroma Sepolia","chainId":2358,"shortName":"kroma-sepolia","networkId":2358,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://api.sepolia.kroma.network"],"faucets":[],"infoURL":"https://kroma.network"},{"name":"BOMB Chain Testnet","chainId":2399,"shortName":"bombt","networkId":2399,"nativeCurrency":{"name":"BOMB Token","symbol":"tBOMB","decimals":18},"rpc":["https://bombchain-testnet.ankr.com/bas_full_rpc_1"],"faucets":["https://faucet.bombchain-testnet.ankr.com/"],"infoURL":"https://www.bombmoney.com"},{"name":"TCG Verse Mainnet","chainId":2400,"shortName":"TCGV","networkId":2400,"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"rpc":["https://rpc.tcgverse.xyz"],"faucets":[],"infoURL":"https://tcgverse.xyz/"},{"name":"XODEX","chainId":2415,"shortName":"xodex","networkId":10,"nativeCurrency":{"name":"XODEX Native Token","symbol":"XODEX","decimals":18},"rpc":["https://mainnet.xo-dex.com/rpc","https://xo-dex.io"],"faucets":[],"infoURL":"https://xo-dex.com"},{"name":"Kortho Mainnet","chainId":2559,"shortName":"ktoc","networkId":2559,"nativeCurrency":{"name":"KorthoChain","symbol":"KTO","decimals":11},"rpc":["https://www.kortho-chain.com"],"faucets":[],"infoURL":"https://www.kortho.io/"},{"name":"TechPay Mainnet","chainId":2569,"shortName":"tpc","networkId":2569,"nativeCurrency":{"name":"TechPay","symbol":"TPC","decimals":18},"rpc":["https://api.techpay.io/"],"faucets":[],"infoURL":"https://techpay.io/"},{"name":"PoCRNet","chainId":2606,"shortName":"pocrnet","networkId":2606,"nativeCurrency":{"name":"Climate awaReness Coin","symbol":"CRC","decimals":18},"rpc":["https://pocrnet.westeurope.cloudapp.azure.com/http","wss://pocrnet.westeurope.cloudapp.azure.com/ws"],"faucets":[],"infoURL":"https://github.com/ethereum-pocr/pocrnet"},{"name":"Redlight Chain Mainnet","chainId":2611,"shortName":"REDLC","networkId":2611,"nativeCurrency":{"name":"Redlight Coin","symbol":"REDLC","decimals":18},"rpc":["https://dataseed2.redlightscan.finance"],"faucets":[],"infoURL":"https://redlight.finance/"},{"name":"EZChain C-Chain Mainnet","chainId":2612,"shortName":"EZChain","networkId":2612,"nativeCurrency":{"name":"EZChain","symbol":"EZC","decimals":18},"rpc":["https://api.ezchain.com/ext/bc/C/rpc"],"faucets":[],"infoURL":"https://ezchain.com"},{"name":"EZChain C-Chain Testnet","chainId":2613,"shortName":"Fuji-EZChain","networkId":2613,"nativeCurrency":{"name":"EZChain","symbol":"EZC","decimals":18},"rpc":["https://testnet-api.ezchain.com/ext/bc/C/rpc"],"faucets":["https://testnet-faucet.ezchain.com"],"infoURL":"https://ezchain.com"},{"name":"WhiteBIT Network Testnet","chainId":2625,"shortName":"twbt","networkId":2625,"nativeCurrency":{"name":"WhiteBIT Coin","symbol":"WBT","decimals":18},"rpc":["https://rpc-testnet.whitebit.network"],"faucets":["https://explorer.whitebit.network/testnet/faucet"],"infoURL":"https://whitebit.com/wbt"},{"name":"Boba Network Goerli Testnet","chainId":2888,"shortName":"BobaGoerli","networkId":2888,"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"rpc":["https://goerli.boba.network/","wss://wss.goerli.boba.network/"],"faucets":[],"infoURL":"https://boba.network"},{"name":"BitYuan Mainnet","chainId":2999,"shortName":"bty","networkId":2999,"nativeCurrency":{"name":"BTY","symbol":"BTY","decimals":18},"rpc":["https://mainnet.bityuan.com/eth"],"faucets":[],"infoURL":"https://www.bityuan.com"},{"name":"CENNZnet Rata","chainId":3000,"shortName":"cennz-r","networkId":3000,"nativeCurrency":{"name":"CPAY","symbol":"CPAY","decimals":18},"rpc":[],"faucets":["https://app-faucet.centrality.me"],"infoURL":"https://cennz.net"},{"name":"CENNZnet Nikau","chainId":3001,"shortName":"cennz-n","networkId":3001,"nativeCurrency":{"name":"CPAY","symbol":"CPAY","decimals":18},"rpc":["https://nikau.centrality.me/public"],"faucets":["https://app-faucet.centrality.me"],"infoURL":"https://cennz.net"},{"name":"Canxium Mainnet","chainId":3003,"shortName":"cau","networkId":3003,"nativeCurrency":{"name":"Canxium","symbol":"CAU","decimals":18},"rpc":["https://rpc.canxium.org"],"faucets":[],"infoURL":"https://canxium.org"},{"name":"PLAYA3ULL GAMES","chainId":3011,"shortName":"3ULL","networkId":3011,"nativeCurrency":{"name":"3ULL","symbol":"3ULL","decimals":18},"rpc":["https://api.mainnet.playa3ull.games"],"faucets":[],"infoURL":"https://playa3ull.games"},{"name":"Orlando Chain","chainId":3031,"shortName":"ORL","networkId":3031,"nativeCurrency":{"name":"Orlando","symbol":"ORL","decimals":18},"rpc":["https://rpc-testnet.orlchain.com"],"faucets":[],"infoURL":"https://orlchain.com"},{"name":"Bifrost Mainnet","chainId":3068,"shortName":"bfc","networkId":3068,"nativeCurrency":{"name":"Bifrost","symbol":"BFC","decimals":18},"rpc":["https://public-01.mainnet.thebifrost.io/rpc","https://public-02.mainnet.thebifrost.io/rpc"],"faucets":[],"infoURL":"https://thebifrost.io"},{"name":"Filecoin - Hyperspace testnet","chainId":3141,"shortName":"filecoin-hyperspace","networkId":3141,"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://filecoin.io"},{"name":"Debounce Subnet Testnet","chainId":3306,"shortName":"debounce-devnet","networkId":3306,"nativeCurrency":{"name":"Debounce Network","symbol":"DB","decimals":18},"rpc":["https://dev-rpc.debounce.network"],"faucets":[],"infoURL":"https://debounce.network"},{"name":"ZCore Testnet","chainId":3331,"shortName":"zcrbeach","networkId":3331,"nativeCurrency":{"name":"ZCore","symbol":"ZCR","decimals":18},"rpc":["https://rpc-testnet.zcore.cash"],"faucets":["https://faucet.zcore.cash"],"infoURL":"https://zcore.cash"},{"name":"Web3Q Testnet","chainId":3333,"shortName":"w3q-t","networkId":3333,"nativeCurrency":{"name":"Web3Q","symbol":"W3Q","decimals":18},"rpc":["https://testnet.web3q.io:8545"],"faucets":[],"infoURL":"https://testnet.web3q.io/home.w3q/"},{"name":"Web3Q Galileo","chainId":3334,"shortName":"w3q-g","networkId":3334,"nativeCurrency":{"name":"Web3Q","symbol":"W3Q","decimals":18},"rpc":["https://galileo.web3q.io:8545"],"faucets":[],"infoURL":"https://galileo.web3q.io/home.w3q/"},{"name":"Paribu Net Mainnet","chainId":3400,"shortName":"prb","networkId":3400,"nativeCurrency":{"name":"PRB","symbol":"PRB","decimals":18},"rpc":["https://rpc.paribu.network"],"faucets":[],"infoURL":"https://net.paribu.com"},{"name":"SecureChain Testnet","chainId":3434,"shortName":"SCAIt","networkId":3434,"nativeCurrency":{"name":"SCAI","symbol":"SCAI","decimals":18},"rpc":["https://testnet-rpc.securechain.ai"],"faucets":["https://faucet.securechain.ai"],"infoURL":"https://securechain.ai"},{"name":"Paribu Net Testnet","chainId":3500,"shortName":"prbtestnet","networkId":3500,"nativeCurrency":{"name":"PRB","symbol":"PRB","decimals":18},"rpc":["https://rpc.testnet.paribuscan.com"],"faucets":["https://faucet.paribuscan.com"],"infoURL":"https://net.paribu.com"},{"name":"JFIN Chain","chainId":3501,"shortName":"jfin","networkId":3501,"nativeCurrency":{"name":"JFIN Coin","symbol":"jfin","decimals":18},"rpc":["https://rpc.jfinchain.com"],"faucets":[],"infoURL":"https://jfinchain.com"},{"name":"PandoProject Mainnet","chainId":3601,"shortName":"pando-mainnet","networkId":3601,"nativeCurrency":{"name":"pando-token","symbol":"PTX","decimals":18},"rpc":["https://eth-rpc-api.pandoproject.org/rpc"],"faucets":[],"infoURL":"https://www.pandoproject.org/"},{"name":"PandoProject Testnet","chainId":3602,"shortName":"pando-testnet","networkId":3602,"nativeCurrency":{"name":"pando-token","symbol":"PTX","decimals":18},"rpc":["https://testnet.ethrpc.pandoproject.org/rpc"],"faucets":[],"infoURL":"https://www.pandoproject.org/"},{"name":"Botanix Testnet","chainId":3636,"shortName":"BTCt","networkId":3636,"nativeCurrency":{"name":"Botanix","symbol":"BTC","decimals":18},"rpc":["https://testnet-rpc.btxtestchain.com"],"faucets":["https://faucet.btxtestchain.com"],"infoURL":"https://btxtestchain.com"},{"name":"Botanix Mainnet","chainId":3637,"shortName":"BTCm","networkId":3637,"nativeCurrency":{"name":"Botanix","symbol":"BTC","decimals":18},"rpc":["https://rpc.btxtestchain.com"],"faucets":["https://faucet.btxtestchain.com"],"infoURL":"https://btxtestchain.com"},{"name":"Jouleverse Mainnet","chainId":3666,"shortName":"jouleverse","networkId":3666,"nativeCurrency":{"name":"J","symbol":"J","decimals":18},"rpc":["https://rpc.jnsdao.com:8503"],"faucets":[],"infoURL":"https://jnsdao.com"},{"name":"Bittex Mainnet","chainId":3690,"shortName":"btx","networkId":3690,"nativeCurrency":{"name":"Bittex","symbol":"BTX","decimals":18},"rpc":["https://rpc1.bittexscan.info","https://rpc2.bittexscan.info"],"faucets":[],"infoURL":"https://bittexscan.com"},{"name":"Empire Network","chainId":3693,"shortName":"empire","networkId":3693,"nativeCurrency":{"name":"Empire","symbol":"EMPIRE","decimals":18},"rpc":["https://rpc.empirenetwork.io"],"faucets":[],"infoURL":"https://www.empirenetwork.io/"},{"name":"SenjePowers Testnet","chainId":3698,"shortName":"SPCt","networkId":3698,"nativeCurrency":{"name":"SenjePowers","symbol":"SPC","decimals":18},"rpc":["https://testnet-rpc.senjepowersscan.com"],"faucets":["https://faucet.senjepowersscan.com"],"infoURL":"https://senjepowersscan.com"},{"name":"SenjePowers Mainnet","chainId":3699,"shortName":"SPCm","networkId":3699,"nativeCurrency":{"name":"SenjePowers","symbol":"SPC","decimals":18},"rpc":["https://rpc.senjepowersscan.com"],"faucets":["https://faucet.senjepowersscan.com"],"infoURL":"https://senjepowersscan.com"},{"name":"Crossbell","chainId":3737,"shortName":"csb","networkId":3737,"nativeCurrency":{"name":"Crossbell Token","symbol":"CSB","decimals":18},"rpc":["https://rpc.crossbell.io"],"faucets":["https://faucet.crossbell.io"],"infoURL":"https://crossbell.io"},{"name":"AlveyChain Mainnet","chainId":3797,"shortName":"alv","networkId":3797,"nativeCurrency":{"name":"AlveyCoin","symbol":"ALV","decimals":18},"rpc":["https://rpc.alveychain.com/rpc","https://rpc2.alvey.io/rpc"],"faucets":[],"infoURL":"https://alveyscan.com/rpc"},{"name":"DRAC Network","chainId":3912,"shortName":"drac","networkId":3912,"nativeCurrency":{"name":"DRAC","symbol":"DRAC","decimals":18},"rpc":["https://www.dracscan.com/rpc"],"faucets":["https://www.dracscan.io/faucet"],"infoURL":"https://drac.io/"},{"name":"DOS Tesnet","chainId":3939,"shortName":"dost","networkId":3939,"nativeCurrency":{"name":"DOS","symbol":"DOS","decimals":18},"rpc":["https://test.doschain.com"],"faucets":[],"infoURL":"http://doschain.io/"},{"name":"DYNO Mainnet","chainId":3966,"shortName":"dyno","networkId":3966,"nativeCurrency":{"name":"DYNO Token","symbol":"DYNO","decimals":18},"rpc":["https://api.dynoprotocol.com"],"faucets":["https://faucet.dynoscan.io"],"infoURL":"https://dynoprotocol.com"},{"name":"DYNO Testnet","chainId":3967,"shortName":"tdyno","networkId":3967,"nativeCurrency":{"name":"DYNO Token","symbol":"tDYNO","decimals":18},"rpc":["https://tapi.dynoprotocol.com"],"faucets":["https://faucet.dynoscan.io"],"infoURL":"https://dynoprotocol.com"},{"name":"YuanChain Mainnet","chainId":3999,"shortName":"ycc","networkId":3999,"nativeCurrency":{"name":"YCC","symbol":"YCC","decimals":18},"rpc":["https://mainnet.yuan.org/eth"],"faucets":[],"infoURL":"https://www.yuan.org"},{"name":"Ozone Chain Mainnet","chainId":4000,"shortName":"ozo","networkId":4000,"nativeCurrency":{"name":"OZONE","symbol":"OZO","decimals":18},"rpc":["https://node1.ozonechain.io"],"faucets":[],"infoURL":"https://ozonechain.io"},{"name":"Peperium Chain Testnet","chainId":4001,"shortName":"PERIUM","networkId":4001,"nativeCurrency":{"name":"Peperium Chain Testnet","symbol":"PERIUM","decimals":18},"rpc":["https://rpc-testnet.peperium.io"],"faucets":[],"infoURL":"https://peperium.io"},{"name":"Fantom Testnet","chainId":4002,"shortName":"tftm","networkId":4002,"nativeCurrency":{"name":"Fantom","symbol":"FTM","decimals":18},"rpc":["https://rpc.testnet.fantom.network","https://fantom-testnet.publicnode.com"],"faucets":["https://faucet.fantom.network"],"infoURL":"https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet"},{"name":"Bobaopera Testnet","chainId":4051,"shortName":"BobaoperaTestnet","networkId":4051,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"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":[],"infoURL":"https://boba.network"},{"name":"Nahmii 3 Mainnet","chainId":4061,"shortName":"Nahmii3Mainnet","networkId":4061,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://nahmii.io"},{"name":"Nahmii 3 Testnet","chainId":4062,"shortName":"Nahmii3Testnet","networkId":4062,"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"rpc":["https://ngeth.testnet.n3.nahmii.io"],"faucets":[],"infoURL":"https://nahmii.io"},{"name":"Fastex Chain (Bahamut) Oasis Testnet","chainId":4090,"shortName":"Oasis","networkId":4090,"nativeCurrency":{"name":"FTN","symbol":"FTN","decimals":18},"rpc":["https://rpc1.oasis.bahamutchain.com"],"faucets":["https://faucet.oasis.fastexchain.com"],"infoURL":"https://fastexchain.com"},{"name":"Bitindi Testnet","chainId":4096,"shortName":"BNIt","networkId":4096,"nativeCurrency":{"name":"BNI","symbol":"$BNI","decimals":18},"rpc":["https://testnet-rpc.bitindi.org"],"faucets":["https://faucet.bitindi.org"],"infoURL":"https://bitindi.org"},{"name":"Bitindi Mainnet","chainId":4099,"shortName":"BNIm","networkId":4099,"nativeCurrency":{"name":"BNI","symbol":"$BNI","decimals":18},"rpc":["https://mainnet-rpc.bitindi.org"],"faucets":["https://faucet.bitindi.org"],"infoURL":"https://bitindi.org"},{"name":"AIOZ Network Testnet","chainId":4102,"shortName":"aioz-testnet","networkId":4102,"nativeCurrency":{"name":"testAIOZ","symbol":"AIOZ","decimals":18},"rpc":["https://eth-ds.testnet.aioz.network"],"faucets":[],"infoURL":"https://aioz.network"},{"name":"Tipboxcoin Testnet","chainId":4141,"shortName":"TPBXt","networkId":4141,"nativeCurrency":{"name":"Tipboxcoin","symbol":"TPBX","decimals":18},"rpc":["https://testnet-rpc.tipboxcoin.net"],"faucets":["https://faucet.tipboxcoin.net"],"infoURL":"https://tipboxcoin.net"},{"name":"PHI Network V1","chainId":4181,"shortName":"PHIv1","networkId":4181,"nativeCurrency":{"name":"PHI","symbol":"Φ","decimals":18},"rpc":["https://rpc1.phi.network","https://rpc2.phi.network"],"faucets":[],"infoURL":"https://phi.network"},{"name":"LUKSO Testnet","chainId":4201,"shortName":"lukso-testnet","networkId":4201,"nativeCurrency":{"name":"TestLYX","symbol":"LYXt","decimals":18},"rpc":["https://rpc.testnet.lukso.network","wss://ws-rpc.testnet.lukso.network"],"faucets":["https://faucet.testnet.lukso.network"],"infoURL":"https://lukso.network"},{"name":"Nexi Mainnet","chainId":4242,"shortName":"nexi","networkId":4242,"nativeCurrency":{"name":"Nexi","symbol":"NEXI","decimals":18},"rpc":["https://rpc.chain.nexi.technology/","https://chain.nexilix.com","https://chain.nexi.evmnode.online"],"faucets":[],"infoURL":"https://www.nexi.technology/"},{"name":"Bobafuji Testnet","chainId":4328,"shortName":"BobaFujiTestnet","networkId":4328,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":["https://testnet.avax.boba.network","wss://wss.testnet.avax.boba.network","https://replica.testnet.avax.boba.network"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Htmlcoin Mainnet","chainId":4444,"shortName":"html","networkId":4444,"nativeCurrency":{"name":"Htmlcoin","symbol":"HTML","decimals":8},"rpc":["https://janus.htmlcoin.com/api/"],"faucets":["https://gruvin.me/htmlcoin"],"infoURL":"https://htmlcoin.com"},{"name":"IoTeX Network Mainnet","chainId":4689,"shortName":"iotex-mainnet","networkId":4689,"nativeCurrency":{"name":"IoTeX","symbol":"IOTX","decimals":18},"rpc":["https://babel-api.mainnet.iotex.io"],"faucets":[],"infoURL":"https://iotex.io"},{"name":"IoTeX Network Testnet","chainId":4690,"shortName":"iotex-testnet","networkId":4690,"nativeCurrency":{"name":"IoTeX","symbol":"IOTX","decimals":18},"rpc":["https://babel-api.testnet.iotex.io"],"faucets":["https://faucet.iotex.io/"],"infoURL":"https://iotex.io"},{"name":"MEVerse Chain Testnet","chainId":4759,"shortName":"TESTMEV","networkId":4759,"nativeCurrency":{"name":"MEVerse","symbol":"MEV","decimals":18},"rpc":["https://rpc.meversetestnet.io"],"faucets":[],"infoURL":"https://www.meverse.sg"},{"name":"BlackFort Exchange Network Testnet","chainId":4777,"shortName":"TBXN","networkId":4777,"nativeCurrency":{"name":"BlackFort Testnet Token","symbol":"TBXN","decimals":18},"rpc":["https://testnet.blackfort.network/rpc"],"faucets":[],"infoURL":"https://blackfort.exchange"},{"name":"Venidium Testnet","chainId":4918,"shortName":"txvm","networkId":4918,"nativeCurrency":{"name":"Venidium","symbol":"XVM","decimals":18},"rpc":["https://rpc-evm-testnet.venidium.io"],"faucets":[],"infoURL":"https://venidium.io"},{"name":"Venidium Mainnet","chainId":4919,"shortName":"xvm","networkId":4919,"nativeCurrency":{"name":"Venidium","symbol":"XVM","decimals":18},"rpc":["https://rpc.venidium.io"],"faucets":[],"infoURL":"https://venidium.io"},{"name":"BlackFort Exchange Network","chainId":4999,"shortName":"BXN","networkId":4999,"nativeCurrency":{"name":"BlackFort Token","symbol":"BXN","decimals":18},"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":[],"infoURL":"https://blackfort.exchange"},{"name":"Mantle","chainId":5000,"shortName":"mantle","networkId":5000,"nativeCurrency":{"name":"Mantle","symbol":"MNT","decimals":18},"rpc":["https://rpc.mantle.xyz","https://mantle.publicnode.com"],"faucets":[],"infoURL":"https://mantle.xyz"},{"name":"Mantle Testnet","chainId":5001,"shortName":"mantle-testnet","networkId":5001,"nativeCurrency":{"name":"Testnet Mantle","symbol":"MNT","decimals":18},"rpc":["https://rpc.testnet.mantle.xyz"],"faucets":["https://faucet.testnet.mantle.xyz"],"infoURL":"https://mantle.xyz"},{"name":"Treasurenet Mainnet Alpha","chainId":5002,"shortName":"treasurenet","networkId":5002,"nativeCurrency":{"name":"UNIT","symbol":"UNIT","decimals":18},"rpc":["https://node0.treasurenet.io","https://node1.treasurenet.io","https://node2.treasurenet.io","https://node3.treasurenet.io"],"faucets":[],"infoURL":"https://www.treasurenet.io"},{"name":"Treasurenet Testnet","chainId":5005,"shortName":"tntest","networkId":5005,"nativeCurrency":{"name":"UNIT","symbol":"UNIT","decimals":18},"rpc":["https://node0.testnet.treasurenet.io","https://node1.testnet.treasurenet.io","https://node2.testnet.treasurenet.io","https://node3.testnet.treasurenet.io"],"faucets":[],"infoURL":"https://www.testnet.treasurenet.io"},{"name":"Fastex Chain (Bahamut)","chainId":5165,"shortName":"ftn","networkId":5165,"nativeCurrency":{"name":"FTN","symbol":"FTN","decimals":18},"rpc":["https://rpc1.sahara.bahamutchain.com","https://rpc2.sahara.bahamutchain.com"],"faucets":[],"infoURL":"https://fastexchain.com"},{"name":"TLChain Network Mainnet","chainId":5177,"shortName":"tlc","networkId":5177,"nativeCurrency":{"name":"TLChain Network","symbol":"TLC","decimals":18},"rpc":["https://mainnet-rpc.tlxscan.com/"],"faucets":[],"infoURL":"https://tlchain.network/"},{"name":"EraSwap Mainnet","chainId":5197,"shortName":"es","networkId":5197,"nativeCurrency":{"name":"EraSwap","symbol":"ES","decimals":18},"rpc":["https://mainnet.eraswap.network","https://rpc-mumbai.mainnet.eraswap.network"],"faucets":[],"infoURL":"https://eraswap.info/"},{"name":"Humanode Mainnet","chainId":5234,"shortName":"hmnd","networkId":5234,"nativeCurrency":{"name":"HMND","symbol":"HMND","decimals":18},"rpc":["https://explorer-rpc-http.mainnet.stages.humanode.io"],"faucets":[],"infoURL":"https://humanode.io"},{"name":"Firechain Mainnet Old","chainId":5290,"shortName":"_old_fire","networkId":5290,"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"rpc":["https://mainnet.rpc1.thefirechain.com"],"faucets":[],"infoURL":"https://thefirechain.com"},{"name":"Uzmi Network Mainnet","chainId":5315,"shortName":"UZMI","networkId":5315,"nativeCurrency":{"name":"UZMI","symbol":"UZMI","decimals":18},"rpc":["https://network.uzmigames.com.br/"],"faucets":[],"infoURL":"https://uzmigames.com.br/"},{"name":"Nahmii Mainnet","chainId":5551,"shortName":"Nahmii","networkId":5551,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://l2.nahmii.io"],"faucets":[],"infoURL":"https://nahmii.io"},{"name":"Nahmii Testnet","chainId":5553,"shortName":"NahmiiTestnet","networkId":5553,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://l2.testnet.nahmii.io"],"faucets":[],"infoURL":"https://nahmii.io"},{"name":"Chain Verse Mainnet","chainId":5555,"shortName":"cverse","networkId":5555,"nativeCurrency":{"name":"Oasys","symbol":"OAS","decimals":18},"rpc":["https://rpc.chainverse.info"],"faucets":[],"infoURL":"https://chainverse.info"},{"name":"Arcturus Chain Testnet","chainId":5616,"shortName":"ARCT","networkId":5616,"nativeCurrency":{"name":"Test Arct","symbol":"tARCT","decimals":18},"rpc":["http://185.99.196.3:8545"],"faucets":[],"infoURL":"https://arcturuschain.io"},{"name":"Syscoin Tanenbaum Testnet","chainId":5700,"shortName":"tsys","networkId":5700,"nativeCurrency":{"name":"Testnet Syscoin","symbol":"tSYS","decimals":18},"rpc":["https://rpc.tanenbaum.io","wss://rpc.tanenbaum.io/wss","https://syscoin-tanenbaum-evm.publicnode.com"],"faucets":["https://faucet.tanenbaum.io"],"infoURL":"https://syscoin.org"},{"name":"Hika Network Testnet","chainId":5729,"shortName":"hik","networkId":5729,"nativeCurrency":{"name":"Hik Token","symbol":"HIK","decimals":18},"rpc":["https://rpc-testnet.hika.network/"],"faucets":[],"infoURL":"https://hika.network/"},{"name":"SatoshiChain Testnet","chainId":5758,"shortName":"satst","networkId":5758,"nativeCurrency":{"name":"SatoshiChain Coin","symbol":"SATS","decimals":18},"rpc":["https://testnet-rpc.satoshichain.io"],"faucets":["https://faucet.satoshichain.io"],"infoURL":"https://satoshichain.net"},{"name":"Ganache","chainId":5777,"shortName":"ggui","networkId":5777,"nativeCurrency":{"name":"Ganache Test Ether","symbol":"ETH","decimals":18},"rpc":["https://127.0.0.1:7545"],"faucets":[],"infoURL":"https://trufflesuite.com/ganache/"},{"name":"Ontology Testnet","chainId":5851,"shortName":"OntologyTestnet","networkId":5851,"nativeCurrency":{"name":"ONG","symbol":"ONG","decimals":18},"rpc":["http://polaris1.ont.io:20339","http://polaris2.ont.io:20339","http://polaris3.ont.io:20339","http://polaris4.ont.io:20339","https://polaris1.ont.io:10339","https://polaris2.ont.io:10339","https://polaris3.ont.io:10339","https://polaris4.ont.io:10339"],"faucets":["https://developer.ont.io/"],"infoURL":"https://ont.io/"},{"name":"Wegochain Rubidium Mainnet","chainId":5869,"shortName":"rbd","networkId":5869,"nativeCurrency":{"name":"Rubid","symbol":"RBD","decimals":18},"rpc":["https://proxy.wegochain.io","http://wallet.wegochain.io:7764"],"faucets":[],"infoURL":"https://www.wegochain.io"},{"name":"Tres Testnet","chainId":6065,"shortName":"TRESTEST","networkId":6065,"nativeCurrency":{"name":"TRES","symbol":"TRES","decimals":18},"rpc":["https://rpc-test.tresleches.finance/"],"faucets":["http://faucet.tresleches.finance:8080"],"infoURL":"https://treschain.com"},{"name":"Tres Mainnet","chainId":6066,"shortName":"TRESMAIN","networkId":6066,"nativeCurrency":{"name":"TRES","symbol":"TRES","decimals":18},"rpc":["https://rpc.tresleches.finance/","https://rpc.treschain.io/"],"faucets":[],"infoURL":"https://treschain.com"},{"name":"Cascadia Testnet","chainId":6102,"shortName":"cascadia","networkId":6102,"nativeCurrency":{"name":"CC","symbol":"tCC","decimals":18},"rpc":["https://testnet.cascadia.foundation"],"faucets":["https://www.cascadia.foundation/faucet"],"infoURL":"https://www.cascadia.foundation"},{"name":"UPTN Testnet","chainId":6118,"shortName":"UPTN-TEST","networkId":6118,"nativeCurrency":{"name":"UPTN","symbol":"UPTN","decimals":18},"rpc":["https://node-api.alp.uptn.io/v1/ext/rpc"],"faucets":[],"infoURL":"https://uptn.io"},{"name":"UPTN","chainId":6119,"shortName":"UPTN","networkId":6119,"nativeCurrency":{"name":"UPTN","symbol":"UPTN","decimals":18},"rpc":["https://node-api.uptn.io/v1/ext/rpc"],"faucets":[],"infoURL":"https://uptn.io"},{"name":"Peerpay","chainId":6502,"shortName":"Peerpay","networkId":6502,"nativeCurrency":{"name":"Peerpay","symbol":"P2P","decimals":18},"rpc":["https://peerpay.su.gy/p2p"],"faucets":[],"infoURL":"https://peerpay.su.gy"},{"name":"Scolcoin WeiChain Testnet","chainId":6552,"shortName":"SRC-test","networkId":6552,"nativeCurrency":{"name":"Scolcoin","symbol":"SCOL","decimals":18},"rpc":["https://testnet-rpc.scolcoin.com"],"faucets":["https://faucet.scolcoin.com"],"infoURL":"https://scolcoin.com"},{"name":"Fox Testnet Network","chainId":6565,"shortName":"fox","networkId":6565,"nativeCurrency":{"name":"FOX Native Token","symbol":"tFOX","decimals":18},"rpc":["https://rpc-testnet-v1.foxchain.app/","https://rpc2-testnet-v1.foxchain.app/","https://rpc3-testnet-v1.foxchain.app"],"faucets":["https://faucet.foxchain.app"],"infoURL":"https://foxchain.app"},{"name":"Pixie Chain Mainnet","chainId":6626,"shortName":"pixie-chain","networkId":6626,"nativeCurrency":{"name":"Pixie Chain Native Token","symbol":"PIX","decimals":18},"rpc":["https://http-mainnet.chain.pixie.xyz","wss://ws-mainnet.chain.pixie.xyz"],"faucets":[],"infoURL":"https://chain.pixie.xyz"},{"name":"IRIShub","chainId":6688,"shortName":"iris","networkId":6688,"nativeCurrency":{"name":"Eris","symbol":"ERIS","decimals":18},"rpc":["https://evmrpc.irishub-1.irisnet.org","https://iris-evm.publicnode.com"],"faucets":[],"infoURL":"https://www.irisnet.org"},{"name":"Gold Smart Chain Mainnet","chainId":6789,"shortName":"STANDm","networkId":6789,"nativeCurrency":{"name":"Standard in Gold","symbol":"STAND","decimals":18},"rpc":["https://rpc-mainnet.goldsmartchain.com"],"faucets":["https://faucet.goldsmartchain.com"],"infoURL":"https://goldsmartchain.com"},{"name":"Tomb Chain Mainnet","chainId":6969,"shortName":"tombchain","networkId":6969,"nativeCurrency":{"name":"Tomb","symbol":"TOMB","decimals":18},"rpc":["https://rpc.tombchain.com/"],"faucets":[],"infoURL":"https://tombchain.com/"},{"name":"PolySmartChain","chainId":6999,"shortName":"psc","networkId":6999,"nativeCurrency":{"name":"PSC","symbol":"PSC","decimals":18},"rpc":["https://seed0.polysmartchain.com/","https://seed1.polysmartchain.com/","https://seed2.polysmartchain.com/"],"faucets":[],"infoURL":"https://www.polysmartchain.com/"},{"name":"ZetaChain Mainnet","chainId":7000,"shortName":"zetachain-mainnet","networkId":7000,"nativeCurrency":{"name":"Zeta","symbol":"ZETA","decimals":18},"rpc":["https://api.mainnet.zetachain.com/evm"],"faucets":[],"infoURL":"https://zetachain.com/docs/"},{"name":"ZetaChain Athens 3 Testnet","chainId":7001,"shortName":"zetachain-athens","networkId":7001,"nativeCurrency":{"name":"Zeta","symbol":"aZETA","decimals":18},"rpc":["https://rpc.ankr.com/zetachain_evm_athens_testnet"],"faucets":["https://labs.zetachain.com/get-zeta"],"infoURL":"https://zetachain.com/docs"},{"name":"Ella the heart","chainId":7027,"shortName":"ELLA","networkId":7027,"nativeCurrency":{"name":"Ella","symbol":"ELLA","decimals":18},"rpc":["https://rpc.ella.network"],"faucets":[],"infoURL":"https://ella.network"},{"name":"Planq Mainnet","chainId":7070,"shortName":"planq","networkId":7070,"nativeCurrency":{"name":"Planq","symbol":"PLQ","decimals":18},"rpc":["https://evm-rpc.planq.network"],"faucets":[],"infoURL":"https://planq.network"},{"name":"Bitrock Mainnet","chainId":7171,"shortName":"bitrock","networkId":7171,"nativeCurrency":{"name":"BITROCK","symbol":"BROCK","decimals":18},"rpc":["https://connect.bit-rock.io"],"faucets":[],"infoURL":"https://bit-rock.io"},{"name":"KLYNTAR","chainId":7331,"shortName":"kly","networkId":7331,"nativeCurrency":{"name":"KLYNTAR","symbol":"KLY","decimals":18},"rpc":["https://evm.klyntar.org/kly_evm_rpc","https://evm.klyntarscan.org/kly_evm_rpc"],"faucets":[],"infoURL":"https://klyntar.org"},{"name":"Horizen EON","chainId":7332,"shortName":"EON","networkId":7332,"nativeCurrency":{"name":"Zencash","symbol":"ZEN","decimals":18},"rpc":["https://eon-rpc.horizenlabs.io/ethv1"],"faucets":[],"infoURL":"https://horizen.io/"},{"name":"Shyft Mainnet","chainId":7341,"shortName":"shyft","networkId":7341,"nativeCurrency":{"name":"Shyft","symbol":"SHYFT","decimals":18},"rpc":["https://rpc.shyft.network/"],"faucets":[],"infoURL":"https://shyft.network"},{"name":"Raba Network Mainnet","chainId":7484,"shortName":"raba","networkId":7484,"nativeCurrency":{"name":"Raba","symbol":"RABA","decimals":18},"rpc":["https://rpc.x.raba.app/","wss://rpc.x.raba.app/ws/"],"faucets":[],"infoURL":"https://x.raba.app/"},{"name":"MEVerse Chain Mainnet","chainId":7518,"shortName":"MEV","networkId":7518,"nativeCurrency":{"name":"MEVerse","symbol":"MEV","decimals":18},"rpc":["https://rpc.meversemainnet.io"],"faucets":[],"infoURL":"https://www.meverse.sg"},{"name":"ADIL Testnet","chainId":7575,"shortName":"tadil","networkId":7575,"nativeCurrency":{"name":"Testnet ADIL","symbol":"ADIL","decimals":18},"rpc":["https://testnet.adilchain-rpc.io"],"faucets":["https://testnet-faucet.adil-scan.io"],"infoURL":"https://adilchain.io"},{"name":"Adil Chain V2 Mainnet","chainId":7576,"shortName":"adil","networkId":7576,"nativeCurrency":{"name":"ADIL","symbol":"ADIL","decimals":18},"rpc":["https://adilchain-rpc.io"],"faucets":[],"infoURL":"https://adilchain.io"},{"name":"The Root Network - Mainnet","chainId":7668,"shortName":"trn-mainnet","networkId":7668,"nativeCurrency":{"name":"XRP","symbol":"XRP","decimals":6},"rpc":["https://root.rootnet.live/archive","wss://root.rootnet.live/archive/ws"],"faucets":[],"infoURL":"https://www.futureverse.com/technology/root"},{"name":"The Root Network - Porcini Testnet","chainId":7672,"shortName":"trn-porcini","networkId":7672,"nativeCurrency":{"name":"XRP","symbol":"XRP","decimals":6},"rpc":["https://porcini.rootnet.app/archive","wss://porcini.rootnet.app/archive/ws"],"faucets":[],"infoURL":"https://www.futureverse.com/technology/root"},{"name":"Canto","chainId":7700,"shortName":"canto","networkId":7700,"nativeCurrency":{"name":"Canto","symbol":"CANTO","decimals":18},"rpc":["https://canto.slingshot.finance","https://canto.neobase.one","https://mainnode.plexnode.org:8545"],"faucets":[],"infoURL":"https://canto.io"},{"name":"Canto Tesnet","chainId":7701,"shortName":"TestnetCanto","networkId":7701,"nativeCurrency":{"name":"Testnet Canto","symbol":"CANTO","decimals":18},"rpc":["https://testnet-archive.plexnode.wtf"],"faucets":[],"infoURL":"https://canto.io"},{"name":"Bitrock Testnet","chainId":7771,"shortName":"tbitrock","networkId":7771,"nativeCurrency":{"name":"BITROCK","symbol":"BROCK","decimals":18},"rpc":["https://testnet.bit-rock.io"],"faucets":["https://faucet.bit-rock.io"],"infoURL":"https://bit-rock.io"},{"name":"Rise of the Warbots Testnet","chainId":7777,"shortName":"RiseOfTheWarbotsTestnet","networkId":7777,"nativeCurrency":{"name":"Nano Machines","symbol":"NMAC","decimals":18},"rpc":["https://testnet1.riseofthewarbots.com","https://testnet2.riseofthewarbots.com","https://testnet3.riseofthewarbots.com","https://testnet4.riseofthewarbots.com","https://testnet5.riseofthewarbots.com"],"faucets":[],"infoURL":"https://riseofthewarbots.com/"},{"name":"Hazlor Testnet","chainId":7878,"shortName":"tscas","networkId":7878,"nativeCurrency":{"name":"Hazlor Test Coin","symbol":"TSCAS","decimals":18},"rpc":["https://hatlas.rpc.hazlor.com:8545","wss://hatlas.rpc.hazlor.com:8546"],"faucets":["https://faucet.hazlor.com"],"infoURL":"https://hazlor.com"},{"name":"ARDENIUM Athena","chainId":7895,"shortName":"ard","networkId":7895,"nativeCurrency":{"name":"ARD","symbol":"tARD","decimals":18},"rpc":["https://rpc-athena.ardescan.com/"],"faucets":["https://faucet-athena.ardescan.com/"],"infoURL":"https://ardenium.org"},{"name":"DOS Chain","chainId":7979,"shortName":"dos","networkId":7979,"nativeCurrency":{"name":"DOS","symbol":"DOS","decimals":18},"rpc":["https://main.doschain.com"],"faucets":[],"infoURL":"https://doschain.io"},{"name":"Teleport","chainId":8000,"shortName":"teleport","networkId":8000,"nativeCurrency":{"name":"Tele","symbol":"TELE","decimals":18},"rpc":["https://evm-rpc.teleport.network"],"faucets":[],"infoURL":"https://teleport.network"},{"name":"Teleport Testnet","chainId":8001,"shortName":"teleport-testnet","networkId":8001,"nativeCurrency":{"name":"Tele","symbol":"TELE","decimals":18},"rpc":["https://evm-rpc.testnet.teleport.network"],"faucets":["https://chain-docs.teleport.network/testnet/faucet.html"],"infoURL":"https://teleport.network"},{"name":"MDGL Testnet","chainId":8029,"shortName":"mdgl","networkId":8029,"nativeCurrency":{"name":"MDGL Token","symbol":"MDGLT","decimals":18},"rpc":["https://testnet.mdgl.io"],"faucets":[],"infoURL":"https://mdgl.io"},{"name":"Shardeum Liberty 1.X","chainId":8080,"shortName":"Liberty10","networkId":8080,"nativeCurrency":{"name":"Shardeum SHM","symbol":"SHM","decimals":18},"rpc":["https://liberty10.shardeum.org/"],"faucets":["https://faucet.liberty10.shardeum.org"],"infoURL":"https://docs.shardeum.org/"},{"name":"Shardeum Liberty 2.X","chainId":8081,"shortName":"Liberty20","networkId":8081,"nativeCurrency":{"name":"Shardeum SHM","symbol":"SHM","decimals":18},"rpc":["https://liberty20.shardeum.org/"],"faucets":["https://faucet.liberty20.shardeum.org"],"infoURL":"https://docs.shardeum.org/"},{"name":"Shardeum Sphinx 1.X","chainId":8082,"shortName":"Sphinx10","networkId":8082,"nativeCurrency":{"name":"Shardeum SHM","symbol":"SHM","decimals":18},"rpc":["https://sphinx.shardeum.org/"],"faucets":["https://faucet-sphinx.shardeum.org/"],"infoURL":"https://docs.shardeum.org/"},{"name":"BitEth","chainId":8086,"shortName":"BitEth","networkId":8086,"nativeCurrency":{"name":"BitEth","symbol":"BTE","decimals":18},"rpc":["https://rpc.biteth.org"],"faucets":[],"infoURL":"https://biteth.org"},{"name":"StreamuX Blockchain","chainId":8098,"shortName":"StreamuX","networkId":8098,"nativeCurrency":{"name":"StreamuX","symbol":"SmuX","decimals":18},"rpc":["https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/"],"faucets":[],"infoURL":"https://www.streamux.cloud"},{"name":"Qitmeer Network Testnet","chainId":8131,"shortName":"meertest","networkId":8131,"nativeCurrency":{"name":"Qitmeer Testnet","symbol":"MEER-T","decimals":18},"rpc":["https://testnet-qng.rpc.qitmeer.io","https://testnet.meerlabs.com","https://meer.testnet.meerfans.club"],"faucets":["https://faucet.qitmeer.io"],"infoURL":"https://github.com/Qitmeer"},{"name":"Qitmeer Network Mixnet","chainId":8132,"shortName":"meermix","networkId":8132,"nativeCurrency":{"name":"Qitmeer Mixnet","symbol":"MEER-M","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Qitmeer Network Privnet","chainId":8133,"shortName":"meerpriv","networkId":8133,"nativeCurrency":{"name":"Qitmeer Privnet","symbol":"MEER-P","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Amana","chainId":8134,"shortName":"amana","networkId":8134,"nativeCurrency":{"name":"Amana Mainnet","symbol":"MEER","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Flana","chainId":8135,"shortName":"flana","networkId":8135,"nativeCurrency":{"name":"Flana Mainnet","symbol":"MEER","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Mizana","chainId":8136,"shortName":"mizana","networkId":8136,"nativeCurrency":{"name":"Mizana Mainnet","symbol":"MEER","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"BeOne Chain Testnet","chainId":8181,"shortName":"tBOC","networkId":8181,"nativeCurrency":{"name":"BeOne Chain Testnet","symbol":"BOC","decimals":18},"rpc":["https://pre-boc1.beonechain.com","https://pre-boc2.beonechain.com","https://pre-boc3.beonechain.com"],"faucets":["https://testnet.beonescan.com/faucet"],"infoURL":"https://testnet.beonescan.com"},{"name":"Klaytn Mainnet Cypress","chainId":8217,"shortName":"Cypress","networkId":8217,"nativeCurrency":{"name":"KLAY","symbol":"KLAY","decimals":18},"rpc":["https://public-node-api.klaytnapi.com/v1/cypress"],"faucets":[],"infoURL":"https://www.klaytn.com/"},{"name":"Blockton Blockchain","chainId":8272,"shortName":"BTON","networkId":8272,"nativeCurrency":{"name":"BLOCKTON","symbol":"BTON","decimals":18},"rpc":["https://rpc.blocktonscan.com/"],"faucets":["https://faucet.blocktonscan.com/"],"infoURL":"https://blocktoncoin.com"},{"name":"KorthoTest","chainId":8285,"shortName":"Kortho","networkId":8285,"nativeCurrency":{"name":"Kortho Test","symbol":"KTO","decimals":11},"rpc":["https://www.krotho-test.net"],"faucets":[],"infoURL":"https://www.kortho.io/"},{"name":"Dracones Financial Services","chainId":8387,"shortName":"fuck","networkId":8387,"nativeCurrency":{"name":"Functionally Universal Coin Kind","symbol":"FUCK","decimals":18},"rpc":["https://api.dracones.net/"],"faucets":[],"infoURL":"https://wolfery.com"},{"name":"Base","chainId":8453,"shortName":"base","networkId":8453,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://mainnet.base.org/"],"faucets":[],"infoURL":"https://base.org"},{"name":"Toki Network","chainId":8654,"shortName":"toki","networkId":8654,"nativeCurrency":{"name":"Toki","symbol":"TOKI","decimals":18},"rpc":["https://mainnet.buildwithtoki.com/v0/rpc"],"faucets":[],"infoURL":"https://www.buildwithtoki.com"},{"name":"Toki Testnet","chainId":8655,"shortName":"toki-testnet","networkId":8655,"nativeCurrency":{"name":"Toki","symbol":"TOKI","decimals":18},"rpc":["https://testnet.buildwithtoki.com/v0/rpc"],"faucets":[],"infoURL":"https://www.buildwithtoki.com"},{"name":"TOOL Global Mainnet","chainId":8723,"shortName":"olo","networkId":8723,"nativeCurrency":{"name":"TOOL Global","symbol":"OLO","decimals":18},"rpc":["https://mainnet-web3.wolot.io"],"faucets":[],"infoURL":"https://ibdt.io"},{"name":"TOOL Global Testnet","chainId":8724,"shortName":"tolo","networkId":8724,"nativeCurrency":{"name":"TOOL Global","symbol":"OLO","decimals":18},"rpc":["https://testnet-web3.wolot.io"],"faucets":["https://testnet-explorer.wolot.io"],"infoURL":"https://testnet-explorer.wolot.io"},{"name":"Alph Network","chainId":8738,"shortName":"alph","networkId":8738,"nativeCurrency":{"name":"Alph Network","symbol":"ALPH","decimals":18},"rpc":["https://rpc.alph.network","wss://rpc.alph.network"],"faucets":[],"infoURL":"https://alph.network"},{"name":"TMY Chain","chainId":8768,"shortName":"tmy","networkId":8768,"nativeCurrency":{"name":"TMY","symbol":"TMY","decimals":18},"rpc":["https://node1.tmyblockchain.org/rpc"],"faucets":["https://faucet.tmychain.org/"],"infoURL":"https://tmychain.org/"},{"name":"MARO Blockchain Mainnet","chainId":8848,"shortName":"maro","networkId":8848,"nativeCurrency":{"name":"MARO","symbol":"MARO","decimals":18},"rpc":["https://rpc-mainnet.ma.ro"],"faucets":[],"infoURL":"https://ma.ro/"},{"name":"Unique","chainId":8880,"shortName":"unq","networkId":8880,"nativeCurrency":{"name":"Unique","symbol":"UNQ","decimals":18},"rpc":["https://rpc.unique.network","https://eu-rpc.unique.network","https://asia-rpc.unique.network","https://us-rpc.unique.network"],"faucets":[],"infoURL":"https://unique.network"},{"name":"Quartz by Unique","chainId":8881,"shortName":"qtz","networkId":8881,"nativeCurrency":{"name":"Quartz","symbol":"QTZ","decimals":18},"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":[],"infoURL":"https://unique.network"},{"name":"Opal testnet by Unique","chainId":8882,"shortName":"opl","networkId":8882,"nativeCurrency":{"name":"Opal","symbol":"UNQ","decimals":18},"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"],"infoURL":"https://unique.network"},{"name":"Sapphire by Unique","chainId":8883,"shortName":"sph","networkId":8883,"nativeCurrency":{"name":"Quartz","symbol":"QTZ","decimals":18},"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":[],"infoURL":"https://unique.network"},{"name":"XANAChain","chainId":8888,"shortName":"XANAChain","networkId":8888,"nativeCurrency":{"name":"XETA","symbol":"XETA","decimals":18},"rpc":["https://mainnet.xana.net/rpc"],"faucets":[],"infoURL":"https://xanachain.xana.net/"},{"name":"Vyvo Smart Chain","chainId":8889,"shortName":"vsc","networkId":8889,"nativeCurrency":{"name":"VSC","symbol":"VSC","decimals":18},"rpc":["https://vsc-dataseed.vyvo.org:8889"],"faucets":[],"infoURL":"https://vsc-dataseed.vyvo.org"},{"name":"Mammoth Mainnet","chainId":8898,"shortName":"mmt","networkId":8898,"nativeCurrency":{"name":"Mammoth Token","symbol":"MMT","decimals":18},"rpc":["https://dataseed.mmtscan.io","https://dataseed1.mmtscan.io","https://dataseed2.mmtscan.io"],"faucets":["https://faucet.mmtscan.io/"],"infoURL":"https://mmtchain.io/"},{"name":"JIBCHAIN L1","chainId":8899,"shortName":"jbc","networkId":8899,"nativeCurrency":{"name":"JIBCOIN","symbol":"JBC","decimals":18},"rpc":["https://rpc-l1.jibchain.net"],"faucets":[],"infoURL":"https://jibchain.net"},{"name":"Giant Mammoth Mainnet","chainId":8989,"shortName":"gmmt","networkId":8989,"nativeCurrency":{"name":"Giant Mammoth Coin","symbol":"GMMT","decimals":18},"rpc":["https://rpc-asia.gmmtchain.io"],"faucets":[],"infoURL":"https://gmmtchain.io/"},{"name":"bloxberg","chainId":8995,"shortName":"berg","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":"Evmos Testnet","chainId":9000,"shortName":"evmos-testnet","networkId":9000,"nativeCurrency":{"name":"test-Evmos","symbol":"tEVMOS","decimals":18},"rpc":["https://eth.bd.evmos.dev:8545"],"faucets":["https://faucet.evmos.dev"],"infoURL":"https://evmos.org"},{"name":"Evmos","chainId":9001,"shortName":"evmos","networkId":9001,"nativeCurrency":{"name":"Evmos","symbol":"EVMOS","decimals":18},"rpc":["https://evmos-evm.publicnode.com"],"faucets":[],"infoURL":"https://evmos.org"},{"name":"BerylBit Mainnet","chainId":9012,"shortName":"brb","networkId":9012,"nativeCurrency":{"name":"BerylBit Chain Native Token","symbol":"BRB","decimals":18},"rpc":["https://mainnet.berylbit.io"],"faucets":["https://t.me/BerylBit"],"infoURL":"https://www.beryl-bit.com"},{"name":"Genesis Coin","chainId":9100,"shortName":"GENEC","networkId":9100,"nativeCurrency":{"name":"GN Coin","symbol":"GNC","decimals":18},"rpc":["https://genesis-gn.com","wss://genesis-gn.com"],"faucets":[],"infoURL":"https://genesis-gn.com"},{"name":"Rinia Testnet Old","chainId":9170,"shortName":"_old_tfire","networkId":9170,"nativeCurrency":{"name":"Firechain","symbol":"FIRE","decimals":18},"rpc":[],"faucets":["https://faucet.thefirechain.com"],"infoURL":"https://thefirechain.com"},{"name":"Codefin Mainnet","chainId":9223,"shortName":"COF","networkId":9223,"nativeCurrency":{"name":"Codefin","symbol":"COF","decimals":18},"rpc":["https://chain-rpc.codefin.pro"],"faucets":[],"infoURL":"https://network.codefin.pro"},{"name":"Dogcoin Testnet","chainId":9339,"shortName":"DOGSt","networkId":9339,"nativeCurrency":{"name":"Dogcoin","symbol":"DOGS","decimals":18},"rpc":["https://testnet-rpc.dogcoin.me"],"faucets":["https://faucet.dogcoin.network"],"infoURL":"https://dogcoin.network"},{"name":"Rangers Protocol Testnet Robin","chainId":9527,"shortName":"trpg","networkId":9527,"nativeCurrency":{"name":"Rangers Protocol Gas","symbol":"tRPG","decimals":18},"rpc":["https://robin.rangersprotocol.com/api/jsonrpc"],"faucets":["https://robin-faucet.rangersprotocol.com"],"infoURL":"https://rangersprotocol.com"},{"name":"QEasyWeb3 Testnet","chainId":9528,"shortName":"QETTest","networkId":9528,"nativeCurrency":{"name":"QET","symbol":"QET","decimals":18},"rpc":["https://qeasyweb3.com"],"faucets":["http://faucet.qeasyweb3.com"],"infoURL":"https://www.qeasyweb3.com"},{"name":"Neonlink Testnet","chainId":9559,"shortName":"testneon","networkId":9559,"nativeCurrency":{"name":"Neonlink Native Token","symbol":"tNEON","decimals":18},"rpc":["https://testnet.neonlink.io"],"faucets":["https://faucet.neonlink.io/"],"infoURL":"https://neonlink.io"},{"name":"Oort MainnetDev","chainId":9700,"shortName":"MainnetDev","networkId":9700,"nativeCurrency":{"name":"Oort","symbol":"CCN","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://oortech.com"},{"name":"Boba BNB Testnet","chainId":9728,"shortName":"BobaBnbTestnet","networkId":9728,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"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":[],"infoURL":"https://boba.network"},{"name":"MainnetZ Testnet","chainId":9768,"shortName":"NetZt","networkId":9768,"nativeCurrency":{"name":"MainnetZ","symbol":"NetZ","decimals":18},"rpc":["https://testnet-rpc.mainnetz.io"],"faucets":["https://faucet.mainnetz.io"],"infoURL":"https://testnet.mainnetz.io"},{"name":"PepeNetwork Mainnet","chainId":9779,"shortName":"pn","networkId":9779,"nativeCurrency":{"name":"Pepe","symbol":"WPEPE","decimals":18},"rpc":["https://rpc-mainnet.pepenetwork.io"],"faucets":[],"infoURL":"https://pepenetwork.io"},{"name":"Carbon EVM","chainId":9790,"shortName":"carbon","networkId":9790,"nativeCurrency":{"name":"swth","symbol":"SWTH","decimals":18},"rpc":["https://evm-api.carbon.network/"],"faucets":[],"infoURL":"https://carbon.network/"},{"name":"Carbon EVM Testnet","chainId":9792,"shortName":"carbon-testnet","networkId":9792,"nativeCurrency":{"name":"swth","symbol":"SWTH","decimals":18},"rpc":["https://test-evm-api.carbon.network/"],"faucets":[],"infoURL":"https://carbon.network/"},{"name":"IMPERIUM TESTNET","chainId":9818,"shortName":"tIMP","networkId":9818,"nativeCurrency":{"name":"tIMP","symbol":"tIMP","decimals":18},"rpc":["https://data-aws-testnet.imperiumchain.com","https://data-aws2-testnet.imperiumchain.com"],"faucets":["https://faucet.imperiumchain.com/"],"infoURL":"https://imperiumchain.com"},{"name":"IMPERIUM MAINNET","chainId":9819,"shortName":"IMP","networkId":9819,"nativeCurrency":{"name":"IMP","symbol":"IMP","decimals":18},"rpc":["https://data-aws-mainnet.imperiumchain.com","https://data-aws2-mainnet.imperiumchain.com"],"faucets":["https://faucet.imperiumchain.com/"],"infoURL":"https://imperiumchain.com"},{"name":"Mind Smart Chain Testnet","chainId":9977,"shortName":"tMIND","networkId":9977,"nativeCurrency":{"name":"MIND Coin","symbol":"tMIND","decimals":18},"rpc":["https://testnet-msc.mindchain.info/"],"faucets":["https://faucet.mindchain.info/"],"infoURL":"https://mindscan.info"},{"name":"Mind Smart Chain Mainnet","chainId":9996,"shortName":"MIND","networkId":9996,"nativeCurrency":{"name":"MIND Coin","symbol":"MIND","decimals":18},"rpc":["https://rpc-msc.mindchain.info/","https://seednode.mindchain.info","wss://seednode.mindchain.info/ws"],"faucets":[],"infoURL":"https://mindscan.info"},{"name":"AltLayer Testnet","chainId":9997,"shortName":"alt-testnet","networkId":9997,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://testnet-rollup-api.altlayer.io"],"faucets":[],"infoURL":"https://altlayer.io"},{"name":"myOwn Testnet","chainId":9999,"shortName":"myn","networkId":9999,"nativeCurrency":{"name":"MYN","symbol":"MYN","decimals":18},"rpc":["https://geth.dev.bccloud.net"],"faucets":[],"infoURL":"https://docs.bccloud.net/"},{"name":"Smart Bitcoin Cash","chainId":10000,"shortName":"smartbch","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/"},{"name":"Smart Bitcoin Cash Testnet","chainId":10001,"shortName":"smartbchtest","networkId":10001,"nativeCurrency":{"name":"Bitcoin Cash Test Token","symbol":"BCHT","decimals":18},"rpc":["https://rpc-testnet.smartbch.org","https://smartbch.devops.cash/testnet"],"faucets":[],"infoURL":"http://smartbch.org/"},{"name":"Gon Chain","chainId":10024,"shortName":"gon","networkId":10024,"nativeCurrency":{"name":"Gon Token","symbol":"GT","decimals":18},"rpc":["https://node1.testnet.gaiaopen.network","https://node1.mainnet.gon.network","https://node2.mainnet.gon.network","https://node3.mainnet.gon.network","https://node4.mainnet.gon.network"],"faucets":[],"infoURL":""},{"name":"SJATSH","chainId":10086,"shortName":"SJ","networkId":10086,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["http://geth.free.idcfengye.com"],"faucets":[],"infoURL":"https://sjis.me"},{"name":"Blockchain Genesis Mainnet","chainId":10101,"shortName":"GEN","networkId":10101,"nativeCurrency":{"name":"GEN","symbol":"GEN","decimals":18},"rpc":["https://eu.mainnet.xixoio.com","https://us.mainnet.xixoio.com","https://asia.mainnet.xixoio.com"],"faucets":[],"infoURL":"https://www.xixoio.com/"},{"name":"Gnosis Chiado Testnet","chainId":10200,"shortName":"chi","networkId":10200,"nativeCurrency":{"name":"Chiado xDAI","symbol":"XDAI","decimals":18},"rpc":["https://rpc.chiadochain.net","https://rpc.chiado.gnosis.gateway.fm","wss://rpc.chiadochain.net/wss"],"faucets":["https://gnosisfaucet.com"],"infoURL":"https://docs.gnosischain.com"},{"name":"0XTade","chainId":10248,"shortName":"0xt","networkId":10248,"nativeCurrency":{"name":"0XT","symbol":"0XT","decimals":18},"rpc":["https://node.0xtchain.com"],"faucets":[],"infoURL":"https://www.0xtrade.finance/"},{"name":"Numbers Mainnet","chainId":10507,"shortName":"Jade","networkId":10507,"nativeCurrency":{"name":"NUM Token","symbol":"NUM","decimals":18},"rpc":["https://mainnetrpc.num.network"],"faucets":[],"infoURL":"https://numbersprotocol.io"},{"name":"Numbers Testnet","chainId":10508,"shortName":"Snow","networkId":10508,"nativeCurrency":{"name":"NUM Token","symbol":"NUM","decimals":18},"rpc":["https://testnetrpc.num.network"],"faucets":["https://faucet.avax.network/?subnet=num","https://faucet.num.network"],"infoURL":"https://numbersprotocol.io"},{"name":"CryptoCoinPay","chainId":10823,"shortName":"CCP","networkId":10823,"nativeCurrency":{"name":"CryptoCoinPay","symbol":"CCP","decimals":18},"rpc":["http://node106.cryptocoinpay.info:8545","ws://node106.cryptocoinpay.info:8546"],"faucets":[],"infoURL":"https://www.cryptocoinpay.co"},{"name":"Quadrans Blockchain","chainId":10946,"shortName":"quadrans","networkId":10946,"nativeCurrency":{"name":"Quadrans Coin","symbol":"QDC","decimals":18},"rpc":["https://rpc.quadrans.io","https://rpcna.quadrans.io","https://rpceu.quadrans.io"],"faucets":[],"infoURL":"https://quadrans.io"},{"name":"Quadrans Blockchain Testnet","chainId":10947,"shortName":"quadranstestnet","networkId":10947,"nativeCurrency":{"name":"Quadrans Testnet Coin","symbol":"tQDC","decimals":18},"rpc":["https://rpctest.quadrans.io","https://rpctest2.quadrans.io"],"faucets":["https://faucetpage.quadrans.io"],"infoURL":"https://quadrans.io"},{"name":"Astra","chainId":11110,"shortName":"astra","networkId":11110,"nativeCurrency":{"name":"Astra","symbol":"ASA","decimals":18},"rpc":["https://rpc.astranaut.io","https://rpc1.astranaut.io"],"faucets":[],"infoURL":"https://astranaut.io"},{"name":"WAGMI","chainId":11111,"shortName":"WAGMI","networkId":11111,"nativeCurrency":{"name":"WAGMI","symbol":"WGM","decimals":18},"rpc":["https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc"],"faucets":["https://faucet.avax.network/?subnet=wagmi"],"infoURL":"https://subnets-test.avax.network/wagmi/details"},{"name":"Astra Testnet","chainId":11115,"shortName":"astra-testnet","networkId":11115,"nativeCurrency":{"name":"test-Astra","symbol":"tASA","decimals":18},"rpc":["https://rpc.astranaut.dev"],"faucets":["https://faucet.astranaut.dev"],"infoURL":"https://astranaut.io"},{"name":"HashBit Mainnet","chainId":11119,"shortName":"hbit","networkId":11119,"nativeCurrency":{"name":"HashBit Native Token","symbol":"HBIT","decimals":18},"rpc":["https://mainnet-rpc.hashbit.org","https://rpc.hashbit.org"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://hashbit.org"},{"name":"Haqq Network","chainId":11235,"shortName":"ISLM","networkId":11235,"nativeCurrency":{"name":"Islamic Coin","symbol":"ISLM","decimals":18},"rpc":["https://rpc.eth.haqq.network","https://haqq-evm.publicnode.com"],"faucets":[],"infoURL":"https://islamiccoin.net"},{"name":"Shyft Testnet","chainId":11437,"shortName":"shyftt","networkId":11437,"nativeCurrency":{"name":"Shyft Test Token","symbol":"SHYFTT","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://shyft.network"},{"name":"Sardis Testnet","chainId":11612,"shortName":"SRDXt","networkId":11612,"nativeCurrency":{"name":"Sardis","symbol":"SRDX","decimals":18},"rpc":["https://testnet-rpc.sardisnetwork.com"],"faucets":["https://faucet.sardisnetwork.com"],"infoURL":"https://mysardis.com"},{"name":"SanR Chain","chainId":11888,"shortName":"SAN","networkId":11888,"nativeCurrency":{"name":"nSAN","symbol":"nSAN","decimals":18},"rpc":["https://sanrchain-node.santiment.net"],"faucets":[],"infoURL":"https://sanr.app"},{"name":"SatoshiChain Mainnet","chainId":12009,"shortName":"sats","networkId":12009,"nativeCurrency":{"name":"SatoshiChain Coin","symbol":"SATS","decimals":18},"rpc":["https://mainnet-rpc.satoshichain.io"],"faucets":[],"infoURL":"https://satoshichain.net"},{"name":"Singularity ZERO Testnet","chainId":12051,"shortName":"tZERO","networkId":12051,"nativeCurrency":{"name":"ZERO","symbol":"tZERO","decimals":18},"rpc":["https://betaenv.singularity.gold:18545"],"faucets":["https://nft.singularity.gold"],"infoURL":"https://www.singularity.gold"},{"name":"Singularity ZERO Mainnet","chainId":12052,"shortName":"ZERO","networkId":12052,"nativeCurrency":{"name":"ZERO","symbol":"ZERO","decimals":18},"rpc":["https://zerorpc.singularity.gold"],"faucets":["https://zeroscan.singularity.gold"],"infoURL":"https://www.singularity.gold"},{"name":"BRC Chain Mainnet","chainId":12123,"shortName":"BRC","networkId":12123,"nativeCurrency":{"name":"BRC Chain mainnet native token","symbol":"BRC","decimals":18},"rpc":["https://rpc.brcchain.io"],"faucets":["https://faucet.brcchain.io"],"infoURL":"https://bridge.brcchain.io"},{"name":"Fibonacci Mainnet","chainId":12306,"shortName":"fibo","networkId":1230,"nativeCurrency":{"name":"FIBONACCI UTILITY TOKEN","symbol":"FIBO","decimals":18},"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"],"infoURL":"https://fibochain.org"},{"name":"BLG Testnet","chainId":12321,"shortName":"blgchain","networkId":12321,"nativeCurrency":{"name":"Blg","symbol":"BLG","decimals":18},"rpc":["https://rpc.blgchain.com"],"faucets":["https://faucet.blgchain.com"],"infoURL":"https://blgchain.com"},{"name":"Step Testnet","chainId":12345,"shortName":"steptest","networkId":12345,"nativeCurrency":{"name":"FITFI","symbol":"FITFI","decimals":18},"rpc":["https://rpc.testnet.step.network"],"faucets":["https://faucet.step.network"],"infoURL":"https://step.network"},{"name":"Rikeza Network Testnet","chainId":12715,"shortName":"tRIK","networkId":12715,"nativeCurrency":{"name":"Rikeza","symbol":"RIK","decimals":18},"rpc":["https://testnet-rpc.rikscan.com"],"faucets":[],"infoURL":"https://rikeza.io"},{"name":"SPS","chainId":13000,"shortName":"SPS","networkId":13000,"nativeCurrency":{"name":"ECG","symbol":"ECG","decimals":18},"rpc":["https://rpc.ssquad.games"],"faucets":[],"infoURL":"https://ssquad.games/"},{"name":"Credit Smart Chain","chainId":13308,"shortName":"Credit","networkId":13308,"nativeCurrency":{"name":"Credit","symbol":"CREDIT","decimals":18},"rpc":["https://rpc.creditsmartchain.com"],"faucets":[],"infoURL":"https://creditsmartchain.com"},{"name":"Beam Testnet","chainId":13337,"shortName":"BEAM","networkId":13337,"nativeCurrency":{"name":"Merit Circle","symbol":"MC","decimals":18},"rpc":["https://subnets.avax.network/beam/testnet/rpc"],"faucets":[],"infoURL":"https://gaming.meritcircle.io"},{"name":"Phoenix Mainnet","chainId":13381,"shortName":"Phoenix","networkId":13381,"nativeCurrency":{"name":"Phoenix","symbol":"PHX","decimals":18},"rpc":["https://rpc.phoenixplorer.com/"],"faucets":[],"infoURL":"https://cryptophoenix.org/phoenix"},{"name":"Susono","chainId":13812,"shortName":"sus","networkId":13812,"nativeCurrency":{"name":"Susono","symbol":"OPN","decimals":18},"rpc":["https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc"],"faucets":[],"infoURL":""},{"name":"SPS Testnet","chainId":14000,"shortName":"SPS-Test","networkId":14000,"nativeCurrency":{"name":"ECG","symbol":"ECG","decimals":18},"rpc":["https://www.3sps.net"],"faucets":[],"infoURL":"https://ssquad.games/"},{"name":"Humanode Testnet 5 Israfel","chainId":14853,"shortName":"hmnd-t5","networkId":14853,"nativeCurrency":{"name":"HMND","symbol":"HMND","decimals":18},"rpc":["https://explorer-rpc-http.testnet5.stages.humanode.io"],"faucets":["https://t.me/HumanodeTestnet5FaucetBot"],"infoURL":"https://humanode.io"},{"name":"LoopNetwork Mainnet","chainId":15551,"shortName":"loop","networkId":15551,"nativeCurrency":{"name":"LOOP","symbol":"LOOP","decimals":18},"rpc":["https://api.mainnetloop.com"],"faucets":[],"infoURL":"http://theloopnetwork.org/"},{"name":"Trust EVM Testnet","chainId":15555,"shortName":"TrustTestnet","networkId":15555,"nativeCurrency":{"name":"Trust EVM","symbol":"EVM","decimals":18},"rpc":["https://api.testnet-dev.trust.one"],"faucets":["https://faucet.testnet-dev.trust.one/"],"infoURL":"https://www.trust.one/"},{"name":"EOS EVM Network Testnet","chainId":15557,"shortName":"eos-testnet","networkId":15557,"nativeCurrency":{"name":"EOS","symbol":"EOS","decimals":18},"rpc":["https://api.testnet.evm.eosnetwork.com"],"faucets":[],"infoURL":"https://eosnetwork.com/eos-evm"},{"name":"MetaDot Mainnet","chainId":16000,"shortName":"mtt","networkId":16000,"nativeCurrency":{"name":"MetaDot Token","symbol":"MTT","decimals":18},"rpc":["https://mainnet.metadot.network"],"faucets":[],"infoURL":"https://metadot.network"},{"name":"MetaDot Testnet","chainId":16001,"shortName":"mtttest","networkId":16001,"nativeCurrency":{"name":"MetaDot Token TestNet","symbol":"MTTest","decimals":18},"rpc":["https://testnet.metadot.network"],"faucets":["https://faucet.metadot.network/"],"infoURL":"https://metadot.network"},{"name":"Genesys Mainnet","chainId":16507,"shortName":"Genesys","networkId":16507,"nativeCurrency":{"name":"Genesys","symbol":"GSYS","decimals":18},"rpc":["https://rpc.genesys.network"],"faucets":[],"infoURL":"https://www.genesys.network/"},{"name":"IRIShub Testnet","chainId":16688,"shortName":"nyancat","networkId":16688,"nativeCurrency":{"name":"Eris","symbol":"ERIS","decimals":18},"rpc":["https://evmrpc.nyancat.irisnet.org"],"faucets":[],"infoURL":"https://www.irisnet.org"},{"name":"AirDAO Mainnet","chainId":16718,"shortName":"airdao","networkId":16718,"nativeCurrency":{"name":"Amber","symbol":"AMB","decimals":18},"rpc":["https://network.ambrosus.io"],"faucets":[],"infoURL":"https://airdao.io"},{"name":"IVAR Chain Testnet","chainId":16888,"shortName":"tivar","networkId":16888,"nativeCurrency":{"name":"tIvar","symbol":"tIVAR","decimals":18},"rpc":["https://testnet-rpc.ivarex.com"],"faucets":["https://tfaucet.ivarex.com/"],"infoURL":"https://ivarex.com"},{"name":"Palette Chain Testnet","chainId":17180,"shortName":"PCT","networkId":17180,"nativeCurrency":{"name":"Palette Token","symbol":"PLT","decimals":18},"rpc":["https://palette-opennet.com:22000"],"faucets":[],"infoURL":"https://hashpalette.com/"},{"name":"EOS EVM Network","chainId":17777,"shortName":"eos","networkId":17777,"nativeCurrency":{"name":"EOS","symbol":"EOS","decimals":18},"rpc":["https://api.evm.eosnetwork.com"],"faucets":[],"infoURL":"https://eosnetwork.com/eos-evm"},{"name":"Frontier of Dreams Testnet","chainId":18000,"shortName":"ZKST","networkId":18000,"nativeCurrency":{"name":"ZKST","symbol":"ZKST","decimals":18},"rpc":["https://rpc.fod.games/"],"faucets":[],"infoURL":"https://goexosphere.com"},{"name":"Smart Trade Networks","chainId":18122,"shortName":"STN","networkId":18122,"nativeCurrency":{"name":"STN","symbol":"STN","decimals":18},"rpc":["https://beefledgerwallet.com:8544"],"faucets":[],"infoURL":"https://www.smarttradenetworks.com"},{"name":"Proof Of Memes","chainId":18159,"shortName":"pom","networkId":18159,"nativeCurrency":{"name":"Proof Of Memes","symbol":"POM","decimals":18},"rpc":["https://mainnet-rpc.memescan.io","https://mainnet-rpc2.memescan.io","https://mainnet-rpc3.memescan.io","https://mainnet-rpc4.memescan.io"],"faucets":[],"infoURL":"https://proofofmemes.org"},{"name":"MXC zkEVM Mainnet","chainId":18686,"shortName":"MXCzkEVM","networkId":18686,"nativeCurrency":{"name":"MXC zkEVM Mainnet","symbol":"MXC","decimals":18},"rpc":["https://rpc.mxc.com"],"faucets":[],"infoURL":"https://doc.mxc.com/docs/intro"},{"name":"HOME Verse Mainnet","chainId":19011,"shortName":"HMV","networkId":19011,"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"rpc":["https://rpc.mainnet.oasys.homeverse.games/"],"faucets":[],"infoURL":"https://www.homeverse.games/"},{"name":"BTCIX Network","chainId":19845,"shortName":"btcix","networkId":19845,"nativeCurrency":{"name":"BTCIX Network","symbol":"BTCIX","decimals":18},"rpc":["https://seed.btcix.org/rpc"],"faucets":[],"infoURL":"https://bitcolojix.org"},{"name":"Camelark Mainnet","chainId":20001,"shortName":"Camelark","networkId":20001,"nativeCurrency":{"name":"EthereumPoW","symbol":"ETHW","decimals":18},"rpc":["https://mainnet-http-rpc.camelark.com"],"faucets":[],"infoURL":"https://www.camelark.com"},{"name":"Callisto Testnet","chainId":20729,"shortName":"CLOTestnet","networkId":79,"nativeCurrency":{"name":"Callisto","symbol":"CLO","decimals":18},"rpc":["https://testnet-rpc.callisto.network/"],"faucets":["https://faucet.callisto.network/"],"infoURL":"https://callisto.network"},{"name":"P12 Chain","chainId":20736,"shortName":"p12","networkId":20736,"nativeCurrency":{"name":"Hooked P2","symbol":"hP2","decimals":18},"rpc":["https://rpc-chain.p12.games"],"faucets":[],"infoURL":"https://p12.network"},{"name":"CENNZnet Azalea","chainId":21337,"shortName":"cennz-a","networkId":21337,"nativeCurrency":{"name":"CPAY","symbol":"CPAY","decimals":18},"rpc":["https://cennznet.unfrastructure.io/public"],"faucets":[],"infoURL":"https://cennz.net"},{"name":"omChain Mainnet","chainId":21816,"shortName":"omc","networkId":21816,"nativeCurrency":{"name":"omChain","symbol":"OMC","decimals":18},"rpc":["https://seed.omchain.io"],"faucets":[],"infoURL":"https://omchain.io"},{"name":"Taycan","chainId":22023,"shortName":"SFL","networkId":22023,"nativeCurrency":{"name":"shuffle","symbol":"SFL","decimals":18},"rpc":["https://taycan-rpc.hupayx.io:8545"],"faucets":[],"infoURL":"https://hupayx.io"},{"name":"AirDAO Testnet","chainId":22040,"shortName":"airdao-test","networkId":22040,"nativeCurrency":{"name":"Amber","symbol":"AMB","decimals":18},"rpc":["https://network.ambrosus-test.io"],"faucets":[],"infoURL":"https://testnet.airdao.io"},{"name":"MAP Mainnet","chainId":22776,"shortName":"map","networkId":22776,"nativeCurrency":{"name":"MAP","symbol":"MAP","decimals":18},"rpc":["https://rpc.maplabs.io"],"faucets":[],"infoURL":"https://maplabs.io"},{"name":"Antofy Testnet","chainId":23006,"shortName":"ABNt","networkId":23006,"nativeCurrency":{"name":"Antofy","symbol":"ABN","decimals":18},"rpc":["https://testnet-rpc.antofy.io"],"faucets":["https://faucet.antofy.io"],"infoURL":"https://antofy.io"},{"name":"Opside Testnet","chainId":23118,"shortName":"opside","networkId":23118,"nativeCurrency":{"name":"IDE","symbol":"IDE","decimals":18},"rpc":["https://testrpc.opside.network"],"faucets":["https://faucet.opside.network"],"infoURL":"https://opside.network"},{"name":"Oasis Sapphire","chainId":23294,"shortName":"sapphire","networkId":23294,"nativeCurrency":{"name":"Sapphire Rose","symbol":"ROSE","decimals":18},"rpc":["https://sapphire.oasis.io","wss://sapphire.oasis.io/ws"],"faucets":[],"infoURL":"https://docs.oasis.io/dapp/sapphire"},{"name":"Oasis Sapphire Testnet","chainId":23295,"shortName":"sapphire-testnet","networkId":23295,"nativeCurrency":{"name":"Sapphire Test Rose","symbol":"TEST","decimals":18},"rpc":["https://testnet.sapphire.oasis.dev","wss://testnet.sapphire.oasis.dev/ws"],"faucets":[],"infoURL":"https://docs.oasis.io/dapp/sapphire"},{"name":"Webchain","chainId":24484,"shortName":"web","networkId":37129,"nativeCurrency":{"name":"Webchain Ether","symbol":"WEB","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://webchain.network"},{"name":"MintMe.com Coin","chainId":24734,"shortName":"mintme","networkId":37480,"nativeCurrency":{"name":"MintMe.com Coin","symbol":"MINTME","decimals":18},"rpc":["https://node1.mintme.com"],"faucets":[],"infoURL":"https://www.mintme.com"},{"name":"Hammer Chain Mainnet","chainId":25888,"shortName":"GOLDT","networkId":25888,"nativeCurrency":{"name":"GOLDT","symbol":"GOLDT","decimals":18},"rpc":["https://www.hammerchain.io/rpc"],"faucets":[],"infoURL":"https://www.hammerchain.io"},{"name":"Bitkub Chain Testnet","chainId":25925,"shortName":"bkct","networkId":25925,"nativeCurrency":{"name":"Bitkub Coin","symbol":"tKUB","decimals":18},"rpc":["https://rpc-testnet.bitkubchain.io","wss://wss-testnet.bitkubchain.io"],"faucets":["https://faucet.bitkubchain.com"],"infoURL":"https://www.bitkubchain.com/"},{"name":"Ferrum Testnet","chainId":26026,"shortName":"frm","networkId":26026,"nativeCurrency":{"name":"Ferrum","symbol":"tFRM","decimals":18},"rpc":["http://testnet.dev.svcs.ferrumnetwork.io:9933"],"faucets":["https://testnet.faucet.ferrumnetwork.io"],"infoURL":"https://ferrum.network"},{"name":"Hertz Network Mainnet","chainId":26600,"shortName":"HTZ","networkId":26600,"nativeCurrency":{"name":"Hertz","symbol":"HTZ","decimals":18},"rpc":["https://mainnet-rpc.hertzscan.com"],"faucets":[],"infoURL":"https://www.hertz-network.com"},{"name":"OasisChain Mainnet","chainId":26863,"shortName":"OAC","networkId":26863,"nativeCurrency":{"name":"OAC","symbol":"OAC","decimals":18},"rpc":["https://rpc1.oasischain.io","https://rpc2.oasischain.io","https://rpc3.oasischain.io"],"faucets":["http://faucet.oasischain.io"],"infoURL":"https://scan.oasischain.io"},{"name":"Optimism Bedrock (Goerli Alpha Testnet)","chainId":28528,"shortName":"obgor","networkId":28528,"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"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":[],"infoURL":"https://community.optimism.io/docs/developers/bedrock"},{"name":"Piece testnet","chainId":30067,"shortName":"Piece","networkId":30067,"nativeCurrency":{"name":"ECE","symbol":"ECE","decimals":18},"rpc":["https://testnet-rpc0.piecenetwork.com"],"faucets":["https://piecenetwork.com/faucet"],"infoURL":"https://piecenetwork.com"},{"name":"Ethersocial Network","chainId":31102,"shortName":"esn","networkId":1,"nativeCurrency":{"name":"Ethersocial Network Ether","symbol":"ESN","decimals":18},"rpc":["https://api.esn.gonspool.com"],"faucets":[],"infoURL":"https://ethersocial.org"},{"name":"CloudTx Mainnet","chainId":31223,"shortName":"CLDTX","networkId":31223,"nativeCurrency":{"name":"CloudTx","symbol":"CLD","decimals":18},"rpc":["https://mainnet-rpc.cloudtx.finance"],"faucets":[],"infoURL":"https://cloudtx.finance"},{"name":"CloudTx Testnet","chainId":31224,"shortName":"CLD","networkId":31224,"nativeCurrency":{"name":"CloudTx","symbol":"CLD","decimals":18},"rpc":["https://testnet-rpc.cloudtx.finance"],"faucets":["https://faucet.cloudtx.finance"],"infoURL":"https://cloudtx.finance/"},{"name":"GoChain Testnet","chainId":31337,"shortName":"got","networkId":31337,"nativeCurrency":{"name":"GoChain Coin","symbol":"GO","decimals":18},"rpc":["https://testnet-rpc.gochain.io"],"faucets":[],"infoURL":"https://gochain.io"},{"name":"Filecoin - Wallaby testnet","chainId":31415,"shortName":"filecoin-wallaby","networkId":31415,"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://filecoin.io"},{"name":"Bitgert Mainnet","chainId":32520,"shortName":"Brise","networkId":32520,"nativeCurrency":{"name":"Bitrise Token","symbol":"Brise","decimals":18},"rpc":["https://rpc.icecreamswap.com","https://mainnet-rpc.brisescan.com","https://chainrpc.com","https://serverrpc.com"],"faucets":[],"infoURL":"https://bitgert.com/"},{"name":"Fusion Mainnet","chainId":32659,"shortName":"fsn","networkId":32659,"nativeCurrency":{"name":"Fusion","symbol":"FSN","decimals":18},"rpc":["https://mainnet.fusionnetwork.io","wss://mainnet.fusionnetwork.io"],"faucets":[],"infoURL":"https://fusion.org"},{"name":"Zilliqa EVM","chainId":32769,"shortName":"zil","networkId":32769,"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"rpc":["https://api.zilliqa.com"],"faucets":[],"infoURL":"https://www.zilliqa.com/"},{"name":"Zilliqa EVM Testnet","chainId":33101,"shortName":"zil-testnet","networkId":33101,"nativeCurrency":{"name":"Zilliqa","symbol":"ZIL","decimals":18},"rpc":["https://dev-api.zilliqa.com"],"faucets":["https://dev-wallet.zilliqa.com/faucet?network=testnet"],"infoURL":"https://www.zilliqa.com/"},{"name":"Aves Mainnet","chainId":33333,"shortName":"avs","networkId":33333,"nativeCurrency":{"name":"Aves","symbol":"AVS","decimals":18},"rpc":["https://rpc.avescoin.io"],"faucets":[],"infoURL":"https://avescoin.io"},{"name":"J2O Taro","chainId":35011,"shortName":"j2o","networkId":35011,"nativeCurrency":{"name":"TARO Coin","symbol":"taro","decimals":18},"rpc":["https://rpc.j2o.io"],"faucets":[],"infoURL":"https://j2o.io"},{"name":"Q Mainnet","chainId":35441,"shortName":"q","networkId":35441,"nativeCurrency":{"name":"Q token","symbol":"Q","decimals":18},"rpc":["https://rpc.q.org"],"faucets":[],"infoURL":"https://q.org"},{"name":"Q Testnet","chainId":35443,"shortName":"q-testnet","networkId":35443,"nativeCurrency":{"name":"Q token","symbol":"Q","decimals":18},"rpc":["https://rpc.qtestnet.org"],"faucets":[],"infoURL":"https://q.org/"},{"name":"Energi Mainnet","chainId":39797,"shortName":"nrg","networkId":39797,"nativeCurrency":{"name":"Energi","symbol":"NRG","decimals":18},"rpc":["https://nodeapi.energi.network"],"faucets":[],"infoURL":"https://www.energi.world/"},{"name":"OHO Mainnet","chainId":39815,"shortName":"oho","networkId":39815,"nativeCurrency":{"name":"OHO","symbol":"OHO","decimals":18},"rpc":["https://mainnet.oho.ai"],"faucets":[],"infoURL":"https://oho.ai"},{"name":"Opulent-X BETA","chainId":41500,"shortName":"ox-beta","networkId":41500,"nativeCurrency":{"name":"Oxyn Gas","symbol":"OXYN","decimals":18},"rpc":["https://connect.opulent-x.com"],"faucets":[],"infoURL":"https://beta.opulent-x.com"},{"name":"pegglecoin","chainId":42069,"shortName":"PC","networkId":42069,"nativeCurrency":{"name":"pegglecoin","symbol":"peggle","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://teampeggle.com"},{"name":"Arbitrum One","chainId":42161,"shortName":"arb1","networkId":42161,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}","https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}","https://arb1.arbitrum.io/rpc","https://arbitrum-one.publicnode.com"],"faucets":[],"infoURL":"https://arbitrum.io"},{"name":"Arbitrum Nova","chainId":42170,"shortName":"arb-nova","networkId":42170,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://nova.arbitrum.io/rpc","https://arbitrum-nova.publicnode.com"],"faucets":[],"infoURL":"https://arbitrum.io"},{"name":"Celo Mainnet","chainId":42220,"shortName":"celo","networkId":42220,"nativeCurrency":{"name":"CELO","symbol":"CELO","decimals":18},"rpc":["https://forno.celo.org","wss://forno.celo.org/ws"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://docs.celo.org/"},{"name":"Oasis Emerald Testnet","chainId":42261,"shortName":"emerald-testnet","networkId":42261,"nativeCurrency":{"name":"Emerald Rose","symbol":"ROSE","decimals":18},"rpc":["https://testnet.emerald.oasis.dev/","wss://testnet.emerald.oasis.dev/ws"],"faucets":["https://faucet.testnet.oasis.dev/"],"infoURL":"https://docs.oasis.io/dapp/emerald"},{"name":"Oasis Emerald","chainId":42262,"shortName":"emerald","networkId":42262,"nativeCurrency":{"name":"Emerald Rose","symbol":"ROSE","decimals":18},"rpc":["https://emerald.oasis.dev","wss://emerald.oasis.dev/ws"],"faucets":[],"infoURL":"https://docs.oasis.io/dapp/emerald"},{"name":"Kinto Testnet","chainId":42888,"shortName":"keth","networkId":42888,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["http://35.215.120.180:8545"],"faucets":[],"infoURL":"https://ethereum.org"},{"name":"Athereum","chainId":43110,"shortName":"avaeth","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","networkId":1,"nativeCurrency":{"name":"Avalanche","symbol":"AVAX","decimals":18},"rpc":["https://api.avax-test.network/ext/bc/C/rpc","https://avalanche-fuji-c-chain.publicnode.com"],"faucets":["https://faucet.avax-test.network/"],"infoURL":"https://cchain.explorer.avax-test.network"},{"name":"Avalanche C-Chain","chainId":43114,"shortName":"avax","networkId":43114,"nativeCurrency":{"name":"Avalanche","symbol":"AVAX","decimals":18},"rpc":["https://api.avax.network/ext/bc/C/rpc","https://avalanche-c-chain.publicnode.com"],"faucets":["https://free-online-app.com/faucet-for-eth-evm-chains/"],"infoURL":"https://www.avax.network/"},{"name":"Boba Avax","chainId":43288,"shortName":"bobaavax","networkId":43288,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":["https://avax.boba.network","wss://wss.avax.boba.network","https://replica.avax.boba.network","wss://replica-wss.avax.boba.network"],"faucets":[],"infoURL":"https://docs.boba.network/for-developers/network-avalanche"},{"name":"Frenchain","chainId":44444,"shortName":"FREN","networkId":44444,"nativeCurrency":{"name":"FREN","symbol":"FREN","decimals":18},"rpc":["https://rpc-02.frenscan.io"],"faucets":[],"infoURL":"https://frenchain.app"},{"name":"Celo Alfajores Testnet","chainId":44787,"shortName":"ALFA","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":"Autobahn Network","chainId":45000,"shortName":"AutobahnNetwork","networkId":45000,"nativeCurrency":{"name":"TXL","symbol":"TXL","decimals":18},"rpc":["https://rpc.autobahn.network"],"faucets":[],"infoURL":"https://autobahn.network"},{"name":"Fusion Testnet","chainId":46688,"shortName":"tfsn","networkId":46688,"nativeCurrency":{"name":"Testnet Fusion","symbol":"T-FSN","decimals":18},"rpc":["https://testnet.fusionnetwork.io","wss://testnet.fusionnetwork.io"],"faucets":[],"infoURL":"https://fusion.org"},{"name":"REI Network","chainId":47805,"shortName":"REI","networkId":47805,"nativeCurrency":{"name":"REI","symbol":"REI","decimals":18},"rpc":["https://rpc.rei.network","wss://rpc.rei.network"],"faucets":[],"infoURL":"https://rei.network/"},{"name":"Wireshape Floripa Testnet","chainId":49049,"shortName":"floripa","networkId":49049,"nativeCurrency":{"name":"WIRE","symbol":"WIRE","decimals":18},"rpc":["https://rpc-floripa.wireshape.org","https://wireshape-floripa-testnet.rpc.thirdweb.com"],"faucets":[],"infoURL":"https://wireshape.org"},{"name":"Bifrost Testnet","chainId":49088,"shortName":"tbfc","networkId":49088,"nativeCurrency":{"name":"Bifrost","symbol":"BFC","decimals":18},"rpc":["https://public-01.testnet.thebifrost.io/rpc","https://public-02.testnet.thebifrost.io/rpc"],"faucets":[],"infoURL":"https://thebifrost.io"},{"name":"Energi Testnet","chainId":49797,"shortName":"tnrg","networkId":49797,"nativeCurrency":{"name":"Energi","symbol":"NRG","decimals":18},"rpc":["https://nodeapi.test.energi.network"],"faucets":[],"infoURL":"https://www.energi.world/"},{"name":"Liveplex OracleEVM","chainId":50001,"shortName":"LOE","networkId":50001,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.oracle.liveplex.io"],"faucets":[],"infoURL":""},{"name":"GTON Testnet","chainId":50021,"shortName":"tgton","networkId":50021,"nativeCurrency":{"name":"GCD","symbol":"GCD","decimals":18},"rpc":["https://testnet.gton.network/"],"faucets":[],"infoURL":"https://gton.capital"},{"name":"Opside Testnet Pre-Alpha","chainId":51178,"shortName":"Opside-Testnet","networkId":51178,"nativeCurrency":{"name":"IDE Test Token","symbol":"IDE","decimals":18},"rpc":["https://pre-alpha-us-http-geth.opside.network","https://pre-alpha-hk-http-geth.opside.network"],"faucets":[],"infoURL":"https://opsi.de/"},{"name":"Sardis Mainnet","chainId":51712,"shortName":"SRDXm","networkId":51712,"nativeCurrency":{"name":"Sardis","symbol":"SRDX","decimals":18},"rpc":["https://mainnet-rpc.sardisnetwork.com"],"faucets":["https://faucet.sardisnetwork.com"],"infoURL":"https://mysardis.com"},{"name":"DFK Chain","chainId":53935,"shortName":"DFK","networkId":53935,"nativeCurrency":{"name":"Jewel","symbol":"JEWEL","decimals":18},"rpc":["https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc"],"faucets":[],"infoURL":"https://defikingdoms.com"},{"name":"Haqq Chain Testnet","chainId":54211,"shortName":"ISLMT","networkId":54211,"nativeCurrency":{"name":"Islamic Coin","symbol":"ISLMT","decimals":18},"rpc":["https://rpc.eth.testedge2.haqq.network"],"faucets":["https://testedge2.haqq.network"],"infoURL":"https://islamiccoin.net"},{"name":"Toronet Testnet","chainId":54321,"shortName":"ToronetTestnet","networkId":54321,"nativeCurrency":{"name":"Toro","symbol":"TORO","decimals":18},"rpc":["http://testnet.toronet.org/rpc"],"faucets":[],"infoURL":"https://toronet.org"},{"name":"Titan","chainId":55004,"shortName":"teth","networkId":55004,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.titan.tokamak.network","wss://rpc.titan.tokamak.network/ws"],"faucets":[],"infoURL":"https://tokamak.network"},{"name":"REI Chain Mainnet","chainId":55555,"shortName":"reichain","networkId":55555,"nativeCurrency":{"name":"Rei","symbol":"REI","decimals":18},"rpc":["https://rei-rpc.moonrhythm.io"],"faucets":["http://kururu.finance/faucet?chainId=55555"],"infoURL":"https://reichain.io"},{"name":"REI Chain Testnet","chainId":55556,"shortName":"trei","networkId":55556,"nativeCurrency":{"name":"tRei","symbol":"tREI","decimals":18},"rpc":["https://rei-testnet-rpc.moonrhythm.io"],"faucets":["http://kururu.finance/faucet?chainId=55556"],"infoURL":"https://reichain.io"},{"name":"Boba BNB Mainnet","chainId":56288,"shortName":"BobaBnb","networkId":56288,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":["https://bnb.boba.network","http://boba-bnb.gateway.tenderly.co/","http://gateway.tenderly.co/public/boba-bnb","https://replica.bnb.boba.network","wss://boba-bnb.gateway.tenderly.co/","wss://gateway.tenderly.co/public/boba-bnb"],"faucets":[],"infoURL":"https://boba.network"},{"name":"Rollux Testnet","chainId":57000,"shortName":"tsys-rollux","networkId":57000,"nativeCurrency":{"name":"Testnet Syscoin","symbol":"TSYS","decimals":18},"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"],"infoURL":"https://rollux.com"},{"name":"Sepolia PGN (Public Goods Network)","chainId":58008,"shortName":"sepPGN","networkId":58008,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://sepolia.publicgoods.network"],"faucets":[],"infoURL":"https://publicgoods.network/"},{"name":"Linea Testnet","chainId":59140,"shortName":"linea-testnet","networkId":59140,"nativeCurrency":{"name":"Linea Ether","symbol":"ETH","decimals":18},"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/ws/v3/${INFURA_API_KEY}"],"faucets":["https://faucetlink.to/goerli"],"infoURL":"https://linea.build"},{"name":"Linea","chainId":59144,"shortName":"linea","networkId":59144,"nativeCurrency":{"name":"Linea Ether","symbol":"ETH","decimals":18},"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":[],"infoURL":"https://linea.build"},{"name":"Thinkium Testnet Chain 0","chainId":60000,"shortName":"TKM-test0","networkId":60000,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://test.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"infoURL":"https://thinkium.net/"},{"name":"Thinkium Testnet Chain 1","chainId":60001,"shortName":"TKM-test1","networkId":60001,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://test1.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"infoURL":"https://thinkium.net/"},{"name":"Thinkium Testnet Chain 2","chainId":60002,"shortName":"TKM-test2","networkId":60002,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://test2.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"infoURL":"https://thinkium.net/"},{"name":"Thinkium Testnet Chain 103","chainId":60103,"shortName":"TKM-test103","networkId":60103,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://test103.thinkiumrpc.net/"],"faucets":["https://www.thinkiumdev.net/faucet"],"infoURL":"https://thinkium.net/"},{"name":"AxelChain Dev-Net","chainId":61800,"shortName":"aium-dev","networkId":61800,"nativeCurrency":{"name":"Axelium","symbol":"AIUM","decimals":18},"rpc":["https://aium-rpc-dev.viacube.com"],"faucets":[],"infoURL":"https://www.axel.org"},{"name":"Etica Mainnet","chainId":61803,"shortName":"Etica","networkId":61803,"nativeCurrency":{"name":"EGAZ","symbol":"EGAZ","decimals":18},"rpc":["https://eticamainnet.eticascan.org","https://eticamainnet.eticaprotocol.org"],"faucets":["http://faucet.etica-stats.org/"],"infoURL":"https://eticaprotocol.org"},{"name":"DoKEN Super Chain Mainnet","chainId":61916,"shortName":"DoKEN","networkId":61916,"nativeCurrency":{"name":"DoKEN","symbol":"DKN","decimals":18},"rpc":["https://sgrpc.doken.dev","https://nyrpc.doken.dev","https://ukrpc.doken.dev"],"faucets":[],"infoURL":"https://doken.dev/"},{"name":"Celo Baklava Testnet","chainId":62320,"shortName":"BKLV","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":"MultiVAC Mainnet","chainId":62621,"shortName":"mtv","networkId":62621,"nativeCurrency":{"name":"MultiVAC","symbol":"MTV","decimals":18},"rpc":["https://rpc.mtv.ac","https://rpc-eu.mtv.ac"],"faucets":[],"infoURL":"https://mtv.ac"},{"name":"eCredits Mainnet","chainId":63000,"shortName":"ecs","networkId":63000,"nativeCurrency":{"name":"eCredits","symbol":"ECS","decimals":18},"rpc":["https://rpc.ecredits.com"],"faucets":[],"infoURL":"https://ecredits.com"},{"name":"eCredits Testnet","chainId":63001,"shortName":"ecs-testnet","networkId":63001,"nativeCurrency":{"name":"eCredits","symbol":"ECS","decimals":18},"rpc":["https://rpc.tst.ecredits.com"],"faucets":["https://faucet.tst.ecredits.com"],"infoURL":"https://ecredits.com"},{"name":"Scolcoin Mainnet","chainId":65450,"shortName":"SRC","networkId":65450,"nativeCurrency":{"name":"Scolcoin","symbol":"SCOL","decimals":18},"rpc":["https://mainnet-rpc.scolcoin.com"],"faucets":[],"infoURL":"https://scolcoin.com"},{"name":"SiriusNet","chainId":67390,"shortName":"mcl","networkId":67390,"nativeCurrency":{"name":"MCD","symbol":"MCD","decimals":18},"rpc":["https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/"],"faucets":[],"infoURL":"https://macaucasinolisboa.xyz"},{"name":"Cosmic Chain","chainId":67588,"shortName":"Cosmic","networkId":3344,"nativeCurrency":{"name":"Cosmic Chain","symbol":"COSMIC","decimals":18},"rpc":["http://testnet.cosmicchain.site:3344"],"faucets":[],"infoURL":"https://cosmicchain.site"},{"name":"Condrieu","chainId":69420,"shortName":"cndr","networkId":69420,"nativeCurrency":{"name":"Condrieu Testnet Ether","symbol":"CTE","decimals":18},"rpc":["https://rpc.condrieu.ethdevops.io:8545"],"faucets":["https://faucet.condrieu.ethdevops.io"],"infoURL":"https://condrieu.ethdevops.io"},{"name":"Thinkium Mainnet Chain 0","chainId":70000,"shortName":"TKM0","networkId":70000,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://proxy.thinkiumrpc.net/"],"faucets":[],"infoURL":"https://thinkium.net/"},{"name":"Thinkium Mainnet Chain 1","chainId":70001,"shortName":"TKM1","networkId":70001,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://proxy1.thinkiumrpc.net/"],"faucets":[],"infoURL":"https://thinkium.net/"},{"name":"Thinkium Mainnet Chain 2","chainId":70002,"shortName":"TKM2","networkId":70002,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://proxy2.thinkiumrpc.net/"],"faucets":[],"infoURL":"https://thinkium.net/"},{"name":"Thinkium Mainnet Chain 103","chainId":70103,"shortName":"TKM103","networkId":70103,"nativeCurrency":{"name":"TKM","symbol":"TKM","decimals":18},"rpc":["https://proxy103.thinkiumrpc.net/"],"faucets":[],"infoURL":"https://thinkium.net/"},{"name":"GuapcoinX","chainId":71111,"shortName":"GuapX","networkId":71111,"nativeCurrency":{"name":"GuapcoinX","symbol":"GuapX","decimals":18},"rpc":["https://rpc-mainnet.guapcoinx.com/","https://rpc-mainnet-1.guapcoinx.com/","https://rpc-mainnet-2.guapcoinx.com/"],"faucets":[],"infoURL":"https://guapcoin.org/"},{"name":"Polyjuice Testnet","chainId":71393,"shortName":"ckb","networkId":1,"nativeCurrency":{"name":"CKB","symbol":"CKB","decimals":8},"rpc":["https://godwoken-testnet-web3-rpc.ckbapp.dev","ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws"],"faucets":["https://faucet.nervos.org/"],"infoURL":"https://github.com/nervosnetwork/godwoken"},{"name":"Godwoken Testnet v1","chainId":71401,"shortName":"gw-testnet-v1","networkId":71401,"nativeCurrency":{"name":"pCKB","symbol":"pCKB","decimals":18},"rpc":["https://godwoken-testnet-v1.ckbapp.dev","https://v1.testnet.godwoken.io/rpc"],"faucets":["https://testnet.bridge.godwoken.io"],"infoURL":"https://www.nervos.org"},{"name":"Godwoken Mainnet","chainId":71402,"shortName":"gw-mainnet-v1","networkId":71402,"nativeCurrency":{"name":"pCKB","symbol":"pCKB","decimals":18},"rpc":["https://v1.mainnet.godwoken.io/rpc"],"faucets":[],"infoURL":"https://www.nervos.org"},{"name":"Energy Web Volta Testnet","chainId":73799,"shortName":"vt","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":"Mixin Virtual Machine","chainId":73927,"shortName":"mvm","networkId":73927,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://geth.mvm.dev"],"faucets":[],"infoURL":"https://mvm.dev"},{"name":"ResinCoin Mainnet","chainId":75000,"shortName":"resin","networkId":75000,"nativeCurrency":{"name":"Ether","symbol":"RESIN","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://resincoin.dev"},{"name":"Vention Smart Chain Mainnet","chainId":77612,"shortName":"vscm","networkId":77612,"nativeCurrency":{"name":"VNT","symbol":"VNT","decimals":18},"rpc":["https://mainnet-rpc.vention.network"],"faucets":["https://faucet.vention.network"],"infoURL":"https://ventionscan.io"},{"name":"Toronet Mainnet","chainId":77777,"shortName":"Toronet","networkId":77777,"nativeCurrency":{"name":"Toro","symbol":"TORO","decimals":18},"rpc":["http://toronet.org/rpc"],"faucets":[],"infoURL":"https://toronet.org"},{"name":"Firenze test network","chainId":78110,"shortName":"firenze","networkId":78110,"nativeCurrency":{"name":"Firenze Ether","symbol":"FIN","decimals":18},"rpc":["https://ethnode.primusmoney.com/firenze"],"faucets":[],"infoURL":"https://primusmoney.com"},{"name":"Dragonfly Mainnet (Hexapod)","chainId":78281,"shortName":"dfly","networkId":78281,"nativeCurrency":{"name":"Dragonfly","symbol":"DFLY","decimals":18},"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":[],"infoURL":"https://hexapod.network"},{"name":"Gold Smart Chain Testnet","chainId":79879,"shortName":"STANDt","networkId":79879,"nativeCurrency":{"name":"Standard in Gold","symbol":"STAND","decimals":18},"rpc":["https://rpc-testnet.goldsmartchain.com"],"faucets":["https://faucet.goldsmartchain.com"],"infoURL":"https://goldsmartchain.com"},{"name":"Mumbai","chainId":80001,"shortName":"maticmum","networkId":80001,"nativeCurrency":{"name":"MATIC","symbol":"MATIC","decimals":18},"rpc":["https://matic-mumbai.chainstacklabs.com","https://rpc-mumbai.maticvigil.com","https://matic-testnet-archive-rpc.bwarelabs.com","https://polygon-mumbai-bor.publicnode.com"],"faucets":["https://faucet.polygon.technology/"],"infoURL":"https://polygon.technology/"},{"name":"Amana Testnet","chainId":81341,"shortName":"amanatest","networkId":81341,"nativeCurrency":{"name":"Amana Testnet","symbol":"MEER-T","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Amana Mixnet","chainId":81342,"shortName":"amanamix","networkId":81342,"nativeCurrency":{"name":"Amana Mixnet","symbol":"MEER-M","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Amana Privnet","chainId":81343,"shortName":"amanapriv","networkId":81343,"nativeCurrency":{"name":"Amana Privnet","symbol":"MEER-P","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Flana Testnet","chainId":81351,"shortName":"flanatest","networkId":81351,"nativeCurrency":{"name":"Flana Testnet","symbol":"MEER-T","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Flana Mixnet","chainId":81352,"shortName":"flanamix","networkId":81352,"nativeCurrency":{"name":"Flana Mixnet","symbol":"MEER-M","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Flana Privnet","chainId":81353,"shortName":"flanapriv","networkId":81353,"nativeCurrency":{"name":"Flana Privnet","symbol":"MEER-P","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Mizana Testnet","chainId":81361,"shortName":"mizanatest","networkId":81361,"nativeCurrency":{"name":"Mizana Testnet","symbol":"MEER-T","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Mizana Mixnet","chainId":81362,"shortName":"mizanamix","networkId":81362,"nativeCurrency":{"name":"Mizana Mixnet","symbol":"MEER-M","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Mizana Privnet","chainId":81363,"shortName":"mizanapriv","networkId":81363,"nativeCurrency":{"name":"Mizana Privnet","symbol":"MEER-P","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://github.com/Qitmeer"},{"name":"Base Goerli Testnet","chainId":84531,"shortName":"basegor","networkId":84531,"nativeCurrency":{"name":"Goerli Ether","symbol":"ETH","decimals":18},"rpc":["https://goerli.base.org"],"faucets":["https://www.coinbase.com/faucets/base-ethereum-goerli-faucet"],"infoURL":"https://base.org"},{"name":"CYBERTRUST","chainId":85449,"shortName":"Cyber","networkId":48501,"nativeCurrency":{"name":"Cyber Trust","symbol":"CYBER","decimals":18},"rpc":["http://testnet.cybertrust.space:48501"],"faucets":[],"infoURL":"https://cybertrust.space"},{"name":"Chiliz Scoville Testnet","chainId":88880,"shortName":"chz","networkId":88880,"nativeCurrency":{"name":"Chiliz","symbol":"CHZ","decimals":18},"rpc":["https://scoville-rpc.chiliz.com"],"faucets":["https://scoville-faucet.chiliz.com"],"infoURL":"https://www.chiliz.com/en/chain"},{"name":"IVAR Chain Mainnet","chainId":88888,"shortName":"ivar","networkId":88888,"nativeCurrency":{"name":"Ivar","symbol":"IVAR","decimals":18},"rpc":["https://mainnet-rpc.ivarex.com"],"faucets":["https://faucet.ivarex.com/"],"infoURL":"https://ivarex.com"},{"name":"Beverly Hills","chainId":90210,"shortName":"bvhl","networkId":90210,"nativeCurrency":{"name":"Beverly Hills Testnet Ether","symbol":"BVE","decimals":18},"rpc":["https://rpc.beverlyhills.ethdevops.io:8545"],"faucets":["https://faucet.beverlyhills.ethdevops.io"],"infoURL":"https://beverlyhills.ethdevops.io"},{"name":"Nautilus Chain","chainId":91002,"shortName":"NAUT","networkId":91002,"nativeCurrency":{"name":"Nautilus Zebec Testnet Tokens","symbol":"tZBC","decimals":18},"rpc":["https://triton.api.nautchain.xyz"],"faucets":["https://faucet.eclipse.builders"],"infoURL":"https://docs.nautchain.xyz"},{"name":"Lambda Testnet","chainId":92001,"shortName":"lambda-testnet","networkId":92001,"nativeCurrency":{"name":"test-Lamb","symbol":"LAMB","decimals":18},"rpc":["https://evm.lambda.top/"],"faucets":["https://faucet.lambda.top"],"infoURL":"https://lambda.im"},{"name":"Mantis Testnet (Hexapod)","chainId":96970,"shortName":"mantis","networkId":96970,"nativeCurrency":{"name":"Mantis","symbol":"MANTIS","decimals":18},"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"],"infoURL":"https://hexapod.network"},{"name":"Boba BNB Mainnet Old","chainId":97288,"shortName":"BobaBnbOld","networkId":97288,"nativeCurrency":{"name":"Boba Token","symbol":"BOBA","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://boba.network"},{"name":"eLiberty Testnet","chainId":99099,"shortName":"ELt","networkId":99099,"nativeCurrency":{"name":"eLiberty","symbol":"$EL","decimals":18},"rpc":["https://testnet-rpc.eliberty.ngo"],"faucets":["https://faucet.eliberty.ngo"],"infoURL":"https://eliberty.ngo"},{"name":"UB Smart Chain(testnet)","chainId":99998,"shortName":"usctest","networkId":99998,"nativeCurrency":{"name":"UBC","symbol":"UBC","decimals":18},"rpc":["https://testnet.rpc.uschain.network"],"faucets":[],"infoURL":"https://www.ubchain.site"},{"name":"UB Smart Chain","chainId":99999,"shortName":"usc","networkId":99999,"nativeCurrency":{"name":"UBC","symbol":"UBC","decimals":18},"rpc":["https://rpc.uschain.network"],"faucets":[],"infoURL":"https://www.ubchain.site/"},{"name":"QuarkChain Mainnet Root","chainId":100000,"shortName":"qkc-r","networkId":100000,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["http://jrpc.mainnet.quarkchain.io:38391"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 0","chainId":100001,"shortName":"qkc-s0","networkId":100001,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s0-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39000"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 1","chainId":100002,"shortName":"qkc-s1","networkId":100002,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s1-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39001"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 2","chainId":100003,"shortName":"qkc-s2","networkId":100003,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s2-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39002"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 3","chainId":100004,"shortName":"qkc-s3","networkId":100004,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s3-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39003"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 4","chainId":100005,"shortName":"qkc-s4","networkId":100005,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s4-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39004"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 5","chainId":100006,"shortName":"qkc-s5","networkId":100006,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s5-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39005"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 6","chainId":100007,"shortName":"qkc-s6","networkId":100007,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s6-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39006"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Mainnet Shard 7","chainId":100008,"shortName":"qkc-s7","networkId":100008,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://mainnet-s7-ethapi.quarkchain.io","http://eth-jrpc.mainnet.quarkchain.io:39007"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"VeChain","chainId":100009,"shortName":"vechain","networkId":100009,"nativeCurrency":{"name":"VeChain","symbol":"VET","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://vechain.org"},{"name":"VeChain Testnet","chainId":100010,"shortName":"vechain-testnet","networkId":100010,"nativeCurrency":{"name":"VeChain","symbol":"VET","decimals":18},"rpc":[],"faucets":["https://faucet.vecha.in"],"infoURL":"https://vechain.org"},{"name":"Deprecated CHI","chainId":100100,"shortName":"chi1","networkId":100100,"nativeCurrency":{"name":"Chiado xDAI","symbol":"xDAI","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://docs.gnosischain.com"},{"name":"Soverun Testnet","chainId":101010,"shortName":"SVRNt","networkId":101010,"nativeCurrency":{"name":"Soverun","symbol":"SVRN","decimals":18},"rpc":["https://testnet-rpc.soverun.com"],"faucets":["https://faucet.soverun.com"],"infoURL":"https://soverun.com"},{"name":"Crystaleum","chainId":103090,"shortName":"CRFI","networkId":1,"nativeCurrency":{"name":"CRFI","symbol":"◈","decimals":18},"rpc":["https://evm.cryptocurrencydevs.org","https://rpc.crystaleum.org"],"faucets":[],"infoURL":"https://crystaleum.org"},{"name":"BROChain Mainnet","chainId":108801,"shortName":"bro","networkId":108801,"nativeCurrency":{"name":"Brother","symbol":"BRO","decimals":18},"rpc":["https://rpc.brochain.org","http://rpc.brochain.org","https://rpc.brochain.org/mainnet","http://rpc.brochain.org/mainnet"],"faucets":[],"infoURL":"https://brochain.org"},{"name":"QuarkChain Devnet Root","chainId":110000,"shortName":"qkc-d-r","networkId":110000,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["http://jrpc.devnet.quarkchain.io:38391"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 0","chainId":110001,"shortName":"qkc-d-s0","networkId":110001,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s0-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39900"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 1","chainId":110002,"shortName":"qkc-d-s1","networkId":110002,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s1-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39901"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 2","chainId":110003,"shortName":"qkc-d-s2","networkId":110003,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s2-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39902"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 3","chainId":110004,"shortName":"qkc-d-s3","networkId":110004,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s3-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39903"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 4","chainId":110005,"shortName":"qkc-d-s4","networkId":110005,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s4-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39904"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 5","chainId":110006,"shortName":"qkc-d-s5","networkId":110006,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s5-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39905"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 6","chainId":110007,"shortName":"qkc-d-s6","networkId":110007,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s6-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39906"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"QuarkChain Devnet Shard 7","chainId":110008,"shortName":"qkc-d-s7","networkId":110008,"nativeCurrency":{"name":"QKC","symbol":"QKC","decimals":18},"rpc":["https://devnet-s7-ethapi.quarkchain.io","http://eth-jrpc.devnet.quarkchain.io:39907"],"faucets":[],"infoURL":"https://www.quarkchain.io"},{"name":"Siberium Test Network","chainId":111000,"shortName":"testsbr","networkId":111000,"nativeCurrency":{"name":"TestSIBR","symbol":"SIBR","decimals":18},"rpc":["https://rpc.test.siberium.net"],"faucets":[],"infoURL":"https://siberium.net"},{"name":"Siberium Network","chainId":111111,"shortName":"sbr","networkId":111111,"nativeCurrency":{"name":"Siberium","symbol":"SIBR","decimals":18},"rpc":["https://rpc.main.siberium.net","https://rpc.main.siberium.net.ru"],"faucets":[],"infoURL":"https://siberium.net"},{"name":"Metachain One Mainnet","chainId":112358,"shortName":"metao","networkId":112358,"nativeCurrency":{"name":"Metao","symbol":"METAO","decimals":18},"rpc":["https://rpc.metachain.one","https://rpc2.metachain.one"],"faucets":[],"infoURL":"https://metachain.one"},{"name":"ADIL Devnet","chainId":123456,"shortName":"dadil","networkId":123456,"nativeCurrency":{"name":"Devnet ADIL","symbol":"ADIL","decimals":18},"rpc":["https://devnet.adilchain-rpc.io"],"faucets":[],"infoURL":"https://adilchain.io"},{"name":"ETND Chain Mainnets","chainId":131419,"shortName":"ETND","networkId":131419,"nativeCurrency":{"name":"ETND","symbol":"ETND","decimals":18},"rpc":["https://rpc.node1.etnd.pro/"],"faucets":[],"infoURL":"https://www.etnd.pro"},{"name":"ICPlaza Mainnet","chainId":142857,"shortName":"ICPlaza","networkId":142857,"nativeCurrency":{"name":"ict","symbol":"ict","decimals":18},"rpc":["https://rpcmainnet.ic-plaza.org/"],"faucets":[],"infoURL":"https://docs.ic-plaza.org/"},{"name":"Taiko (Alpha-2 Testnet)","chainId":167004,"shortName":"taiko-a2","networkId":167004,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.a2.taiko.xyz"],"faucets":[],"infoURL":"https://taiko.xyz"},{"name":"Taiko Grimsvotn L2","chainId":167005,"shortName":"taiko-l2","networkId":167005,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.test.taiko.xyz"],"faucets":[],"infoURL":"https://taiko.xyz"},{"name":"Taiko Eldfell L3","chainId":167006,"shortName":"taiko-l3","networkId":167006,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.l3test.taiko.xyz"],"faucets":[],"infoURL":"https://taiko.xyz"},{"name":"Condor Test Network","chainId":188881,"shortName":"condor","networkId":188881,"nativeCurrency":{"name":"Condor Native Token","symbol":"CONDOR","decimals":18},"rpc":["https://testnet.condor.systems/rpc"],"faucets":["https://faucet.condor.systems"],"infoURL":"https://condor.systems"},{"name":"Milkomeda C1 Testnet","chainId":200101,"shortName":"milkTAda","networkId":200101,"nativeCurrency":{"name":"milkTAda","symbol":"mTAda","decimals":18},"rpc":["https://rpc-devnet-cardano-evm.c1.milkomeda.com","wss://rpc-devnet-cardano-evm.c1.milkomeda.com"],"faucets":[],"infoURL":"https://milkomeda.com"},{"name":"Milkomeda A1 Testnet","chainId":200202,"shortName":"milkTAlgo","networkId":200202,"nativeCurrency":{"name":"milkTAlgo","symbol":"mTAlgo","decimals":18},"rpc":["https://rpc-devnet-algorand-rollup.a1.milkomeda.com"],"faucets":[],"infoURL":"https://milkomeda.com"},{"name":"Akroma","chainId":200625,"shortName":"aka","networkId":200625,"nativeCurrency":{"name":"Akroma Ether","symbol":"AKA","decimals":18},"rpc":["https://remote.akroma.io"],"faucets":[],"infoURL":"https://akroma.io"},{"name":"Alaya Mainnet","chainId":201018,"shortName":"alaya","networkId":1,"nativeCurrency":{"name":"ATP","symbol":"atp","decimals":18},"rpc":["https://openapi.alaya.network/rpc","wss://openapi.alaya.network/ws"],"faucets":[],"infoURL":"https://www.alaya.network/"},{"name":"Alaya Dev Testnet","chainId":201030,"shortName":"alayadev","networkId":1,"nativeCurrency":{"name":"ATP","symbol":"atp","decimals":18},"rpc":["https://devnetopenapi.alaya.network/rpc","wss://devnetopenapi.alaya.network/ws"],"faucets":["https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c"],"infoURL":"https://www.alaya.network/"},{"name":"Mythical Chain","chainId":201804,"shortName":"myth","networkId":201804,"nativeCurrency":{"name":"Mythos","symbol":"MYTH","decimals":18},"rpc":["https://chain-rpc.mythicalgames.com"],"faucets":[],"infoURL":"https://mythicalgames.com/"},{"name":"Decimal Smart Chain Testnet","chainId":202020,"shortName":"tDSC","networkId":202020,"nativeCurrency":{"name":"Decimal","symbol":"tDEL","decimals":18},"rpc":["https://testnet-val.decimalchain.com/web3/"],"faucets":[],"infoURL":"https://decimalchain.com"},{"name":"Jellie","chainId":202624,"shortName":"twl-jellie","networkId":202624,"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/"},{"name":"PlatON Mainnet","chainId":210425,"shortName":"platon","networkId":1,"nativeCurrency":{"name":"LAT","symbol":"lat","decimals":18},"rpc":["https://openapi2.platon.network/rpc","wss://openapi2.platon.network/ws"],"faucets":[],"infoURL":"https://www.platon.network"},{"name":"Mas Mainnet","chainId":220315,"shortName":"mas","networkId":220315,"nativeCurrency":{"name":"Master Bank","symbol":"MAS","decimals":18},"rpc":["http://node.masnet.ai:8545"],"faucets":[],"infoURL":"https://masterbank.org"},{"name":"Reapchain Mainnet","chainId":221230,"shortName":"reap","networkId":221230,"nativeCurrency":{"name":"Reap","symbol":"REAP","decimals":18},"rpc":["https://rpc.reapchain.org"],"faucets":[],"infoURL":"https://reapchain.com"},{"name":"Reapchain Testnet","chainId":221231,"shortName":"reap-testnet","networkId":221231,"nativeCurrency":{"name":"test-Reap","symbol":"tREAP","decimals":18},"rpc":["https://test-eth.reapchain.org"],"faucets":["http://faucet.reapchain.com"],"infoURL":"https://reapchain.com"},{"name":"Taf ECO Chain Mainnet","chainId":224168,"shortName":"TAFECO","networkId":224168,"nativeCurrency":{"name":"Taf ECO Chain Mainnet","symbol":"TAFECO","decimals":18},"rpc":["https://mainnet.tafchain.com/v1"],"faucets":[],"infoURL":"https://www.tafchain.com"},{"name":"HashKey Chain Testnet","chainId":230315,"shortName":"hsktest","networkId":230315,"nativeCurrency":{"name":"HashKey Token","symbol":"tHSK","decimals":18},"rpc":["https://testnet.hashkeychain/rpc"],"faucets":["https://testnet.hashkeychain/faucet"],"infoURL":"https://www.hashkey.com"},{"name":"Haymo Testnet","chainId":234666,"shortName":"hym","networkId":234666,"nativeCurrency":{"name":"HAYMO","symbol":"HYM","decimals":18},"rpc":["https://testnet1.haymo.network"],"faucets":[],"infoURL":"https://haymoswap.web.app/"},{"name":"ARTIS sigma1","chainId":246529,"shortName":"ats","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","networkId":246785,"nativeCurrency":{"name":"ARTIS tau1 Ether","symbol":"tATS","decimals":18},"rpc":["https://rpc.tau1.artis.network"],"faucets":[],"infoURL":"https://artis.network"},{"name":"Saakuru Testnet","chainId":247253,"shortName":"saakuru-testnet","networkId":247253,"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"rpc":["https://rpc-testnet.saakuru.network"],"faucets":[],"infoURL":"https://saakuru.network"},{"name":"CMP-Mainnet","chainId":256256,"shortName":"cmp-mainnet","networkId":256256,"nativeCurrency":{"name":"Caduceus Token","symbol":"CMP","decimals":18},"rpc":["https://mainnet.block.caduceus.foundation","wss://mainnet.block.caduceus.foundation"],"faucets":[],"infoURL":"https://caduceus.foundation/"},{"name":"Gear Zero Network Testnet","chainId":266256,"shortName":"gz-testnet","networkId":266256,"nativeCurrency":{"name":"Gear Zero Network Native Token","symbol":"GZN","decimals":18},"rpc":["https://gzn-test.linksme.info"],"faucets":[],"infoURL":"https://token.gearzero.ca/testnet"},{"name":"EgonCoin Testnet","chainId":271271,"shortName":"EGONt","networkId":271271,"nativeCurrency":{"name":"EgonCoin","symbol":"EGON","decimals":18},"rpc":["https://rpctest.egcscan.com"],"faucets":["https://faucet.egcscan.com"],"infoURL":"https://egcscan.com"},{"name":"Social Smart Chain Mainnet","chainId":281121,"shortName":"SoChain","networkId":281121,"nativeCurrency":{"name":"SoChain","symbol":"$OC","decimals":18},"rpc":["https://socialsmartchain.digitalnext.business"],"faucets":[],"infoURL":"https://digitalnext.business/SocialSmartChain"},{"name":"Filecoin - Calibration testnet","chainId":314159,"shortName":"filecoin-calibration","networkId":314159,"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"rpc":["https://api.calibration.node.glif.io/rpc/v1","https://rpc.ankr.com/filecoin_testnet","https://filecoin-calibration.chainstacklabs.com/rpc/v1","https://filecoin-calibration.chainup.net/rpc/v1"],"faucets":["https://faucet.calibration.fildev.network/"],"infoURL":"https://filecoin.io"},{"name":"TTcoin Smart Chain Mainnet","chainId":330844,"shortName":"tc","networkId":330844,"nativeCurrency":{"name":"TTcoin","symbol":"TC","decimals":18},"rpc":["https://mainnet-rpc.tscscan.com"],"faucets":["https://faucet.tscscan.com"],"infoURL":"https://ttcoin.info/"},{"name":"Aves Testnet","chainId":333331,"shortName":"avst","networkId":333331,"nativeCurrency":{"name":"AvesT","symbol":"AVST","decimals":18},"rpc":["https://test.rpc.avescoin.io"],"faucets":[],"infoURL":"https://ethereum.org"},{"name":"Oone Chain Testnet","chainId":333777,"shortName":"oonetest","networkId":333777,"nativeCurrency":{"name":"Oone","symbol":"tOONE","decimals":18},"rpc":["https://blockchain-test.adigium.world"],"faucets":["https://apps-test.adigium.com/faucet"],"infoURL":"https://oone.world"},{"name":"Polis Testnet","chainId":333888,"shortName":"sparta","networkId":333888,"nativeCurrency":{"name":"tPolis","symbol":"tPOLIS","decimals":18},"rpc":["https://sparta-rpc.polis.tech"],"faucets":["https://faucet.polis.tech"],"infoURL":"https://polis.tech"},{"name":"Polis Mainnet","chainId":333999,"shortName":"olympus","networkId":333999,"nativeCurrency":{"name":"Polis","symbol":"POLIS","decimals":18},"rpc":["https://rpc.polis.tech"],"faucets":["https://faucet.polis.tech"],"infoURL":"https://polis.tech"},{"name":"Bitfinity Network Testnet","chainId":355113,"shortName":"Bitfinity","networkId":355113,"nativeCurrency":{"name":"BITFINITY","symbol":"BFT","decimals":18},"rpc":["https://testnet.bitfinity.network"],"faucets":["https://bitfinity.network/faucet"],"infoURL":"https://bitfinity.network"},{"name":"HAPchain Testnet","chainId":373737,"shortName":"hap-testnet","networkId":373737,"nativeCurrency":{"name":"HAP","symbol":"HAP","decimals":18},"rpc":["https://jsonrpc-test.hap.land"],"faucets":[],"infoURL":"https://hap.land"},{"name":"Metal C-Chain","chainId":381931,"shortName":"metal","networkId":381931,"nativeCurrency":{"name":"Metal","symbol":"METAL","decimals":18},"rpc":["https://api.metalblockchain.org/ext/bc/C/rpc"],"faucets":[],"infoURL":"https://www.metalblockchain.org/"},{"name":"Metal Tahoe C-Chain","chainId":381932,"shortName":"Tahoe","networkId":381932,"nativeCurrency":{"name":"Metal","symbol":"METAL","decimals":18},"rpc":["https://tahoe.metalblockchain.org/ext/bc/C/rpc"],"faucets":[],"infoURL":"https://www.metalblockchain.org/"},{"name":"Tipboxcoin Mainnet","chainId":404040,"shortName":"TPBXm","networkId":404040,"nativeCurrency":{"name":"Tipboxcoin","symbol":"TPBX","decimals":18},"rpc":["https://mainnet-rpc.tipboxcoin.net"],"faucets":["https://faucet.tipboxcoin.net"],"infoURL":"https://tipboxcoin.net"},{"name":"Kekchain","chainId":420420,"shortName":"KEK","networkId":103090,"nativeCurrency":{"name":"KEK","symbol":"KEK","decimals":18},"rpc":["https://mainnet.kekchain.com"],"faucets":[],"infoURL":"https://kekchain.com"},{"name":"Kekchain (kektest)","chainId":420666,"shortName":"tKEK","networkId":1,"nativeCurrency":{"name":"tKEK","symbol":"tKEK","decimals":18},"rpc":["https://testnet.kekchain.com"],"faucets":[],"infoURL":"https://kekchain.com"},{"name":"Arbitrum Rinkeby","chainId":421611,"shortName":"arb-rinkeby","networkId":421611,"nativeCurrency":{"name":"Arbitrum Rinkeby Ether","symbol":"ETH","decimals":18},"rpc":["https://rinkeby.arbitrum.io/rpc"],"faucets":["http://fauceth.komputing.org?chain=421611&address=${ADDRESS}"],"infoURL":"https://arbitrum.io"},{"name":"Arbitrum Goerli","chainId":421613,"shortName":"arb-goerli","networkId":421613,"nativeCurrency":{"name":"Arbitrum Goerli Ether","symbol":"AGOR","decimals":18},"rpc":["https://goerli-rollup.arbitrum.io/rpc","https://arbitrum-goerli.publicnode.com"],"faucets":[],"infoURL":"https://arbitrum.io/"},{"name":"Fastex Chain testnet","chainId":424242,"shortName":"fastexTestnet","networkId":424242,"nativeCurrency":{"name":"FTN","symbol":"FTN","decimals":18},"rpc":["https://rpc.testnet.fastexchain.com"],"faucets":[],"infoURL":"https://fastex.com"},{"name":"Markr Go","chainId":431140,"shortName":"markr-go","networkId":431140,"nativeCurrency":{"name":"Avalanche","symbol":"AVAX","decimals":18},"rpc":["https://rpc.markr.io/ext/"],"faucets":[],"infoURL":"https://www.markr.io/"},{"name":"Dexalot Subnet Testnet","chainId":432201,"shortName":"dexalot-testnet","networkId":432201,"nativeCurrency":{"name":"Dexalot","symbol":"ALOT","decimals":18},"rpc":["https://subnets.avax.network/dexalot/testnet/rpc"],"faucets":["https://faucet.avax.network/?subnet=dexalot"],"infoURL":"https://dexalot.com"},{"name":"Dexalot Subnet","chainId":432204,"shortName":"dexalot","networkId":432204,"nativeCurrency":{"name":"Dexalot","symbol":"ALOT","decimals":18},"rpc":["https://subnets.avax.network/dexalot/mainnet/rpc"],"faucets":[],"infoURL":"https://dexalot.com"},{"name":"Weelink Testnet","chainId":444900,"shortName":"wlkt","networkId":444900,"nativeCurrency":{"name":"Weelink Chain Token","symbol":"tWLK","decimals":18},"rpc":["https://weelinknode1c.gw002.oneitfarm.com"],"faucets":["https://faucet.weelink.gw002.oneitfarm.com"],"infoURL":"https://weelink.cloud"},{"name":"Patex Sepolia Testnet","chainId":471100,"shortName":"psep","networkId":471100,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://test-rpc.patex.io/"],"faucets":[],"infoURL":"https://patex.io/"},{"name":"OpenChain Mainnet","chainId":474142,"shortName":"oc","networkId":474142,"nativeCurrency":{"name":"OpenCoin","symbol":"OPC","decimals":10},"rpc":["https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539"],"faucets":[],"infoURL":"https://www.openchain.live"},{"name":"CMP-Testnet","chainId":512512,"shortName":"cmp","networkId":512512,"nativeCurrency":{"name":"Caduceus Testnet Token","symbol":"CMP","decimals":18},"rpc":["https://galaxy.block.caduceus.foundation","wss://galaxy.block.caduceus.foundation"],"faucets":["https://dev.caduceus.foundation/testNetwork"],"infoURL":"https://caduceus.foundation/"},{"name":"ethereum Fair","chainId":513100,"shortName":"ethf","networkId":513100,"nativeCurrency":{"name":"EthereumFair","symbol":"ETHF","decimals":18},"rpc":["https://rpc.etherfair.org"],"faucets":[],"infoURL":"https://etherfair.org"},{"name":"Scroll Sepolia Testnet","chainId":534351,"shortName":"scr-sepolia","networkId":534351,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://sepolia-rpc.scroll.io/"],"faucets":[],"infoURL":"https://scroll.io"},{"name":"Scroll","chainId":534352,"shortName":"scr","networkId":534352,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.scroll.io"],"faucets":[],"infoURL":"https://scroll.io"},{"name":"Scroll Alpha Testnet","chainId":534353,"shortName":"scr-alpha","networkId":534353,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://alpha-rpc.scroll.io/l2"],"faucets":[],"infoURL":"https://scroll.io"},{"name":"Scroll Pre-Alpha Testnet","chainId":534354,"shortName":"scr-prealpha","networkId":534354,"nativeCurrency":{"name":"Ether","symbol":"TSETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://scroll.io"},{"name":"Shinarium Beta","chainId":534849,"shortName":"shi","networkId":534849,"nativeCurrency":{"name":"Shina Inu","symbol":"SHI","decimals":18},"rpc":["https://rpc.shinarium.org"],"faucets":["https://faucet.shinarium.org"],"infoURL":"https://shinarium.org"},{"name":"BeanEco SmartChain","chainId":535037,"shortName":"BESC","networkId":535037,"nativeCurrency":{"name":"BeanEco SmartChain","symbol":"BESC","decimals":18},"rpc":["https://mainnet-rpc.bescscan.io"],"faucets":["faucet.bescscan.ion"],"infoURL":"besceco.finance"},{"name":"Bear Network Chain Mainnet","chainId":641230,"shortName":"BRNKC","networkId":641230,"nativeCurrency":{"name":"Bear Network Chain Native Token","symbol":"BRNKC","decimals":18},"rpc":["https://brnkc-mainnet.bearnetwork.net","https://brnkc-mainnet1.bearnetwork.net"],"faucets":[],"infoURL":"https://bearnetwork.net"},{"name":"ALL Mainnet","chainId":651940,"shortName":"ALL","networkId":651940,"nativeCurrency":{"name":"ALL","symbol":"ALL","decimals":18},"rpc":["https://mainnet-rpc.alltra.global"],"faucets":[],"infoURL":"https://alltra.world"},{"name":"Vision - Vpioneer Test Chain","chainId":666666,"shortName":"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"},{"name":"Bear Network Chain Testnet","chainId":751230,"shortName":"BRNKCTEST","networkId":751230,"nativeCurrency":{"name":"Bear Network Chain Testnet Token","symbol":"tBRNKC","decimals":18},"rpc":["https://brnkc-test.bearnetwork.net"],"faucets":["https://faucet.bearnetwork.net"],"infoURL":"https://bearnetwork.net"},{"name":"OctaSpace","chainId":800001,"shortName":"octa","networkId":800001,"nativeCurrency":{"name":"OctaSpace","symbol":"OCTA","decimals":18},"rpc":["https://rpc.octa.space","wss://rpc.octa.space"],"faucets":[],"infoURL":"https://octa.space"},{"name":"CURVE Mainnet","chainId":827431,"shortName":"CURVEm","networkId":827431,"nativeCurrency":{"name":"Curve","symbol":"CURVE","decimals":18},"rpc":["https://mainnet-rpc.curvescan.io"],"faucets":[],"infoURL":"https://curvescan.io"},{"name":"4GoodNetwork","chainId":846000,"shortName":"bloqs4good","networkId":846000,"nativeCurrency":{"name":"APTA","symbol":"APTA","decimals":18},"rpc":["https://chain.deptofgood.com"],"faucets":[],"infoURL":"https://bloqs4good.com"},{"name":"Vision - Mainnet","chainId":888888,"shortName":"vision","networkId":888888,"nativeCurrency":{"name":"VS","symbol":"VS","decimals":18},"rpc":["https://infragrid.v.network/ethereum/compatible"],"faucets":[],"infoURL":"https://www.v.network"},{"name":"Posichain Mainnet Shard 0","chainId":900000,"shortName":"psc-s0","networkId":900000,"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"rpc":["https://api.posichain.org","https://api.s0.posichain.org"],"faucets":["https://faucet.posichain.org/"],"infoURL":"https://posichain.org"},{"name":"Posichain Testnet Shard 0","chainId":910000,"shortName":"psc-t-s0","networkId":910000,"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"rpc":["https://api.s0.t.posichain.org"],"faucets":["https://faucet.posichain.org/"],"infoURL":"https://posichain.org"},{"name":"Posichain Devnet Shard 0","chainId":920000,"shortName":"psc-d-s0","networkId":920000,"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"rpc":["https://api.s0.d.posichain.org"],"faucets":["https://faucet.posichain.org/"],"infoURL":"https://posichain.org"},{"name":"Posichain Devnet Shard 1","chainId":920001,"shortName":"psc-d-s1","networkId":920001,"nativeCurrency":{"name":"Posichain Native Token","symbol":"POSI","decimals":18},"rpc":["https://api.s1.d.posichain.org"],"faucets":["https://faucet.posichain.org/"],"infoURL":"https://posichain.org"},{"name":"FNCY Testnet","chainId":923018,"shortName":"tFNCY","networkId":923018,"nativeCurrency":{"name":"FNCY","symbol":"FNCY","decimals":18},"rpc":["https://fncy-testnet-seed.fncy.world"],"faucets":["https://faucet-testnet.fncy.world"],"infoURL":"https://fncyscan-testnet.fncy.world"},{"name":"Eluvio Content Fabric","chainId":955305,"shortName":"elv","networkId":955305,"nativeCurrency":{"name":"ELV","symbol":"ELV","decimals":18},"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":[],"infoURL":"https://eluv.io"},{"name":"Etho Protocol","chainId":1313114,"shortName":"etho","networkId":1313114,"nativeCurrency":{"name":"Etho Protocol","symbol":"ETHO","decimals":18},"rpc":["https://rpc.ethoprotocol.com"],"faucets":[],"infoURL":"https://ethoprotocol.com"},{"name":"Xerom","chainId":1313500,"shortName":"xero","networkId":1313500,"nativeCurrency":{"name":"Xerom Ether","symbol":"XERO","decimals":18},"rpc":["https://rpc.xerom.org"],"faucets":[],"infoURL":"https://xerom.org"},{"name":"Kintsugi","chainId":1337702,"shortName":"kintsugi","networkId":1337702,"nativeCurrency":{"name":"kintsugi Ethere","symbol":"kiETH","decimals":18},"rpc":["https://rpc.kintsugi.themerge.dev"],"faucets":["http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}","https://faucet.kintsugi.themerge.dev"],"infoURL":"https://kintsugi.themerge.dev/"},{"name":"Kiln","chainId":1337802,"shortName":"kiln","networkId":1337802,"nativeCurrency":{"name":"Testnet ETH","symbol":"ETH","decimals":18},"rpc":["https://rpc.kiln.themerge.dev"],"faucets":["https://faucet.kiln.themerge.dev","https://kiln-faucet.pk910.de","https://kilnfaucet.com"],"infoURL":"https://kiln.themerge.dev/"},{"name":"Zhejiang","chainId":1337803,"shortName":"zhejiang","networkId":1337803,"nativeCurrency":{"name":"Testnet ETH","symbol":"ETH","decimals":18},"rpc":["https://rpc.zhejiang.ethpandaops.io"],"faucets":["https://faucet.zhejiang.ethpandaops.io","https://zhejiang-faucet.pk910.de"],"infoURL":"https://zhejiang.ethpandaops.io"},{"name":"Plian Mainnet Main","chainId":2099156,"shortName":"plian-mainnet","networkId":2099156,"nativeCurrency":{"name":"Plian Token","symbol":"PI","decimals":18},"rpc":["https://mainnet.plian.io/pchain"],"faucets":[],"infoURL":"https://plian.org/"},{"name":"PlatON Dev Testnet Deprecated","chainId":2203181,"shortName":"platondev","networkId":1,"nativeCurrency":{"name":"LAT","symbol":"lat","decimals":18},"rpc":["https://devnetopenapi2.platon.network/rpc","wss://devnetopenapi2.platon.network/ws"],"faucets":["https://devnet2faucet.platon.network/faucet"],"infoURL":"https://www.platon.network"},{"name":"PlatON Dev Testnet2","chainId":2206132,"shortName":"platondev2","networkId":1,"nativeCurrency":{"name":"LAT","symbol":"lat","decimals":18},"rpc":["https://devnet2openapi.platon.network/rpc","wss://devnet2openapi.platon.network/ws"],"faucets":["https://devnet2faucet.platon.network/faucet"],"infoURL":"https://www.platon.network"},{"name":"Filecoin - Butterfly testnet","chainId":3141592,"shortName":"filecoin-butterfly","networkId":3141592,"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"rpc":[],"faucets":["https://faucet.butterfly.fildev.network"],"infoURL":"https://filecoin.io"},{"name":"Manta Pacific Testnet","chainId":3441005,"shortName":"manta","networkId":3441005,"nativeCurrency":{"name":"Manta","symbol":"MANTA","decimals":18},"rpc":["https://manta-testnet.calderachain.xyz/http"],"faucets":[],"infoURL":"https://manta-testnet.caldera.dev/"},{"name":"AltLayer Zero Gas Network","chainId":4000003,"shortName":"alt-zerogas","networkId":4000003,"nativeCurrency":{"name":"ZERO","symbol":"ZERO","decimals":18},"rpc":["https://zero.alt.technology"],"faucets":[],"infoURL":"https://altlayer.io"},{"name":"Worlds Caldera","chainId":4281033,"shortName":"worldscal","networkId":4281033,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://worlds-test.calderachain.xyz/http"],"faucets":[],"infoURL":"https://caldera.xyz/"},{"name":"MXC Wannsee zkEVM Testnet","chainId":5167003,"shortName":"MXC","networkId":5167003,"nativeCurrency":{"name":"MXC Wannsee zkEVM Testnet","symbol":"MXC","decimals":18},"rpc":["https://wannsee-rpc.mxc.com"],"faucets":[],"infoURL":"https://wannsee.mxc.com/docs/intro"},{"name":"Imversed Mainnet","chainId":5555555,"shortName":"imversed","networkId":5555555,"nativeCurrency":{"name":"Imversed Token","symbol":"IMV","decimals":18},"rpc":["https://jsonrpc.imversed.network","https://ws-jsonrpc.imversed.network"],"faucets":[],"infoURL":"https://imversed.com"},{"name":"Imversed Testnet","chainId":5555558,"shortName":"imversed-testnet","networkId":5555558,"nativeCurrency":{"name":"Imversed Token","symbol":"IMV","decimals":18},"rpc":["https://jsonrpc-test.imversed.network","https://ws-jsonrpc-test.imversed.network"],"faucets":[],"infoURL":"https://imversed.com"},{"name":"Saakuru Mainnet","chainId":7225878,"shortName":"saakuru","networkId":7225878,"nativeCurrency":{"name":"OAS","symbol":"OAS","decimals":18},"rpc":["https://rpc.saakuru.network"],"faucets":[],"infoURL":"https://saakuru.network"},{"name":"OpenVessel","chainId":7355310,"shortName":"vsl","networkId":7355310,"nativeCurrency":{"name":"Vessel ETH","symbol":"VETH","decimals":18},"rpc":["https://mainnet-external.openvessel.io"],"faucets":[],"infoURL":"https://www.openvessel.io"},{"name":"QL1 Testnet","chainId":7668378,"shortName":"tqom","networkId":7668378,"nativeCurrency":{"name":"Shiba Predator","symbol":"QOM","decimals":18},"rpc":["https://rpc.testnet.qom.one"],"faucets":["https://faucet.qom.one"],"infoURL":"https://qom.one"},{"name":"Musicoin","chainId":7762959,"shortName":"music","networkId":7762959,"nativeCurrency":{"name":"Musicoin","symbol":"MUSIC","decimals":18},"rpc":["https://mewapi.musicoin.tw"],"faucets":[],"infoURL":"https://musicoin.tw"},{"name":"Zora","chainId":7777777,"shortName":"zora","networkId":7777777,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.zora.energy/"],"faucets":[],"infoURL":"https://zora.energy"},{"name":"Plian Mainnet Subchain 1","chainId":8007736,"shortName":"plian-mainnet-l2","networkId":8007736,"nativeCurrency":{"name":"Plian Token","symbol":"PI","decimals":18},"rpc":["https://mainnet.plian.io/child_0"],"faucets":[],"infoURL":"https://plian.org"},{"name":"HAPchain","chainId":8794598,"shortName":"hap","networkId":8794598,"nativeCurrency":{"name":"HAP","symbol":"HAP","decimals":18},"rpc":["https://jsonrpc.hap.land"],"faucets":[],"infoURL":"https://hap.land"},{"name":"Quarix Testnet","chainId":8888881,"shortName":"quarix-testnet","networkId":8888881,"nativeCurrency":{"name":"Q","symbol":"Q","decimals":18},"rpc":[],"faucets":[],"infoURL":""},{"name":"Quarix","chainId":8888888,"shortName":"quarix","networkId":8888888,"nativeCurrency":{"name":"Q","symbol":"Q","decimals":18},"rpc":[],"faucets":[],"infoURL":""},{"name":"Plian Testnet Subchain 1","chainId":10067275,"shortName":"plian-testnet-l2","networkId":10067275,"nativeCurrency":{"name":"Plian Token","symbol":"TPI","decimals":18},"rpc":["https://testnet.plian.io/child_test"],"faucets":[],"infoURL":"https://plian.org/"},{"name":"Soverun Mainnet","chainId":10101010,"shortName":"SVRNm","networkId":10101010,"nativeCurrency":{"name":"Soverun","symbol":"SVRN","decimals":18},"rpc":["https://mainnet-rpc.soverun.com"],"faucets":["https://faucet.soverun.com"],"infoURL":"https://soverun.com"},{"name":"Sepolia","chainId":11155111,"shortName":"sep","networkId":11155111,"nativeCurrency":{"name":"Sepolia Ether","symbol":"ETH","decimals":18},"rpc":["https://rpc.sepolia.org","https://rpc2.sepolia.org","https://rpc-sepolia.rockx.com","https://rpc.sepolia.ethpandaops.io","https://sepolia.infura.io/v3/${INFURA_API_KEY}","wss://sepolia.infura.io/v3/${INFURA_API_KEY}"],"faucets":["http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}"],"infoURL":"https://sepolia.otterscan.io"},{"name":"PepChain Churchill","chainId":13371337,"shortName":"tpep","networkId":13371337,"nativeCurrency":{"name":"PepChain Churchill Ether","symbol":"TPEP","decimals":18},"rpc":["https://churchill-rpc.pepchain.io"],"faucets":[],"infoURL":"https://pepchain.io"},{"name":"Anduschain Mainnet","chainId":14288640,"shortName":"anduschain-mainnet","networkId":14288640,"nativeCurrency":{"name":"DAON","symbol":"DEB","decimals":18},"rpc":["https://rpc.anduschain.io/rpc","wss://rpc.anduschain.io/ws"],"faucets":[],"infoURL":"https://anduschain.io/"},{"name":"Plian Testnet Main","chainId":16658437,"shortName":"plian-testnet","networkId":16658437,"nativeCurrency":{"name":"Plian Testnet Token","symbol":"TPI","decimals":18},"rpc":["https://testnet.plian.io/testnet"],"faucets":[],"infoURL":"https://plian.org"},{"name":"IOLite","chainId":18289463,"shortName":"ilt","networkId":18289463,"nativeCurrency":{"name":"IOLite Ether","symbol":"ILT","decimals":18},"rpc":["https://net.iolite.io"],"faucets":[],"infoURL":"https://iolite.io"},{"name":"SmartMesh Mainnet","chainId":20180430,"shortName":"spectrum","networkId":1,"nativeCurrency":{"name":"SmartMesh Native Token","symbol":"SMT","decimals":18},"rpc":["https://jsonapi1.smartmesh.cn"],"faucets":[],"infoURL":"https://smartmesh.io"},{"name":"quarkblockchain","chainId":20181205,"shortName":"qki","networkId":20181205,"nativeCurrency":{"name":"quarkblockchain Native Token","symbol":"QKI","decimals":18},"rpc":["https://hz.rpc.qkiscan.cn","https://jp.rpc.qkiscan.io"],"faucets":[],"infoURL":"https://quarkblockchain.org/"},{"name":"Pego Network","chainId":20201022,"shortName":"pg","networkId":20201022,"nativeCurrency":{"name":"Pego Native Token","symbol":"PG","decimals":18},"rpc":["https://pegorpc.com","https://node1.pegorpc.com","https://node2.pegorpc.com","https://node3.pegorpc.com"],"faucets":[],"infoURL":"https://pego.network"},{"name":"Excelon Mainnet","chainId":22052002,"shortName":"xlon","networkId":22052002,"nativeCurrency":{"name":"Excelon","symbol":"xlon","decimals":18},"rpc":["https://edgewallet1.xlon.org/"],"faucets":[],"infoURL":"https://xlon.org"},{"name":"Excoincial Chain Volta-Testnet","chainId":27082017,"shortName":"exlvolta","networkId":27082017,"nativeCurrency":{"name":"TExlcoin","symbol":"TEXL","decimals":18},"rpc":["https://testnet-rpc.exlscan.com"],"faucets":["https://faucet.exlscan.com"],"infoURL":""},{"name":"Excoincial Chain Mainnet","chainId":27082022,"shortName":"exl","networkId":27082022,"nativeCurrency":{"name":"Exlcoin","symbol":"EXL","decimals":18},"rpc":["https://rpc.exlscan.com"],"faucets":[],"infoURL":""},{"name":"Auxilium Network Mainnet","chainId":28945486,"shortName":"auxi","networkId":28945486,"nativeCurrency":{"name":"Auxilium coin","symbol":"AUX","decimals":18},"rpc":["https://rpc.auxilium.global"],"faucets":[],"infoURL":"https://auxilium.global"},{"name":"Flachain Mainnet","chainId":29032022,"shortName":"fla","networkId":29032022,"nativeCurrency":{"name":"Flacoin","symbol":"FLA","decimals":18},"rpc":["https://flachain.flaexchange.top/"],"faucets":[],"infoURL":"https://www.flaexchange.top"},{"name":"Filecoin - Local testnet","chainId":31415926,"shortName":"filecoin-local","networkId":31415926,"nativeCurrency":{"name":"testnet filecoin","symbol":"tFIL","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://filecoin.io"},{"name":"Joys Digital Mainnet","chainId":35855456,"shortName":"JOYS","networkId":35855456,"nativeCurrency":{"name":"JOYS","symbol":"JOYS","decimals":18},"rpc":["https://node.joys.digital"],"faucets":[],"infoURL":"https://joys.digital"},{"name":"maistestsubnet","chainId":43214913,"shortName":"mais","networkId":43214913,"nativeCurrency":{"name":"maistestsubnet","symbol":"MAI","decimals":18},"rpc":["http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc"],"faucets":[],"infoURL":""},{"name":"Aquachain","chainId":61717561,"shortName":"aqua","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":"Autonity Bakerloo (Thames) Testnet","chainId":65010000,"shortName":"bakerloo-0","networkId":65010000,"nativeCurrency":{"name":"Bakerloo Auton","symbol":"ATN","decimals":18},"rpc":["https://rpc1.bakerloo.autonity.org/","wss://rpc1.bakerloo.autonity.org/ws/"],"faucets":["https://faucet.autonity.org/"],"infoURL":"https://autonity.org/"},{"name":"Autonity Piccadilly (Thames) Testnet","chainId":65100000,"shortName":"piccadilly-0","networkId":65100000,"nativeCurrency":{"name":"Piccadilly Auton","symbol":"ATN","decimals":18},"rpc":["https://rpc1.piccadilly.autonity.org/","wss://rpc1.piccadilly.autonity.org/ws/"],"faucets":["https://faucet.autonity.org/"],"infoURL":"https://autonity.org/"},{"name":"T.E.A.M Blockchain","chainId":88888888,"shortName":"team","networkId":88888888,"nativeCurrency":{"name":"TEAM","symbol":"$TEAM","decimals":18},"rpc":["https://rpc.teamblockchain.team"],"faucets":[],"infoURL":"https://teamblockchain.team"},{"name":"Joys Digital TestNet","chainId":99415706,"shortName":"TOYS","networkId":99415706,"nativeCurrency":{"name":"TOYS","symbol":"TOYS","decimals":18},"rpc":["https://toys.joys.cash/"],"faucets":["https://faucet.joys.digital/"],"infoURL":"https://joys.digital"},{"name":"Gather Mainnet Network","chainId":192837465,"shortName":"GTH","networkId":192837465,"nativeCurrency":{"name":"Gather","symbol":"GTH","decimals":18},"rpc":["https://mainnet.gather.network"],"faucets":[],"infoURL":"https://gather.network"},{"name":"Kanazawa","chainId":222000222,"shortName":"kanazawa","networkId":222000222,"nativeCurrency":{"name":"gMeld","symbol":"gMELD","decimals":18},"rpc":["https://subnets.avax.network/meld/testnet/rpc"],"faucets":[],"infoURL":"https://meld.com"},{"name":"Neon EVM DevNet","chainId":245022926,"shortName":"neonevm-devnet","networkId":245022926,"nativeCurrency":{"name":"Neon","symbol":"NEON","decimals":18},"rpc":["https://devnet.neonevm.org"],"faucets":["https://neonfaucet.org"],"infoURL":"https://neon-labs.org"},{"name":"Neon EVM MainNet","chainId":245022934,"shortName":"neonevm-mainnet","networkId":245022934,"nativeCurrency":{"name":"Neon","symbol":"NEON","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://neonevm.org"},{"name":"Neon EVM TestNet","chainId":245022940,"shortName":"neonevm-testnet","networkId":245022940,"nativeCurrency":{"name":"Neon","symbol":"NEON","decimals":18},"rpc":["https://testnet.neonevm.org"],"faucets":[],"infoURL":"https://neon-labs.org"},{"name":"Razor Skale Chain","chainId":278611351,"shortName":"razor","networkId":278611351,"nativeCurrency":{"name":"sFuel","symbol":"SFUEL","decimals":18},"rpc":["https://mainnet.skalenodes.com/v1/turbulent-unique-scheat"],"faucets":["https://faucet.razorscan.io/"],"infoURL":"https://razor.network"},{"name":"OneLedger Mainnet","chainId":311752642,"shortName":"oneledger","networkId":311752642,"nativeCurrency":{"name":"OLT","symbol":"OLT","decimals":18},"rpc":["https://mainnet-rpc.oneledger.network"],"faucets":[],"infoURL":"https://oneledger.io"},{"name":"Meld","chainId":333000333,"shortName":"meld","networkId":333000333,"nativeCurrency":{"name":"gMeld","symbol":"gMELD","decimals":18},"rpc":["https://subnets.avax.network/meld/mainnet/rpc"],"faucets":[],"infoURL":"https://meld.com"},{"name":"Calypso NFT Hub (SKALE Testnet)","chainId":344106930,"shortName":"calypso-testnet","networkId":344106930,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"rpc":["https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar"],"faucets":["https://sfuel.dirtroad.dev/staging"],"infoURL":"https://calypsohub.network/"},{"name":"Gather Testnet Network","chainId":356256156,"shortName":"tGTH","networkId":356256156,"nativeCurrency":{"name":"Gather","symbol":"GTH","decimals":18},"rpc":["https://testnet.gather.network"],"faucets":[],"infoURL":"https://gather.network"},{"name":"Gather Devnet Network","chainId":486217935,"shortName":"dGTH","networkId":486217935,"nativeCurrency":{"name":"Gather","symbol":"GTH","decimals":18},"rpc":["https://devnet.gather.network"],"faucets":[],"infoURL":"https://gather.network"},{"name":"Nebula Staging","chainId":503129905,"shortName":"nebula-staging","networkId":503129905,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"rpc":["https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird","wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird"],"faucets":[],"infoURL":"https://nebulachain.io/"},{"name":"IPOS Network","chainId":1122334455,"shortName":"ipos","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":"CyberdeckNet","chainId":1146703430,"shortName":"cyb","networkId":1146703430,"nativeCurrency":{"name":"Cyb","symbol":"CYB","decimals":18},"rpc":["http://cybeth1.cyberdeck.eu:8545"],"faucets":[],"infoURL":"https://cyberdeck.eu"},{"name":"HUMAN Protocol","chainId":1273227453,"shortName":"human-mainnet","networkId":1273227453,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"rpc":["https://mainnet.skalenodes.com/v1/wan-red-ain"],"faucets":["https://dashboard.humanprotocol.org/faucet"],"infoURL":"https://www.humanprotocol.org"},{"name":"Aurora Mainnet","chainId":1313161554,"shortName":"aurora","networkId":1313161554,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://mainnet.aurora.dev"],"faucets":[],"infoURL":"https://aurora.dev"},{"name":"Aurora Testnet","chainId":1313161555,"shortName":"aurora-testnet","networkId":1313161555,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":["https://testnet.aurora.dev/"],"faucets":[],"infoURL":"https://aurora.dev"},{"name":"Aurora Betanet","chainId":1313161556,"shortName":"aurora-betanet","networkId":1313161556,"nativeCurrency":{"name":"Ether","symbol":"ETH","decimals":18},"rpc":[],"faucets":[],"infoURL":"https://aurora.dev"},{"name":"Chaos (SKALE Testnet)","chainId":1351057110,"shortName":"chaos-tenet","networkId":1351057110,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"rpc":["https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix"],"faucets":["https://sfuel.skale.network/staging/chaos"],"infoURL":"https://docs.skale.network/develop/"},{"name":"RaptorChain","chainId":1380996178,"shortName":"rptr","networkId":1380996178,"nativeCurrency":{"name":"Raptor","symbol":"RPTR","decimals":18},"rpc":["https://rpc.raptorchain.io/web3"],"faucets":[],"infoURL":"https://raptorchain.io"},{"name":"Nebula Mainnet","chainId":1482601649,"shortName":"nebula-mainnet","networkId":1482601649,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"rpc":["https://mainnet.skalenodes.com/v1/green-giddy-denebola","wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola"],"faucets":[],"infoURL":"https://nebulachain.io/"},{"name":"Calypso NFT Hub (SKALE)","chainId":1564830818,"shortName":"calypso-mainnet","networkId":1564830818,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"rpc":["https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague"],"faucets":["https://sfuel.dirtroad.dev"],"infoURL":"https://calypsohub.network/"},{"name":"Harmony Mainnet Shard 0","chainId":1666600000,"shortName":"hmy-s0","networkId":1666600000,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.harmony.one","https://a.api.s0.t.hmny.io","https://api.s0.t.hmny.io","https://rpc.ankr.com/harmony","https://harmony.api.onfinality.io/public","https://1rpc.io/one"],"faucets":[],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Mainnet Shard 1","chainId":1666600001,"shortName":"hmy-s1","networkId":1666600001,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s1.t.hmny.io"],"faucets":[],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Mainnet Shard 2","chainId":1666600002,"shortName":"hmy-s2","networkId":1666600002,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s2.t.hmny.io"],"faucets":[],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Mainnet Shard 3","chainId":1666600003,"shortName":"hmy-s3","networkId":1666600003,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s3.t.hmny.io"],"faucets":[],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Testnet Shard 0","chainId":1666700000,"shortName":"hmy-b-s0","networkId":1666700000,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s0.b.hmny.io"],"faucets":["https://faucet.pops.one"],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Testnet Shard 1","chainId":1666700001,"shortName":"hmy-b-s1","networkId":1666700001,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s1.b.hmny.io"],"faucets":["https://faucet.pops.one"],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Devnet Shard 0","chainId":1666900000,"shortName":"hmy-ps-s0","networkId":1666900000,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s0.ps.hmny.io"],"faucets":[],"infoURL":"https://www.harmony.one/"},{"name":"Harmony Devnet Shard 1","chainId":1666900001,"shortName":"hmy-ps-s1","networkId":1666900001,"nativeCurrency":{"name":"ONE","symbol":"ONE","decimals":18},"rpc":["https://api.s1.ps.hmny.io"],"faucets":[],"infoURL":"https://www.harmony.one/"},{"name":"DataHopper","chainId":2021121117,"shortName":"hop","networkId":2021121117,"nativeCurrency":{"name":"DataHoppers","symbol":"HOP","decimals":18},"rpc":["https://23.92.21.121:8545"],"faucets":[],"infoURL":"https://www.DataHopper.com"},{"name":"Europa SKALE Chain","chainId":2046399126,"shortName":"europa","networkId":2046399126,"nativeCurrency":{"name":"sFUEL","symbol":"sFUEL","decimals":18},"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/"],"infoURL":"https://europahub.network/"},{"name":"Pirl","chainId":3125659152,"shortName":"pirl","networkId":3125659152,"nativeCurrency":{"name":"Pirl Ether","symbol":"PIRL","decimals":18},"rpc":["https://wallrpc.pirl.io"],"faucets":[],"infoURL":"https://pirl.io"},{"name":"OneLedger Testnet Frankenstein","chainId":4216137055,"shortName":"frankenstein","networkId":4216137055,"nativeCurrency":{"name":"OLT","symbol":"OLT","decimals":18},"rpc":["https://frankenstein-rpc.oneledger.network"],"faucets":["https://frankenstein-faucet.oneledger.network"],"infoURL":"https://oneledger.io"},{"name":"Palm Testnet","chainId":11297108099,"shortName":"tpalm","networkId":11297108099,"nativeCurrency":{"name":"PALM","symbol":"PALM","decimals":18},"rpc":["https://palm-testnet.infura.io/v3/${INFURA_API_KEY}"],"faucets":[],"infoURL":"https://palm.io"},{"name":"Palm","chainId":11297108109,"shortName":"palm","networkId":11297108109,"nativeCurrency":{"name":"PALM","symbol":"PALM","decimals":18},"rpc":["https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}"],"faucets":[],"infoURL":"https://palm.io"},{"name":"Alphabet Mainnet","chainId":111222333444,"shortName":"alphabet","networkId":111222333444,"nativeCurrency":{"name":"ALT","symbol":"ALT","decimals":18},"rpc":["https://londonpublic.alphabetnetwork.org","wss://londonpublic.alphabetnetwork.org/ws/","https://main-rpc.com","wss://main-rpc.com/ws/"],"faucets":[],"infoURL":"https://alphabetnetwork.org"},{"name":"Ntity Mainnet","chainId":197710212030,"shortName":"ntt","networkId":197710212030,"nativeCurrency":{"name":"Ntity","symbol":"NTT","decimals":18},"rpc":["https://rpc.ntity.io"],"faucets":[],"infoURL":"https://ntity.io"},{"name":"Haradev Testnet","chainId":197710212031,"shortName":"ntt-haradev","networkId":197710212031,"nativeCurrency":{"name":"Ntity Haradev","symbol":"NTTH","decimals":18},"rpc":["https://blockchain.haradev.com"],"faucets":[],"infoURL":"https://ntity.io"},{"name":"Zeniq","chainId":383414847825,"shortName":"zeniq","networkId":383414847825,"nativeCurrency":{"name":"Zeniq","symbol":"ZENIQ","decimals":18},"rpc":["https://smart.zeniq.network:9545"],"faucets":["https://faucet.zeniq.net/"],"infoURL":"https://www.zeniq.dev/"},{"name":"PDC Mainnet","chainId":666301171999,"shortName":"ipdc","networkId":666301171999,"nativeCurrency":{"name":"PDC","symbol":"PDC","decimals":18},"rpc":["https://mainnet.ipdc.io/"],"faucets":[],"infoURL":"https://ipdc.io"},{"name":"Molereum Network","chainId":6022140761023,"shortName":"mole","networkId":6022140761023,"nativeCurrency":{"name":"Molereum Ether","symbol":"MOLE","decimals":18},"rpc":["https://molereum.jdubedition.com"],"faucets":[],"infoURL":"https://github.com/Jdubedition/molereum"},{"name":"Godwoken Testnet (V1)","chainId":868455272153094,"shortName":"gw-testnet-v1-deprecated","networkId":868455272153094,"nativeCurrency":{"name":"CKB","symbol":"CKB","decimals":8},"rpc":["https://godwoken-testnet-web3-v1-rpc.ckbapp.dev"],"faucets":["https://homura.github.io/light-godwoken"],"infoURL":"https://www.nervos.org"}] diff --git a/ui/src/lib/components/Snippets.svelte b/ui/src/lib/components/Snippets.svelte deleted file mode 100644 index acfd542..0000000 --- a/ui/src/lib/components/Snippets.svelte +++ /dev/null @@ -1,118 +0,0 @@ - - -

Use the API

-

Use the API to fetch the ABI of any contract on any chain.

- - Curl - Typescript - Go - Python - Ruby - Rust - - - {#if tabSet === 0} - - {:else if tabSet === 1} - response.json()) - .then(data => console.log(data)); -`} - /> - {:else if tabSet === 2} - - {:else if tabSet === 3} - - {:else if tabSet === 4} - - {:else if tabSet === 5} - - {/if} - - -
diff --git a/ui/src/routes/+layout.svelte b/ui/src/routes/+layout.svelte deleted file mode 100644 index cd5a437..0000000 --- a/ui/src/routes/+layout.svelte +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - -

- AnyABI - AnyABI -

-
- - - - - -
-
-
-
-
-
- AnyABI - AnyABI -
-

The easiest way to fetch an ABI.

-

- Quickly grab the ABI for ANY* EVM smart contract - on - ANY EVM chain. -

-
- * ABIs can only be retrieved for contracts that are verified on a block explorer like - Etherscan or on Sourcify -
-
-
-
- - - - -
diff --git a/ui/src/routes/+layout.ts b/ui/src/routes/+layout.ts deleted file mode 100644 index 62ad4e4..0000000 --- a/ui/src/routes/+layout.ts +++ /dev/null @@ -1 +0,0 @@ -export const ssr = false diff --git a/ui/src/routes/+page.svelte b/ui/src/routes/+page.svelte deleted file mode 100644 index 56b3be0..0000000 --- a/ui/src/routes/+page.svelte +++ /dev/null @@ -1,103 +0,0 @@ - - -
- -

Search for an ABI

- -
- -
-
- - -
- {#if abi} -
- {#await abi} -
- -
- {:then result} -
-

{result.name}

- -
- {:catch e} -
- -
- {/await} -
- {/if} -
diff --git a/ui/static/favicon.png b/ui/static/favicon.png deleted file mode 100644 index f0fc227..0000000 Binary files a/ui/static/favicon.png and /dev/null differ diff --git a/ui/static/thumbnail.png b/ui/static/thumbnail.png deleted file mode 100644 index edac5dc..0000000 Binary files a/ui/static/thumbnail.png and /dev/null differ diff --git a/ui/svelte.config.js b/ui/svelte.config.js deleted file mode 100644 index 11b16e6..0000000 --- a/ui/svelte.config.js +++ /dev/null @@ -1,18 +0,0 @@ -import adapter from '@sveltejs/adapter-static' -import { vitePreprocess } from '@sveltejs/kit/vite' - -/** @type {import('@sveltejs/kit').Config} */ -const config = { - kit: { - adapter: adapter({ - fallback: 'index.html', - }), - }, - preprocess: [ - vitePreprocess({ - postcss: true, - }), - ], -} - -export default config diff --git a/ui/tailwind.config.cjs b/ui/tailwind.config.cjs deleted file mode 100644 index 5997972..0000000 --- a/ui/tailwind.config.cjs +++ /dev/null @@ -1,17 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - darkMode: 'class', - content: [ - './src/**/*.{html,js,svelte,ts}', - require('path').join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}'), - ], - theme: { - extend: {}, - }, - plugins: [ - require('@tailwindcss/forms'), - require('@tailwindcss/typography'), - require('@tailwindcss/line-clamp'), - ...require('@skeletonlabs/skeleton/tailwind/skeleton.cjs')(), - ], -} diff --git a/ui/tsconfig.json b/ui/tsconfig.json deleted file mode 100644 index 794b95b..0000000 --- a/ui/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "./.svelte-kit/tsconfig.json", - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strict": true - } - // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias - // - // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes - // from the referenced tsconfig.json - TypeScript does not merge them in -} diff --git a/ui/ui.go b/ui/ui.go deleted file mode 100644 index 6f2ad14..0000000 --- a/ui/ui.go +++ /dev/null @@ -1,14 +0,0 @@ -// Package ui handles the PocketBase Admin frontend embedding. -package ui - -import ( - "embed" - - "github.com/labstack/echo/v5" -) - -//go:embed all:build -var buildDir embed.FS - -// BuildDirFS contains the embedded dist directory files (without the "build" prefix) -var BuildDirFS = echo.MustSubFS(buildDir, "build") diff --git a/ui/vite.config.ts b/ui/vite.config.ts deleted file mode 100644 index dd1b8b7..0000000 --- a/ui/vite.config.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { sveltekit } from '@sveltejs/kit/vite' -import { defineConfig } from 'vite' - -export default defineConfig({ - plugins: [sveltekit()], -})