diff --git a/.cspell.json b/.cspell.json index 848e4ca..dcf4ae9 100644 --- a/.cspell.json +++ b/.cspell.json @@ -1,12 +1,12 @@ { "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", "version": "0.2", - "ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log", "lib", "dist"], + "ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log", "lib", "dist", "types/dynamic.ts"], "useGitignore": true, "language": "en", "words": ["dataurl", "devpool", "outdir", "servedir"], "dictionaries": ["typescript", "node", "software-terms"], "import": ["@cspell/dict-typescript/cspell-ext.json", "@cspell/dict-node/cspell-ext.json", "@cspell/dict-software-terms"], "ignoreRegExpList": ["[0-9a-fA-F]{6}"], - "ignoreWords": ["Rpcs", "ethersproject", "publicnode", "WXDAI", "XDAI", "chainlist", "Knip", "LOCALSTORAGE"] + "ignoreWords": ["Rpcs", "ethersproject", "publicnode", "WXDAI", "XDAI", "chainlist", "Knip", "LOCALSTORAGE", "sonarjs", "cronos", "Cronos", "gochain"] } diff --git a/.github/workflows/jest-testing.yml b/.github/workflows/jest-testing.yml index 5eb74c9..0f6ee5c 100644 --- a/.github/workflows/jest-testing.yml +++ b/.github/workflows/jest-testing.yml @@ -28,10 +28,13 @@ jobs: - name: Install dependencies run: yarn install + - name: Setup tests + run: yarn pretest + - name: Build & Run test suite run: | yarn test | tee ./coverage.txt && exit ${PIPESTATUS[0]} - + - name: Jest Coverage Comment # Ensures this step is run even on previous step failure (e.g. test failed) if: always() diff --git a/README.md b/README.md index 85c1f09..7cc02b6 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,7 @@ yarn test ``` - This below will only work after `yarn build` has been run and will fail under test conditions + ```bash npx tsx tests/script-test.ts -``` \ No newline at end of file +``` diff --git a/build/dynamic-types.ts b/build/dynamic-types.ts new file mode 100644 index 0000000..f400d1d --- /dev/null +++ b/build/dynamic-types.ts @@ -0,0 +1,56 @@ +import { appendFile, writeFile } from "fs/promises"; +import { BlockExplorer, NativeToken } from "../types/handler"; +import { generateChainData } from "../lib/chainlist/utils/fetch"; + +/** + * This produces dynamic types and constants for: + * - CHAINS_IDS + * - NETWORKS + * - NETWORK_FAUCETS + * - NETWORK_EXPLORERS + * - NETWORK_CURRENCIES + * - EXTRA_RPCS + */ + +export async function createDynamicTypes() { + const data = await generateChainData(); + const idToNetwork: Record = {}; + const networkToId: Record = {}; + const idToRpc: Record = {}; + const idToFaucet: Record = {}; + const idToExplorers = {} as Record; + const idToNativeCurrency: Record = {}; + const extraRpcs: Record = {}; + + for (const chain of data) { + let { name, chainId, networkId, rpc, faucets, explorers, nativeCurrency } = chain; + name = name.toLowerCase().replace(/\s/g, "-"); + idToNetwork[chainId] = name; + networkToId[name] = networkId; + idToRpc[chainId] = rpc; + idToFaucet[chainId] = faucets; + + if (explorers && explorers.length > 0) { + idToExplorers[chainId] = explorers; + } + + if (rpc && rpc.length > 0) { + const rpcs = rpc.filter((rpc: { url: string }) => rpc.url); + extraRpcs[chainId] = rpcs.map((rpc: { url: string }) => rpc.url); + } + + idToNativeCurrency[chainId] = nativeCurrency; + } + + const filename = "types/dynamic.ts"; + + // Clear the file + await writeFile(filename, "/* eslint-disable sonarjs/no-duplicate-string */\n\n"); + + appendFile(filename, `\nexport const CHAINS_IDS = ${JSON.stringify(idToNetwork, null, 2)} as const;\n`); + appendFile(filename, `\nexport const NETWORKS = ${JSON.stringify(networkToId, null, 2)} as const;\n`); + appendFile(filename, `\nexport const NETWORK_FAUCETS = ${JSON.stringify(idToFaucet, null, 2)};\n`); + appendFile(filename, `\nexport const NETWORK_EXPLORERS = ${JSON.stringify(idToExplorers, null, 2)};\n`); + appendFile(filename, `\nexport const NETWORK_CURRENCIES = ${JSON.stringify(idToNativeCurrency, null, 2)};\n`); + appendFile(filename, `\nexport const EXTRA_RPCS = ${JSON.stringify(extraRpcs, null, 2)};\n`); +} diff --git a/build/esbuild-build-tests.ts b/build/esbuild-build-tests.ts index 7c21631..4279b78 100644 --- a/build/esbuild-build-tests.ts +++ b/build/esbuild-build-tests.ts @@ -1,27 +1,15 @@ import esbuild from "esbuild"; -import chainlist from "../lib/chainlist/constants/extraRpcs"; -import chainIDList from "../lib/chainlist/constants/chainIds.json"; import path from "path"; import * as fs from "fs"; +import { createDynamicTypes } from "./dynamic-types"; const typescriptEntries = ["tests/mocks/rpc-service.ts", "tests/mocks/rpc-handler.ts", "tests/mocks/handler.ts"]; export const entries = [...typescriptEntries]; -const extraRpcs: Record = {}; -// this flattens all the rpcs into a single object, with key names that match the networkIds. The arrays are just of URLs per network ID. - -Object.keys(chainlist).forEach((networkId) => { - const officialUrls = chainlist[networkId].rpcs.filter((rpc) => typeof rpc === "string"); - const extraUrls: string[] = chainlist[networkId].rpcs.filter((rpc) => rpc.url !== undefined && rpc.tracking === "none").map((rpc) => rpc.url); - - extraRpcs[networkId] = [...officialUrls, ...extraUrls].filter((rpc) => rpc.startsWith("https://")); -}); export const esBuildContext: esbuild.BuildOptions = { entryPoints: entries, bundle: true, - outdir: "dist", - define: createEnvDefines({ extraRpcs, chainIDList }), }; async function main() { @@ -34,8 +22,6 @@ async function main() { } } -main(); - async function buildForEnvironments() { ensureDistDir(); @@ -62,25 +48,16 @@ async function buildIndex() { bundle: true, format: "cjs", outfile: "dist/index.js", - define: createEnvDefines({ extraRpcs, chainIDList }), }); console.log("Index build complete."); } -function createEnvDefines(generatedAtBuild: Record): Record { - const defines: Record = {}; - - Object.keys(generatedAtBuild).forEach((key) => { - defines[key] = JSON.stringify(generatedAtBuild[key]); - }); - - return defines; -} - function ensureDistDir() { const distPath = path.resolve(__dirname, "dist"); if (!fs.existsSync(distPath)) { fs.mkdirSync(distPath, { recursive: true }); } } + +createDynamicTypes().then(main).catch(console.error); diff --git a/build/esbuild-build.ts b/build/esbuild-build.ts index 3c90541..f91c410 100644 --- a/build/esbuild-build.ts +++ b/build/esbuild-build.ts @@ -1,26 +1,15 @@ import esbuild from "esbuild"; -import chainlist from "../lib/chainlist/constants/extraRpcs"; -import chainIDList from "../lib/chainlist/constants/chainIds.json"; import path from "path"; import * as fs from "fs"; +import { createDynamicTypes } from "./dynamic-types"; const typescriptEntries = ["index.ts"]; export const entries = [...typescriptEntries]; -const extraRpcs: Record = {}; - -// this flattens all the rpcs into a single object, with key names that match the networkIds. The arrays are just of URLs per network ID. -Object.keys(chainlist).forEach((networkId) => { - const officialUrls = chainlist[networkId].rpcs.filter((rpc) => typeof rpc === "string"); - const extraUrls: string[] = chainlist[networkId].rpcs.filter((rpc) => rpc.url !== undefined && rpc.tracking === "none").map((rpc) => rpc.url); - extraRpcs[networkId] = [...officialUrls, ...extraUrls].filter((rpc) => rpc.startsWith("https://")); -}); export const esBuildContext: esbuild.BuildOptions = { entryPoints: entries, bundle: true, - outdir: "dist", - define: createEnvDefines({ extraRpcs, chainIDList }), }; async function main() { @@ -33,8 +22,6 @@ async function main() { } } -main(); - async function buildForEnvironments() { ensureDistDir(); @@ -76,24 +63,16 @@ async function buildIndex() { bundle: true, format: "cjs", outfile: "dist/index.js", - define: createEnvDefines({ extraRpcs, chainIDList }), }); console.log("Index build complete."); } -function createEnvDefines(generatedAtBuild: Record): Record { - const defines: Record = {}; - Object.keys(generatedAtBuild).forEach((key) => { - defines[key] = JSON.stringify(generatedAtBuild[key]); - }); - - return defines; -} - function ensureDistDir() { const distPath = path.resolve(__dirname, "dist"); if (!fs.existsSync(distPath)) { fs.mkdirSync(distPath, { recursive: true }); } } + +createDynamicTypes().then(main).catch(console.error); diff --git a/index.ts b/index.ts index 2c63d61..c19f329 100644 --- a/index.ts +++ b/index.ts @@ -12,25 +12,20 @@ export default async function getRPCHandler() { } import { - ChainId, - ChainNames, + NetworkId, + NetworkName, HandlerConstructorConfig, HandlerInterface, NativeToken, NetworkCurrencies, NetworkExplorers, - NetworkIds, - NetworkNames, NetworkRPCs, Token, - Tokens, ValidBlockData, } from "./types/handler"; import { LOCAL_HOST, - chainIDList, - extraRpcs, getNetworkName, networkCurrencies, networkExplorers, @@ -39,39 +34,23 @@ import { networkRpcs, nftAddress, permit2Address, - tokens, + getNetworkId, } from "./types/constants"; import { RPCHandler } from "./types/rpc-handler"; -export { - LOCAL_HOST, - chainIDList, - extraRpcs, - getNetworkName, - networkCurrencies, - networkExplorers, - networkIds, - networkNames, - networkRpcs, - nftAddress, - permit2Address, - tokens, -}; +export { LOCAL_HOST, getNetworkName, getNetworkId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, nftAddress, permit2Address }; export type { - ChainId, - ChainNames, + NetworkId, + NetworkName, HandlerConstructorConfig, HandlerInterface, NativeToken, NetworkCurrencies, NetworkExplorers, - NetworkIds, - NetworkNames, NetworkRPCs, Token, - Tokens, ValidBlockData, }; export { RPCHandler }; diff --git a/package.json b/package.json index 78d4213..c0d51b7 100644 --- a/package.json +++ b/package.json @@ -14,19 +14,21 @@ "node": ">=20.10.0" }, "scripts": { - "format": "run-s format:lint format:prettier format:cspell", + "format": "run-p format:*", "format:lint": "eslint --fix .", "format:prettier": "prettier --write .", "format:cspell": "cspell **/*", "knip": "knip", "knip-ci": "knip --no-exit-code --reporter json", "prepare": "husky install", - "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist && rm -rf dist/src", - "build:tests": "tsx build/esbuild-build-tests.ts && tsc --emitDeclarationOnly --declaration --project tsconfig.tests.json", - "build": "rm -rf dist && tsx build/esbuild-build.ts", - "postbuild": "yarn build:types", "postinstall": "git submodule update --init --recursive", - "test": "rm -rf dist && yarn build:tests && jest" + "build": "run-s clean build:types", + "build:types": "tsx build/esbuild-build.ts && tsc --emitDeclarationOnly --declaration --outDir dist", + "build:tests": "tsx build/esbuild-build-tests.ts && tsc --emitDeclarationOnly --declaration --project tsconfig.tests.json", + "postbuild": "rm -rf dist/src", + "pretest": "run-s clean build:tests", + "test": "jest", + "clean": "rm -rf dist" }, "keywords": [ "typescript", @@ -87,4 +89,4 @@ ] }, "packageManager": "yarn@4.2.2" -} +} \ No newline at end of file diff --git a/src/services/rpc-service.ts b/src/services/rpc-service.ts index 674c6eb..2a275a6 100644 --- a/src/services/rpc-service.ts +++ b/src/services/rpc-service.ts @@ -1,10 +1,10 @@ -import { ValidBlockData } from "../../types/handler"; +import { NetworkId, ValidBlockData } from "../../types/handler"; import axios from "axios"; type PromiseResult = { success: boolean; rpcUrl: string; duration: number }; export class RPCService { static async testRpcPerformance( - networkId: number, + networkId: NetworkId, latencies: Record, runtimeRpcs: string[], rpcHeader: object, @@ -58,7 +58,7 @@ export class RPCService { return { latencies, runtimeRpcs }; } - static async findFastestRpc(latencies: Record, networkId: number): Promise { + static async findFastestRpc(latencies: Record, networkId: NetworkId): Promise { try { const validLatencies: Record = Object.entries(latencies) .filter(([key]) => key.startsWith(`${networkId}__`)) diff --git a/src/services/storage-service.ts b/src/services/storage-service.ts index 8120b9d..7aab246 100644 --- a/src/services/storage-service.ts +++ b/src/services/storage-service.ts @@ -1,5 +1,7 @@ +import { NetworkId } from "types/handler"; + export class StorageService { - static getLatencies(env: string, networkId: number): Record { + static getLatencies(env: string, networkId: NetworkId): Record { if (env === "browser") { if (this.bypassForTests()) return {}; const latencies: Record = JSON.parse(localStorage.getItem("rpcLatencies") || "{}"); diff --git a/tests/benchmark.test.ts b/tests/benchmark.test.ts index 39acf4c..12aead6 100644 --- a/tests/benchmark.test.ts +++ b/tests/benchmark.test.ts @@ -2,7 +2,7 @@ import { JsonRpcProvider } from "@ethersproject/providers"; import { RPCHandler, HandlerConstructorConfig } from "../dist"; export const testConfig: HandlerConstructorConfig = { - networkId: 1, + networkId: "1", autoStorage: false, cacheRefreshCycles: 3, networkName: null, diff --git a/tests/constants.test.ts b/tests/constants.test.ts new file mode 100644 index 0000000..1421a31 --- /dev/null +++ b/tests/constants.test.ts @@ -0,0 +1,107 @@ +import { getNetworkId, getNetworkName, networkCurrencies, networkExplorers, networkIds, networkNames } from "../types/constants"; +import { NetworkId, NetworkName, NativeToken } from "../types/handler"; + +describe("Constants", () => { + beforeEach(() => { + jest.clearAllMocks(); + jest.clearAllTimers(); + }); + + describe("getNetworkName", () => { + it("should return the network name for a valid network ID", () => { + const networkId = "80002"; + const expectedNetworkName = "amoy"; + const result = getNetworkName(networkId); + expect(result).toBe(expectedNetworkName); + }); + + it("should return 'Unknown Network' for an unknown network ID", () => { + const networkId = Number.MAX_SAFE_INTEGER; + const expectedNetworkName = "Unknown Network"; + const result = getNetworkName(networkId as unknown as NetworkId); + expect(result).toBe(expectedNetworkName); + }); + }); + + describe("getNetworkId", () => { + it("should return the network ID for a valid network name", () => { + const networkName = "amoy"; + const expectedNetworkId = "80002"; + const result = getNetworkId(networkName); + expect(result).toBe(expectedNetworkId); + }); + + it("should return 0 for an unknown network name", () => { + const networkName = "unknown"; + const expectedNetworkId = -1; + const result = getNetworkId(networkName as NetworkName); + expect(result).toBe(expectedNetworkId); + }); + }); + + describe("networkNames", () => { + it("should contain a name for each network", () => { + const networkIdValues = Object.values(networkIds).sort((a, b) => a.localeCompare(b)); + + const networkNameKeys = Object.keys(networkNames).sort((a, b) => a.localeCompare(b)); + + // keys of networkIds are the values of networkNames + expect(networkIdValues).toEqual(networkNameKeys); + + netIds.forEach((networkId) => { + const networkName = networkIds[networkId]; + expect(networkName).toBe(expectedName[networkId]); + }); + }); + }); + + const netIds = ["1", "100", "56", "80002", "137", "25"] as NetworkId[]; + + const expected = { + "1": "https://etherscan.io", + "100": "https://gnosisscan.io", + "56": "https://bscscan.com", + "80002": "https://www.oklink.com/amoy", + "137": "https://polygonscan.com", + "25": "https://explorer.cronos.org", + } as Partial>; + + const expectedName = { + "1": "ethereum-mainnet", + "100": "gnosis", + "56": "bnb-smart-chain-mainnet", + "80002": "amoy", + "137": "polygon-mainnet", + "25": "cronos-mainnet", + } as Partial>; + + const expectedNative = { + "1": { symbol: "ETH", decimals: 18, name: "Ether" }, + "100": { symbol: "XDAI", decimals: 18, name: "xDAI" }, + "56": { symbol: "BNB", decimals: 18, name: "BNB Chain Native Token" }, + "80002": { symbol: "MATIC", decimals: 18, name: "MATIC" }, + "137": { symbol: "MATIC", decimals: 18, name: "MATIC" }, + "25": { symbol: "CRO", decimals: 18, name: "Cronos" }, + } as Partial>; + + describe("networkCurrencies", () => { + it("should contain a currency for each network", () => { + netIds.forEach((networkId) => { + const result = networkCurrencies[networkId]; + const expectedCurrency = expectedNative[networkId] as NativeToken; + expect(result).toEqual(expectedCurrency); + }); + }); + }); + + describe("networkExplorers", () => { + it("should contain an explorer for each network", () => { + netIds.forEach((networkId) => { + const result = networkExplorers[networkId]; + const explorerUrls = result.map(({ url }) => url); + const expectedExplorer = expected[networkId]; + expect(explorerUrls).toContain(expectedExplorer); + }); + }); + }); +}); diff --git a/tests/mocks/handler.ts b/tests/mocks/handler.ts index 5e85bb7..0de5e37 100644 --- a/tests/mocks/handler.ts +++ b/tests/mocks/handler.ts @@ -1,5 +1,13 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { ChainId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, tokens } from "../../types/constants"; +import { networkCurrencies, networkExplorers, networkRpcs } from "../../types/constants"; +import { CHAINS_IDS, EXTRA_RPCS } from "../../types/dynamic"; + +export type BlockExplorer = { + name: string; + url: string; + standard?: string; + icon?: string; +}; export type ValidBlockData = { jsonrpc: string; @@ -10,23 +18,29 @@ export type ValidBlockData = { hash: string; }; }; + export type Token = { decimals: number; address: string; + symbol: string; }; + export type NativeToken = { + name: string; symbol: string; decimals: number; }; + export type HandlerInterface = { - getProvider(): JsonRpcProvider | undefined; + getProvider(): JsonRpcProvider | null; clearInstance(): void; - getFastestRpcProvider(): Promise; - testRpcPerformance(): Promise; + getFastestRpcProvider(): Promise; + testRpcPerformance(): Promise; }; + export type HandlerConstructorConfig = { - networkId: number; - networkName: string | null; + networkId: NetworkId; + networkName: NetworkName | null; networkRpcs: string[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; @@ -35,12 +49,16 @@ export type HandlerConstructorConfig = { }; export type NetworkRPCs = typeof networkRpcs; -export type NetworkNames = typeof networkNames; export type NetworkCurrencies = typeof networkCurrencies; -export type Tokens = typeof tokens; export type NetworkExplorers = typeof networkExplorers; -export type NetworkIds = typeof networkIds; -export type { ChainId }; -export type ChainNames = { - [key in TChainID]: string; + +// filtered NetworkId union +export type NetworkId = keyof typeof EXTRA_RPCS | "31337" | "1337"; + +// unfiltered Record +type ChainsUnfiltered = { + -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; }; + +// filtered ChainName union +export type NetworkName = ChainsUnfiltered[NetworkId] | "anvil" | "hardhat"; diff --git a/tests/mocks/rpc-handler.ts b/tests/mocks/rpc-handler.ts index 90dadad..9cb541e 100644 --- a/tests/mocks/rpc-handler.ts +++ b/tests/mocks/rpc-handler.ts @@ -1,15 +1,16 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { LOCAL_HOST, networkRpcs, networkNames } from "../../types/constants"; +import { LOCAL_HOST, networkRpcs, networkIds } from "../../types/constants"; import { HandlerInterface, HandlerConstructorConfig } from "./handler"; import { RPCService } from "./rpc-service"; import { StorageService } from "./storage-service"; +import { NetworkId, NetworkName } from "../../types/handler"; export class RPCHandler implements HandlerInterface { private static _instance: RPCHandler | null = null; private _provider: JsonRpcProvider | null = null; - private _networkId: number; - private _networkName: string; + private _networkId: NetworkId; + private _networkName: NetworkName; private _env: string = "node"; private _rpcTimeout: number = 999999; // ms @@ -22,17 +23,17 @@ export class RPCHandler implements HandlerInterface { constructor(config: HandlerConstructorConfig) { this._networkId = config.networkId; this._networkRpcs = networkRpcs[this._networkId]; - this._networkName = networkNames[this._networkId]; + this._networkName = networkIds[this._networkId]; this._initialize(config); } public async getFastestRpcProvider(): Promise { - if (this._networkId === 31337) { - this._provider = new JsonRpcProvider(LOCAL_HOST, this._networkId); + if (this._networkId === "31337") { + this._provider = new JsonRpcProvider(LOCAL_HOST, Number(this._networkId)); } else if (!this._provider) { this._provider = await this.testRpcPerformance(); } - if (this._provider && this._provider?.connection.url.includes("localhost") && this._networkId !== 31337) { + if (this._provider && this._provider?.connection.url.includes("localhost") && this._networkId !== "31337") { /** * The JsonRpcProvider defaults erroneously to localhost:8545 * this is a fix for that @@ -66,7 +67,7 @@ export class RPCHandler implements HandlerInterface { throw new Error("Failed to find fastest RPC"); } - const provider = new JsonRpcProvider(fastestRpcUrl, this._networkId); + const provider = new JsonRpcProvider(fastestRpcUrl, Number(this._networkId)); this._provider = provider; if (this._autoStorage) { @@ -99,7 +100,7 @@ export class RPCHandler implements HandlerInterface { public getRuntimeRpcs(): string[] { return this._runtimeRpcs; } - public getNetworkId(): number { + public getNetworkId(): NetworkId { return this._networkId; } public getNetworkName(): string { diff --git a/tests/mocks/rpc-service.ts b/tests/mocks/rpc-service.ts index ec72c58..6408216 100644 --- a/tests/mocks/rpc-service.ts +++ b/tests/mocks/rpc-service.ts @@ -1,9 +1,9 @@ -import { ValidBlockData } from "./handler"; +import { NetworkId, ValidBlockData } from "./handler"; type PromiseResult = { success: boolean; rpcUrl: string; duration: number }; export class RPCService { static async testRpcPerformance( - networkId: number, + networkId: NetworkId, latencies: Record, runtimeRpcs: string[], rpcHeader: object, @@ -70,7 +70,7 @@ export class RPCService { return { latencies, runtimeRpcs }; } - static async findFastestRpc(latencies: Record, networkId: number): Promise { + static async findFastestRpc(latencies: Record, networkId: NetworkId): Promise { if (Object.keys(latencies).length === 0) { console.error("[RPCService] Latencies object is empty"); } diff --git a/tests/mocks/storage-service.ts b/tests/mocks/storage-service.ts index 531ba98..99d076a 100644 --- a/tests/mocks/storage-service.ts +++ b/tests/mocks/storage-service.ts @@ -1,7 +1,9 @@ +import { NetworkId } from "./handler"; + const LOCALSTORAGE_NOT_DEFINED = "Passing because localStorage is not available"; export class StorageService { - static getLatencies(env: string, networkId: number): Record { + static getLatencies(env: string, networkId: NetworkId): Record { if (env === "browser") { if (typeof localStorage === "undefined") { console.log(LOCALSTORAGE_NOT_DEFINED); diff --git a/tests/rpc-handler.test.ts b/tests/rpc-handler.test.ts index 4026904..8dfcd09 100644 --- a/tests/rpc-handler.test.ts +++ b/tests/rpc-handler.test.ts @@ -2,7 +2,7 @@ import { JsonRpcProvider } from "@ethersproject/providers"; import { HandlerConstructorConfig, RPCHandler, networkRpcs } from "../dist"; export const testConfig: HandlerConstructorConfig = { - networkId: 100, + networkId: "100", autoStorage: false, cacheRefreshCycles: 3, networkName: null, @@ -63,7 +63,7 @@ describe("RPCHandler", () => { const latencies = rpcHandler.getLatencies(); console.log(`latencies: `, latencies); console.log(`fastestRpc: `, fastestRpc); - expect(provider._network.chainId).toBe(testConfig.networkId); + expect(provider._network.chainId).toBe(Number(testConfig.networkId)); expect(provider.connection.url).toMatch("https://"); const latArrLen = Array.from(Object.entries(latencies)).length; const runtime = rpcHandler.getRuntimeRpcs(); @@ -71,12 +71,14 @@ describe("RPCHandler", () => { expect(runtime.length).toBe(latArrLen); expect(runtime.length).toBeLessThanOrEqual(networkRpcs[testConfig.networkId].length); - expect(latArrLen).toBeGreaterThan(1); + expect(latArrLen).toBeGreaterThanOrEqual(1); - const sorted = Object.entries(latencies).sort((a, b) => a[1] - b[1]); - const first = sorted[0]; - const last = sorted[sorted.length - 1]; - expect(first[1]).toBeLessThan(last[1]); + if (latArrLen > 1) { + const sorted = Object.entries(latencies).sort((a, b) => a[1] - b[1]); + const first = sorted[0]; + const last = sorted[sorted.length - 1]; + expect(first[1]).toBeLessThan(last[1]); + } expect(fastestRpc.connection.url).toBe(provider.connection.url); }, 10000); }); diff --git a/tests/script-test.ts b/tests/script-test.ts index 617cd9b..c742312 100644 --- a/tests/script-test.ts +++ b/tests/script-test.ts @@ -1,4 +1,4 @@ -import getRPCHandler, { HandlerConstructorConfig, RPCHandler } from "../dist/"; +import getRPCHandler, { HandlerConstructorConfig, RPCHandler, networkIds, networkCurrencies, networkExplorers, networkNames, networkRpcs } from "../dist/"; /** * This script is meant to test the `yarn build` build output @@ -14,7 +14,7 @@ import getRPCHandler, { HandlerConstructorConfig, RPCHandler } from "../dist/"; const RPCHandler = await getRPCHandler(); const config: HandlerConstructorConfig = { - networkId: 1, + networkId: "100", rpcTimeout: 1500, autoStorage: false, cacheRefreshCycles: 10, @@ -29,9 +29,16 @@ import getRPCHandler, { HandlerConstructorConfig, RPCHandler } from "../dist/"; const latencies = handler.getLatencies(); - const provider = handler.getFastestRpcProvider(); - - console.log(provider); + // console.log("====================================="); + console.log(networkIds); + // console.log("====================================="); + console.log(networkNames); + // console.log("====================================="); + console.log(networkRpcs); + // console.log("====================================="); + console.log(networkCurrencies); + // console.log("====================================="); + console.log(networkExplorers); console.log("====================================="); console.log(latencies); process.exit(0); diff --git a/types/constants.ts b/types/constants.ts index d405271..2ac59d4 100644 --- a/types/constants.ts +++ b/types/constants.ts @@ -1,71 +1,59 @@ -import { ChainNames, NativeToken, Token } from "./handler"; - -export declare const chainIDList: Record; -export declare const extraRpcs: Record; - -export type ChainId = T extends keyof typeof chainIDList ? (typeof chainIDList)[T] : T; +import { BlockExplorer, NetworkId, NetworkName, NativeToken } from "./handler"; +import { CHAINS_IDS, EXTRA_RPCS, NETWORK_CURRENCIES, NETWORK_EXPLORERS, NETWORK_FAUCETS } from "./dynamic"; export const permit2Address = "0x000000000022D473030F116dDEE9F6B43aC78BA3"; export const nftAddress = "0xAa1bfC0e51969415d64d6dE74f27CDa0587e645b"; export const LOCAL_HOST = "http://127.0.0.1:8545"; -export const networkIds: Record = Object.fromEntries( - Object.entries(chainIDList).map(([id, name]) => { - const chainId = parseInt(id); - const chain = name.charAt(0).toUpperCase() + name.slice(1); - return [chain, chainId]; - }) -); +const networkIds: Record = { + ...{ ...CHAINS_IDS }, // removing readonly + 31337: "anvil", + 1337: "hardhat", +}; -export const networkNames: ChainNames = Object.fromEntries( - Object.entries(networkIds).map(([name, id]) => { - const chainName = name.charAt(0).toUpperCase() + name.slice(1); - return [id, chainName]; +const networkNames = Object.fromEntries( + Object.entries(networkIds).map(([key, value]) => { + return [value, key]; }) -); +) as Record; -export const networkRpcs: Record = Object.fromEntries( - Object.entries(networkIds).map(([, value]) => { - const chainRpcs = extraRpcs[value] || []; +Reflect.deleteProperty(networkNames, "geth-testnet"); // 1337 +Reflect.deleteProperty(networkNames, "gochain-testnet"); // 31337 + +const networkRpcs = Object.fromEntries( + Object.entries(networkNames).map(([, value]) => { + const chainRpcs = EXTRA_RPCS[value as unknown as keyof typeof EXTRA_RPCS]; return [value, chainRpcs]; }) -); - -export const tokens: Record> = { - [networkIds.Mainnet]: { - DAI: { - address: "0x6b175474e89094c44da98b954eedeac495271d0f", - decimals: 18, - symbol: "DAI", - }, - }, - [networkIds.Gnosis]: { - WXDAI: { - address: "0xe91d153e0b41518a2ce8dd3d7944fa863463a97d", - decimals: 18, - symbol: "WXDAI", - }, - }, -}; +) as Record; -export const networkCurrencies: Record = { - [networkIds.Mainnet]: { symbol: "ETH", decimals: 18 }, - [networkIds.Goerli]: { symbol: "GoerliETH", decimals: 18 }, - [networkIds.Gnosis]: { symbol: "XDAI", decimals: 18 }, - [networkIds.Anvil]: { symbol: "XDAI", decimals: 18 }, -}; +const networkExplorers = Object.fromEntries( + Object.entries(networkNames).map(([, value]) => { + const chainExplorers: BlockExplorer[] = NETWORK_EXPLORERS[value as unknown as keyof typeof NETWORK_EXPLORERS]; + return [value, chainExplorers]; + }) +) as Record; -export const networkExplorers: Record = { - [networkIds.Mainnet]: "https://etherscan.io", - [networkIds.Goerli]: "https://goerli.etherscan.io", - [networkIds.Gnosis]: "https://gnosisscan.io", - [networkIds.Anvil]: "https://gnosisscan.io", -}; +const networkCurrencies: Record = Object.fromEntries( + Object.entries(NETWORK_CURRENCIES).map(([chainId, currency]) => { + return [chainId, currency as NativeToken]; + }) +) as Record; -export function getNetworkName(networkId?: number) { - const networkName = networkNames[networkId ?? 0]; +function getNetworkName(networkId: NetworkId) { + const networkName = networkIds[networkId]; if (!networkName) { console.error(`Unknown network ID: ${networkId}`); } return networkName ?? "Unknown Network"; } + +function getNetworkId(networkName: NetworkName) { + const networkId = networkNames[networkName]; + if (!networkId) { + console.error(`Unknown network name: ${networkName}`); + } + return networkId ?? -1; +} + +export { networkIds, networkNames, networkRpcs, networkCurrencies, networkExplorers, getNetworkName, getNetworkId, NETWORK_FAUCETS }; diff --git a/types/dynamic.ts b/types/dynamic.ts new file mode 100644 index 0000000..a21c2b0 --- /dev/null +++ b/types/dynamic.ts @@ -0,0 +1,30160 @@ +/* eslint-disable sonarjs/no-duplicate-string */ + + +export const CHAINS_IDS = { + "1": "ethereum-mainnet", + "2": "expanse-network", + "3": "ropsten", + "4": "rinkeby", + "5": "goerli", + "7": "thaichain", + "8": "ubiq", + "9": "ubiq-network-testnet", + "10": "op-mainnet", + "11": "metadium-mainnet", + "12": "metadium-testnet", + "13": "diode-testnet-staging", + "14": "flare-mainnet", + "15": "diode-prenet", + "16": "songbird-testnet-coston", + "17": "thaichain-2.0-thaifi", + "18": "thundercore-testnet", + "19": "songbird-canary-network", + "20": "elastos-smart-chain", + "21": "elastos-smart-chain-testnet", + "22": "ela-did-sidechain-mainnet", + "23": "ela-did-sidechain-testnet", + "24": "kardiachain-mainnet", + "25": "cronos-mainnet", + "26": "genesis-l1-testnet", + "27": "shibachain", + "29": "genesis-l1", + "30": "rootstock-mainnet", + "31": "rootstock-testnet", + "32": "gooddata-testnet", + "33": "gooddata-mainnet", + "34": "securechain-mainnet", + "35": "tbwg-chain", + "36": "dxchain-mainnet", + "37": "xpla-mainnet", + "38": "valorbit", + "39": "u2u-solaris-mainnet", + "40": "telos-evm-mainnet", + "41": "telos-evm-testnet", + "42": "lukso-mainnet", + "43": "darwinia-pangolin-testnet", + "44": "crab-network", + "45": "darwinia-pangoro-testnet", + "46": "darwinia-network", + "47": "acria-intellichain", + "48": "ennothem-mainnet-proterozoic", + "49": "ennothem-testnet-pioneer", + "50": "xdc-network", + "51": "xdc-apothem-network", + "52": "coinex-smart-chain-mainnet", + "53": "coinex-smart-chain-testnet", + "54": "openpiece-mainnet", + "55": "zyx-mainnet", + "56": "bnb-smart-chain-mainnet", + "57": "syscoin-mainnet", + "58": "ontology-mainnet", + "60": "gochain", + "61": "ethereum-classic", + "63": "mordor-testnet", + "64": "ellaism", + "65": "okexchain-testnet", + "66": "okxchain-mainnet", + "67": "dbchain-testnet", + "68": "soterone-mainnet", + "69": "optimism-kovan", + "70": "hoo-smart-chain", + "71": "conflux-espace-(testnet)", + "72": "dxchain-testnet", + "73": "fncy", + "74": "idchain-mainnet", + "75": "decimal-smart-chain-mainnet", + "76": "mix", + "77": "poa-network-sokol", + "78": "primuschain-mainnet", + "79": "zenith-mainnet", + "80": "genechain", + "81": "japan-open-chain-mainnet", + "82": "meter-mainnet", + "83": "meter-testnet", + "84": "linqto-devnet", + "85": "gatechain-testnet", + "86": "gatechain-mainnet", + "87": "nova-network", + "88": "viction", + "89": "viction-testnet", + "90": "garizon-stage0", + "91": "garizon-stage1", + "92": "garizon-stage2", + "93": "garizon-stage3", + "94": "swissdlt", + "95": "camdl-mainnet", + "96": "bitkub-chain", + "97": "bnb-smart-chain-testnet", + "98": "six-protocol", + "99": "poa-network-core", + "100": "gnosis", + "101": "etherinc", + "102": "web3games-testnet", + "103": "worldland-mainnet", + "104": "kaiba-lightning-chain-testnet", + "105": "web3games-devnet", + "106": "velas-evm-mainnet", + "107": "nebula-testnet", + "108": "thundercore-mainnet", + "109": "shibarium", + "110": "proton-testnet", + "111": "etherlite-chain", + "112": "coinbit-mainnet", + "113": "dehvo", + "114": "flare-testnet-coston2", + "117": "uptick-mainnet", + "118": "arcology-testnet", + "119": "enuls-mainnet", + "120": "enuls-testnet", + "121": "realchain-mainnet", + "122": "fuse-mainnet", + "123": "fuse-sparknet", + "124": "decentralized-web-mainnet", + "125": "oychain-testnet", + "126": "oychain-mainnet", + "127": "factory-127-mainnet", + "128": "huobi-eco-chain-mainnet", + "129": "innovator-chain", + "131": "engram-testnet", + "132": "namefi-chain-mainnet", + "133": "hashkey-chain-testnet", + "134": "iexec-sidechain", + "135": "alyx-chain-testnet", + "136": "deamchain-mainnet", + "137": "polygon-mainnet", + "138": "defi-oracle-meta-mainnet", + "139": "woopchain-mainnet", + "140": "eternal-mainnet", + "141": "openpiece-testnet", + "142": "dax-chain", + "144": "phi-network-v2", + "145": "soraai-testnet", + "147": "flag-mainnet", + "148": "shimmerevm", + "150": "six-protocol-testnet", + "151": "redbelly-network-mainnet", + "152": "redbelly-network-devnet", + "153": "redbelly-network-testnet", + "154": "redbelly-network-tge", + "155": "tenet-testnet", + "156": "oeblock-testnet", + "157": "puppynet-shibarium", + "158": "roburna-mainnet", + "159": "roburna-testnet", + "160": "armonia-eva-chain-mainnet", + "161": "armonia-eva-chain-testnet", + "162": "lightstreams-testnet", + "163": "lightstreams-mainnet", + "164": "omni-testnet", + "166": "omni", + "167": "atoshi-testnet", + "168": "aioz-network", + "169": "manta-pacific-mainnet", + "170": "hoo-smart-chain-testnet", + "172": "latam-blockchain-resil-testnet", + "176": "dc-mainnet", + "180": "ame-chain-mainnet", + "181": "waterfall-network", + "185": "mint-mainnet", + "186": "seele-mainnet", + "188": "bmc-mainnet", + "189": "bmc-testnet", + "191": "filefilego", + "193": "crypto-emergency", + "195": "x-layer-testnet", + "196": "x-layer-mainnet", + "197": "neutrinos-testnet", + "198": "bitchain-mainnet", + "199": "bittorrent-chain-mainnet", + "200": "arbitrum-on-xdai", + "201": "moac-testnet", + "202": "edgeless-testnet", + "204": "opbnb-mainnet", + "206": "vinuchain-testnet", + "207": "vinuchain-network", + "208": "structx-mainnet", + "210": "bitnet", + "211": "freight-trust-network", + "212": "mapo-makalu", + "213": "b2-hub-mainnet", + "214": "shinarium-mainnet", + "217": "siriusnet-v2", + "220": "scalind-testnet", + "223": "b2-mainnet", + "224": "viridis-testnet", + "225": "lachain-mainnet", + "226": "lachain-testnet", + "228": "mind-network-mainnet", + "230": "swapdex", + "234": "protojumbo-testnet", + "236": "deamchain-testnet", + "242": "plinga-mainnet", + "246": "energy-web-chain", + "248": "oasys-mainnet", + "250": "fantom-opera", + "252": "fraxtal", + "255": "kroma", + "256": "huobi-eco-chain-testnet", + "258": "setheum", + "259": "neonlink-mainnet", + "262": "sur-blockchain-network", + "266": "neura", + "267": "neura-testnet", + "268": "neura-devnet", + "269": "high-performance-blockchain", + "271": "egoncoin-mainnet", + "274": "lachain", + "278": "xfair.ai-mainnet", + "279": "bpx-blockchain", + "282": "cronos-zkevm-testnet", + "288": "boba-network", + "291": "orderly-mainnet", + "295": "hedera-mainnet", + "296": "hedera-testnet", + "297": "hedera-previewnet", + "298": "hedera-localnet", + "300": "zksync-sepolia-testnet", + "302": "zkcandy-sepolia-testnet", + "303": "neurochain-testnet", + "305": "zksats-mainnet", + "307": "lovely-network-testnet", + "308": "furtheon", + "309": "wyzth-testnet", + "311": "omax-mainnet", + "313": "neurochain-mainnet", + "314": "filecoin---mainnet", + "321": "kcc-mainnet", + "322": "kcc-testnet", + "323": "cosvm-mainnet", + "324": "zksync-mainnet", + "333": "web3q-mainnet", + "335": "dfk-chain-test", + "336": "shiden", + "338": "cronos-testnet", + "345": "tsc-mainnet", + "361": "theta-mainnet", + "363": "theta-sapphire-testnet", + "364": "theta-amber-testnet", + "365": "theta-testnet", + "369": "pulsechain", + "371": "consta-testnet", + "380": "zkamoeba-testnet", + "381": "zkamoeba-mainnet", + "385": "lisinski", + "395": "camdl-testnet", + "397": "near-mainnet", + "398": "near-testnet", + "399": "nativ3-mainnet", + "400": "hyperonchain-testnet", + "401": "ozone-chain-testnet", + "404": "syndr-l3", + "411": "pepe-chain-mainnet", + "416": "sx-network-mainnet", + "418": "latestnet", + "420": "optimism-goerli-testnet", + "422": "viridis-mainnet", + "424": "pgn-(public-goods-network)", + "427": "zeeth-chain", + "428": "geso-verse", + "434": "boyaa-mainnet", + "443": "ten-testnet", + "444": "synapse-chain-testnet", + "456": "arzio-chain", + "462": "areon-network-testnet", + "463": "areon-network-mainnet", + "499": "rupaya", + "500": "camino-c-chain", + "501": "columbus-test-network", + "510": "syndicate-chain", + "512": "double-a-chain-mainnet", + "513": "double-a-chain-testnet", + "516": "gear-zero-network-mainnet", + "520": "xt-smart-chain-mainnet", + "529": "firechain-mainnet", + "530": "f(x)core-mainnet-network", + "534": "candle", + "537": "optrust-mainnet", + "542": "pawchain-testnet", + "545": "testnet", + "555": "vela1-chain-mainnet", + "558": "tao-network", + "568": "dogechain-testnet", + "570": "rollux-mainnet", + "571": "metachain-mainnet", + "579": "filenova-mainnet", + "592": "astar", + "595": "acala-mandala-testnet-tc9", + "596": "karura-network-testnet", + "597": "acala-network-testnet", + "600": "meshnyan-testnet", + "601": "vine-testnet", + "612": "eiob-mainnet", + "614": "graphlinq-blockchain-mainnet", + "634": "avocado", + "646": "previewnet", + "647": "sx-network-testnet", + "648": "endurance-smart-chain-mainnet", + "653": "kalichain-testnet", + "654": "kalichain", + "662": "ultronsmartchain", + "666": "pixie-chain-testnet", + "667": "laos-arrakis", + "668": "juncachain", + "669": "juncachain-testnet", + "686": "karura-network", + "690": "redstone", + "700": "star-social-testnet", + "701": "darwinia-koi-testnet", + "707": "blockchain-station-mainnet", + "708": "blockchain-station-testnet", + "710": "highbury", + "713": "vrcscan-mainnet", + "719": "shibarium-beta", + "721": "lycan-chain", + "727": "blucrates", + "730": "lovely-network-mainnet", + "741": "vention-smart-chain-testnet", + "742": "script-testnet", + "747": "mainnet", + "766": "ql1", + "776": "openchain-testnet", + "777": "cheapeth", + "786": "maal-chain", + "787": "acala-network", + "788": "aerochain-testnet", + "789": "patex", + "799": "rupaya-testnet", + "800": "lucid-blockchain", + "803": "haic", + "808": "portal-fantasy-chain-test", + "810": "haven1-testnet", + "813": "qitmeer-network-mainnet", + "814": "firechain-zkevm", + "818": "beone-chain-mainnet", + "820": "callisto-mainnet", + "822": "runic-chain-testnet", + "831": "checkdot-blockchain-devnet", + "841": "taraxa-mainnet", + "842": "taraxa-testnet", + "859": "zeeth-chain-dev", + "868": "fantasia-chain-mainnet", + "876": "bandai-namco-research-verse-mainnet", + "877": "dexit-network", + "880": "ambros-chain-mainnet", + "888": "wanchain", + "898": "maxi-chain-testnet", + "899": "maxi-chain-mainnet", + "900": "garizon-testnet-stage0", + "901": "garizon-testnet-stage1", + "902": "garizon-testnet-stage2", + "903": "garizon-testnet-stage3", + "909": "portal-fantasy-chain", + "910": "decentrabone-layer1-testnet", + "911": "taproot-mainnet", + "917": "rinia-testnet", + "919": "mode-testnet", + "927": "yidark-chain-mainnet", + "943": "pulsechain-testnet-v4", + "956": "munode-testnet", + "957": "lyra-chain", + "963": "btc20-smart-chain", + "969": "ethxy", + "970": "oort-mainnet", + "971": "oort-huygens", + "972": "oort-ascraeus", + "977": "nepal-blockchain-network", + "979": "ethxy-testnet", + "980": "top-mainnet-evm", + "985": "memo-smart-chain-mainnet", + "989": "top-mainnet", + "990": "eliberty-mainnet", + "997": "5irechain-thunder", + "998": "lucky-network", + "999": "wanchain-testnet", + "1000": "gton-mainnet", + "1001": "klaytn-testnet-baobab", + "1003": "tectum-emission-token", + "1004": "t-ekta", + "1007": "newton-testnet", + "1008": "eurus-mainnet", + "1009": "jumbochain-mainnet", + "1010": "evrice-network", + "1011": "rebus-mainnet", + "1012": "newton", + "1022": "sakura", + "1023": "clover-testnet", + "1024": "clv-parachain", + "1028": "bittorrent-chain-testnet", + "1030": "conflux-espace", + "1031": "proxy-network-testnet", + "1038": "bronos-testnet", + "1039": "bronos-mainnet", + "1073": "shimmerevm-testnet", + "1075": "iota-evm-testnet", + "1079": "mintara-testnet", + "1080": "mintara-mainnet", + "1088": "metis-andromeda-mainnet", + "1089": "humans.ai-mainnet", + "1099": "moac-mainnet", + "1100": "dymension", + "1101": "polygon-zkevm", + "1107": "blxq-testnet", + "1108": "blxq-mainnet", + "1111": "wemix3.0-mainnet", + "1112": "wemix3.0-testnet", + "1113": "b2-hub-testnet", + "1115": "core-blockchain-testnet", + "1116": "core-blockchain-mainnet", + "1117": "dogcoin-mainnet", + "1123": "b2-testnet", + "1130": "defichain-evm-network-mainnet", + "1131": "defichain-evm-network-testnet", + "1133": "defimetachain-changi-testnet", + "1135": "lisk", + "1138": "amstar-testnet", + "1139": "mathchain", + "1140": "mathchain-testnet", + "1147": "flag-testnet", + "1149": "symplexia-smart-chain", + "1170": "origin-testnet", + "1177": "smart-host-teknoloji-testnet", + "1188": "clubmos-mainnet", + "1197": "iora-chain", + "1200": "cuckoo-chain", + "1201": "evanesco-testnet", + "1202": "world-trade-technical-chain-mainnet", + "1209": "saitablockchain(sbc)", + "1210": "cuckoo-sepolia", + "1213": "popcateum-mainnet", + "1214": "enterchain-mainnet", + "1221": "cycle-network-testnet", + "1225": "hybrid-testnet", + "1229": "exzo-network-mainnet", + "1230": "ultron-testnet", + "1231": "ultron-mainnet", + "1234": "step-network", + "1235": "itx-mainnet", + "1243": "arc-mainnet", + "1244": "arc-testnet", + "1246": "om-platform-mainnet", + "1248": "dogether-mainnet", + "1252": "cic-chain-testnet", + "1280": "halo-mainnet", + "1284": "moonbeam", + "1285": "moonriver", + "1287": "moonbase-alpha", + "1288": "moonrock", + "1291": "swisstronik-testnet", + "1311": "dos-fuji-subnet", + "1314": "alyx-mainnet", + "1319": "aia-mainnet", + "1320": "aia-testnet", + "1328": "sei-testnet", + "1329": "sei-network", + "1337": "geth-testnet", + "1338": "elysium-testnet", + "1339": "elysium-mainnet", + "1343": "blitz-subnet", + "1353": "cic-chain-mainnet", + "1369": "zafirium-mainnet", + "1370": "ramestta-mainnet", + "1377": "pingaksha-testnet", + "1379": "kalar-chain", + "1388": "amstar-mainnet", + "1392": "joseon-mainnet", + "1414": "silicon-zkevm-sepolia-testnet", + "1433": "rikeza-network-mainnet", + "1440": "living-assets-mainnet", + "1442": "polygon-zkevm-testnet", + "1452": "gil-testnet", + "1453": "metachain-istanbul", + "1455": "ctex-scan-blockchain", + "1490": "vitruveo-mainnet", + "1499": "idos-games-chain-testnet", + "1501": "bevm-canary", + "1506": "sherpax-mainnet", + "1507": "sherpax-testnet", + "1515": "beagle-messaging-chain", + "1559": "tenet", + "1617": "ethereum-inscription-mainnet", + "1618": "catecoin-chain-mainnet", + "1620": "atheios", + "1625": "gravity-alpha-mainnet", + "1657": "btachain", + "1662": "liquichain", + "1663": "horizen-gobi-testnet", + "1686": "mint-testnet", + "1687": "mint-sepolia-testnet", + "1688": "ludan-mainnet", + "1701": "anytype-evm-chain", + "1707": "tbsi-mainnet", + "1708": "tbsi-testnet", + "1717": "doric-network", + "1718": "palette-chain-mainnet", + "1729": "reya-network", + "1740": "metal-l2-testnet", + "1750": "metal-l2", + "1773": "partychain", + "1777": "gauss-mainnet", + "1789": "zkbase-sepolia-testnet", + "1804": "kerleano", + "1807": "rabbit-analog-testnet-chain", + "1818": "cube-chain-mainnet", + "1819": "cube-chain-testnet", + "1821": "ruby-smart-chain-mainnet", + "1856": "teslafunds", + "1875": "whitechain", + "1881": "gitshock-cartenz-testnet", + "1890": "lightlink-phoenix-mainnet", + "1891": "lightlink-pegasus-testnet", + "1898": "bon-network", + "1904": "sports-chain-network", + "1907": "bitcichain-mainnet", + "1908": "bitcichain-testnet", + "1909": "merkle-scan", + "1911": "scalind", + "1912": "ruby-smart-chain-testnet", + "1918": "upb-crescdi-testnet", + "1945": "onus-chain-testnet", + "1951": "d-chain-mainnet", + "1953": "selendra-network-testnet", + "1954": "dexilla-testnet", + "1956": "aiw3-testnet", + "1961": "selendra-network-mainnet", + "1967": "eleanor", + "1969": "super-smart-chain-testnet", + "1970": "super-smart-chain-mainnet", + "1971": "atelier", + "1972": "redecoin", + "1975": "onus-chain-mainnet", + "1984": "eurus-testnet", + "1985": "satoshie", + "1986": "satoshie-testnet", + "1987": "ethergem", + "1992": "hubble-exchange", + "1994": "ekta", + "1995": "edexa-testnet", + "1996": "sanko", + "1997": "kyoto", + "1998": "kyoto-testnet", + "2000": "dogechain-mainnet", + "2001": "milkomeda-c1-mainnet", + "2002": "milkomeda-a1-mainnet", + "2004": "metalink-network", + "2008": "cloudwalk-testnet", + "2009": "cloudwalk-mainnet", + "2013": "panarchy", + "2014": "now-chain", + "2016": "mainnetz-mainnet", + "2017": "adiri", + "2018": "publicmint-devnet", + "2019": "publicmint-testnet", + "2020": "publicmint-mainnet", + "2021": "edgeware-edgeevm-mainnet", + "2022": "beresheet-bereevm-testnet", + "2023": "taycan-testnet", + "2024": "swan-saturn-testnet", + "2025": "rangers-protocol-mainnet", + "2026": "edgeless-network", + "2031": "centrifuge", + "2032": "catalyst", + "2035": "phala-network", + "2037": "kiwi-subnet", + "2038": "shrapnel-testnet", + "2039": "aleph-zero-testnet", + "2040": "vanar-mainnet", + "2043": "neuroweb", + "2044": "shrapnel-subnet", + "2045": "aiw3-mainnet", + "2047": "stratos-testnet", + "2048": "stratos", + "2049": "movo-smart-chain-mainnet", + "2077": "quokkacoin-mainnet", + "2088": "altair", + "2100": "ecoball-mainnet", + "2101": "ecoball-testnet-espuma", + "2109": "exosama-network", + "2112": "uchain-mainnet", + "2121": "catena-mainnet", + "2122": "metaplayerone-mainnet", + "2124": "metaplayerone-dubai-testnet", + "2136": "bigshortbets-testnet", + "2137": "bigshortbets", + "2138": "defi-oracle-meta-testnet", + "2140": "oneness-network", + "2141": "oneness-testnet", + "2151": "bosagora-mainnet", + "2152": "findora-mainnet", + "2153": "findora-testnet", + "2154": "findora-forge", + "2199": "moonsama-network", + "2202": "antofy-mainnet", + "2203": "bitcoin-evm", + "2213": "evanesco-mainnet", + "2221": "kava-testnet", + "2222": "kava", + "2223": "vchain-mainnet", + "2241": "krest-network", + "2300": "bomb-chain", + "2306": "ebro-network", + "2309": "arevia", + "2323": "soma-network-testnet", + "2330": "altcoinchain", + "2331": "rss3-vsl-sepolia-testnet", + "2332": "soma-network-mainnet", + "2340": "atleta-olympia", + "2342": "omnia-chain", + "2355": "silicon-zkevm", + "2358": "kroma-sepolia", + "2370": "nexis-network-testnet", + "2399": "bomb-chain-testnet", + "2400": "tcg-verse-mainnet", + "2410": "karak-mainnet", + "2415": "xodex", + "2425": "king-of-legends-devnet", + "2442": "polygon-zkevm-cardona-testnet", + "2458": "hybrid-chain-network-testnet", + "2468": "hybrid-chain-network-mainnet", + "2484": "unicorn-ultra-nebulas-testnet", + "2522": "fraxtal-testnet", + "2525": "inevm-mainnet", + "2559": "kortho-mainnet", + "2569": "techpay-mainnet", + "2606": "pocrnet", + "2611": "redlight-chain-mainnet", + "2612": "ezchain-c-chain-mainnet", + "2613": "ezchain-c-chain-testnet", + "2625": "whitechain-testnet", + "2648": "ailayer-testnet", + "2649": "ailayer-mainnet", + "2662": "apex", + "2710": "morph-testnet", + "2718": "k-laos", + "2730": "xr-sepolia", + "2731": "elizabeth-testnet", + "2748": "nanon", + "2777": "gm-network-mainnet", + "2810": "morph-holesky", + "2907": "elux-chain", + "2911": "hychain", + "2941": "xenon-chain-testnet", + "2999": "bityuan-mainnet", + "3000": "cennznet-rata", + "3001": "cennznet-nikau", + "3003": "canxium-mainnet", + "3011": "playa3ull-games", + "3031": "orlando-chain", + "3033": "rebus-testnet", + "3068": "bifrost-mainnet", + "3073": "movement-evm", + "3100": "immu3-evm", + "3102": "vulture-evm-beta", + "3109": "satoshivm-alpha-mainnet", + "3110": "satoshivm-testnet", + "3269": "dubxcoin-network", + "3270": "dubxcoin-testnet", + "3306": "debounce-subnet-testnet", + "3331": "zcore-testnet", + "3333": "ethstorage-testnet", + "3334": "web3q-galileo", + "3335": "ethstorage-mainnet", + "3400": "paribu-net-mainnet", + "3424": "evolve-mainnet", + "3434": "securechain-testnet", + "3456": "layeredge-testnet", + "3490": "gtcscan", + "3500": "paribu-net-testnet", + "3501": "jfin-chain", + "3601": "pandoproject-mainnet", + "3602": "pandoproject-testnet", + "3630": "tycooncoin", + "3636": "botanix-testnet", + "3637": "botanix-mainnet", + "3639": "ichain-network", + "3645": "ichain-testnet", + "3666": "jouleverse-mainnet", + "3690": "bittex-mainnet", + "3693": "empire-network", + "3698": "senjepowers-testnet", + "3699": "senjepowers-mainnet", + "3737": "crossbell", + "3776": "astar-zkevm", + "3797": "alveychain-mainnet", + "3799": "tangle-testnet", + "3885": "firechain-zkevm-ghostrider", + "3888": "kalychain-mainnet", + "3889": "kalychain-testnet", + "3912": "drac-network", + "3939": "dos-tesnet", + "3966": "dyno-mainnet", + "3967": "dyno-testnet", + "3993": "apex-testnet", + "3999": "yuanchain-mainnet", + "4000": "ozone-chain-mainnet", + "4001": "peperium-chain-testnet", + "4002": "fantom-testnet", + "4003": "x1-fastnet", + "4040": "carbonium-testnet-network", + "4048": "gan-testnet", + "4058": "bahamut-ocean", + "4061": "nahmii-3-mainnet", + "4062": "nahmii-3-testnet", + "4078": "muster-mainnet", + "4080": "tobe-chain", + "4090": "fastex-chain-(bahamut)-oasis-testnet", + "4096": "bitindi-testnet", + "4099": "bitindi-mainnet", + "4102": "aioz-network-testnet", + "4139": "humans.ai-testnet", + "4141": "tipboxcoin-testnet", + "4157": "crossfi-testnet", + "4181": "phi-network-v1", + "4200": "merlin-mainnet", + "4201": "lukso-testnet", + "4202": "lisk-sepolia-testnet", + "4242": "nexi-mainnet", + "4243": "nexi-v2-mainnet", + "4337": "beam", + "4400": "credit-smart-chain-mainnet", + "4444": "htmlcoin-mainnet", + "4460": "orderly-sepolia-testnet", + "4488": "hydra-chain", + "4544": "emoney-network-testnet", + "4613": "very-mainnet", + "4653": "gold-chain", + "4689": "iotex-network-mainnet", + "4690": "iotex-network-testnet", + "4759": "meverse-chain-testnet", + "4777": "blackfort-exchange-network-testnet", + "4893": "globel-chain", + "4918": "venidium-testnet", + "4919": "venidium-mainnet", + "4999": "blackfort-exchange-network", + "5000": "mantle", + "5001": "mantle-testnet", + "5002": "treasurenet-mainnet-alpha", + "5003": "mantle-sepolia-testnet", + "5005": "treasurenet-testnet", + "5039": "onigiri-test-subnet", + "5040": "onigiri-subnet", + "5051": "nollie-skatechain-testnet", + "5100": "syndicate-testnet", + "5101": "syndicate-frame-chain", + "5102": "sic-testnet", + "5103": "coordinape-testnet", + "5104": "charmverse-testnet", + "5105": "superloyalty-testnet", + "5106": "azra-testnet", + "5112": "ham", + "5165": "bahamut", + "5169": "smart-layer-network", + "5177": "tlchain-network-mainnet", + "5197": "eraswap-mainnet", + "5234": "humanode-mainnet", + "5315": "uzmi-network-mainnet", + "5317": "optrust-testnet", + "5321": "itx-testnet", + "5353": "tritanium-testnet", + "5372": "settlus-testnet", + "5424": "edexa-mainnet", + "5439": "egochain", + "5522": "vex-evm-testnet", + "5551": "nahmii-2-mainnet", + "5555": "chain-verse-mainnet", + "5611": "opbnb-testnet", + "5615": "arcturus-testneet", + "5616": "arcturus-chain-testnet", + "5656": "qie-blockchain", + "5675": "filenova-testnet", + "5678": "tanssi-demo", + "5700": "syscoin-tanenbaum-testnet", + "5729": "hika-network-testnet", + "5758": "satoshichain-testnet", + "5777": "ganache", + "5845": "tangle", + "5851": "ontology-testnet", + "5869": "wegochain-rubidium-mainnet", + "6000": "bouncebit-testnet", + "6001": "bouncebit-mainnet", + "6065": "tres-testnet", + "6066": "tres-mainnet", + "6102": "cascadia-testnet", + "6118": "uptn-testnet", + "6119": "uptn", + "6321": "aura-euphoria-testnet", + "6322": "aura-mainnet", + "6363": "digit-soul-smart-chain", + "6502": "peerpay", + "6552": "scolcoin-weichain-testnet", + "6565": "fox-testnet-network", + "6626": "pixie-chain-mainnet", + "6660": "latest-chain-testnet", + "6661": "cybria-mainnet", + "6666": "cybria-testnet", + "6688": "irishub", + "6699": "ox-chain", + "6701": "paxb-mainnet", + "6779": "compverse-mainnet", + "6789": "gold-smart-chain-mainnet", + "6868": "pools-mainnet", + "6969": "tomb-chain-mainnet", + "6999": "polysmartchain", + "7000": "zetachain-mainnet", + "7001": "zetachain-athens-3-testnet", + "7007": "bst-chain", + "7027": "ella-the-heart", + "7070": "planq-mainnet", + "7077": "planq-atlas-testnet", + "7100": "nume", + "7118": "help-the-homeless", + "7171": "bitrock-mainnet", + "7300": "xpla-verse", + "7331": "klyntar", + "7332": "horizen-eon-mainnet", + "7341": "shyft-mainnet", + "7484": "raba-network-mainnet", + "7518": "meverse-chain-mainnet", + "7560": "cyber-mainnet", + "7575": "adil-testnet", + "7576": "adil-chain-v2-mainnet", + "7668": "the-root-network---mainnet", + "7672": "the-root-network---porcini-testnet", + "7700": "canto", + "7701": "canto-tesnet", + "7771": "bitrock-testnet", + "7775": "gdcc-testnet", + "7777": "rise-of-the-warbots-testnet", + "7778": "orenium-mainnet-protocol", + "7798": "openex-long-testnet", + "7860": "maalchain-testnet", + "7878": "hazlor-testnet", + "7887": "kinto-mainnet", + "7895": "ardenium-athena", + "7923": "dot-blox", + "7924": "mo-mainnet", + "7979": "dos-chain", + "8000": "teleport", + "8001": "teleport-testnet", + "8029": "mdgl-testnet", + "8047": "boat-mainnet", + "8054": "karak-sepolia", + "8080": "shardeum-liberty-1.x", + "8081": "shardeum-liberty-2.x", + "8082": "shardeum-sphinx-1.x", + "8086": "bitcoin-chain", + "8087": "e-dollar", + "8098": "streamux-blockchain", + "8131": "qitmeer-network-testnet", + "8132": "qitmeer-network-mixnet", + "8133": "qitmeer-network-privnet", + "8134": "amana", + "8135": "flana", + "8136": "mizana", + "8181": "testnet-beone-chain", + "8192": "torus-mainnet", + "8194": "torus-testnet", + "8217": "klaytn-mainnet-cypress", + "8227": "space-subnet", + "8272": "blockton-blockchain", + "8285": "korthotest", + "8329": "lorenzo", + "8387": "dracones-financial-services", + "8453": "base", + "8654": "toki-network", + "8655": "toki-testnet", + "8668": "hela-official-runtime-mainnet", + "8723": "tool-global-mainnet", + "8724": "tool-global-testnet", + "8726": "storagechain-mainnet", + "8727": "storagechain-testnet", + "8738": "alph-network", + "8768": "tmy-chain", + "8822": "iota-evm", + "8844": "hydra-chain-testnet", + "8848": "maro-blockchain-mainnet", + "8866": "superlumio", + "8880": "unique", + "8881": "quartz-by-unique", + "8882": "opal-testnet-by-unique", + "8883": "sapphire-by-unique", + "8888": "xanachain", + "8889": "vyvo-smart-chain", + "8890": "orenium-testnet-protocol", + "8898": "mammoth-mainnet", + "8899": "jibchain-l1", + "8911": "algen", + "8912": "algen-testnet", + "8921": "algen-layer2", + "8922": "algen-layer2-testnet", + "8989": "giant-mammoth-mainnet", + "8995": "bloxberg", + "9000": "evmos-testnet", + "9001": "evmos", + "9007": "shido-testnet-block", + "9008": "shido-mainnet-block", + "9012": "berylbit-mainnet", + "9024": "nexa-testnet-block", + "9025": "nexa-mainnet-block", + "9100": "genesis-coin", + "9223": "codefin-mainnet", + "9339": "dogcoin-testnet", + "9393": "dela-sepolia-testnet", + "9395": "evoke-mainnet", + "9527": "rangers-protocol-testnet-robin", + "9528": "qeasyweb3-testnet", + "9559": "neonlink-testnet", + "9700": "oort-mainnetdev", + "9728": "boba-bnb-testnet", + "9768": "mainnetz-testnet", + "9779": "pepenetwork-mainnet", + "9789": "tabi-testnet", + "9790": "carbon-evm", + "9792": "carbon-evm-testnet", + "9797": "optimusz7-mainnet", + "9818": "imperium-testnet", + "9819": "imperium-mainnet", + "9888": "dogelayer-mainnet", + "9898": "larissa-chain", + "9911": "espento-mainnet", + "9977": "mind-smart-chain-testnet", + "9980": "combo-mainnet", + "9981": "volley-mainnet", + "9990": "agung-network", + "9996": "mind-smart-chain-mainnet", + "9997": "altlayer-testnet", + "9998": "ztc-mainnet", + "9999": "myown-testnet", + "10000": "smart-bitcoin-cash", + "10001": "smart-bitcoin-cash-testnet", + "10024": "gon-chain", + "10081": "japan-open-chain-testnet", + "10086": "sjatsh", + "10101": "blockchain-genesis-mainnet", + "10200": "gnosis-chiado-testnet", + "10201": "maxxchain-mainnet", + "10222": "glscan", + "10242": "arthera-mainnet", + "10243": "arthera-testnet", + "10248": "0xtade", + "10321": "tao-evm-mainnet", + "10324": "tao-evm-testnet", + "10395": "worldland-testnet", + "10507": "numbers-mainnet", + "10508": "numbers-testnet", + "10823": "cryptocoinpay", + "10849": "lamina1", + "10850": "lamina1-identity", + "10946": "quadrans-blockchain", + "10947": "quadrans-blockchain-testnet", + "11110": "astra", + "11111": "wagmi", + "11115": "astra-testnet", + "11119": "hashbit-mainnet", + "11221": "shine-chain", + "11227": "jiritsu-testnet-subnet", + "11235": "haqq-network", + "11437": "shyft-testnet", + "11501": "bevm-mainnet", + "11503": "bevm-testnet", + "11612": "sardis-testnet", + "11822": "artela-testnet", + "11891": "polygon-supernet-arianee", + "12009": "satoshichain-mainnet", + "12020": "aternos", + "12051": "singularity-zero-testnet", + "12052": "singularity-zero-mainnet", + "12123": "brc-chain-mainnet", + "12306": "fibonacci-mainnet", + "12321": "blg-testnet", + "12324": "l3x-protocol", + "12325": "l3x-protocol-testnet", + "12345": "step-testnet", + "12553": "rss3-vsl-mainnet", + "12715": "rikeza-network-testnet", + "12781": "playdapp-testnet", + "12890": "quantum-chain-testnet", + "12898": "playfair-testnet-subnet", + "13000": "sps", + "13308": "credit-smart-chain", + "13337": "beam-testnet", + "13371": "immutable-zkevm", + "13381": "phoenix-mainnet", + "13396": "masa", + "13473": "immutable-zkevm-testnet", + "13505": "gravity-alpha-testnet-sepolia", + "13600": "kronobit-mainnet", + "13812": "susono", + "14000": "sps-testnet", + "14324": "evolve-testnet", + "14333": "vitruveo-testnet", + "14801": "vana-satori-testnet", + "14853": "humanode-testnet-5-israfel", + "15003": "immutable-zkevm-devnet", + "15257": "poodl-testnet", + "15259": "poodl-mainnet", + "15551": "loopnetwork-mainnet", + "15555": "trust-evm-testnet", + "15557": "eos-evm-network-testnet", + "16000": "metadot-mainnet", + "16001": "metadot-testnet", + "16116": "defiverse-mainnet", + "16507": "genesys-mainnet", + "16688": "irishub-testnet", + "16718": "airdao-mainnet", + "16888": "ivar-chain-testnet", + "17000": "holesky", + "17069": "garnet-holesky", + "17117": "defiverse-testnet", + "17171": "g8chain-mainnet", + "17172": "eclipse-subnet", + "17180": "palette-chain-testnet", + "17217": "konet-mainnet", + "17777": "eos-evm-network", + "18000": "frontier-of-dreams-testnet", + "18122": "smart-trade-networks", + "18159": "proof-of-memes", + "18181": "g8chain-testnet", + "18233": "unreal", + "18686": "mxc-zkevm-moonchain", + "18888": "titan-(tkx)", + "18889": "titan-(tkx)-testnet", + "19011": "home-verse-mainnet", + "19224": "decentraconnect-social", + "19527": "magnet-network", + "19600": "lbry-mainnet", + "19845": "btcix-network", + "20001": "camelark-mainnet", + "20041": "niza-chain-mainnet", + "20073": "niza-chain-testnet", + "20729": "callisto-testnet", + "20736": "p12-chain", + "20765": "jono11-subnet", + "21004": "c4ei", + "21133": "all-about-healthy", + "21223": "dcpay-mainnet", + "21224": "dcpay-testnet", + "21337": "cennznet-azalea", + "21816": "omchain-mainnet", + "21912": "bsl-mainnet", + "22023": "taycan", + "22040": "airdao-testnet", + "22222": "nautilus-mainnet", + "22324": "goldxchain-testnet", + "22776": "map-protocol", + "23006": "antofy-testnet", + "23118": "opside-testnet", + "23294": "oasis-sapphire", + "23295": "oasis-sapphire-testnet", + "23451": "dreyerx-mainnet", + "23452": "dreyerx-testnet", + "23888": "blast-testnet", + "24484": "webchain", + "24734": "mintme.com-coin", + "25186": "liquidlayer-mainnet", + "25839": "alveychain-testnet", + "25888": "hammer-chain-mainnet", + "25925": "bitkub-chain-testnet", + "26026": "ferrum-testnet", + "26600": "hertz-network-mainnet", + "26863": "oasischain-mainnet", + "27181": "klaos-nova", + "27483": "nanon-sepolia", + "27827": "zeroone-mainnet-subnet", + "28516": "vizing-testnet", + "28518": "vizing-mainnet", + "28528": "optimism-bedrock-(goerli-alpha-testnet)", + "28882": "boba-sepolia", + "29112": "hychain-testnet", + "29536": "kaichain-testnet", + "29548": "mch-verse-mainnet", + "30067": "piece-testnet", + "30088": "miyou-mainnet", + "30103": "cerium-testnet", + "30730": "movement-evm-legacy", + "30731": "movement-evm-devnet", + "30732": "movement-evm-testnet", + "31102": "ethersocial-network", + "31223": "cloudtx-mainnet", + "31224": "cloudtx-testnet", + "31337": "gochain-testnet", + "31414": "evoke-testnet", + "31753": "xchain-mainnet", + "31754": "xchain-testnet", + "32001": "w3gamez-holesky-testnet", + "32382": "santiment-intelligence-network", + "32520": "bitgert-mainnet", + "32659": "fusion-mainnet", + "32769": "zilliqa-evm", + "32990": "zilliqa-evm-isolated-server", + "33033": "entangle-mainnet", + "33101": "zilliqa-evm-testnet", + "33133": "entangle-testnet", + "33210": "cloudverse-subnet", + "33333": "aves-mainnet", + "33385": "zilliqa-evm-devnet", + "33469": "zilliqa-2-evm-devnet", + "33979": "funki", + "34443": "mode", + "35011": "j2o-taro", + "35441": "q-mainnet", + "35443": "q-testnet", + "38400": "connectormanager", + "38401": "connectormanager-robin", + "39656": "prm-mainnet", + "39797": "energi-mainnet", + "39815": "oho-mainnet", + "41500": "opulent-x-beta", + "42069": "pegglecoin", + "42072": "agentlayer-testnet", + "42161": "arbitrum-one", + "42170": "arbitrum-nova", + "42220": "celo-mainnet", + "42261": "oasis-emerald-testnet", + "42262": "oasis-emerald", + "42355": "goldxchain-mainnet", + "42766": "zkfair-mainnet", + "42793": "etherlink-mainnet", + "42801": "gesoten-verse-testnet", + "42888": "kinto-testnet", + "43110": "athereum", + "43111": "hemi-network", + "43113": "avalanche-fuji-testnet", + "43114": "avalanche-c-chain", + "43851": "zkfair-testnet", + "44444": "frenchain", + "44445": "quantum-network", + "44787": "celo-alfajores-testnet", + "45000": "autobahn-network", + "45454": "swamps-l2", + "45510": "deelance-mainnet", + "46688": "fusion-testnet", + "47805": "rei-network", + "48795": "space-subnet-testnet", + "48899": "zircuit-testnet", + "49049": "wireshape-floripa-testnet", + "49088": "bifrost-testnet", + "49321": "gunz-testnet", + "49797": "energi-testnet", + "50001": "liveplex-oracleevm", + "50005": "yooldo-verse-mainnet", + "50006": "yooldo-verse-testnet", + "50021": "gton-testnet", + "51178": "lumoz-testnet-alpha", + "51712": "sardis-mainnet", + "52014": "electroneum-mainnet", + "53277": "doid", + "53302": "superseed-sepolia-testnet", + "53457": "dodochain-testnet", + "53935": "dfk-chain", + "54211": "haqq-chain-testnet", + "54321": "toronet-testnet", + "54555": "photon-testnet", + "55004": "titan", + "55555": "rei-chain-mainnet", + "55556": "rei-chain-testnet", + "56026": "lambda-chain-mainnet", + "56288": "boba-bnb-mainnet", + "56400": "testnet-zeroone-subnet", + "56789": "velo-labs-mainnet", + "56797": "doid-testnet", + "57000": "rollux-testnet", + "57451": "coinsec-network", + "58008": "sepolia-pgn-(public-goods-network)", + "59140": "linea-goerli", + "59141": "linea-sepolia", + "59144": "linea", + "59971": "genesys-code-mainnet", + "60000": "thinkium-testnet-chain-0", + "60001": "thinkium-testnet-chain-1", + "60002": "thinkium-testnet-chain-2", + "60103": "thinkium-testnet-chain-103", + "60808": "bob", + "61406": "kaichain", + "61800": "axelchain-dev-net", + "61803": "etica-mainnet", + "61916": "doken-super-chain-mainnet", + "62049": "optopia-testnet", + "62050": "optopia-mainnet", + "62298": "citrea-devnet", + "62320": "celo-baklava-testnet", + "62621": "multivac-mainnet", + "62831": "plyr-tau-testnet", + "63000": "ecredits-mainnet", + "63001": "ecredits-testnet", + "65450": "scolcoin-mainnet", + "66988": "janus-testnet", + "67588": "cosmic-chain", + "68770": "dm2-verse-mainnet", + "69420": "condrieu", + "70000": "thinkium-mainnet-chain-0", + "70001": "thinkium-mainnet-chain-1", + "70002": "thinkium-mainnet-chain-2", + "70103": "thinkium-mainnet-chain-103", + "70700": "proof-of-play---apex", + "71111": "guapcoinx", + "71393": "polyjuice-testnet", + "71401": "godwoken-testnet-v1", + "71402": "godwoken-mainnet", + "72778": "caga-crypto-ankara-testnet", + "72992": "grok-chain-mainnet", + "73114": "icb-testnet", + "73115": "icb-network", + "73799": "energy-web-volta-testnet", + "73927": "mixin-virtual-machine", + "75000": "resincoin-mainnet", + "75512": "geek-verse-mainnet", + "75513": "geek-verse-testnet", + "77001": "borachain-mainnet", + "77238": "foundry-chain-testnet", + "77612": "vention-smart-chain-mainnet", + "77777": "toronet-mainnet", + "78110": "firenze-test-network", + "78281": "dragonfly-mainnet-(hexapod)", + "78430": "amplify-subnet", + "78431": "bulletin-subnet", + "78432": "conduit-subnet", + "78600": "vanguard", + "79879": "gold-smart-chain-testnet", + "80001": "mumbai", + "80002": "amoy", + "80084": "berachain-bartio", + "80085": "berachain-artio", + "80096": "hizoco-mainnet", + "81041": "nordek-mainnet", + "81341": "amana-testnet", + "81342": "amana-mixnet", + "81343": "amana-privnet", + "81351": "flana-testnet", + "81352": "flana-mixnet", + "81353": "flana-privnet", + "81361": "mizana-testnet", + "81362": "mizana-mixnet", + "81363": "mizana-privnet", + "81457": "blast", + "81720": "quantum-chain-mainnet", + "82459": "smart-layer-network-testnet", + "83872": "zedxion", + "84531": "base-goerli-testnet", + "84532": "base-sepolia-testnet", + "84886": "aerie-network", + "85449": "cybertrust", + "88002": "nautilus-proteus-testnet", + "88559": "inoai-network", + "88817": "unit-zero-testnet", + "88819": "unit-zero-stagenet", + "88882": "chiliz-spicy-testnet", + "88888": "chiliz-chain-mainnet", + "90001": "f(x)core-testnet-network", + "90210": "beverly-hills", + "90354": "camp-testnet", + "91002": "nautilus-trition-chain", + "91120": "metadap-enterprise-mainnet", + "91715": "combo-testnet", + "92001": "lambda-testnet", + "93572": "liquidlayer-testnet", + "96970": "mantis-testnet-(hexapod)", + "97531": "green-chain-testnet", + "97970": "optimusz7-testnet", + "98881": "ebi-chain", + "99099": "eliberty-testnet", + "99998": "ub-smart-chain(testnet)", + "99999": "ub-smart-chain", + "100000": "quarkchain-mainnet-root", + "100001": "quarkchain-mainnet-shard-0", + "100002": "quarkchain-mainnet-shard-1", + "100003": "quarkchain-mainnet-shard-2", + "100004": "quarkchain-mainnet-shard-3", + "100005": "quarkchain-mainnet-shard-4", + "100006": "quarkchain-mainnet-shard-5", + "100007": "quarkchain-mainnet-shard-6", + "100008": "quarkchain-mainnet-shard-7", + "100009": "vechain", + "100010": "vechain-testnet", + "100011": "quarkchain-l2-mainnet", + "101010": "global-trust-network", + "102031": "creditcoin-testnet", + "103090": "crystaleum", + "103454": "masa-testnet", + "104566": "kaspaclassic-mainnet", + "105105": "stratis-mainnet", + "108801": "brochain-mainnet", + "110000": "quarkchain-devnet-root", + "110001": "quarkchain-devnet-shard-0", + "110002": "quarkchain-devnet-shard-1", + "110003": "quarkchain-devnet-shard-2", + "110004": "quarkchain-devnet-shard-3", + "110005": "quarkchain-devnet-shard-4", + "110006": "quarkchain-devnet-shard-5", + "110007": "quarkchain-devnet-shard-6", + "110008": "quarkchain-devnet-shard-7", + "110011": "quarkchain-l2-testnet", + "111000": "siberium-test-network", + "111111": "siberium-network", + "111188": "re.al", + "112358": "metachain-one-mainnet", + "119139": "metadap-enterprise-testnet", + "123456": "adil-devnet", + "128123": "etherlink-testnet", + "131313": "odyssey-chain-(testnet)", + "131419": "etnd-chain-mainnets", + "132902": "form-testnet", + "141319": "magape-testnet", + "142857": "icplaza-mainnet", + "161212": "playfi-mainnet", + "165279": "eclat-mainnet", + "167000": "taiko-mainnet", + "167008": "taiko-katla-l2", + "167009": "taiko-hekla-l2", + "188710": "bitica-chain-mainnet", + "188881": "condor-test-network", + "192940": "mind-network-testnet", + "200000": "xfair.ai-testnet", + "200101": "milkomeda-c1-testnet", + "200202": "milkomeda-a1-testnet", + "200625": "akroma", + "200810": "bitlayer-testnet", + "200901": "bitlayer-mainnet", + "201018": "alaya-mainnet", + "201030": "alaya-dev-testnet", + "201804": "mythical-chain", + "202020": "decimal-smart-chain-testnet", + "202212": "x1-devnet", + "202401": "ymtech-besu-testnet", + "202624": "jellie", + "204005": "x1-network", + "205205": "auroria-testnet", + "210049": "gitagi-atlas-testnet", + "210425": "platon-mainnet", + "220315": "mas-mainnet", + "221230": "reapchain-mainnet", + "221231": "reapchain-testnet", + "222222": "hydradx", + "222555": "deepl-mainnet", + "222666": "deepl-testnet", + "224168": "taf-eco-chain-mainnet", + "224422": "conet-sebolia-testnet", + "224433": "conet-holesky", + "230315": "hashkey-chain-testnet(discard)", + "234666": "haymo-testnet", + "240515": "orange-chain-testnet", + "246529": "artis-sigma1", + "246785": "artis-testnet-tau1", + "247253": "saakuru-testnet", + "256256": "cmp-mainnet", + "262371": "eclat-testnet", + "266256": "gear-zero-network-testnet", + "271271": "egoncoin-testnet", + "281121": "social-smart-chain-mainnet", + "282828": "zillion-sepolia-testnet", + "309075": "one-world-chain-mainnet", + "313313": "saharaai-testnet", + "314159": "filecoin---calibration-testnet", + "322202": "parex-mainnet", + "323213": "bloom-genesis-testnet", + "330844": "ttcoin-smart-chain-mainnet", + "333313": "bloom-genesis-mainnet", + "333331": "aves-testnet", + "333333": "nativ3-testnet", + "333666": "oone-chain-testnet", + "333777": "oone-chain-devnet", + "333888": "polis-testnet", + "333999": "polis-mainnet", + "336655": "upchain-testnet", + "336666": "upchain-mainnet", + "355110": "bitfinity-network-mainnet", + "355113": "bitfinity-network-testnet", + "360890": "lavita-mainnet", + "363636": "digit-soul-smart-chain-2", + "373737": "hapchain-testnet", + "381931": "metal-c-chain", + "381932": "metal-tahoe-c-chain", + "404040": "tipboxcoin-mainnet", + "413413": "aie-testnet", + "420420": "kekchain", + "420666": "kekchain-(kektest)", + "420692": "alterium-l2-testnet", + "421611": "arbitrum-rinkeby", + "421613": "arbitrum-goerli", + "421614": "arbitrum-sepolia", + "424242": "fastex-chain-testnet", + "431140": "markr-go", + "432201": "dexalot-subnet-testnet", + "432204": "dexalot-subnet", + "444444": "syndr-l3-sepolia", + "444900": "weelink-testnet", + "471100": "patex-sepolia-testnet", + "473861": "ultra-pro-mainnet", + "474142": "openchain-mainnet", + "504441": "playdapp-network", + "512512": "cmp-testnet", + "513100": "dischain", + "526916": "docoin-community-chain", + "534351": "scroll-sepolia-testnet", + "534352": "scroll", + "534849": "shinarium-beta", + "535037": "beaneco-smartchain", + "552981": "one-world-chain-testnet", + "555555": "pentagon-testnet", + "555666": "eclipse-testnet", + "622277": "hypra-mainnet", + "622463": "atlas", + "641230": "bear-network-chain-mainnet", + "651940": "all-mainnet", + "656476": "open-campus-codex", + "660279": "xai-mainnet", + "666666": "vision---vpioneer-test-chain", + "666888": "hela-official-runtime-testnet", + "686868": "won-network", + "696969": "galadriel-devnet", + "710420": "tiltyard-mainnet-subnet", + "713715": "sei-devnet", + "721529": "eram-mainnet", + "743111": "hemi-sepolia", + "751230": "bear-network-chain-testnet", + "761412": "miexs-smartchain", + "764984": "lamina1-testnet", + "767368": "lamina1-identity-testnet", + "776877": "modularium", + "800001": "octaspace", + "808080": "biz-smart-chain-testnet", + "810180": "zklink-nova-mainnet", + "810181": "zklink-nova-sepolia-testnet", + "810182": "zklink-nova-goerli-testnet", + "820522": "tsc-testnet", + "827431": "curve-mainnet", + "839320": "prm-testnet", + "846000": "4goodnetwork", + "855456": "dodao", + "879151": "blocx-mainnet", + "888882": "rexx-mainnet", + "888888": "vision---mainnet", + "900000": "posichain-mainnet-shard-0", + "910000": "posichain-testnet-shard-0", + "912559": "astria-evm-dusknet", + "920000": "posichain-devnet-shard-0", + "920001": "posichain-devnet-shard-1", + "923018": "fncy-testnet", + "955081": "jono12-subnet", + "955305": "eluvio-content-fabric", + "978657": "treasure-ruby", + "984122": "forma", + "984123": "forma-sketchpad", + "988207": "ecrox-chain-mainnet", + "998899": "supernet-testnet", + "999999": "amchain", + "1100789": "netmind-chain-testnet", + "1127469": "tiltyard-subnet", + "1261120": "zkatana", + "1313114": "etho-protocol", + "1313500": "xerom", + "1337702": "kintsugi", + "1337802": "kiln", + "1337803": "zhejiang", + "1398243": "automata-testnet", + "1612127": "playfi-albireo-testnet", + "1637450": "xterio-testnet", + "1731313": "turkey-demo-dev", + "2021398": "debank-testnet", + "2099156": "plian-mainnet-main", + "2206132": "platon-dev-testnet2", + "2611555": "dpu-chain", + "3132023": "saharaai-network", + "3141592": "filecoin---butterfly-testnet", + "3397901": "funki-sepolia-sandbox", + "3441005": "manta-pacific-testnet", + "3441006": "manta-pacific-sepolia-testnet", + "4000003": "altlayer-zero-gas-network", + "4281033": "worlds-caldera", + "5112023": "numblock-chain", + "5167003": "mxc-wannsee-zkevm-testnet", + "5167004": "moonchain-geneva-testnet", + "5201420": "electroneum-testnet", + "5318008": "reactive-kopli", + "5555555": "imversed-mainnet", + "5555558": "imversed-testnet", + "6038361": "astar-zkyoto", + "6666665": "safe(anwang)-mainnet", + "6666666": "safe(anwang)-testnet", + "7225878": "saakuru-mainnet", + "7355310": "openvessel", + "7668378": "ql1-testnet", + "7762959": "musicoin", + "7777777": "zora", + "8007736": "plian-mainnet-subchain-1", + "8008135": "fhenix-helium", + "8080808": "hokum", + "8601152": "waterfall-8-test-network", + "8794598": "hapchain", + "8888881": "quarix-testnet", + "8888888": "quarix", + "9322252": "xcap", + "9322253": "milvine", + "10067275": "plian-testnet-subchain-1", + "10101010": "soverun-mainnet", + "10241025": "alienx-hal-testnet", + "11155111": "sepolia", + "11155420": "op-sepolia-testnet", + "13068200": "coti-devnet", + "13371337": "pepchain-churchill", + "14288640": "anduschain-mainnet", + "16658437": "plian-testnet-main", + "17000920": "lambda-chain-testnet", + "18289463": "iolite", + "20180427": "stability-testnet", + "20180430": "smartmesh-mainnet", + "20181205": "quarkblockchain", + "20201022": "pego-network", + "20240324": "debank-sepolia-testnet", + "20241133": "swan-proxima-testnet", + "20482050": "hokum-testnet", + "22052002": "excelon-mainnet", + "27082017": "excoincial-chain-volta-testnet", + "27082022": "excoincial-chain-mainnet", + "28122024": "ancient8-testnet", + "28945486": "auxilium-network-mainnet", + "29032022": "flachain-mainnet", + "31415926": "filecoin---local-testnet", + "35855456": "joys-digital-mainnet", + "37084624": "skale-nebula-hub-testnet", + "39916801": "kingdom-chain", + "43214913": "maistestsubnet", + "61717561": "aquachain", + "65010002": "autonity-bakerloo-(sumida)-testnet", + "65100002": "autonity-piccadilly-(sumida)-testnet", + "68840142": "frame-testnet", + "77787778": "0xhash-testnet", + "88888888": "t.e.a.m-blockchain", + "94204209": "polygon-blackberry", + "99415706": "joys-digital-testnet", + "108160679": "oraichain-mainnet", + "111557560": "cyber-testnet", + "123420111": "op-celestia-raspberry", + "161221135": "plume-testnet", + "168587773": "blast-sepolia-testnet", + "192837465": "gather-mainnet-network", + "222000222": "kanazawa", + "245022926": "neon-evm-devnet", + "245022934": "neon-evm-mainnet", + "278611351": "razor-skale-chain", + "311752642": "oneledger-mainnet", + "328527624": "nal-sepolia-testnet", + "333000333": "meld", + "356256156": "gather-testnet-network", + "486217935": "gather-devnet-network", + "666666666": "degen-chain", + "888888888": "ancient8", + "889910245": "ptcescan-testnet", + "889910246": "ptcescan-mainnet", + "974399131": "skale-calypso-hub-testnet", + "999999999": "zora-sepolia-testnet", + "1020352220": "skale-titan-hub-testnet", + "1122334455": "ipos-network", + "1146703430": "cyberdecknet", + "1273227453": "human-protocol", + "1313161554": "aurora-mainnet", + "1313161555": "aurora-testnet", + "1313161556": "aurora-betanet", + "1313161560": "powergold", + "1350216234": "skale-titan-hub", + "1351057110": "chaos-(skale-testnet)", + "1380012617": "rari-chain-mainnet", + "1380996178": "raptorchain", + "1444673419": "skale-europa-hub-testnet", + "1482601649": "skale-nebula-hub", + "1564830818": "skale-calypso-hub", + "1666600000": "harmony-mainnet-shard-0", + "1666600001": "harmony-mainnet-shard-1", + "1666700000": "harmony-testnet-shard-0", + "1666700001": "harmony-testnet-shard-1", + "1666900000": "harmony-devnet-shard-0", + "1666900001": "harmony-devnet-shard-1", + "1802203764": "kakarot-sepolia", + "1918988905": "rari-chain-testnet", + "2021121117": "datahopper", + "2046399126": "skale-europa-hub", + "3125659152": "pirl", + "4216137055": "oneledger-testnet-frankenstein", + "11297108109": "palm", + "11297108099": "palm-testnet", + "28872323069": "gitswarm-test-network", + "37714555429": "xai-testnet-v2", + "88153591557": "arbitrum-blueberry", + "107107114116": "kakarot-sepolia-deprecated", + "111222333444": "alphabet-mainnet", + "197710212030": "ntity-mainnet", + "197710212031": "haradev-testnet", + "202402181627": "gm-network-testnet", + "383414847825": "zeniq", + "666301171999": "pdc-mainnet", + "6022140761023": "molereum-network", + "2713017997578000": "dchain-testnet", + "2716446429837000": "dchain" +} as const; + +export const NETWORKS = { + "ethereum-mainnet": 1, + "bnb-smart-chain-mainnet": 56, + "arbitrum-one": 42161, + "base": 8453, + "avalanche-c-chain": 43114, + "polygon-mainnet": 137, + "linea": 59144, + "op-mainnet": 10, + "cronos-mainnet": 25, + "mantle": 5000, + "gnosis": 100, + "pulsechain": 369, + "filecoin---mainnet": 314, + "kava": 2222, + "fantom-opera": 250, + "rootstock-mainnet": 30, + "celo-mainnet": 42220, + "fusion-mainnet": 32659, + "metis-andromeda-mainnet": 1088, + "core-blockchain-mainnet": 1116, + "klaytn-mainnet-cypress": 8217, + "manta-pacific-mainnet": 169, + "moonbeam": 1284, + "iotex-network-mainnet": 4689, + "telos-evm-mainnet": 40, + "astar": 592, + "canto": 7700, + "conflux-espace": 1030, + "aurora-mainnet": 1313161554, + "xdc-network": 50, + "okxchain-mainnet": 66, + "meter-mainnet": 82, + "moonriver": 1285, + "carbon-evm": 9790, + "boba-network": 288, + "huobi-eco-chain-mainnet": 128, + "smart-bitcoin-cash": 10000, + "ultron-mainnet": 1231, + "songbird-canary-network": 19, + "wanchain": 888, + "zilliqa-evm": 32769, + "beam": 4337, + "vision---mainnet": 888888, + "elastos-smart-chain": 20, + "oasys-mainnet": 248, + "onus-chain-mainnet": 1975, + "evmos": 9001, + "dogechain-mainnet": 2000, + "coinex-smart-chain-mainnet": 52, + "fuse-mainnet": 122, + "harmony-mainnet-shard-0": 1666600000, + "theta-mainnet": 361, + "kcc-mainnet": 321, + "velas-evm-mainnet": 106, + "oasis-emerald": 42262, + "rollux-mainnet": 570, + "thundercore-mainnet": 108, + "neon-evm-mainnet": 245022934, + "ethereum-classic": 1, + "energy-web-chain": 246, + "step-network": 1234, + "opbnb-mainnet": 204, + "nahmii-2-mainnet": 5551, + "tomb-chain-mainnet": 6969, + "godwoken-mainnet": 71402, + "loopnetwork-mainnet": 15551, + "shiden": 336, + "ubiq": 8, + "syscoin-mainnet": 57, + "jibchain-l1": 8899, + "rei-network": 47805, + "high-performance-blockchain": 269, + "callisto-mainnet": 1, + "tenet": 1559, + "gochain": 60, + "bitgert-mainnet": 32520, + "rei-chain-mainnet": 55555, + "palm": 11297108109, + "expanse-network": 1, + "ropsten": 3, + "rinkeby": 4, + "goerli": 5, + "thaichain": 7, + "ubiq-network-testnet": 2, + "metadium-mainnet": 11, + "metadium-testnet": 12, + "diode-testnet-staging": 13, + "flare-mainnet": 14, + "diode-prenet": 15, + "songbird-testnet-coston": 16, + "thaichain-2.0-thaifi": 17, + "thundercore-testnet": 18, + "elastos-smart-chain-testnet": 21, + "ela-did-sidechain-mainnet": 22, + "ela-did-sidechain-testnet": 23, + "kardiachain-mainnet": 0, + "genesis-l1-testnet": 26, + "shibachain": 27, + "genesis-l1": 29, + "rootstock-testnet": 31, + "gooddata-testnet": 32, + "gooddata-mainnet": 33, + "securechain-mainnet": 34, + "tbwg-chain": 35, + "dxchain-mainnet": 36, + "xpla-mainnet": 37, + "valorbit": 38, + "u2u-solaris-mainnet": 39, + "telos-evm-testnet": 41, + "lukso-mainnet": 42, + "darwinia-pangolin-testnet": 43, + "crab-network": 44, + "darwinia-pangoro-testnet": 45, + "darwinia-network": 46, + "acria-intellichain": 47, + "ennothem-mainnet-proterozoic": 48, + "ennothem-testnet-pioneer": 49, + "xdc-apothem-network": 51, + "coinex-smart-chain-testnet": 53, + "openpiece-mainnet": 54, + "zyx-mainnet": 55, + "ontology-mainnet": 58, + "mordor-testnet": 7, + "ellaism": 64, + "okexchain-testnet": 65, + "dbchain-testnet": 67, + "soterone-mainnet": 68, + "optimism-kovan": 69, + "hoo-smart-chain": 70, + "conflux-espace-(testnet)": 71, + "dxchain-testnet": 72, + "fncy": 73, + "idchain-mainnet": 74, + "decimal-smart-chain-mainnet": 75, + "mix": 76, + "poa-network-sokol": 77, + "primuschain-mainnet": 78, + "zenith-mainnet": 79, + "genechain": 80, + "japan-open-chain-mainnet": 81, + "meter-testnet": 83, + "linqto-devnet": 84, + "gatechain-testnet": 85, + "gatechain-mainnet": 86, + "nova-network": 87, + "viction": 88, + "viction-testnet": 89, + "garizon-stage0": 90, + "garizon-stage1": 91, + "garizon-stage2": 92, + "garizon-stage3": 93, + "swissdlt": 94, + "camdl-mainnet": 95, + "bitkub-chain": 96, + "bnb-smart-chain-testnet": 97, + "six-protocol": 98, + "poa-network-core": 99, + "etherinc": 1, + "web3games-testnet": 102, + "worldland-mainnet": 103, + "kaiba-lightning-chain-testnet": 104, + "web3games-devnet": 105, + "nebula-testnet": 107, + "shibarium": 109, + "proton-testnet": 110, + "etherlite-chain": 111, + "coinbit-mainnet": 112, + "dehvo": 113, + "flare-testnet-coston2": 114, + "uptick-mainnet": 117, + "arcology-testnet": 118, + "enuls-mainnet": 119, + "enuls-testnet": 120, + "realchain-mainnet": 121, + "fuse-sparknet": 123, + "decentralized-web-mainnet": 124, + "oychain-testnet": 125, + "oychain-mainnet": 126, + "factory-127-mainnet": 127, + "innovator-chain": 129, + "engram-testnet": 131, + "namefi-chain-mainnet": 132, + "hashkey-chain-testnet": 133, + "iexec-sidechain": 134, + "alyx-chain-testnet": 135, + "deamchain-mainnet": 136, + "defi-oracle-meta-mainnet": 1, + "woopchain-mainnet": 139, + "eternal-mainnet": 140, + "openpiece-testnet": 141, + "dax-chain": 142, + "phi-network-v2": 144, + "soraai-testnet": 145, + "flag-mainnet": 147, + "shimmerevm": 148, + "six-protocol-testnet": 150, + "redbelly-network-mainnet": 151, + "redbelly-network-devnet": 152, + "redbelly-network-testnet": 153, + "redbelly-network-tge": 154, + "tenet-testnet": 155, + "oeblock-testnet": 156, + "puppynet-shibarium": 157, + "roburna-mainnet": 158, + "roburna-testnet": 159, + "armonia-eva-chain-mainnet": 160, + "armonia-eva-chain-testnet": 161, + "lightstreams-testnet": 162, + "lightstreams-mainnet": 163, + "omni-testnet": 164, + "omni": 166, + "atoshi-testnet": 167, + "aioz-network": 168, + "hoo-smart-chain-testnet": 170, + "latam-blockchain-resil-testnet": 172, + "dc-mainnet": 176, + "ame-chain-mainnet": 180, + "waterfall-network": 181, + "mint-mainnet": 185, + "seele-mainnet": 186, + "bmc-mainnet": 188, + "bmc-testnet": 189, + "filefilego": 191, + "crypto-emergency": 193, + "x-layer-testnet": 195, + "x-layer-mainnet": 196, + "neutrinos-testnet": 197, + "bitchain-mainnet": 198, + "bittorrent-chain-mainnet": 199, + "arbitrum-on-xdai": 200, + "moac-testnet": 201, + "edgeless-testnet": 202, + "vinuchain-testnet": 206, + "vinuchain-network": 207, + "structx-mainnet": 208, + "bitnet": 210, + "freight-trust-network": 0, + "mapo-makalu": 212, + "b2-hub-mainnet": 213, + "shinarium-mainnet": 214, + "siriusnet-v2": 217, + "scalind-testnet": 220, + "b2-mainnet": 223, + "viridis-testnet": 224, + "lachain-mainnet": 225, + "lachain-testnet": 226, + "mind-network-mainnet": 228, + "swapdex": 230, + "protojumbo-testnet": 234, + "deamchain-testnet": 236, + "plinga-mainnet": 242, + "fraxtal": 252, + "kroma": 255, + "huobi-eco-chain-testnet": 256, + "setheum": 258, + "neonlink-mainnet": 259, + "sur-blockchain-network": 1, + "neura": 266, + "neura-testnet": 267, + "neura-devnet": 268, + "egoncoin-mainnet": 271, + "lachain": 274, + "xfair.ai-mainnet": 278, + "bpx-blockchain": 279, + "cronos-zkevm-testnet": 282, + "orderly-mainnet": 291, + "hedera-mainnet": 295, + "hedera-testnet": 296, + "hedera-previewnet": 297, + "hedera-localnet": 298, + "zksync-sepolia-testnet": 300, + "zkcandy-sepolia-testnet": 302, + "neurochain-testnet": 303, + "zksats-mainnet": 305, + "lovely-network-testnet": 307, + "furtheon": 308, + "wyzth-testnet": 309, + "omax-mainnet": 311, + "neurochain-mainnet": 313, + "kcc-testnet": 322, + "cosvm-mainnet": 323, + "zksync-mainnet": 324, + "web3q-mainnet": 333, + "dfk-chain-test": 335, + "cronos-testnet": 338, + "tsc-mainnet": 16, + "theta-sapphire-testnet": 363, + "theta-amber-testnet": 364, + "theta-testnet": 365, + "consta-testnet": 371, + "zkamoeba-testnet": 380, + "zkamoeba-mainnet": 381, + "lisinski": 385, + "camdl-testnet": 395, + "near-mainnet": 397, + "near-testnet": 398, + "nativ3-mainnet": 399, + "hyperonchain-testnet": 400, + "ozone-chain-testnet": 401, + "syndr-l3": 404, + "pepe-chain-mainnet": 411, + "sx-network-mainnet": 416, + "latestnet": 418, + "optimism-goerli-testnet": 420, + "viridis-mainnet": 422, + "pgn-(public-goods-network)": 424, + "zeeth-chain": 427, + "geso-verse": 428, + "boyaa-mainnet": 434, + "ten-testnet": 443, + "synapse-chain-testnet": 444, + "arzio-chain": 456, + "areon-network-testnet": 462, + "areon-network-mainnet": 463, + "rupaya": 499, + "camino-c-chain": 1000, + "columbus-test-network": 1001, + "syndicate-chain": 510, + "double-a-chain-mainnet": 512, + "double-a-chain-testnet": 513, + "gear-zero-network-mainnet": 516, + "xt-smart-chain-mainnet": 1024, + "firechain-mainnet": 529, + "f(x)core-mainnet-network": 530, + "candle": 534, + "optrust-mainnet": 537, + "pawchain-testnet": 542, + "testnet": 545, + "vela1-chain-mainnet": 555, + "tao-network": 558, + "dogechain-testnet": 568, + "metachain-mainnet": 571, + "filenova-mainnet": 579, + "acala-mandala-testnet-tc9": 595, + "karura-network-testnet": 596, + "acala-network-testnet": 597, + "meshnyan-testnet": 600, + "vine-testnet": 601, + "eiob-mainnet": 612, + "graphlinq-blockchain-mainnet": 614, + "avocado": 634, + "previewnet": 646, + "sx-network-testnet": 647, + "endurance-smart-chain-mainnet": 648, + "kalichain-testnet": 653, + "kalichain": 654, + "ultronsmartchain": 662, + "pixie-chain-testnet": 666, + "laos-arrakis": 667, + "juncachain": 668, + "juncachain-testnet": 669, + "karura-network": 686, + "redstone": 690, + "star-social-testnet": 700, + "darwinia-koi-testnet": 701, + "blockchain-station-mainnet": 707, + "blockchain-station-testnet": 708, + "highbury": 710, + "vrcscan-mainnet": 713, + "shibarium-beta": 719, + "lycan-chain": 721, + "blucrates": 727, + "lovely-network-mainnet": 730, + "vention-smart-chain-testnet": 741, + "script-testnet": 742, + "mainnet": 747, + "ql1": 766, + "openchain-testnet": 776, + "cheapeth": 777, + "maal-chain": 786, + "acala-network": 787, + "aerochain-testnet": 788, + "patex": 789, + "rupaya-testnet": 799, + "lucid-blockchain": 800, + "haic": 803, + "portal-fantasy-chain-test": 808, + "haven1-testnet": 810, + "qitmeer-network-mainnet": 813, + "firechain-zkevm": 814, + "beone-chain-mainnet": 818, + "runic-chain-testnet": 822, + "checkdot-blockchain-devnet": 831, + "taraxa-mainnet": 841, + "taraxa-testnet": 842, + "zeeth-chain-dev": 859, + "fantasia-chain-mainnet": 868, + "bandai-namco-research-verse-mainnet": 876, + "dexit-network": 877, + "ambros-chain-mainnet": 880, + "maxi-chain-testnet": 898, + "maxi-chain-mainnet": 899, + "garizon-testnet-stage0": 900, + "garizon-testnet-stage1": 901, + "garizon-testnet-stage2": 902, + "garizon-testnet-stage3": 903, + "portal-fantasy-chain": 909, + "decentrabone-layer1-testnet": 910, + "taproot-mainnet": 911, + "rinia-testnet": 917, + "mode-testnet": 919, + "yidark-chain-mainnet": 927, + "pulsechain-testnet-v4": 943, + "munode-testnet": 956, + "lyra-chain": 957, + "btc20-smart-chain": 963, + "ethxy": 969, + "oort-mainnet": 970, + "oort-huygens": 971, + "oort-ascraeus": 972, + "nepal-blockchain-network": 977, + "ethxy-testnet": 979, + "top-mainnet-evm": 0, + "memo-smart-chain-mainnet": 985, + "top-mainnet": 0, + "eliberty-mainnet": 990, + "5irechain-thunder": 997, + "lucky-network": 998, + "wanchain-testnet": 999, + "gton-mainnet": 1000, + "klaytn-testnet-baobab": 1001, + "tectum-emission-token": 1003, + "t-ekta": 1004, + "newton-testnet": 1007, + "eurus-mainnet": 1008, + "jumbochain-mainnet": 1009, + "evrice-network": 1010, + "rebus-mainnet": 1011, + "newton": 1012, + "sakura": 1022, + "clover-testnet": 1023, + "clv-parachain": 1024, + "bittorrent-chain-testnet": 1028, + "proxy-network-testnet": 1031, + "bronos-testnet": 1038, + "bronos-mainnet": 1039, + "shimmerevm-testnet": 1073, + "iota-evm-testnet": 1075, + "mintara-testnet": 1079, + "mintara-mainnet": 1080, + "humans.ai-mainnet": 1089, + "moac-mainnet": 1099, + "dymension": 1100, + "polygon-zkevm": 1101, + "blxq-testnet": 1107, + "blxq-mainnet": 1108, + "wemix3.0-mainnet": 1111, + "wemix3.0-testnet": 1112, + "b2-hub-testnet": 1113, + "core-blockchain-testnet": 1115, + "dogcoin-mainnet": 1117, + "b2-testnet": 1123, + "defichain-evm-network-mainnet": 1130, + "defichain-evm-network-testnet": 1131, + "defimetachain-changi-testnet": 1133, + "lisk": 1135, + "amstar-testnet": 1138, + "mathchain": 1139, + "mathchain-testnet": 1140, + "flag-testnet": 1147, + "symplexia-smart-chain": 1149, + "origin-testnet": 1170, + "smart-host-teknoloji-testnet": 1177, + "clubmos-mainnet": 1188, + "iora-chain": 1197, + "cuckoo-chain": 1200, + "evanesco-testnet": 1201, + "world-trade-technical-chain-mainnet": 2048, + "saitablockchain(sbc)": 1209, + "cuckoo-sepolia": 1210, + "popcateum-mainnet": 1213, + "enterchain-mainnet": 1214, + "cycle-network-testnet": 1221, + "hybrid-testnet": 1225, + "exzo-network-mainnet": 1229, + "ultron-testnet": 1230, + "itx-mainnet": 1235, + "arc-mainnet": 1243, + "arc-testnet": 1244, + "om-platform-mainnet": 1246, + "dogether-mainnet": 1248, + "cic-chain-testnet": 1252, + "halo-mainnet": 1280, + "moonbase-alpha": 1287, + "moonrock": 1288, + "swisstronik-testnet": 1291, + "dos-fuji-subnet": 1311, + "alyx-mainnet": 1314, + "aia-mainnet": 1319, + "aia-testnet": 1320, + "sei-testnet": 1328, + "sei-network": 1329, + "geth-testnet": 1337, + "elysium-testnet": 1338, + "elysium-mainnet": 1339, + "blitz-subnet": 1343, + "cic-chain-mainnet": 1353, + "zafirium-mainnet": 1369, + "ramestta-mainnet": 1370, + "pingaksha-testnet": 1377, + "kalar-chain": 1379, + "amstar-mainnet": 1388, + "joseon-mainnet": 1392, + "silicon-zkevm-sepolia-testnet": 1414, + "rikeza-network-mainnet": 1433, + "living-assets-mainnet": 1440, + "polygon-zkevm-testnet": 1442, + "gil-testnet": 1452, + "metachain-istanbul": 1453, + "ctex-scan-blockchain": 1455, + "vitruveo-mainnet": 1490, + "idos-games-chain-testnet": 1499, + "bevm-canary": 1501, + "sherpax-mainnet": 1506, + "sherpax-testnet": 1507, + "beagle-messaging-chain": 1515, + "ethereum-inscription-mainnet": 1617, + "catecoin-chain-mainnet": 1618, + "atheios": 11235813, + "gravity-alpha-mainnet": 1625, + "btachain": 1657, + "liquichain": 1662, + "horizen-gobi-testnet": 1663, + "mint-testnet": 1686, + "mint-sepolia-testnet": 1687, + "ludan-mainnet": 1688, + "anytype-evm-chain": 1701, + "tbsi-mainnet": 1707, + "tbsi-testnet": 1708, + "doric-network": 1717, + "palette-chain-mainnet": 1718, + "reya-network": 1729, + "metal-l2-testnet": 1740, + "metal-l2": 1750, + "partychain": 1773, + "gauss-mainnet": 1777, + "zkbase-sepolia-testnet": 1789, + "kerleano": 1804, + "rabbit-analog-testnet-chain": 1807, + "cube-chain-mainnet": 1818, + "cube-chain-testnet": 1819, + "ruby-smart-chain-mainnet": 1821, + "teslafunds": 1, + "whitechain": 1875, + "gitshock-cartenz-testnet": 1881, + "lightlink-phoenix-mainnet": 1890, + "lightlink-pegasus-testnet": 1891, + "bon-network": 1, + "sports-chain-network": 1904, + "bitcichain-mainnet": 1907, + "bitcichain-testnet": 1908, + "merkle-scan": 1909, + "scalind": 1911, + "ruby-smart-chain-testnet": 1912, + "upb-crescdi-testnet": 1918, + "onus-chain-testnet": 1945, + "d-chain-mainnet": 1951, + "selendra-network-testnet": 1953, + "dexilla-testnet": 1954, + "aiw3-testnet": 1956, + "selendra-network-mainnet": 1961, + "eleanor": 1967, + "super-smart-chain-testnet": 1969, + "super-smart-chain-mainnet": 1970, + "atelier": 1971, + "redecoin": 1972, + "eurus-testnet": 1984, + "satoshie": 1985, + "satoshie-testnet": 1986, + "ethergem": 1987, + "hubble-exchange": 1992, + "ekta": 1994, + "edexa-testnet": 1995, + "sanko": 1996, + "kyoto": 1997, + "kyoto-testnet": 1998, + "milkomeda-c1-mainnet": 2001, + "milkomeda-a1-mainnet": 2002, + "metalink-network": 2004, + "cloudwalk-testnet": 2008, + "cloudwalk-mainnet": 2009, + "panarchy": 1, + "now-chain": 2014, + "mainnetz-mainnet": 2016, + "adiri": 2017, + "publicmint-devnet": 2018, + "publicmint-testnet": 2019, + "publicmint-mainnet": 2020, + "edgeware-edgeevm-mainnet": 2021, + "beresheet-bereevm-testnet": 2022, + "taycan-testnet": 2023, + "swan-saturn-testnet": 2024, + "rangers-protocol-mainnet": 2025, + "edgeless-network": 2026, + "centrifuge": 2031, + "catalyst": 2032, + "phala-network": 2035, + "kiwi-subnet": 2037, + "shrapnel-testnet": 2038, + "aleph-zero-testnet": 2039, + "vanar-mainnet": 2040, + "neuroweb": 2043, + "shrapnel-subnet": 2044, + "aiw3-mainnet": 2045, + "stratos-testnet": 2047, + "stratos": 2048, + "movo-smart-chain-mainnet": 2049, + "quokkacoin-mainnet": 2077, + "altair": 2088, + "ecoball-mainnet": 2100, + "ecoball-testnet-espuma": 2101, + "exosama-network": 2109, + "uchain-mainnet": 2112, + "catena-mainnet": 2121, + "metaplayerone-mainnet": 2122, + "metaplayerone-dubai-testnet": 2124, + "bigshortbets-testnet": 2136, + "bigshortbets": 2137, + "defi-oracle-meta-testnet": 21, + "oneness-network": 2140, + "oneness-testnet": 2141, + "bosagora-mainnet": 2151, + "findora-mainnet": 2152, + "findora-testnet": 2153, + "findora-forge": 2154, + "moonsama-network": 2199, + "antofy-mainnet": 2202, + "bitcoin-evm": 2203, + "evanesco-mainnet": 2213, + "kava-testnet": 2221, + "vchain-mainnet": 2223, + "krest-network": 2241, + "bomb-chain": 2300, + "ebro-network": 2306, + "arevia": 2309, + "soma-network-testnet": 2323, + "altcoinchain": 2330, + "rss3-vsl-sepolia-testnet": 2331, + "soma-network-mainnet": 2332, + "atleta-olympia": 2340, + "omnia-chain": 2342, + "silicon-zkevm": 2355, + "kroma-sepolia": 2358, + "nexis-network-testnet": 2370, + "bomb-chain-testnet": 2399, + "tcg-verse-mainnet": 2400, + "karak-mainnet": 2410, + "xodex": 10, + "king-of-legends-devnet": 2425, + "polygon-zkevm-cardona-testnet": 2442, + "hybrid-chain-network-testnet": 2458, + "hybrid-chain-network-mainnet": 2468, + "unicorn-ultra-nebulas-testnet": 2484, + "fraxtal-testnet": 2522, + "inevm-mainnet": 2525, + "kortho-mainnet": 2559, + "techpay-mainnet": 2569, + "pocrnet": 2606, + "redlight-chain-mainnet": 2611, + "ezchain-c-chain-mainnet": 2612, + "ezchain-c-chain-testnet": 2613, + "whitechain-testnet": 2625, + "ailayer-testnet": 2648, + "ailayer-mainnet": 2649, + "apex": 2662, + "morph-testnet": 2710, + "k-laos": 2718, + "xr-sepolia": 2730, + "elizabeth-testnet": 2731, + "nanon": 2748, + "gm-network-mainnet": 2777, + "morph-holesky": 2810, + "elux-chain": 2907, + "hychain": 2911, + "xenon-chain-testnet": 2941, + "bityuan-mainnet": 2999, + "cennznet-rata": 3000, + "cennznet-nikau": 3001, + "canxium-mainnet": 3003, + "playa3ull-games": 3011, + "orlando-chain": 3031, + "rebus-testnet": 3033, + "bifrost-mainnet": 3068, + "movement-evm": 3073, + "immu3-evm": 3100, + "vulture-evm-beta": 3102, + "satoshivm-alpha-mainnet": 3109, + "satoshivm-testnet": 3110, + "dubxcoin-network": 3269, + "dubxcoin-testnet": 3270, + "debounce-subnet-testnet": 3306, + "zcore-testnet": 3331, + "ethstorage-testnet": 3333, + "web3q-galileo": 3334, + "ethstorage-mainnet": 3335, + "paribu-net-mainnet": 3400, + "evolve-mainnet": 3424, + "securechain-testnet": 3434, + "layeredge-testnet": 3456, + "gtcscan": 3490, + "paribu-net-testnet": 3500, + "jfin-chain": 3501, + "pandoproject-mainnet": 3601, + "pandoproject-testnet": 3602, + "tycooncoin": 3630, + "botanix-testnet": 3636, + "botanix-mainnet": 3637, + "ichain-network": 3639, + "ichain-testnet": 3645, + "jouleverse-mainnet": 3666, + "bittex-mainnet": 3690, + "empire-network": 3693, + "senjepowers-testnet": 3698, + "senjepowers-mainnet": 3699, + "crossbell": 3737, + "astar-zkevm": 3776, + "alveychain-mainnet": 3797, + "tangle-testnet": 3799, + "firechain-zkevm-ghostrider": 3885, + "kalychain-mainnet": 3888, + "kalychain-testnet": 3889, + "drac-network": 3912, + "dos-tesnet": 3939, + "dyno-mainnet": 3966, + "dyno-testnet": 3967, + "apex-testnet": 3993, + "yuanchain-mainnet": 3999, + "ozone-chain-mainnet": 4000, + "peperium-chain-testnet": 4001, + "fantom-testnet": 4002, + "x1-fastnet": 4003, + "carbonium-testnet-network": 4040, + "gan-testnet": 4048, + "bahamut-ocean": 4058, + "nahmii-3-mainnet": 4061, + "nahmii-3-testnet": 4062, + "muster-mainnet": 4078, + "tobe-chain": 4080, + "fastex-chain-(bahamut)-oasis-testnet": 4090, + "bitindi-testnet": 4096, + "bitindi-mainnet": 4099, + "aioz-network-testnet": 4102, + "humans.ai-testnet": 4139, + "tipboxcoin-testnet": 4141, + "crossfi-testnet": 4157, + "phi-network-v1": 4181, + "merlin-mainnet": 4200, + "lukso-testnet": 4201, + "lisk-sepolia-testnet": 4202, + "nexi-mainnet": 4242, + "nexi-v2-mainnet": 4243, + "credit-smart-chain-mainnet": 4400, + "htmlcoin-mainnet": 4444, + "orderly-sepolia-testnet": 4460, + "hydra-chain": 4488, + "emoney-network-testnet": 4544, + "very-mainnet": 4613, + "gold-chain": 4653, + "iotex-network-testnet": 4690, + "meverse-chain-testnet": 4759, + "blackfort-exchange-network-testnet": 4777, + "globel-chain": 4893, + "venidium-testnet": 4918, + "venidium-mainnet": 4919, + "blackfort-exchange-network": 4999, + "mantle-testnet": 5001, + "treasurenet-mainnet-alpha": 5002, + "mantle-sepolia-testnet": 5003, + "treasurenet-testnet": 5005, + "onigiri-test-subnet": 5039, + "onigiri-subnet": 5040, + "nollie-skatechain-testnet": 5051, + "syndicate-testnet": 5100, + "syndicate-frame-chain": 5101, + "sic-testnet": 5102, + "coordinape-testnet": 5103, + "charmverse-testnet": 5104, + "superloyalty-testnet": 5105, + "azra-testnet": 5106, + "ham": 5112, + "bahamut": 5165, + "smart-layer-network": 5169, + "tlchain-network-mainnet": 5177, + "eraswap-mainnet": 5197, + "humanode-mainnet": 5234, + "uzmi-network-mainnet": 5315, + "optrust-testnet": 5317, + "itx-testnet": 5321, + "tritanium-testnet": 5353, + "settlus-testnet": 5372, + "edexa-mainnet": 5424, + "egochain": 5439, + "vex-evm-testnet": 5522, + "chain-verse-mainnet": 5555, + "opbnb-testnet": 5611, + "arcturus-testneet": 5615, + "arcturus-chain-testnet": 5616, + "qie-blockchain": 5656, + "filenova-testnet": 5675, + "tanssi-demo": 5678, + "syscoin-tanenbaum-testnet": 5700, + "hika-network-testnet": 5729, + "satoshichain-testnet": 5758, + "ganache": 5777, + "tangle": 5845, + "ontology-testnet": 5851, + "wegochain-rubidium-mainnet": 5869, + "bouncebit-testnet": 6000, + "bouncebit-mainnet": 6001, + "tres-testnet": 6065, + "tres-mainnet": 6066, + "cascadia-testnet": 6102, + "uptn-testnet": 6118, + "uptn": 6119, + "aura-euphoria-testnet": 6321, + "aura-mainnet": 6322, + "digit-soul-smart-chain": 6363, + "peerpay": 6502, + "scolcoin-weichain-testnet": 6552, + "fox-testnet-network": 6565, + "pixie-chain-mainnet": 6626, + "latest-chain-testnet": 6660, + "cybria-mainnet": 6661, + "cybria-testnet": 6666, + "irishub": 6688, + "ox-chain": 6699, + "paxb-mainnet": 6701, + "compverse-mainnet": 6779, + "gold-smart-chain-mainnet": 6789, + "pools-mainnet": 6868, + "polysmartchain": 6999, + "zetachain-mainnet": 7000, + "zetachain-athens-3-testnet": 7001, + "bst-chain": 7007, + "ella-the-heart": 7027, + "planq-mainnet": 7070, + "planq-atlas-testnet": 7077, + "nume": 7100, + "help-the-homeless": 7118, + "bitrock-mainnet": 7171, + "xpla-verse": 7300, + "klyntar": 7331, + "horizen-eon-mainnet": 7332, + "shyft-mainnet": 7341, + "raba-network-mainnet": 7484, + "meverse-chain-mainnet": 7518, + "cyber-mainnet": 7560, + "adil-testnet": 7575, + "adil-chain-v2-mainnet": 7576, + "the-root-network---mainnet": 7668, + "the-root-network---porcini-testnet": 7672, + "canto-tesnet": 7701, + "bitrock-testnet": 7771, + "gdcc-testnet": 7775, + "rise-of-the-warbots-testnet": 7777, + "orenium-mainnet-protocol": 7778, + "openex-long-testnet": 7798, + "maalchain-testnet": 7860, + "hazlor-testnet": 7878, + "kinto-mainnet": 7887, + "ardenium-athena": 7895, + "dot-blox": 7923, + "mo-mainnet": 7924, + "dos-chain": 7979, + "teleport": 8000, + "teleport-testnet": 8001, + "mdgl-testnet": 8029, + "boat-mainnet": 8047, + "karak-sepolia": 8054, + "shardeum-liberty-1.x": 8080, + "shardeum-liberty-2.x": 8081, + "shardeum-sphinx-1.x": 8082, + "bitcoin-chain": 8086, + "e-dollar": 8087, + "streamux-blockchain": 8098, + "qitmeer-network-testnet": 8131, + "qitmeer-network-mixnet": 8132, + "qitmeer-network-privnet": 8133, + "amana": 8134, + "flana": 8135, + "mizana": 8136, + "testnet-beone-chain": 8181, + "torus-mainnet": 8192, + "torus-testnet": 8194, + "space-subnet": 8227, + "blockton-blockchain": 8272, + "korthotest": 8285, + "lorenzo": 8329, + "dracones-financial-services": 8387, + "toki-network": 8654, + "toki-testnet": 8655, + "hela-official-runtime-mainnet": 8668, + "tool-global-mainnet": 8723, + "tool-global-testnet": 8724, + "storagechain-mainnet": 8726, + "storagechain-testnet": 8727, + "alph-network": 8738, + "tmy-chain": 8768, + "iota-evm": 8822, + "hydra-chain-testnet": 8844, + "maro-blockchain-mainnet": 8848, + "superlumio": 8866, + "unique": 8880, + "quartz-by-unique": 8881, + "opal-testnet-by-unique": 8882, + "sapphire-by-unique": 8883, + "xanachain": 8888, + "vyvo-smart-chain": 8889, + "orenium-testnet-protocol": 8890, + "mammoth-mainnet": 8898, + "algen": 8911, + "algen-testnet": 8912, + "algen-layer2": 8921, + "algen-layer2-testnet": 8922, + "giant-mammoth-mainnet": 8989, + "bloxberg": 8995, + "evmos-testnet": 9000, + "shido-testnet-block": 9007, + "shido-mainnet-block": 9008, + "berylbit-mainnet": 9012, + "nexa-testnet-block": 9024, + "nexa-mainnet-block": 9025, + "genesis-coin": 9100, + "codefin-mainnet": 9223, + "dogcoin-testnet": 9339, + "dela-sepolia-testnet": 9393, + "evoke-mainnet": 9395, + "rangers-protocol-testnet-robin": 9527, + "qeasyweb3-testnet": 9528, + "neonlink-testnet": 9559, + "oort-mainnetdev": 9700, + "boba-bnb-testnet": 9728, + "mainnetz-testnet": 9768, + "pepenetwork-mainnet": 9779, + "tabi-testnet": 9789, + "carbon-evm-testnet": 9792, + "optimusz7-mainnet": 9797, + "imperium-testnet": 9818, + "imperium-mainnet": 9819, + "dogelayer-mainnet": 9888, + "larissa-chain": 1, + "espento-mainnet": 9911, + "mind-smart-chain-testnet": 9977, + "combo-mainnet": 9980, + "volley-mainnet": 9981, + "agung-network": 9990, + "mind-smart-chain-mainnet": 9996, + "altlayer-testnet": 9997, + "ztc-mainnet": 9998, + "myown-testnet": 9999, + "smart-bitcoin-cash-testnet": 10001, + "gon-chain": 10024, + "japan-open-chain-testnet": 10081, + "sjatsh": 10086, + "blockchain-genesis-mainnet": 10101, + "gnosis-chiado-testnet": 10200, + "maxxchain-mainnet": 10201, + "glscan": 10222, + "arthera-mainnet": 10242, + "arthera-testnet": 10243, + "0xtade": 10248, + "tao-evm-mainnet": 10321, + "tao-evm-testnet": 10324, + "worldland-testnet": 10395, + "numbers-mainnet": 10507, + "numbers-testnet": 10508, + "cryptocoinpay": 10823, + "lamina1": 10849, + "lamina1-identity": 10850, + "quadrans-blockchain": 10946, + "quadrans-blockchain-testnet": 10947, + "astra": 11110, + "wagmi": 11111, + "astra-testnet": 11115, + "hashbit-mainnet": 11119, + "shine-chain": 11221, + "jiritsu-testnet-subnet": 11227, + "haqq-network": 11235, + "shyft-testnet": 11437, + "bevm-mainnet": 11501, + "bevm-testnet": 11503, + "sardis-testnet": 11612, + "artela-testnet": 11822, + "polygon-supernet-arianee": 11891, + "satoshichain-mainnet": 12009, + "aternos": 12020, + "singularity-zero-testnet": 12051, + "singularity-zero-mainnet": 12052, + "brc-chain-mainnet": 12123, + "fibonacci-mainnet": 1230, + "blg-testnet": 12321, + "l3x-protocol": 12324, + "l3x-protocol-testnet": 12325, + "step-testnet": 12345, + "rss3-vsl-mainnet": 12553, + "rikeza-network-testnet": 12715, + "playdapp-testnet": 12781, + "quantum-chain-testnet": 12890, + "playfair-testnet-subnet": 12898, + "sps": 13000, + "credit-smart-chain": 13308, + "beam-testnet": 13337, + "immutable-zkevm": 13371, + "phoenix-mainnet": 13381, + "masa": 13396, + "immutable-zkevm-testnet": 13473, + "gravity-alpha-testnet-sepolia": 13505, + "kronobit-mainnet": 13600, + "susono": 13812, + "sps-testnet": 14000, + "evolve-testnet": 14324, + "vitruveo-testnet": 14333, + "vana-satori-testnet": 14801, + "humanode-testnet-5-israfel": 14853, + "immutable-zkevm-devnet": 15003, + "poodl-testnet": 15257, + "poodl-mainnet": 15259, + "trust-evm-testnet": 15555, + "eos-evm-network-testnet": 15557, + "metadot-mainnet": 16000, + "metadot-testnet": 16001, + "defiverse-mainnet": 16116, + "genesys-mainnet": 16507, + "irishub-testnet": 16688, + "airdao-mainnet": 16718, + "ivar-chain-testnet": 16888, + "holesky": 17000, + "garnet-holesky": 17069, + "defiverse-testnet": 17117, + "g8chain-mainnet": 17171, + "eclipse-subnet": 17172, + "palette-chain-testnet": 17180, + "konet-mainnet": 17217, + "eos-evm-network": 17777, + "frontier-of-dreams-testnet": 18000, + "smart-trade-networks": 18122, + "proof-of-memes": 18159, + "g8chain-testnet": 18181, + "unreal": 18233, + "mxc-zkevm-moonchain": 18686, + "titan-(tkx)": 18888, + "titan-(tkx)-testnet": 18889, + "home-verse-mainnet": 19011, + "decentraconnect-social": 19224, + "magnet-network": 19527, + "lbry-mainnet": 19600, + "btcix-network": 19845, + "camelark-mainnet": 20001, + "niza-chain-mainnet": 20041, + "niza-chain-testnet": 20073, + "callisto-testnet": 79, + "p12-chain": 20736, + "jono11-subnet": 20765, + "c4ei": 21004, + "all-about-healthy": 21133, + "dcpay-mainnet": 21223, + "dcpay-testnet": 21224, + "cennznet-azalea": 21337, + "omchain-mainnet": 21816, + "bsl-mainnet": 21912, + "taycan": 22023, + "airdao-testnet": 22040, + "nautilus-mainnet": 22222, + "goldxchain-testnet": 22324, + "map-protocol": 22776, + "antofy-testnet": 23006, + "opside-testnet": 23118, + "oasis-sapphire": 23294, + "oasis-sapphire-testnet": 23295, + "dreyerx-mainnet": 23451, + "dreyerx-testnet": 23452, + "blast-testnet": 23888, + "webchain": 37129, + "mintme.com-coin": 37480, + "liquidlayer-mainnet": 25186, + "alveychain-testnet": 25839, + "hammer-chain-mainnet": 25888, + "bitkub-chain-testnet": 25925, + "ferrum-testnet": 26026, + "hertz-network-mainnet": 26600, + "oasischain-mainnet": 26863, + "klaos-nova": 27181, + "nanon-sepolia": 27483, + "zeroone-mainnet-subnet": 27827, + "vizing-testnet": 28516, + "vizing-mainnet": 28518, + "optimism-bedrock-(goerli-alpha-testnet)": 28528, + "boba-sepolia": 28882, + "hychain-testnet": 29112, + "kaichain-testnet": 29536, + "mch-verse-mainnet": 29548, + "piece-testnet": 30067, + "miyou-mainnet": 30088, + "cerium-testnet": 30103, + "movement-evm-legacy": 30730, + "movement-evm-devnet": 30731, + "movement-evm-testnet": 30732, + "ethersocial-network": 1, + "cloudtx-mainnet": 31223, + "cloudtx-testnet": 31224, + "gochain-testnet": 31337, + "evoke-testnet": 31414, + "xchain-mainnet": 31753, + "xchain-testnet": 31754, + "w3gamez-holesky-testnet": 32001, + "santiment-intelligence-network": 32382, + "zilliqa-evm-isolated-server": 32990, + "entangle-mainnet": 33033, + "zilliqa-evm-testnet": 33101, + "entangle-testnet": 33133, + "cloudverse-subnet": 33210, + "aves-mainnet": 33333, + "zilliqa-evm-devnet": 33385, + "zilliqa-2-evm-devnet": 33469, + "funki": 33979, + "mode": 34443, + "j2o-taro": 35011, + "q-mainnet": 35441, + "q-testnet": 35443, + "connectormanager": 38400, + "connectormanager-robin": 38401, + "prm-mainnet": 39656, + "energi-mainnet": 39797, + "oho-mainnet": 39815, + "opulent-x-beta": 41500, + "pegglecoin": 42069, + "agentlayer-testnet": 42072, + "arbitrum-nova": 42170, + "oasis-emerald-testnet": 42261, + "goldxchain-mainnet": 42355, + "zkfair-mainnet": 42766, + "etherlink-mainnet": 42793, + "gesoten-verse-testnet": 42801, + "kinto-testnet": 42888, + "athereum": 43110, + "hemi-network": 43111, + "avalanche-fuji-testnet": 1, + "zkfair-testnet": 43851, + "frenchain": 44444, + "quantum-network": 44445, + "celo-alfajores-testnet": 44787, + "autobahn-network": 45000, + "swamps-l2": 45454, + "deelance-mainnet": 45510, + "fusion-testnet": 46688, + "space-subnet-testnet": 48795, + "zircuit-testnet": 48899, + "wireshape-floripa-testnet": 49049, + "bifrost-testnet": 49088, + "gunz-testnet": 49321, + "energi-testnet": 49797, + "liveplex-oracleevm": 50001, + "yooldo-verse-mainnet": 50005, + "yooldo-verse-testnet": 50006, + "gton-testnet": 50021, + "lumoz-testnet-alpha": 51178, + "sardis-mainnet": 51712, + "electroneum-mainnet": 52014, + "doid": 53277, + "superseed-sepolia-testnet": 53302, + "dodochain-testnet": 53457, + "dfk-chain": 53935, + "haqq-chain-testnet": 54211, + "toronet-testnet": 54321, + "photon-testnet": 54555, + "titan": 55004, + "rei-chain-testnet": 55556, + "lambda-chain-mainnet": 56026, + "boba-bnb-mainnet": 56288, + "testnet-zeroone-subnet": 56400, + "velo-labs-mainnet": 56789, + "doid-testnet": 56797, + "rollux-testnet": 57000, + "coinsec-network": 57451, + "sepolia-pgn-(public-goods-network)": 58008, + "linea-goerli": 59140, + "linea-sepolia": 59141, + "genesys-code-mainnet": 59971, + "thinkium-testnet-chain-0": 60000, + "thinkium-testnet-chain-1": 60001, + "thinkium-testnet-chain-2": 60002, + "thinkium-testnet-chain-103": 60103, + "bob": 60808, + "kaichain": 61406, + "axelchain-dev-net": 61800, + "etica-mainnet": 61803, + "doken-super-chain-mainnet": 61916, + "optopia-testnet": 62049, + "optopia-mainnet": 62050, + "citrea-devnet": 62298, + "celo-baklava-testnet": 62320, + "multivac-mainnet": 62621, + "plyr-tau-testnet": 62831, + "ecredits-mainnet": 63000, + "ecredits-testnet": 63001, + "scolcoin-mainnet": 65450, + "janus-testnet": 66988, + "cosmic-chain": 3344, + "dm2-verse-mainnet": 68770, + "condrieu": 69420, + "thinkium-mainnet-chain-0": 70000, + "thinkium-mainnet-chain-1": 70001, + "thinkium-mainnet-chain-2": 70002, + "thinkium-mainnet-chain-103": 70103, + "proof-of-play---apex": 70700, + "guapcoinx": 71111, + "polyjuice-testnet": 1, + "godwoken-testnet-v1": 71401, + "caga-crypto-ankara-testnet": 72778, + "grok-chain-mainnet": 72992, + "icb-testnet": 73114, + "icb-network": 73115, + "energy-web-volta-testnet": 73799, + "mixin-virtual-machine": 73927, + "resincoin-mainnet": 75000, + "geek-verse-mainnet": 75512, + "geek-verse-testnet": 75513, + "borachain-mainnet": 77001, + "foundry-chain-testnet": 77238, + "vention-smart-chain-mainnet": 77612, + "toronet-mainnet": 77777, + "firenze-test-network": 78110, + "dragonfly-mainnet-(hexapod)": 78281, + "amplify-subnet": 78430, + "bulletin-subnet": 78431, + "conduit-subnet": 78432, + "vanguard": 78600, + "gold-smart-chain-testnet": 79879, + "mumbai": 80001, + "amoy": 80002, + "berachain-bartio": 80084, + "berachain-artio": 80085, + "hizoco-mainnet": 80096, + "nordek-mainnet": 81041, + "amana-testnet": 81341, + "amana-mixnet": 81342, + "amana-privnet": 81343, + "flana-testnet": 81351, + "flana-mixnet": 81352, + "flana-privnet": 81353, + "mizana-testnet": 81361, + "mizana-mixnet": 81362, + "mizana-privnet": 81363, + "blast": 81457, + "quantum-chain-mainnet": 81720, + "smart-layer-network-testnet": 82459, + "zedxion": 83872, + "base-goerli-testnet": 84531, + "base-sepolia-testnet": 84532, + "aerie-network": 84886, + "cybertrust": 48501, + "nautilus-proteus-testnet": 88002, + "inoai-network": 88559, + "unit-zero-testnet": 88817, + "unit-zero-stagenet": 88819, + "chiliz-spicy-testnet": 88882, + "chiliz-chain-mainnet": 88888, + "f(x)core-testnet-network": 90001, + "beverly-hills": 90210, + "camp-testnet": 90354, + "nautilus-trition-chain": 91002, + "metadap-enterprise-mainnet": 91120, + "combo-testnet": 91715, + "lambda-testnet": 92001, + "liquidlayer-testnet": 93572, + "mantis-testnet-(hexapod)": 96970, + "green-chain-testnet": 97531, + "optimusz7-testnet": 97970, + "ebi-chain": 98881, + "eliberty-testnet": 99099, + "ub-smart-chain(testnet)": 99998, + "ub-smart-chain": 99999, + "quarkchain-mainnet-root": 100000, + "quarkchain-mainnet-shard-0": 100001, + "quarkchain-mainnet-shard-1": 100002, + "quarkchain-mainnet-shard-2": 100003, + "quarkchain-mainnet-shard-3": 100004, + "quarkchain-mainnet-shard-4": 100005, + "quarkchain-mainnet-shard-5": 100006, + "quarkchain-mainnet-shard-6": 100007, + "quarkchain-mainnet-shard-7": 100008, + "vechain": 100009, + "vechain-testnet": 100010, + "quarkchain-l2-mainnet": 100011, + "global-trust-network": 101010, + "creditcoin-testnet": 102031, + "crystaleum": 1, + "masa-testnet": 103454, + "kaspaclassic-mainnet": 104566, + "stratis-mainnet": 105105, + "brochain-mainnet": 108801, + "quarkchain-devnet-root": 110000, + "quarkchain-devnet-shard-0": 110001, + "quarkchain-devnet-shard-1": 110002, + "quarkchain-devnet-shard-2": 110003, + "quarkchain-devnet-shard-3": 110004, + "quarkchain-devnet-shard-4": 110005, + "quarkchain-devnet-shard-5": 110006, + "quarkchain-devnet-shard-6": 110007, + "quarkchain-devnet-shard-7": 110008, + "quarkchain-l2-testnet": 110011, + "siberium-test-network": 111000, + "siberium-network": 111111, + "re.al": 111188, + "metachain-one-mainnet": 112358, + "metadap-enterprise-testnet": 119139, + "adil-devnet": 123456, + "etherlink-testnet": 128123, + "odyssey-chain-(testnet)": 131313, + "etnd-chain-mainnets": 131419, + "form-testnet": 132902, + "magape-testnet": 141319, + "icplaza-mainnet": 142857, + "playfi-mainnet": 161212, + "eclat-mainnet": 165279, + "taiko-mainnet": 167000, + "taiko-katla-l2": 167008, + "taiko-hekla-l2": 167009, + "bitica-chain-mainnet": 188710, + "condor-test-network": 188881, + "mind-network-testnet": 192940, + "xfair.ai-testnet": 200000, + "milkomeda-c1-testnet": 200101, + "milkomeda-a1-testnet": 200202, + "akroma": 200625, + "bitlayer-testnet": 200810, + "bitlayer-mainnet": 200901, + "alaya-mainnet": 1, + "alaya-dev-testnet": 1, + "mythical-chain": 201804, + "decimal-smart-chain-testnet": 202020, + "x1-devnet": 202212, + "ymtech-besu-testnet": 202401, + "jellie": 202624, + "x1-network": 204005, + "auroria-testnet": 205205, + "gitagi-atlas-testnet": 210049, + "platon-mainnet": 1, + "mas-mainnet": 220315, + "reapchain-mainnet": 221230, + "reapchain-testnet": 221231, + "hydradx": 222222, + "deepl-mainnet": 222555, + "deepl-testnet": 222666, + "taf-eco-chain-mainnet": 224168, + "conet-sebolia-testnet": 224422, + "conet-holesky": 224433, + "hashkey-chain-testnet(discard)": 230315, + "haymo-testnet": 234666, + "orange-chain-testnet": 240515, + "artis-sigma1": 246529, + "artis-testnet-tau1": 246785, + "saakuru-testnet": 247253, + "cmp-mainnet": 256256, + "eclat-testnet": 262371, + "gear-zero-network-testnet": 266256, + "egoncoin-testnet": 271271, + "social-smart-chain-mainnet": 281121, + "zillion-sepolia-testnet": 282828, + "one-world-chain-mainnet": 309075, + "saharaai-testnet": 313313, + "filecoin---calibration-testnet": 314159, + "parex-mainnet": 322202, + "bloom-genesis-testnet": 323213, + "ttcoin-smart-chain-mainnet": 330844, + "bloom-genesis-mainnet": 333313, + "aves-testnet": 333331, + "nativ3-testnet": 333333, + "oone-chain-testnet": 333666, + "oone-chain-devnet": 333777, + "polis-testnet": 333888, + "polis-mainnet": 333999, + "upchain-testnet": 336655, + "upchain-mainnet": 336666, + "bitfinity-network-mainnet": 355110, + "bitfinity-network-testnet": 355113, + "lavita-mainnet": 360890, + "digit-soul-smart-chain-2": 363636, + "hapchain-testnet": 373737, + "metal-c-chain": 381931, + "metal-tahoe-c-chain": 381932, + "tipboxcoin-mainnet": 404040, + "aie-testnet": 413413, + "kekchain": 103090, + "kekchain-(kektest)": 1, + "alterium-l2-testnet": 420692, + "arbitrum-rinkeby": 421611, + "arbitrum-goerli": 421613, + "arbitrum-sepolia": 421614, + "fastex-chain-testnet": 424242, + "markr-go": 431140, + "dexalot-subnet-testnet": 432201, + "dexalot-subnet": 432204, + "syndr-l3-sepolia": 444444, + "weelink-testnet": 444900, + "patex-sepolia-testnet": 471100, + "ultra-pro-mainnet": 473861, + "openchain-mainnet": 474142, + "playdapp-network": 504441, + "cmp-testnet": 512512, + "dischain": 513100, + "docoin-community-chain": 526916, + "scroll-sepolia-testnet": 534351, + "scroll": 534352, + "shinarium-beta": 534849, + "beaneco-smartchain": 535037, + "one-world-chain-testnet": 552981, + "pentagon-testnet": 555555, + "eclipse-testnet": 555666, + "hypra-mainnet": 622277, + "atlas": 622463, + "bear-network-chain-mainnet": 641230, + "all-mainnet": 651940, + "open-campus-codex": 656476, + "xai-mainnet": 660279, + "vision---vpioneer-test-chain": 666666, + "hela-official-runtime-testnet": 666888, + "won-network": 686868, + "galadriel-devnet": 696969, + "tiltyard-mainnet-subnet": 710420, + "sei-devnet": 713715, + "eram-mainnet": 721529, + "hemi-sepolia": 743111, + "bear-network-chain-testnet": 751230, + "miexs-smartchain": 761412, + "lamina1-testnet": 764984, + "lamina1-identity-testnet": 767368, + "modularium": 776877, + "octaspace": 800001, + "biz-smart-chain-testnet": 808080, + "zklink-nova-mainnet": 810180, + "zklink-nova-sepolia-testnet": 810181, + "zklink-nova-goerli-testnet": 810182, + "tsc-testnet": 820025, + "curve-mainnet": 827431, + "prm-testnet": 839320, + "4goodnetwork": 846000, + "dodao": 855456, + "blocx-mainnet": 879151, + "rexx-mainnet": 888882, + "posichain-mainnet-shard-0": 900000, + "posichain-testnet-shard-0": 910000, + "astria-evm-dusknet": 912559, + "posichain-devnet-shard-0": 920000, + "posichain-devnet-shard-1": 920001, + "fncy-testnet": 923018, + "jono12-subnet": 955081, + "eluvio-content-fabric": 955305, + "treasure-ruby": 978657, + "forma": 984122, + "forma-sketchpad": 984123, + "ecrox-chain-mainnet": 988207, + "supernet-testnet": 998899, + "amchain": 999999, + "netmind-chain-testnet": 1100789, + "tiltyard-subnet": 1127469, + "zkatana": 1261120, + "etho-protocol": 1313114, + "xerom": 1313500, + "kintsugi": 1337702, + "kiln": 1337802, + "zhejiang": 1337803, + "automata-testnet": 1398243, + "playfi-albireo-testnet": 1612127, + "xterio-testnet": 1637450, + "turkey-demo-dev": 1731313, + "debank-testnet": 2021398, + "plian-mainnet-main": 2099156, + "platon-dev-testnet2": 1, + "dpu-chain": 2611555, + "saharaai-network": 3132023, + "filecoin---butterfly-testnet": 3141592, + "funki-sepolia-sandbox": 3397901, + "manta-pacific-testnet": 3441005, + "manta-pacific-sepolia-testnet": 3441006, + "altlayer-zero-gas-network": 4000003, + "worlds-caldera": 4281033, + "numblock-chain": 5112023, + "mxc-wannsee-zkevm-testnet": 5167003, + "moonchain-geneva-testnet": 5167004, + "electroneum-testnet": 5201420, + "reactive-kopli": 5318008, + "imversed-mainnet": 5555555, + "imversed-testnet": 5555558, + "astar-zkyoto": 6038361, + "safe(anwang)-mainnet": 6666665, + "safe(anwang)-testnet": 6666666, + "saakuru-mainnet": 7225878, + "openvessel": 7355310, + "ql1-testnet": 7668378, + "musicoin": 7762959, + "zora": 7777777, + "plian-mainnet-subchain-1": 8007736, + "fhenix-helium": 8008135, + "hokum": 8080808, + "waterfall-8-test-network": 8601152, + "hapchain": 8794598, + "quarix-testnet": 8888881, + "quarix": 8888888, + "xcap": 9322252, + "milvine": 9322253, + "plian-testnet-subchain-1": 10067275, + "soverun-mainnet": 10101010, + "alienx-hal-testnet": 10241025, + "sepolia": 11155111, + "op-sepolia-testnet": 11155420, + "coti-devnet": 13068200, + "pepchain-churchill": 13371337, + "anduschain-mainnet": 14288640, + "plian-testnet-main": 16658437, + "lambda-chain-testnet": 17000920, + "iolite": 18289463, + "stability-testnet": 20180427, + "smartmesh-mainnet": 1, + "quarkblockchain": 20181205, + "pego-network": 20201022, + "debank-sepolia-testnet": 20240324, + "swan-proxima-testnet": 20241133, + "hokum-testnet": 20482050, + "excelon-mainnet": 22052002, + "excoincial-chain-volta-testnet": 27082017, + "excoincial-chain-mainnet": 27082022, + "ancient8-testnet": 28122024, + "auxilium-network-mainnet": 28945486, + "flachain-mainnet": 29032022, + "filecoin---local-testnet": 31415926, + "joys-digital-mainnet": 35855456, + "skale-nebula-hub-testnet": 37084624, + "kingdom-chain": 39916801, + "maistestsubnet": 43214913, + "aquachain": 61717561, + "autonity-bakerloo-(sumida)-testnet": 65010002, + "autonity-piccadilly-(sumida)-testnet": 65100002, + "frame-testnet": 68840142, + "0xhash-testnet": 77787778, + "t.e.a.m-blockchain": 88888888, + "polygon-blackberry": 94204209, + "joys-digital-testnet": 99415706, + "oraichain-mainnet": 108160679, + "cyber-testnet": 111557560, + "op-celestia-raspberry": 123420111, + "plume-testnet": 161221135, + "blast-sepolia-testnet": 168587773, + "gather-mainnet-network": 192837465, + "kanazawa": 222000222, + "neon-evm-devnet": 245022926, + "razor-skale-chain": 278611351, + "oneledger-mainnet": 311752642, + "nal-sepolia-testnet": 328527624, + "meld": 333000333, + "gather-testnet-network": 356256156, + "gather-devnet-network": 486217935, + "degen-chain": 666666666, + "ancient8": 888888888, + "ptcescan-testnet": 889910245, + "ptcescan-mainnet": 889910246, + "skale-calypso-hub-testnet": 974399131, + "zora-sepolia-testnet": 999999999, + "skale-titan-hub-testnet": 1020352220, + "ipos-network": 1122334455, + "cyberdecknet": 1146703430, + "human-protocol": 1273227453, + "aurora-testnet": 1313161555, + "aurora-betanet": 1313161556, + "powergold": 1313161560, + "skale-titan-hub": 1350216234, + "chaos-(skale-testnet)": 1351057110, + "rari-chain-mainnet": 1380012617, + "raptorchain": 1380996178, + "skale-europa-hub-testnet": 1444673419, + "skale-nebula-hub": 1482601649, + "skale-calypso-hub": 1564830818, + "harmony-mainnet-shard-1": 1666600001, + "harmony-testnet-shard-0": 1666700000, + "harmony-testnet-shard-1": 1666700001, + "harmony-devnet-shard-0": 1666900000, + "harmony-devnet-shard-1": 1666900001, + "kakarot-sepolia": 1802203764, + "rari-chain-testnet": 1918988905, + "datahopper": 2021121117, + "skale-europa-hub": 2046399126, + "pirl": 3125659152, + "oneledger-testnet-frankenstein": 4216137055, + "palm-testnet": 11297108099, + "gitswarm-test-network": 28872323069, + "xai-testnet-v2": 37714555429, + "arbitrum-blueberry": 88153591557, + "kakarot-sepolia-deprecated": 107107114116, + "alphabet-mainnet": 111222333444, + "ntity-mainnet": 197710212030, + "haradev-testnet": 197710212031, + "gm-network-testnet": 202402181627, + "zeniq": 383414847825, + "pdc-mainnet": 666301171999, + "molereum-network": 6022140761023, + "dchain-testnet": 2713017997578000, + "dchain": 2716446429837000 +} as const; + +export const NETWORK_EXPLORERS = { + "1": [ + { + "name": "etherscan", + "url": "https://etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://eth.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://ethereum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "3": [ + { + "name": "etherscan", + "url": "https://ropsten.etherscan.io", + "standard": "EIP3091" + } + ], + "4": [ + { + "name": "etherscan-rinkeby", + "url": "https://rinkeby.etherscan.io", + "standard": "EIP3091" + } + ], + "5": [ + { + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout-goerli", + "url": "https://eth-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "7": [ + { + "name": "Thaichain Explorer", + "url": "https://exp.thaichain.org", + "standard": "EIP3091" + } + ], + "8": [ + { + "name": "ubiqscan", + "url": "https://ubiqscan.io", + "standard": "EIP3091" + } + ], + "10": [ + { + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://optimism.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://optimism.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "14": [ + { + "name": "blockscout", + "url": "https://flare-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://mainnet.flarescan.com", + "standard": "EIP3091" + } + ], + "16": [ + { + "name": "blockscout", + "url": "https://coston-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://coston.testnet.flarescan.com", + "standard": "EIP3091" + } + ], + "18": [ + { + "name": "thundercore-blockscout-testnet", + "url": "https://explorer-testnet.thundercore.com", + "standard": "EIP3091" + } + ], + "19": [ + { + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://songbird.flarescan.com", + "standard": "EIP3091" + } + ], + "20": [ + { + "name": "elastos esc explorer", + "url": "https://esc.elastos.io", + "standard": "EIP3091" + } + ], + "21": [ + { + "name": "elastos esc explorer", + "url": "https://esc-testnet.elastos.io", + "standard": "EIP3091" + } + ], + "25": [ + { + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", + "standard": "none" + } + ], + "26": [ + { + "name": "Genesis L1 testnet explorer", + "url": "https://testnet.genesisl1.org", + "standard": "none" + } + ], + "27": [ + { + "name": "Shiba Explorer", + "url": "https://exp.shibchain.org", + "standard": "none" + } + ], + "29": [ + { + "name": "Genesis L1 blockchain explorer", + "url": "https://explorer.genesisl1.org", + "standard": "none" + } + ], + "30": [ + { + "name": "Rootstock Explorer", + "url": "https://explorer.rsk.co", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://rootstock.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "31": [ + { + "name": "RSK Testnet Explorer", + "url": "https://explorer.testnet.rsk.co", + "standard": "EIP3091" + } + ], + "34": [ + { + "name": "SecureChain Mainnet", + "url": "https://explorer.securechain.ai", + "standard": "EIP3091" + } + ], + "36": [ + { + "name": "dxscan", + "url": "https://dxscan.io", + "standard": "EIP3091" + } + ], + "37": [ + { + "name": "XPLA Explorer", + "url": "https://explorer.xpla.io/mainnet", + "standard": "EIP3091" + } + ], + "39": [ + { + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://u2uscan.xyz", + "standard": "EIP3091" + } + ], + "40": [ + { + "name": "teloscan", + "url": "https://teloscan.io", + "standard": "EIP3091" + } + ], + "41": [ + { + "name": "teloscan", + "url": "https://testnet.teloscan.io", + "standard": "EIP3091" + } + ], + "42": [ + { + "name": "Blockscout", + "url": "https://explorer.execution.mainnet.lukso.network", + "standard": "EIP3091" + } + ], + "43": [ + { + "name": "subscan", + "url": "https://pangolin.subscan.io", + "standard": "EIP3091" + } + ], + "44": [ + { + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", + "standard": "EIP3091" + } + ], + "45": [ + { + "name": "subscan", + "url": "https://pangoro.subscan.io", + "standard": "none" + } + ], + "46": [ + { + "name": "subscan", + "url": "https://darwinia.subscan.io", + "standard": "EIP3091" + } + ], + "47": [ + { + "name": "Acria IntelliChain-Explorer", + "url": "https://explorer.acria.ai", + "standard": "EIP3091" + } + ], + "48": [ + { + "name": "etmpscan", + "url": "https://etmscan.network", + "icon": "etmp", + "standard": "EIP3091" + } + ], + "49": [ + { + "name": "etmp", + "url": "https://pioneer.etmscan.network", + "standard": "EIP3091" + } + ], + "50": [ + { + "name": "xdcscan", + "url": "https://xdcscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "blocksscan", + "url": "https://xdc.blocksscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + } + ], + "51": [ + { + "name": "xdcscan", + "url": "https://apothem.xinfinscan.com", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "blocksscan", + "url": "https://apothem.blocksscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + } + ], + "52": [ + { + "name": "coinexscan", + "url": "https://www.coinex.net", + "standard": "none" + } + ], + "53": [ + { + "name": "coinexscan", + "url": "https://testnet.coinex.net", + "standard": "none" + } + ], + "54": [ + { + "name": "Belly Scan", + "url": "https://bellyscan.com", + "standard": "none" + } + ], + "55": [ + { + "name": "zyxscan", + "url": "https://zyxscan.com", + "standard": "none" + } + ], + "56": [ + { + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://bnb.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "57": [ + { + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } + ], + "58": [ + { + "name": "explorer", + "url": "https://explorer.ont.io", + "standard": "EIP3091" + } + ], + "60": [ + { + "name": "GoChain Explorer", + "url": "https://explorer.gochain.io", + "standard": "EIP3091" + } + ], + "61": [ + { + "name": "blockscout-ethereum-classic", + "url": "https://etc.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "etcnetworkinfo-blockscout-ethereum-classic", + "url": "https://explorer-blockscout.etc-network.info", + "standard": "none" + }, + { + "name": "etcnetworkinfo-alethio-ethereum-classic", + "url": "https://explorer-alethio.etc-network.info", + "standard": "none" + }, + { + "name": "etcnetworkinfo-expedition-ethereum-classic", + "url": "https://explorer-expedition.etc-network.info", + "standard": "none" + }, + { + "name": "hebeblock-ethereum-classic", + "url": "https://etcerscan.com", + "standard": "EIP3091" + }, + { + "name": "oklink-ethereum-classic", + "url": "https://www.oklink.com/etc", + "standard": "EIP3091" + }, + { + "name": "tokenview-ethereum-classic", + "url": "https://etc.tokenview.io", + "standard": "EIP3091" + } + ], + "63": [ + { + "name": "blockscout-mordor", + "url": "https://etc-mordor.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "etcnetworkinfo-expedition-mordor", + "url": "https://explorer-expedition.etc-network.info/?network=Ethereum+Classic+at+etc-network.info+GETH+Mordor", + "standard": "none" + } + ], + "65": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/okexchain-test", + "standard": "EIP3091" + } + ], + "66": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/en/okc", + "standard": "EIP3091" + } + ], + "69": [ + { + "name": "etherscan", + "url": "https://kovan-optimistic.etherscan.io", + "standard": "EIP3091" + } + ], + "70": [ + { + "name": "hooscan", + "url": "https://www.hooscan.com", + "standard": "EIP3091" + } + ], + "71": [ + { + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" + } + ], + "73": [ + { + "name": "fncy scan", + "url": "https://fncyscan.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } + ], + "74": [ + { + "name": "explorer", + "url": "https://explorer.idchain.one", + "standard": "EIP3091" + } + ], + "75": [ + { + "name": "DSC Explorer Mainnet", + "url": "https://explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ], + "77": [ + { + "name": "blockscout", + "url": "https://blockscout.com/poa/sokol", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "79": [ + { + "name": "zenith scan", + "url": "https://scan.zenithchain.co", + "standard": "EIP3091" + } + ], + "80": [ + { + "name": "GeneChain Scan", + "url": "https://scan.genechain.io", + "standard": "EIP3091" + } + ], + "81": [ + { + "name": "Block Explorer", + "url": "https://explorer.japanopenchain.org", + "standard": "EIP3091", + "icon": "joc" + } + ], + "82": [ + { + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + } + ], + "83": [ + { + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" + } + ], + "84": [ + { + "name": "Linqto Devnet Explorer", + "url": "https://explorer.linqto-dev.com", + "standard": "EIP3091" + } + ], + "85": [ + { + "name": "GateScan", + "url": "https://www.gatescan.org/testnet", + "standard": "EIP3091" + } + ], + "86": [ + { + "name": "GateScan", + "url": "https://www.gatescan.org", + "standard": "EIP3091" + } + ], + "87": [ + { + "name": "novanetwork", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } + ], + "90": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "91": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "92": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "93": [ + { + "name": "explorer", + "url": "https://explorer.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "94": [ + { + "name": "SwissDLT Explorer", + "url": "https://explorer.swissdlt.ch", + "icon": "bcts", + "standard": "EIP3091" + } + ], + "95": [ + { + "name": "CamDL Block Explorer", + "url": "https://explorer.camdl.gov.kh", + "standard": "EIP3091" + } + ], + "96": [ + { + "name": "Bitkub Chain Explorer", + "url": "https://bkcscan.com", + "standard": "none", + "icon": "bkc" + } + ], + "97": [ + { + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" + } + ], + "98": [ + { + "name": "SIX Scan", + "url": "https://sixscan.io/sixnet", + "standard": "none", + "icon": "six" + } + ], + "99": [ + { + "name": "blockscout", + "url": "https://blockscout.com/poa/core", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "100": [ + { + "name": "gnosisscan", + "url": "https://gnosisscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://gnosis.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "103": [ + { + "name": "Worldland Explorer", + "url": "https://scan.worldland.foundation", + "standard": "EIP3091" + } + ], + "104": [ + { + "name": "kaibascan", + "url": "https://kaibascan.io", + "icon": "kaibascan", + "standard": "EIP3091" + } + ], + "105": [ + { + "name": "Web3Games Explorer", + "url": "https://explorer-devnet.web3games.org", + "standard": "none" + } + ], + "106": [ + { + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + } + ], + "107": [ + { + "name": "nebulatestnet", + "url": "https://explorer.novanetwork.io", + "standard": "EIP3091" + } + ], + "108": [ + { + "name": "thundercore-viewblock", + "url": "https://viewblock.io/thundercore", + "standard": "EIP3091" + } + ], + "109": [ + { + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } + ], + "112": [ + { + "name": "blockscout", + "url": "https://coinbit-explorer.chain.sbcrypto.app", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "113": [ + { + "name": "Dehvo Explorer", + "url": "https://explorer.dehvo.com", + "standard": "EIP3091" + } + ], + "114": [ + { + "name": "blockscout", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://coston2.testnet.flarescan.com", + "standard": "EIP3091" + } + ], + "117": [ + { + "name": "Uptick Explorer", + "url": "https://evm-explorer.uptick.network", + "icon": "uptick", + "standard": "none" + } + ], + "118": [ + { + "name": "arcology", + "url": "https://testnet.arcology.network/explorer", + "standard": "none" + } + ], + "119": [ + { + "name": "enulsscan", + "url": "https://evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } + ], + "120": [ + { + "name": "enulsscan", + "url": "https://beta.evmscan.nuls.io", + "icon": "enuls", + "standard": "EIP3091" + } + ], + "121": [ + { + "name": "realscan", + "url": "https://rclscan.com", + "standard": "EIP3091" + } + ], + "122": [ + { + "name": "blockscout", + "url": "https://explorer.fuse.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "125": [ + { + "name": "OYchain Testnet Explorer", + "url": "https://explorer.testnet.oychain.io", + "standard": "none" + } + ], + "126": [ + { + "name": "OYchain Mainnet Explorer", + "url": "https://explorer.oychain.io", + "standard": "none" + } + ], + "128": [ + { + "name": "hecoinfo", + "url": "https://hecoinfo.com", + "standard": "EIP3091" + } + ], + "129": [ + { + "name": "Innovator Explorer", + "url": "https://evm.innovatorchain.com", + "icon": "blockscout", + "standard": "none" + } + ], + "131": [ + { + "name": "blockscout", + "url": "https://tokioscan-v2.engram.tech", + "icon": "engram", + "standard": "EIP3091" + } + ], + "134": [ + { + "name": "blockscout", + "url": "https://blockscout.bellecour.iex.ec", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "135": [ + { + "name": "alyx testnet scan", + "url": "https://testnet.alyxscan.com", + "standard": "EIP3091" + } + ], + "136": [ + { + "name": "Deamchain Block Explorer", + "url": "https://scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } + ], + "137": [ + { + "name": "polygonscan", + "url": "https://polygonscan.com", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://polygon.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "138": [ + { + "name": "Blockscout Explorer", + "url": "https://blockscout.defi-oracle.io", + "standard": "none" + }, + { + "name": "Quorum Explorer", + "url": "https://explorer.defi-oracle.io", + "standard": "none" + } + ], + "139": [ + { + "name": "wikiwoop", + "url": "https://explorer.wikiwoop.com", + "standard": "EIP3091" + } + ], + "141": [ + { + "name": "Belly Scan", + "url": "https://testnet.bellyscan.com", + "standard": "none" + } + ], + "144": [ + { + "name": "Phiscan", + "url": "https://phiscan.com", + "icon": "phi", + "standard": "none" + } + ], + "145": [ + { + "name": "blockscout", + "url": "https://explorer.soraai.bot", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "147": [ + { + "name": "Flag Mainnet Explorer", + "url": "https://flagscan.xyz", + "standard": "EIP3091" + } + ], + "148": [ + { + "name": "explorer", + "url": "https://explorer.evm.shimmer.network", + "icon": "shimmerevm", + "standard": "EIP3091" + } + ], + "150": [ + { + "name": "SIX Scan fivenet", + "url": "https://sixscan.io/fivenet", + "standard": "none", + "icon": "six" + } + ], + "153": [ + { + "name": "Redbelly Network Testnet Explorer", + "url": "https://explorer.testnet.redbelly.network", + "standard": "none" + } + ], + "155": [ + { + "name": "TenetScan Testnet", + "url": "https://testnet.tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ], + "156": [ + { + "name": "OEScan explorer", + "url": "https://testnet.oescan.io", + "standard": "EIP3091" + } + ], + "157": [ + { + "name": "puppyscan", + "url": "https://puppyscan.shib.io", + "standard": "none" + } + ], + "158": [ + { + "name": "Rbascan Explorer", + "url": "https://rbascan.com", + "standard": "EIP3091" + } + ], + "159": [ + { + "name": "Rbascan Testnet Explorer", + "url": "https://testnet.rbascan.com", + "standard": "EIP3091" + } + ], + "161": [ + { + "name": "blockscout - evascan", + "url": "https://testnet.evascan.io", + "standard": "EIP3091" + } + ], + "164": [ + { + "name": "Omni X-Explorer", + "url": "https://explorer.testnet.omni.network", + "standard": "none" + }, + { + "name": "Omni EVM Explorer on Blockscout", + "url": "https://omni-testnet.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "Omni EVM Explorer on Routescan", + "url": "https://testnet.omniscan.network", + "standard": "EIP3091" + } + ], + "167": [ + { + "name": "atoshiscan", + "url": "https://scan.atoverse.info", + "standard": "EIP3091" + } + ], + "168": [ + { + "name": "AIOZ Network Explorer", + "url": "https://explorer.aioz.network", + "standard": "EIP3091" + } + ], + "169": [ + { + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", + "standard": "EIP3091" + } + ], + "176": [ + { + "name": "dcscan", + "url": "https://exp.dcnetio.cloud", + "standard": "none" + } + ], + "180": [ + { + "name": "AME Scan", + "url": "https://amescan.io", + "standard": "EIP3091" + } + ], + "185": [ + { + "name": "blockscout", + "url": "https://explorer.mintchain.io", + "icon": "mint", + "standard": "EIP3091" + } + ], + "186": [ + { + "name": "seeleview", + "url": "https://seeleview.net", + "standard": "none" + } + ], + "188": [ + { + "name": "Blockmeta", + "url": "https://bmc.blockmeta.com", + "standard": "none" + } + ], + "189": [ + { + "name": "Blockmeta", + "url": "https://bmctestnet.blockmeta.com", + "standard": "none" + } + ], + "193": [ + { + "name": "cemscan", + "url": "https://cemscan.com", + "standard": "EIP3091" + } + ], + "195": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer-test", + "standard": "EIP3091" + } + ], + "196": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", + "standard": "EIP3091" + } + ], + "197": [ + { + "name": "blockscout", + "url": "https://testnet.neutrinoschain.com", + "standard": "EIP3091" + } + ], + "198": [ + { + "name": "Bitchain Scan", + "url": "https://explorer.bitchain.biz", + "standard": "EIP3091" + } + ], + "199": [ + { + "name": "BitTorrent Chain Explorer", + "url": "https://bttcscan.com", + "standard": "EIP3091" + } + ], + "200": [ + { + "name": "blockscout", + "url": "https://blockscout.com/xdai/arbitrum", + "standard": "EIP3091" + } + ], + "201": [ + { + "name": "moac testnet explorer", + "url": "https://testnet.moac.io", + "standard": "none" + } + ], + "202": [ + { + "name": "Edgeless Explorer", + "url": "https://testnet.explorer.edgeless.network", + "standard": "EIP3091" + } + ], + "204": [ + { + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", + "standard": "EIP3091" + } + ], + "206": [ + { + "name": "VinuScan Testnet", + "url": "https://testnet.vinuscan.com", + "icon": "vinuscan-testnet", + "standard": "none" + } + ], + "207": [ + { + "name": "VinuScan", + "url": "https://vinuscan.com", + "icon": "vinuscan", + "standard": "none" + } + ], + "210": [ + { + "name": "Bitnet Explorer", + "url": "https://btnscan.com", + "standard": "EIP3091" + } + ], + "212": [ + { + "name": "maposcan", + "url": "https://testnet.maposcan.io", + "standard": "EIP3091" + } + ], + "213": [ + { + "name": "B2 Hub Mainnet Explorer", + "url": "https://hub-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "214": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ], + "217": [ + { + "name": "siriusnet explorer", + "url": "https://scan.siriusnet.io", + "standard": "none" + } + ], + "220": [ + { + "name": "scalind", + "url": "https://explorer-sepolia.scalind.com", + "standard": "EIP3091" + } + ], + "223": [ + { + "name": "blockscout", + "url": "https://explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "224": [ + { + "name": "Viridis Testnet", + "url": "https://testnet.vrd.network", + "standard": "EIP3091" + } + ], + "225": [ + { + "name": "blockscout", + "url": "https://scan.lachain.io", + "standard": "EIP3091" + } + ], + "226": [ + { + "name": "blockscout", + "url": "https://scan-test.lachain.io", + "standard": "EIP3091" + } + ], + "230": [ + { + "name": "SwapDEX", + "url": "https://evm.swapdex.network", + "standard": "none" + } + ], + "234": [ + { + "name": "ProtoJumbo", + "url": "https://protojumbo.jumbochain.org", + "standard": "EIP3091" + } + ], + "236": [ + { + "name": "Deamchain Testnet Explorer", + "url": "https://testnet-scan.deamchain.com", + "standard": "EIP3091", + "icon": "deam" + } + ], + "242": [ + { + "name": "plgscan", + "url": "https://www.plgscan.com", + "standard": "EIP3091" + } + ], + "246": [ + { + "name": "blockscout", + "url": "https://explorer.energyweb.org", + "standard": "none" + } + ], + "248": [ + { + "name": "blockscout", + "url": "https://explorer.oasys.games", + "standard": "EIP3091" + } + ], + "250": [ + { + "name": "ftmscan", + "url": "https://ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "252": [ + { + "name": "fraxscan", + "url": "https://fraxscan.com", + "standard": "EIP3091" + } + ], + "255": [ + { + "name": "blockscout", + "url": "https://blockscout.kroma.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "259": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" + } + ], + "262": [ + { + "name": "Surnet Explorer", + "url": "https://explorer.surnet.org", + "icon": "SUR", + "standard": "EIP3091" + } + ], + "267": [ + { + "name": "ankrscan-neura", + "url": "https://testnet.explorer.neuraprotocol.io", + "icon": "neura", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.neura-testnet.ankr.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "269": [ + { + "name": "hscan", + "url": "https://hscan.org", + "standard": "EIP3091" + } + ], + "271": [ + { + "name": "EgonCoin Mainnet", + "url": "https://egonscan.com", + "standard": "EIP3091" + } + ], + "274": [ + { + "name": "LaChain Explorer", + "url": "https://explorer.lachain.network", + "standard": "EIP3091" + } + ], + "282": [ + { + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } + ], + "288": [ + { + "name": "Bobascan", + "url": "https://bobascan.com", + "standard": "none" + } + ], + "291": [ + { + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "295": [ + { + "name": "HashScan", + "url": "https://hashscan.io/mainnet", + "standard": "EIP3091" + }, + { + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" + }, + { + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" + }, + { + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" + }, + { + "name": "Ledger Works Explore", + "url": "https://explore.lworks.io", + "standard": "none" + } + ], + "296": [ + { + "name": "HashScan", + "url": "https://hashscan.io/testnet", + "standard": "EIP3091" + }, + { + "name": "Arkhia Explorer", + "url": "https://explorer.arkhia.io", + "standard": "none" + }, + { + "name": "DragonGlass", + "url": "https://app.dragonglass.me", + "standard": "none" + }, + { + "name": "Hedera Explorer", + "url": "https://hederaexplorer.io", + "standard": "none" + }, + { + "name": "Ledger Works Explore", + "url": "https://explore.lworks.io", + "standard": "none" + } + ], + "297": [ + { + "name": "HashScan", + "url": "https://hashscan.io/previewnet", + "standard": "EIP3091" + } + ], + "300": [ + { + "name": "zkSync Block Explorer", + "url": "https://sepolia.explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "302": [ + { + "name": "zkCandy Block Explorer", + "url": "https://sepolia.explorer.zkcandy.io", + "icon": "zkcandy", + "standard": "EIP3091" + } + ], + "303": [ + { + "name": "neuroscan", + "url": "https://testnet.ncnscan.com", + "standard": "EIP3091" + } + ], + "305": [ + { + "name": "blockscout", + "url": "https://explorer.zksats.io", + "icon": "zksats", + "standard": "EIP3091" + } + ], + "307": [ + { + "name": "Lovely Network Testnet", + "url": "https://tscan.lovely.network", + "standard": "EIP3091" + } + ], + "308": [ + { + "name": "furthscan", + "url": "http://furthscan.com", + "standard": "EIP3091" + } + ], + "309": [ + { + "name": "wyzth", + "url": "http://24.199.108.65:4000", + "icon": "wyzth", + "standard": "EIP3091" + } + ], + "311": [ + { + "name": "Omax Chain Explorer", + "url": "https://omaxray.com", + "icon": "omaxray", + "standard": "EIP3091" + } + ], + "313": [ + { + "name": "neuroscan", + "url": "https://ncnscan.com", + "standard": "EIP3091" + } + ], + "314": [ + { + "name": "Filfox", + "url": "https://filfox.info/en", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + }, + { + "name": "Glif Explorer", + "url": "https://explorer.glif.io", + "standard": "EIP3091" + }, + { + "name": "Dev.storage", + "url": "https://dev.storage", + "standard": "none" + }, + { + "name": "Filscan", + "url": "https://filscan.io", + "standard": "none" + }, + { + "name": "Filscout", + "url": "https://filscout.io/en", + "standard": "none" + } + ], + "321": [ + { + "name": "KCC Explorer", + "url": "https://explorer.kcc.io/en", + "standard": "EIP3091" + } + ], + "322": [ + { + "name": "kcc-scan-testnet", + "url": "https://scan-testnet.kcc.network", + "standard": "EIP3091" + } + ], + "323": [ + { + "name": "Blockscout", + "url": "https://explorer.cosvm.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "324": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "333": [ + { + "name": "w3q-mainnet", + "url": "https://explorer.mainnet.web3q.io", + "standard": "EIP3091" + } + ], + "335": [ + { + "name": "ethernal", + "url": "https://explorer-test.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } + ], + "336": [ + { + "name": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none", + "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/shiden", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "338": [ + { + "name": "Cronos Testnet Explorer", + "url": "https://explorer.cronos.org/testnet", + "standard": "none" + } + ], + "345": [ + { + "name": "tscscan", + "url": "https://www.tscscan.io", + "icon": "netxscan", + "standard": "none" + } + ], + "361": [ + { + "name": "Theta Mainnet Explorer", + "url": "https://explorer.thetatoken.org", + "standard": "EIP3091" + } + ], + "363": [ + { + "name": "Theta Sapphire Testnet Explorer", + "url": "https://guardian-testnet-sapphire-explorer.thetatoken.org", + "standard": "EIP3091" + } + ], + "364": [ + { + "name": "Theta Amber Testnet Explorer", + "url": "https://guardian-testnet-amber-explorer.thetatoken.org", + "standard": "EIP3091" + } + ], + "365": [ + { + "name": "Theta Testnet Explorer", + "url": "https://testnet-explorer.thetatoken.org", + "standard": "EIP3091" + } + ], + "369": [ + { + "name": "blockscout", + "url": "https://scan.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "otterscan", + "url": "https://otter.pulsechain.com", + "standard": "EIP3091" + } + ], + "371": [ + { + "name": "blockscout", + "url": "https://explorer-testnet.theconsta.com", + "standard": "EIP3091" + } + ], + "380": [ + { + "name": "ZKAmoeba Test Explorer", + "url": "https://testnetexplorer.zkamoeba.com", + "icon": "zkamoeba-micro", + "standard": "EIP3091" + } + ], + "381": [ + { + "name": "ZKAmoeba Explorer", + "url": "https://explorer.zkamoeba.com", + "icon": "zkamoeba-micro", + "standard": "EIP3091" + } + ], + "395": [ + { + "name": "CamDL Testnet Explorer", + "url": "https://explorer.testnet.camdl.gov.kh", + "standard": "EIP3091" + } + ], + "397": [ + { + "name": "Near Blocks", + "url": "https://nearblocks.io", + "standard": "none" + } + ], + "398": [ + { + "name": "Near blocks", + "url": "https://testnet.nearblocks.io", + "standard": "none" + } + ], + "399": [ + { + "name": "N3scan", + "url": "https://scan.nativ3.network", + "standard": "EIP3091" + } + ], + "400": [ + { + "name": "blockscout", + "url": "https://testnet.hyperonchain.com", + "icon": "hyperonchain", + "standard": "EIP3091" + } + ], + "401": [ + { + "name": "OZONE Scan", + "url": "https://testnet.ozonescan.io", + "standard": "EIP3091" + } + ], + "404": [ + { + "name": "Syndr L3 Explorer", + "url": "https://explorer.syndr.com", + "standard": "EIP3091" + } + ], + "411": [ + { + "name": "pepechain explorer", + "url": "https://explorer.pepe-chain.vip", + "standard": "EIP3091" + } + ], + "416": [ + { + "name": "SX Network Explorer", + "url": "https://explorer.sx.technology", + "standard": "EIP3091" + } + ], + "418": [ + { + "name": "LaTestnet Explorer", + "url": "https://testexplorer.lachain.network", + "standard": "EIP3091" + } + ], + "420": [ + { + "name": "blockscout", + "url": "https://optimism-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "422": [ + { + "name": "Viridis Mainnet", + "url": "https://explorer.vrd.network", + "standard": "EIP3091" + } + ], + "424": [ + { + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "427": [ + { + "name": "Zeeth Explorer", + "url": "https://explorer.zeeth.io", + "standard": "none" + } + ], + "428": [ + { + "name": "Geso Verse Explorer", + "url": "https://explorer.verse.gesoten.com", + "standard": "EIP3091" + } + ], + "434": [ + { + "name": "Boyaa explorer", + "url": "https://explorer.mainnet.boyaa.network", + "standard": "EIP3091" + } + ], + "443": [ + { + "name": "Ten Sepolia Rollup Explorer", + "url": "https://tenscan.io", + "standard": "none" + } + ], + "444": [ + { + "name": "Synapse Chain Sepolia", + "url": "https://sepolia.synapsescan.com", + "standard": "EIP3091" + } + ], + "456": [ + { + "name": "ARZIO Scan", + "url": "https://scan.arzio.co", + "standard": "EIP3091" + } + ], + "462": [ + { + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } + ], + "463": [ + { + "name": "AreonScan", + "url": "https://areonscan.com", + "standard": "none" + } + ], + "500": [ + { + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } + ], + "501": [ + { + "name": "blockexplorer", + "url": "https://suite.camino.network/explorer", + "standard": "none" + } + ], + "512": [ + { + "name": "aacscan", + "url": "https://scan.acuteangle.com", + "standard": "EIP3091" + } + ], + "513": [ + { + "name": "aacscan-testnet", + "url": "https://scan-testnet.acuteangle.com", + "standard": "EIP3091" + } + ], + "520": [ + { + "name": "xscscan", + "url": "https://xscscan.pub", + "standard": "EIP3091" + } + ], + "530": [ + { + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", + "standard": "EIP3091" + } + ], + "534": [ + { + "name": "candleexplorer", + "url": "https://candleexplorer.com", + "standard": "EIP3091" + } + ], + "537": [ + { + "name": "OpTrust explorer", + "url": "https://scan.optrust.io", + "icon": "optrust", + "standard": "none" + } + ], + "542": [ + { + "name": "PAWCHAIN Testnet", + "url": "https://pawscan.io", + "standard": "none" + } + ], + "545": [ + { + "name": "Flow Diver", + "url": "https://testnet.flowdiver.io", + "standard": "none" + } + ], + "555": [ + { + "name": "Vela1 Chain Mainnet Explorer", + "url": "https://exp.velaverse.io", + "standard": "EIP3091" + } + ], + "568": [ + { + "name": "dogechain testnet explorer", + "url": "https://explorer-testnet.dogechain.dog", + "standard": "EIP3091" + } + ], + "570": [ + { + "name": "Rollux Explorer", + "url": "https://explorer.rollux.com", + "standard": "EIP3091" + } + ], + "571": [ + { + "name": "MetaExplorer", + "url": "https://explorer.metatime.com", + "standard": "EIP3091" + } + ], + "579": [ + { + "name": "filenova explorer", + "url": "https://scan.filenova.org", + "icon": "filenova", + "standard": "none" + } + ], + "592": [ + { + "name": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/astar", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "595": [ + { + "name": "blockscout", + "url": "https://blockscout.mandala.aca-staging.network", + "standard": "EIP3091" + } + ], + "596": [ + { + "name": "blockscout", + "url": "https://blockscout.karura-testnet.aca-staging.network", + "standard": "EIP3091" + } + ], + "597": [ + { + "name": "blockscout", + "url": "https://blockscout.acala-dev.aca-dev.network", + "standard": "EIP3091" + } + ], + "601": [ + { + "name": "Vine Explorer", + "url": "https://vne.network/rose", + "standard": "none", + "icon": "vine" + } + ], + "612": [ + { + "name": "EIOB Explorer", + "url": "https://explorer.eiob.xyz", + "standard": "none" + } + ], + "614": [ + { + "name": "GLQ Explorer", + "url": "https://explorer.graphlinq.io", + "standard": "none" + } + ], + "634": [ + { + "name": "avoscan", + "url": "https://avoscan.co", + "icon": "avocado", + "standard": "none" + } + ], + "646": [ + { + "name": "Flow Diver", + "url": "https://previewnet.flowdiver.io", + "standard": "none" + } + ], + "647": [ + { + "name": "SX Network Toronto Explorer", + "url": "https://explorer.toronto.sx.technology", + "standard": "EIP3091" + } + ], + "648": [ + { + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } + ], + "653": [ + { + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } + ], + "654": [ + { + "name": "kalichain explorer", + "url": "https://explorer.kalichain.com", + "standard": "EIP3091" + } + ], + "662": [ + { + "name": "ultronsmartchain explorer", + "url": "https://scan.ultronsmartchain.io", + "standard": "EIP3091" + } + ], + "667": [ + { + "name": "blockscout", + "url": "https://arrakis.gorengine.com", + "icon": "laos", + "standard": "EIP3091" + } + ], + "668": [ + { + "name": "JuncaScan", + "url": "https://scan.juncachain.com", + "standard": "EIP3091" + } + ], + "669": [ + { + "name": "JuncaScan", + "url": "https://scan-testnet.juncachain.com", + "standard": "EIP3091" + } + ], + "686": [ + { + "name": "blockscout", + "url": "https://blockscout.karura.network", + "standard": "EIP3091" + } + ], + "690": [ + { + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "700": [ + { + "name": "starscan", + "url": "https://avastar.info", + "standard": "EIP3091" + } + ], + "701": [ + { + "name": "blockscout", + "url": "https://koi-scan.darwinia.network", + "standard": "EIP3091" + } + ], + "707": [ + { + "name": "BlockChain Station Explorer", + "url": "https://explorer.bcsdev.io", + "standard": "EIP3091" + } + ], + "708": [ + { + "name": "BlockChain Station Explorer", + "url": "https://testnet.bcsdev.io", + "standard": "EIP3091" + } + ], + "710": [ + { + "name": "Furya EVM Explorer", + "url": "https://explorer.furya.io", + "standard": "EIP3091", + "icon": "highbury" + } + ], + "713": [ + { + "name": "vrcscan", + "url": "https://vrcscan.com", + "standard": "EIP3091" + }, + { + "name": "dxbscan", + "url": "https://dxb.vrcscan.com", + "standard": "EIP3091" + } + ], + "719": [ + { + "name": "shibscan", + "url": "https://puppyscan.shib.io", + "standard": "EIP3091" + } + ], + "721": [ + { + "name": "blockscout", + "url": "https://explorer.lycanchain.com", + "standard": "EIP3091" + } + ], + "730": [ + { + "name": "Lovely Network Mainnet", + "url": "https://scan.lovely.network", + "standard": "EIP3091" + } + ], + "741": [ + { + "name": "ventionscan", + "url": "https://testnet.ventionscan.io", + "standard": "EIP3091" + } + ], + "742": [ + { + "name": "Script Explorer", + "url": "https://explorer.script.tv", + "standard": "none" + } + ], + "747": [ + { + "name": "Flow Diver", + "url": "https://flowdiver.io", + "standard": "none" + } + ], + "766": [ + { + "name": "QL1 Mainnet Explorer", + "url": "https://mainnet.qom.one", + "icon": "qom", + "standard": "EIP3091" + } + ], + "776": [ + { + "name": "OPEN CHAIN TESTNET", + "url": "https://testnet.openchain.info", + "standard": "none" + } + ], + "786": [ + { + "name": "maalscan", + "url": "https://maalscan.io", + "standard": "EIP3091" + } + ], + "787": [ + { + "name": "blockscout", + "url": "https://blockscout.acala.network", + "standard": "EIP3091" + } + ], + "788": [ + { + "name": "aeroscan", + "url": "https://testnet.aeroscan.id", + "standard": "EIP3091" + } + ], + "789": [ + { + "name": "patexscan", + "url": "https://patexscan.io", + "icon": "patex", + "standard": "EIP3091" + } + ], + "799": [ + { + "name": "rupayascan", + "url": "https://scan.testnet.rupaya.io", + "standard": "EIP3091" + } + ], + "800": [ + { + "name": "Lucid Explorer", + "url": "https://explorer.lucidcoin.io", + "standard": "none" + } + ], + "810": [ + { + "name": "Haven1 Explorer", + "url": "https://testnet-explorer.haven1.org", + "icon": "haven1", + "standard": "EIP3091" + } + ], + "813": [ + { + "name": "meerscan", + "icon": "meer", + "url": "https://qng.qitmeer.io", + "standard": "EIP3091" + }, + { + "name": "meerscan", + "icon": "meer", + "url": "https://qng.meerscan.io", + "standard": "EIP3091" + } + ], + "818": [ + { + "name": "BeOne Chain Mainnet", + "url": "https://beonescan.com", + "standard": "EIP3091" + } + ], + "822": [ + { + "name": "RunicScan", + "url": "https://scan.runic.build", + "icon": "runic-testnet", + "standard": "EIP3091" + } + ], + "831": [ + { + "name": "CDT Explorer", + "url": "https://explorer.checkdot.io", + "standard": "none" + } + ], + "841": [ + { + "name": "Taraxa Explorer", + "url": "https://explorer.mainnet.taraxa.io", + "standard": "none" + } + ], + "842": [ + { + "name": "Taraxa Explorer", + "url": "https://explorer.testnet.taraxa.io", + "standard": "none" + } + ], + "859": [ + { + "name": "Zeeth Explorer Dev", + "url": "https://explorer.dev.zeeth.io", + "standard": "none" + } + ], + "868": [ + { + "name": "FSCScan", + "url": "https://explorer.fantasiachain.com", + "standard": "EIP3091" + } + ], + "876": [ + { + "name": "Bandai Namco Research Verse Explorer", + "url": "https://explorer.main.oasvrs.bnken.net", + "standard": "EIP3091" + } + ], + "877": [ + { + "name": "dxtscan", + "url": "https://dxtscan.com", + "standard": "EIP3091" + } + ], + "880": [ + { + "name": "Ambros Chain Explorer", + "url": "https://ambrosscan.com", + "standard": "none" + } + ], + "898": [ + { + "name": "Maxi Chain Testnet Explorer", + "url": "https://testnet.maxi.network", + "standard": "EIP3091" + } + ], + "899": [ + { + "name": "Maxi Chain Mainnet Explorer", + "url": "https://mainnet.maxi.network", + "standard": "EIP3091" + } + ], + "900": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "901": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "902": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "903": [ + { + "name": "explorer", + "url": "https://explorer-testnet.garizon.com", + "icon": "garizon", + "standard": "EIP3091" + } + ], + "911": [ + { + "name": "TAPROOT Scan", + "url": "https://scan.taprootchain.io", + "icon": "taproot", + "standard": "EIP3091" + } + ], + "917": [ + { + "name": "FireScan", + "url": "https://rinia.firescan.io", + "standard": "EIP3091" + } + ], + "919": [ + { + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", + "standard": "none" + } + ], + "927": [ + { + "name": "Yidarkscan", + "url": "https://yidarkscan.com", + "standard": "EIP3091" + } + ], + "943": [ + { + "name": "blockscout", + "url": "https://scan.v4.testnet.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://otter-testnet-pulsechain.g4mm4.io", + "standard": "EIP3091" + } + ], + "957": [ + { + "name": "Lyra Explorer", + "url": "https://explorer.lyra.finance", + "icon": "lyra", + "standard": "EIP3091" + } + ], + "963": [ + { + "name": "blockscout", + "url": "https://scan.bitcoincode.technology", + "standard": "EIP3091" + } + ], + "969": [ + { + "name": "EthXY Network Explorer", + "url": "https://explorer.ethxy.com", + "standard": "EIP3091" + } + ], + "970": [ + { + "name": "Oort Mainnet Explorer", + "url": "https://mainnet-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ], + "972": [ + { + "name": "Oort Ascraeus Explorer", + "url": "https://ascraeus-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ], + "979": [ + { + "name": "EthXY Testnet Network Explorer", + "url": "https://explorer.testnet.ethxy.com", + "standard": "EIP3091" + } + ], + "980": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ], + "985": [ + { + "name": "Memo Mainnet Explorer", + "url": "https://scan.metamemo.one:8080", + "icon": "memo", + "standard": "EIP3091" + } + ], + "989": [ + { + "name": "topscan.dev", + "url": "https://www.topscan.io", + "standard": "none" + } + ], + "990": [ + { + "name": "eLiberty Mainnet", + "url": "https://explorer.eliberty.ngo", + "standard": "EIP3091" + } + ], + "997": [ + { + "name": "5ireChain Explorer", + "url": "https://explorer.5ire.network", + "standard": "none", + "icon": "5ireChain" + } + ], + "998": [ + { + "name": "blockscout", + "url": "https://explorer.luckynetwork.org", + "standard": "none" + }, + { + "name": "expedition", + "url": "https://lnscan.org", + "standard": "none" + } + ], + "1000": [ + { + "name": "GTON Network Explorer", + "url": "https://explorer.gton.network", + "standard": "EIP3091" + } + ], + "1001": [ + { + "name": "Klaytnscope", + "url": "https://baobab.klaytnscope.com", + "standard": "EIP3091" + }, + { + "name": "Klaytnfinder", + "url": "https://baobab.klaytnfinder.io", + "standard": "EIP3091" + } + ], + "1003": [ + { + "name": "Tectum explorer", + "url": "https://explorer.tectum.io", + "icon": "Tettoken256", + "standard": "EIP3091" + } + ], + "1004": [ + { + "name": "test-ektascan", + "url": "https://test.ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } + ], + "1008": [ + { + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ], + "1009": [ + { + "name": "Jumboscan", + "url": "https://jumboscan.jumbochain.org", + "standard": "EIP3091" + } + ], + "1011": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm.rebuschain.com", + "icon": "rebus", + "standard": "none" + }, + { + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://cosmos.rebuschain.com", + "icon": "rebus", + "standard": "none" + } + ], + "1028": [ + { + "name": "testbttcscan", + "url": "https://testscan.bittorrentchain.io", + "standard": "none" + } + ], + "1030": [ + { + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } + ], + "1031": [ + { + "name": "proxy network testnet", + "url": "http://testnet-explorer.theproxy.network", + "standard": "EIP3091" + } + ], + "1038": [ + { + "name": "Bronos Testnet Explorer", + "url": "https://tbroscan.bronos.org", + "standard": "none", + "icon": "bronos" + } + ], + "1039": [ + { + "name": "Bronos Explorer", + "url": "https://broscan.bronos.org", + "standard": "none", + "icon": "bronos" + } + ], + "1073": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.shimmer.network", + "standard": "EIP3091" + } + ], + "1075": [ + { + "name": "explorer", + "url": "https://explorer.evm.testnet.iotaledger.net", + "standard": "EIP3091" + } + ], + "1079": [ + { + "name": "explorer", + "url": "https://subnets-test.avax.network/mintara", + "standard": "EIP3091" + } + ], + "1080": [ + { + "name": "explorer", + "url": "https://subnets.avax.network/mintara", + "standard": "EIP3091" + } + ], + "1088": [ + { + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", + "standard": "EIP3091" + } + ], + "1089": [ + { + "name": "explorer.guru", + "url": "https://humans.explorers.guru", + "icon": "humans", + "standard": "none" + } + ], + "1099": [ + { + "name": "moac explorer", + "url": "https://explorer.moac.io", + "standard": "none" + } + ], + "1100": [ + { + "name": "dym.fyi", + "url": "https://dym.fyi", + "standard": "EIP3091" + } + ], + "1101": [ + { + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", + "standard": "EIP3091" + } + ], + "1107": [ + { + "name": "BLXq Explorer", + "url": "https://explorer.blx.org", + "icon": "blxq", + "standard": "none" + } + ], + "1108": [ + { + "name": "BLXq Explorer", + "url": "https://explorer.blxq.org", + "icon": "blxq", + "standard": "EIP3091" + } + ], + "1111": [ + { + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } + ], + "1112": [ + { + "name": "WEMIX Testnet Microscope", + "url": "https://microscope.test.wemix.com", + "standard": "EIP3091" + } + ], + "1113": [ + { + "name": "B2 Hub Habitat Testnet Explorer", + "url": "https://testnet-hub-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "1115": [ + { + "name": "Core Scan Testnet", + "url": "https://scan.test.btcs.network", + "icon": "core", + "standard": "EIP3091" + } + ], + "1116": [ + { + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": "core", + "standard": "EIP3091" + } + ], + "1117": [ + { + "name": "Dogcoin", + "url": "https://explorer.dogcoin.network", + "standard": "EIP3091" + } + ], + "1123": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.bsquared.network", + "icon": "bsquare", + "standard": "EIP3091" + } + ], + "1133": [ + { + "name": "MetaScan", + "url": "https://meta.defiscan.live", + "standard": "EIP3091" + } + ], + "1135": [ + { + "name": "blockscout", + "url": "https://blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "1138": [ + { + "name": "amstarscan-testnet", + "url": "https://testnet.amstarscan.com", + "standard": "EIP3091" + } + ], + "1147": [ + { + "name": "Flag Testnet Explorer", + "url": "https://testnet-explorer.flagscan.xyz", + "standard": "EIP3091" + } + ], + "1149": [ + { + "name": "Plexchain Explorer", + "url": "https://explorer.plexfinance.us", + "icon": "plexchain", + "standard": "EIP3091" + } + ], + "1170": [ + { + "name": "Origin Explorer", + "url": "https://evm-explorer.origin.uptick.network", + "icon": "origin", + "standard": "none" + } + ], + "1177": [ + { + "name": "Smart Host Teknoloji TESTNET Explorer", + "url": "https://s2.tl.web.tr:4000", + "icon": "smarthost", + "standard": "EIP3091" + } + ], + "1188": [ + { + "name": "mosscan", + "url": "https://www.mosscan.com", + "icon": "clubmos", + "standard": "none" + } + ], + "1197": [ + { + "name": "ioraexplorer", + "url": "https://explorer.iorachain.com", + "standard": "EIP3091" + } + ], + "1200": [ + { + "name": "Cuckoo Chain Explorer", + "url": "https://mainnet-scan.cuckoo.network", + "standard": "EIP3091" + } + ], + "1202": [ + { + "name": "WTTScout", + "url": "https://explorer.cadaut.com", + "standard": "EIP3091" + } + ], + "1209": [ + { + "name": "Saitascan explorer", + "url": "https://saitascan.io", + "standard": "none", + "icon": "SaitaBlockChain(SBC)" + } + ], + "1210": [ + { + "name": "Cuckoo Sepolia Explorer", + "url": "https://testnet-scan.cuckoo.network", + "standard": "EIP3091" + } + ], + "1213": [ + { + "name": "popcateum explorer", + "url": "https://explorer.popcateum.org", + "standard": "none" + } + ], + "1214": [ + { + "name": "Enter Explorer - Expenter", + "url": "https://explorer.entercoin.net", + "icon": "enter", + "standard": "EIP3091" + } + ], + "1225": [ + { + "name": "Hybrid Testnet", + "url": "https://explorer.buildonhybrid.com", + "standard": "EIP3091" + } + ], + "1229": [ + { + "name": "blockscout", + "url": "https://exzoscan.io", + "standard": "EIP3091" + } + ], + "1230": [ + { + "name": "Ultron Testnet Explorer", + "url": "https://explorer.ultron-dev.io", + "icon": "ultron", + "standard": "none" + } + ], + "1231": [ + { + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" + } + ], + "1234": [ + { + "name": "StepScan", + "url": "https://stepscan.io", + "icon": "step", + "standard": "EIP3091" + } + ], + "1235": [ + { + "name": "ITX Mainnet Explorer (Blockscout)", + "url": "https://explorer.itxchain.com", + "standard": "EIP3091" + } + ], + "1243": [ + { + "name": "archiescan", + "url": "https://app.archiescan.io", + "standard": "none" + } + ], + "1244": [ + { + "name": "archiescan", + "url": "https://testnet.archiescan.io", + "standard": "none" + } + ], + "1246": [ + { + "name": "OMSCAN - Expenter", + "url": "https://omscan.omplatform.com", + "standard": "none" + } + ], + "1248": [ + { + "name": "DogetherExplorer", + "url": "https://explorer.dogether.dog", + "standard": "EIP3091" + } + ], + "1252": [ + { + "name": "CICscan", + "url": "https://testnet.cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } + ], + "1280": [ + { + "name": "HALOexplorer", + "url": "https://browser.halo.land", + "standard": "none" + } + ], + "1284": [ + { + "name": "moonscan", + "url": "https://moonbeam.moonscan.io", + "standard": "none" + } + ], + "1285": [ + { + "name": "moonscan", + "url": "https://moonriver.moonscan.io", + "standard": "none" + } + ], + "1287": [ + { + "name": "moonscan", + "url": "https://moonbase.moonscan.io", + "standard": "none" + } + ], + "1291": [ + { + "name": "Swisstronik Scout", + "url": "https://explorer-evm.testnet.swisstronik.com", + "standard": "none" + } + ], + "1311": [ + { + "name": "dos-testnet", + "url": "https://test.doscan.io", + "standard": "EIP3091" + } + ], + "1314": [ + { + "name": "alyxscan", + "url": "https://www.alyxscan.com", + "standard": "EIP3091" + } + ], + "1319": [ + { + "name": "AIA Chain Explorer Mainnet", + "url": "https://aiascan.com", + "standard": "EIP3091" + } + ], + "1320": [ + { + "name": "AIA Chain Explorer Testnet", + "url": "https://testnet.aiascan.com", + "standard": "EIP3091" + } + ], + "1328": [ + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ], + "1329": [ + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ], + "1338": [ + { + "name": "Elysium testnet explorer", + "url": "https://elysium-explorer.vulcanforged.com", + "standard": "none" + } + ], + "1339": [ + { + "name": "Elysium mainnet explorer", + "url": "https://explorer.elysiumchain.tech", + "standard": "none" + } + ], + "1343": [ + { + "name": "BLITZ Explorer", + "url": "https://subnets-test.avax.network/blitz", + "standard": "EIP3091" + } + ], + "1353": [ + { + "name": "CICscan", + "url": "https://cicscan.com", + "icon": "cicchain", + "standard": "EIP3091" + } + ], + "1369": [ + { + "name": "zafirium-explorer", + "url": "https://explorer.zakumi.io", + "standard": "none" + } + ], + "1370": [ + { + "name": "ramascan", + "url": "https://ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } + ], + "1377": [ + { + "name": "Pingaksha", + "url": "https://pingaksha.ramascan.com", + "icon": "ramestta", + "standard": "EIP3091" + } + ], + "1379": [ + { + "name": "kalarscan", + "url": "https://explorer.kalarchain.tech", + "icon": "kalarscan", + "standard": "EIP3091" + } + ], + "1388": [ + { + "name": "amstarscan", + "url": "https://mainnet.amstarscan.com", + "standard": "EIP3091" + } + ], + "1392": [ + { + "name": "BlockExplorer", + "url": "https://www.blockexplorer.com", + "standard": "EIP3091" + } + ], + "1433": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://rikscan.com", + "standard": "EIP3091" + } + ], + "1442": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ], + "1452": [ + { + "name": "GIL Explorer", + "url": "https://explorer.giltestnet.com", + "standard": "EIP3091" + } + ], + "1453": [ + { + "name": "MetaExplorer", + "url": "https://istanbul-explorer.metachain.dev", + "standard": "EIP3091" + } + ], + "1455": [ + { + "name": "Ctex Scan Explorer", + "url": "https://ctexscan.com", + "standard": "none" + } + ], + "1490": [ + { + "name": "Vitruveo Explorer", + "url": "https://explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } + ], + "1499": [ + { + "name": "IGC-Scan", + "url": "https://igcscan.com", + "standard": "EIP3091" + } + ], + "1501": [ + { + "name": "bevm canary scan", + "url": "https://scan-canary.bevm.io", + "standard": "none" + } + ], + "1506": [ + { + "name": "Sherpax Mainnet Explorer", + "url": "https://evm.sherpax.io", + "standard": "none" + } + ], + "1507": [ + { + "name": "Sherpax Testnet Explorer", + "url": "https://evm-pre.sherpax.io", + "standard": "none" + } + ], + "1515": [ + { + "name": "Beagle Messaging Chain Explorer", + "url": "https://eth.beagle.chat", + "standard": "EIP3091" + } + ], + "1559": [ + { + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ], + "1617": [ + { + "name": "Ethereum Inscription Explorer", + "url": "https://explorer.etins.org", + "standard": "none" + } + ], + "1625": [ + { + "name": "Gravity Alpha Mainnet Explorer", + "url": "https://explorer.gravity.xyz", + "standard": "EIP3091" + } + ], + "1662": [ + { + "name": "Liquichain Mainnet", + "url": "https://mainnet.liquichain.io", + "standard": "EIP3091" + } + ], + "1663": [ + { + "name": "Gobi Testnet Block Explorer", + "url": "https://gobi-explorer.horizen.io", + "icon": "eon", + "standard": "EIP3091" + } + ], + "1686": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.mintchain.io", + "icon": "mintTestnet", + "standard": "EIP3091" + } + ], + "1687": [ + { + "name": "blockscout", + "url": "https://sepolia-testnet-explorer.mintchain.io", + "icon": "mintTestnet", + "standard": "EIP3091" + } + ], + "1701": [ + { + "name": "Anytype Explorer", + "url": "https://explorer.anytype.io", + "icon": "any", + "standard": "EIP3091" + } + ], + "1707": [ + { + "name": "blockscout", + "url": "https://exp.blockchain.or.th", + "standard": "EIP3091" + } + ], + "1708": [ + { + "name": "blockscout", + "url": "https://exp.testnet.blockchain.or.th", + "standard": "EIP3091" + } + ], + "1717": [ + { + "name": "Doric Explorer", + "url": "https://explorer.doric.network", + "standard": "EIP3091" + } + ], + "1718": [ + { + "name": "Palettescan", + "url": "https://palettescan.com", + "icon": "PLT", + "standard": "none" + } + ], + "1729": [ + { + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", + "standard": "EIP3091" + } + ], + "1740": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "1750": [ + { + "name": "blockscout", + "url": "https://explorer.metall2.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "1773": [ + { + "name": "PartyExplorer", + "url": "https://partyexplorer.co", + "icon": "grams", + "standard": "EIP3091" + } + ], + "1777": [ + { + "name": "Gauss Explorer", + "url": "https://explorer.gaussgang.com", + "standard": "EIP3091" + } + ], + "1789": [ + { + "name": "ZKbase Block Explorer", + "url": "https://sepolia-explorer.zkbase.app", + "icon": "zkbase", + "standard": "EIP3091" + } + ], + "1804": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/kerleano", + "icon": "pocr", + "standard": "EIP3091" + } + ], + "1807": [ + { + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } + ], + "1818": [ + { + "name": "cube-scan", + "url": "https://cubescan.network", + "standard": "EIP3091" + } + ], + "1819": [ + { + "name": "cubetest-scan", + "url": "https://testnet.cubescan.network", + "standard": "EIP3091" + } + ], + "1821": [ + { + "name": "RUBY Smart Chain MAINNET Explorer", + "icon": "ruby", + "url": "https://rubyscan.net", + "standard": "none" + } + ], + "1875": [ + { + "name": "whitechain-explorer", + "url": "https://explorer.whitechain.io", + "standard": "EIP3091" + } + ], + "1881": [ + { + "name": "blockscout", + "url": "https://scan.cartenz.works", + "standard": "EIP3091" + } + ], + "1890": [ + { + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ], + "1891": [ + { + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ], + "1898": [ + { + "name": "explorer", + "url": "https://explorer.boyanet.org:4001", + "standard": "EIP3091" + } + ], + "1904": [ + { + "name": "blockscout", + "url": "https://explorer.sportschainnetwork.xyz", + "standard": "EIP3091" + } + ], + "1907": [ + { + "name": "Bitci Explorer", + "url": "https://bitciexplorer.com", + "standard": "EIP3091" + } + ], + "1908": [ + { + "name": "Bitci Explorer Testnet", + "url": "https://testnet.bitciexplorer.com", + "standard": "EIP3091" + } + ], + "1909": [ + { + "name": "blockscout", + "url": "https://merklescan.com", + "standard": "none" + } + ], + "1911": [ + { + "name": "scalind", + "url": "https://explorer.scalind.com", + "standard": "EIP3091" + } + ], + "1912": [ + { + "name": "RUBY Smart Chain Testnet Explorer", + "icon": "ruby", + "url": "https://testnet.rubyscan.net", + "standard": "none" + } + ], + "1945": [ + { + "name": "Onus explorer testnet", + "url": "https://explorer-testnet.onuschain.io", + "icon": "onus", + "standard": "EIP3091" + } + ], + "1954": [ + { + "name": "dos-mainnet", + "url": "https://exp.dexilla.com", + "standard": "EIP3091" + } + ], + "1956": [ + { + "name": "aiw3 testnet scan", + "url": "https://scan-testnet.aiw3.io", + "standard": "none" + } + ], + "1961": [ + { + "name": "Selendra Scan", + "url": "https://scan.selendra.org", + "standard": "none" + } + ], + "1967": [ + { + "name": "metaexplorer-eleanor", + "url": "https://explorer.metatime.com/eleanor", + "standard": "EIP3091" + } + ], + "1969": [ + { + "name": "blockscout", + "url": "https://testnetscan.scschain.com", + "standard": "EIP3091" + } + ], + "1970": [ + { + "name": "blockscout", + "url": "https://scan.scschain.com", + "standard": "EIP3091" + } + ], + "1972": [ + { + "name": "RedeCoin Explorer", + "url": "https://explorer3.redecoin.eu", + "standard": "none" + } + ], + "1975": [ + { + "name": "Onus explorer mainnet", + "url": "https://explorer.onuschain.io", + "icon": "onus", + "standard": "EIP3091" + } + ], + "1984": [ + { + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ], + "1985": [ + { + "name": "mainnetexplorer", + "url": "http://explore.satosh.ie", + "icon": "satoshie", + "standard": "none" + } + ], + "1986": [ + { + "name": "testnetexplorer", + "url": "http://explore-testnet.satosh.ie", + "icon": "satoshie", + "standard": "none" + } + ], + "1992": [ + { + "name": "routescan", + "url": "https://explorer.hubble.exchange", + "standard": "EIP3091" + } + ], + "1994": [ + { + "name": "ektascan", + "url": "https://ektascan.io", + "icon": "ekta", + "standard": "EIP3091" + } + ], + "1995": [ + { + "name": "edexa-testnet", + "url": "https://explorer.testnet.edexa.network", + "standard": "EIP3091" + } + ], + "1996": [ + { + "name": "Sanko Explorer", + "url": "https://explorer.sanko.xyz", + "standard": "EIP3091" + } + ], + "1997": [ + { + "name": "Kyotoscan", + "url": "https://kyotoscan.io", + "standard": "EIP3091" + } + ], + "1998": [ + { + "name": "Kyotoscan", + "url": "https://testnet.kyotoscan.io", + "standard": "EIP3091" + } + ], + "2000": [ + { + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } + ], + "2001": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ], + "2002": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ], + "2004": [ + { + "name": "MetaScan", + "url": "http://twoto3.com:3000", + "standard": "none" + } + ], + "2008": [ + { + "name": "CloudWalk Testnet Explorer", + "url": "https://explorer.testnet.cloudwalk.io", + "standard": "none" + } + ], + "2009": [ + { + "name": "CloudWalk Mainnet Explorer", + "url": "https://explorer.mainnet.cloudwalk.io", + "standard": "none" + } + ], + "2014": [ + { + "name": "nowscan", + "url": "https://nowscan.io", + "standard": "EIP3091" + } + ], + "2016": [ + { + "name": "MainnetZ", + "url": "https://explorer.mainnetz.io", + "standard": "EIP3091" + } + ], + "2017": [ + { + "name": "telscan", + "url": "https://telscan.io", + "icon": "telcoin", + "standard": "EIP3091" + } + ], + "2018": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.dev.publicmint.io", + "standard": "EIP3091" + } + ], + "2019": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } + ], + "2020": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.publicmint.io", + "standard": "EIP3091" + } + ], + "2021": [ + { + "name": "Edgscan EdgeEVM explorer by Bharathcoorg", + "url": "https://edgscan.live", + "standard": "EIP3091" + }, + { + "name": "Edgscan EdgeWASM explorer by Bharathcoorg", + "url": "https://edgscan.ink", + "standard": "none", + "icon": "edgscan" + } + ], + "2022": [ + { + "name": "Edgscan by Bharathcoorg", + "url": "https://testnet.edgscan.live", + "standard": "EIP3091" + } + ], + "2023": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://evmscan-test.hupayx.io", + "standard": "none", + "icon": "shuffle" + }, + { + "name": "Taycan Cosmos Explorer", + "url": "https://cosmoscan-test.hupayx.io", + "standard": "none", + "icon": "shuffle" + } + ], + "2025": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ], + "2026": [ + { + "name": "Edgeless Explorer", + "url": "https://explorer.edgeless.network", + "standard": "EIP3091" + } + ], + "2031": [ + { + "name": "subscan", + "url": "https://centrifuge.subscan.io", + "standard": "EIP3091", + "icon": "subscan" + } + ], + "2037": [ + { + "name": "KIWI Explorer", + "url": "https://subnets-test.avax.network/kiwi", + "standard": "EIP3091" + } + ], + "2038": [ + { + "name": "SHRAPNEL Explorer", + "url": "https://subnets-test.avax.network/shrapnel", + "standard": "EIP3091" + } + ], + "2039": [ + { + "name": "Aleph Zero Testnet", + "url": "https://test.azero.dev/#/explorer", + "icon": "aleph", + "standard": "none" + } + ], + "2040": [ + { + "name": "Vanar Explorer", + "url": "https://explorer.vanarchain.com", + "icon": "vanar", + "standard": "EIP3091" + } + ], + "2047": [ + { + "name": "Stratos EVM Explorer (Blockscout)", + "url": "https://web3-explorer-mesos.thestratos.org", + "standard": "none" + }, + { + "name": "Stratos Cosmos Explorer (BigDipper)", + "url": "https://big-dipper-mesos.thestratos.org", + "standard": "none" + } + ], + "2048": [ + { + "name": "Stratos EVM Explorer (Blockscout)", + "url": "https://web3-explorer.thestratos.org", + "standard": "none" + }, + { + "name": "Stratos Cosmos Explorer (BigDipper)", + "url": "https://explorer.thestratos.org", + "standard": "none" + } + ], + "2049": [ + { + "name": "movoscan", + "url": "https://movoscan.com", + "icon": "movoscan", + "standard": "none" + } + ], + "2077": [ + { + "name": "blockscout", + "url": "https://explorer.qkacoin.org", + "standard": "EIP3091" + } + ], + "2100": [ + { + "name": "Ecoball Explorer", + "url": "https://scan.ecoball.org", + "standard": "EIP3091" + } + ], + "2101": [ + { + "name": "Ecoball Testnet Explorer", + "url": "https://espuma-scan.ecoball.org", + "standard": "EIP3091" + } + ], + "2109": [ + { + "name": "blockscout", + "url": "https://explorer.exosama.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "2112": [ + { + "name": "uchain.info", + "url": "https://uchain.info", + "standard": "EIP3091" + } + ], + "2121": [ + { + "name": "catenascan", + "url": "https://catenascan.com", + "standard": "EIP3091" + } + ], + "2122": [ + { + "name": "Metad Scan", + "url": "https://scan.metaplayer.one", + "icon": "metad", + "standard": "EIP3091" + } + ], + "2124": [ + { + "name": "MP1Scan", + "url": "https://dubai.mp1scan.io", + "standard": "EIP3091" + } + ], + "2136": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer", + "standard": "none" + } + ], + "2138": [ + { + "name": "Quorum Explorer", + "url": "https://public-2138.defi-oracle.io", + "standard": "none" + } + ], + "2140": [ + { + "name": "oneness-mainnet", + "url": "https://scan.onenesslabs.io", + "standard": "EIP3091" + } + ], + "2141": [ + { + "name": "oneness-testnet", + "url": "https://scan.testnet.onenesslabs.io", + "standard": "EIP3091" + } + ], + "2151": [ + { + "name": "BOASCAN", + "url": "https://boascan.io", + "icon": "agora", + "standard": "EIP3091" + } + ], + "2152": [ + { + "name": "findorascan", + "url": "https://evm.findorascan.io", + "standard": "EIP3091" + } + ], + "2153": [ + { + "name": "findorascan", + "url": "https://testnet-anvil.evm.findorascan.io", + "standard": "EIP3091" + } + ], + "2154": [ + { + "name": "findorascan", + "url": "https://testnet-forge.evm.findorascan.io", + "standard": "EIP3091" + } + ], + "2199": [ + { + "name": "blockscout", + "url": "https://explorer.moonsama.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "2202": [ + { + "name": "Antofy Mainnet", + "url": "https://antofyscan.com", + "standard": "EIP3091" + } + ], + "2203": [ + { + "name": "Explorer", + "url": "https://explorer.bitcoinevm.com", + "icon": "ebtc", + "standard": "none" + } + ], + "2213": [ + { + "name": "Evanesco Explorer", + "url": "https://explorer.evanesco.org", + "standard": "none" + } + ], + "2221": [ + { + "name": "Kava Testnet Explorer", + "url": "http://testnet.kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } + ], + "2222": [ + { + "name": "Kava EVM Explorer", + "url": "https://kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } + ], + "2223": [ + { + "name": "VChain Scan", + "url": "https://scan.vcex.xyz", + "standard": "EIP3091" + } + ], + "2241": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer", + "standard": "none" + }, + { + "name": "Subscan", + "url": "https://krest.subscan.io", + "standard": "none" + } + ], + "2300": [ + { + "name": "bombscan", + "icon": "bomb", + "url": "https://bombscan.com", + "standard": "EIP3091" + } + ], + "2323": [ + { + "name": "SOMA Testnet Explorer", + "icon": "soma", + "url": "https://testnet.somascan.io", + "standard": "none" + } + ], + "2330": [ + { + "name": "expedition", + "url": "http://expedition.altcoinchain.org", + "icon": "altcoinchain", + "standard": "none" + } + ], + "2331": [ + { + "name": "RSS3 VSL Sepolia Testnet Scan", + "url": "https://scan.testnet.rss3.io", + "standard": "EIP3091" + } + ], + "2332": [ + { + "name": "SOMA Explorer Mainnet", + "icon": "soma", + "url": "https://somascan.io", + "standard": "none" + } + ], + "2340": [ + { + "name": "Atleta Olympia Explorer", + "icon": "atleta", + "url": "https://blockscout.atleta.network", + "standard": "none" + }, + { + "name": "Atleta Olympia Polka Explorer", + "icon": "atleta", + "url": "https://polkadot-explorer.atleta.network/#/explorer", + "standard": "none" + } + ], + "2342": [ + { + "name": "OmniaVerse Explorer", + "url": "https://scan.omniaverse.io", + "standard": "EIP3091" + } + ], + "2358": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia.kroma.network", + "icon": "kroma", + "standard": "EIP3091" + } + ], + "2370": [ + { + "name": "Nexis Testnet Explorer", + "url": "https://evm-testnet.nexscan.io", + "standard": "EIP3091" + } + ], + "2399": [ + { + "name": "bombscan-testnet", + "icon": "bomb", + "url": "https://explorer.bombchain-testnet.ankr.com", + "standard": "EIP3091" + } + ], + "2400": [ + { + "name": "TCG Verse Explorer", + "url": "https://explorer.tcgverse.xyz", + "standard": "EIP3091" + } + ], + "2410": [ + { + "name": "Karak Mainnet Explorer", + "url": "https://explorer.karak.network", + "standard": "EIP3091" + } + ], + "2415": [ + { + "name": "XODEX Explorer", + "url": "https://explorer.xo-dex.com", + "standard": "EIP3091", + "icon": "xodex" + } + ], + "2425": [ + { + "name": "King Of Legends Devnet Explorer", + "url": "https://devnet.kingscan.org", + "icon": "kol", + "standard": "EIP3091" + } + ], + "2442": [ + { + "name": "polygonscan", + "url": "https://cardona-zkevm.polygonscan.com", + "standard": "EIP3091" + } + ], + "2458": [ + { + "name": "Hybrid Chain Explorer Testnet", + "icon": "hybrid", + "url": "https://testnet.hybridscan.ai", + "standard": "none" + } + ], + "2468": [ + { + "name": "Hybrid Chain Explorer Mainnet", + "icon": "hybrid", + "url": "https://hybridscan.ai", + "standard": "none" + } + ], + "2484": [ + { + "icon": "u2u_nebulas", + "name": "U2U Explorer", + "url": "https://testnet.u2uscan.xyz", + "standard": "EIP3091" + } + ], + "2522": [ + { + "name": "fraxscan", + "url": "https://holesky.fraxscan.com", + "standard": "EIP3091" + } + ], + "2569": [ + { + "name": "tpcscan", + "url": "https://tpcscan.com", + "icon": "techpay", + "standard": "EIP3091" + } + ], + "2606": [ + { + "name": "Lite Explorer", + "url": "https://ethereum-pocr.github.io/explorer/pocrnet", + "icon": "pocr", + "standard": "EIP3091" + } + ], + "2611": [ + { + "name": "REDLC Explorer", + "url": "https://redlightscan.finance", + "standard": "EIP3091" + } + ], + "2612": [ + { + "name": "ezchain", + "url": "https://cchain-explorer.ezchain.com", + "standard": "EIP3091" + } + ], + "2613": [ + { + "name": "ezchain", + "url": "https://testnet-cchain-explorer.ezchain.com", + "standard": "EIP3091" + } + ], + "2625": [ + { + "name": "whitechain-testnet-explorer", + "url": "https://testnet.whitechain.io", + "standard": "EIP3091" + } + ], + "2648": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.ailayer.xyz", + "icon": "ailayer", + "standard": "EIP3091" + } + ], + "2649": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.ailayer.xyz", + "icon": "ailayer", + "standard": "EIP3091" + } + ], + "2710": [ + { + "name": "Morph Testnet Explorer", + "url": "https://explorer-testnet.morphl2.io", + "standard": "EIP3091" + } + ], + "2718": [ + { + "name": "blockscout", + "url": "https://blockscout.klaos.laosfoundation.io", + "icon": "k-laos", + "standard": "EIP3091" + } + ], + "2730": [ + { + "name": "XR Sepolia Explorer", + "url": "https://xr-sepolia-testnet.explorer.caldera.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "2731": [ + { + "name": "Time Network Explorer", + "url": "https://testnet-scanner.timenetwork.io", + "standard": "none", + "icon": "timenet" + } + ], + "2748": [ + { + "name": "Nanon Rollup Explorer", + "url": "https://explorer.nanon.network", + "standard": "EIP3091" + } + ], + "2777": [ + { + "name": "GM Network Mainnet Explorer", + "url": "https://scan.gmnetwork.ai", + "standard": "EIP3091" + } + ], + "2810": [ + { + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", + "standard": "EIP3091" + } + ], + "2907": [ + { + "name": "blockscout", + "url": "https://eluxscan.com", + "standard": "none" + } + ], + "2911": [ + { + "name": "blockscout", + "url": "https://explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } + ], + "2941": [ + { + "name": "Xenon testnet Explorer", + "url": "https://testnet.xenonchain.com", + "standard": "none" + } + ], + "2999": [ + { + "name": "BitYuan Block Chain Explorer", + "url": "https://mainnet.bityuan.com", + "standard": "none" + } + ], + "3001": [ + { + "name": "UNcover", + "url": "https://www.uncoverexplorer.com/?network=Nikau", + "standard": "none" + } + ], + "3003": [ + { + "name": "canxium explorer", + "url": "https://explorer.canxium.org", + "standard": "none" + } + ], + "3011": [ + { + "name": "PLAYA3ULL GAMES Explorer", + "url": "https://3011.routescan.io", + "icon": "playa3ull", + "standard": "EIP3091" + } + ], + "3031": [ + { + "name": "Orlando (ORL) Explorer", + "url": "https://orlscan.com", + "icon": "orl", + "standard": "EIP3091" + } + ], + "3033": [ + { + "name": "Rebus EVM Explorer (Blockscout)", + "url": "https://evm.testnet.rebus.money", + "icon": "rebus", + "standard": "none" + }, + { + "name": "Rebus Cosmos Explorer (ping.pub)", + "url": "https://testnet.rebus.money/rebustestnet", + "icon": "rebus", + "standard": "none" + } + ], + "3068": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.mainnet.bifrostnetwork.com", + "standard": "EIP3091" + } + ], + "3073": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "3306": [ + { + "name": "Debounce Devnet Explorer", + "url": "https://explorer.debounce.network", + "standard": "EIP3091" + } + ], + "3334": [ + { + "name": "w3q-galileo", + "url": "https://explorer.galileo.web3q.io", + "standard": "EIP3091" + } + ], + "3400": [ + { + "name": "Paribu Net Explorer", + "url": "https://explorer.paribu.network", + "standard": "EIP3091" + } + ], + "3424": [ + { + "name": "Evolve Mainnet Explorer", + "url": "https://evoexplorer.com", + "standard": "EIP3091" + } + ], + "3434": [ + { + "name": "SecureChain", + "url": "https://testnet.securechain.ai", + "standard": "EIP3091" + } + ], + "3456": [ + { + "name": "LayerEdge Testnet Explorer", + "url": "https://testnet-explorer.layeredge.io", + "icon": "layerEdge", + "standard": "EIP3091" + } + ], + "3490": [ + { + "name": "GTCScan Explorer", + "url": "https://gtcscan.io", + "standard": "none", + "icon": "gtc" + } + ], + "3500": [ + { + "name": "Paribu Net Testnet Explorer", + "url": "https://testnet.paribuscan.com", + "standard": "EIP3091" + } + ], + "3501": [ + { + "name": "JFIN Chain Explorer", + "url": "https://exp.jfinchain.com", + "standard": "EIP3091" + } + ], + "3601": [ + { + "name": "Pando Mainnet Explorer", + "url": "https://explorer.pandoproject.org", + "standard": "none" + } + ], + "3602": [ + { + "name": "Pando Testnet Explorer", + "url": "https://testnet.explorer.pandoproject.org", + "standard": "none" + } + ], + "3636": [ + { + "name": "3xpl", + "url": "https://3xpl.com/botanix", + "standard": "EIP3091" + }, + { + "name": "Blockscout", + "url": "https://blockscout.botanixlabs.dev", + "standard": "EIP3091" + } + ], + "3637": [ + { + "name": "Botanix", + "url": "https://btxtestchain.com", + "standard": "EIP3091" + } + ], + "3639": [ + { + "name": "iChainscan", + "url": "https://ichainscan.com", + "standard": "EIP3091" + } + ], + "3645": [ + { + "name": "iChainscan", + "url": "https://test.ichainscan.com", + "standard": "EIP3091" + } + ], + "3666": [ + { + "name": "jscan", + "url": "https://jscan.jnsdao.com", + "standard": "EIP3091" + } + ], + "3690": [ + { + "name": "bittexscan", + "url": "https://bittexscan.com", + "standard": "EIP3091" + } + ], + "3693": [ + { + "name": "Empire Explorer", + "url": "https://explorer.empirenetwork.io", + "standard": "none" + } + ], + "3698": [ + { + "name": "SenjePowers", + "url": "https://testnet.senjepowersscan.com", + "standard": "EIP3091" + } + ], + "3699": [ + { + "name": "SenjePowers", + "url": "https://senjepowersscan.com", + "standard": "EIP3091" + } + ], + "3737": [ + { + "name": "Crossbell Explorer", + "url": "https://scan.crossbell.io", + "standard": "EIP3091" + } + ], + "3776": [ + { + "name": "Blockscout Astar zkEVM explorer", + "url": "https://astar-zkevm.explorer.startale.com", + "standard": "EIP3091" + } + ], + "3797": [ + { + "name": "AlveyScan", + "url": "https://alveyscan.com", + "icon": "alveychain", + "standard": "EIP3091" + } + ], + "3799": [ + { + "name": "ttntscan", + "url": "https://testnet-explorer.tangle.tools", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "3888": [ + { + "name": "KalyScan", + "url": "https://kalyscan.io", + "standard": "EIP3091" + } + ], + "3889": [ + { + "name": "KalyScan", + "url": "https://testnet.kalyscan.io", + "standard": "EIP3091" + } + ], + "3912": [ + { + "name": "DRAC_Network Scan", + "url": "https://www.dracscan.io", + "standard": "EIP3091" + } + ], + "3939": [ + { + "name": "DOScan-Test", + "url": "https://test.doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ], + "3966": [ + { + "name": "DYNO Explorer", + "url": "https://dynoscan.io", + "standard": "EIP3091" + } + ], + "3967": [ + { + "name": "DYNO Explorer", + "url": "https://testnet.dynoscan.io", + "standard": "EIP3091" + } + ], + "3993": [ + { + "name": "blockscout", + "url": "https://exp-testnet.apexlayer.xyz", + "standard": "EIP3091" + } + ], + "3999": [ + { + "name": "YuanChain Explorer", + "url": "https://mainnet.yuan.org", + "standard": "none" + } + ], + "4000": [ + { + "name": "OZONE Scan", + "url": "https://ozonescan.io", + "standard": "EIP3091" + } + ], + "4001": [ + { + "name": "Peperium Chain Explorer", + "url": "https://scan-testnet.peperium.io", + "icon": "peperium", + "standard": "EIP3091" + } + ], + "4002": [ + { + "name": "ftmscan", + "url": "https://testnet.ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + } + ], + "4003": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-fastnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "4040": [ + { + "name": "Carbonium Network tesnet Explorer", + "icon": "cbr", + "url": "https://testnet.carboniumscan.com", + "standard": "none" + } + ], + "4048": [ + { + "name": "ganscan", + "url": "https://ganscan.gpu.net", + "standard": "none" + } + ], + "4058": [ + { + "name": "blockscout", + "url": "https://ocean.ftnscan.com", + "standard": "none" + } + ], + "4061": [ + { + "name": "Nahmii 3 Mainnet Explorer", + "url": "https://explorer.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "4062": [ + { + "name": "Nahmii 3 Testnet Explorer", + "url": "https://explorer.testnet.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "4078": [ + { + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", + "standard": "EIP3091" + } + ], + "4080": [ + { + "name": "tobescan", + "url": "https://tobescan.com", + "standard": "EIP3091" + } + ], + "4090": [ + { + "name": "blockscout", + "url": "https://oasis.ftnscan.com", + "standard": "none" + } + ], + "4096": [ + { + "name": "Bitindi", + "url": "https://testnet.bitindiscan.com", + "standard": "EIP3091" + } + ], + "4099": [ + { + "name": "Bitindi", + "url": "https://bitindiscan.com", + "standard": "EIP3091" + } + ], + "4102": [ + { + "name": "AIOZ Network Testnet Explorer", + "url": "https://testnet.explorer.aioz.network", + "standard": "EIP3091" + } + ], + "4141": [ + { + "name": "Tipboxcoin", + "url": "https://testnet.tipboxcoin.net", + "standard": "EIP3091" + } + ], + "4157": [ + { + "name": "CrossFi Testnet Scan", + "url": "https://test.xfiscan.com", + "standard": "EIP3091", + "icon": "crossfi" + } + ], + "4181": [ + { + "name": "PHI Explorer", + "url": "https://explorer.phi.network", + "icon": "phi", + "standard": "none" + } + ], + "4200": [ + { + "name": "L2scan", + "url": "https://scan.merlinchain.io", + "icon": "merlin", + "standard": "EIP3091" + } + ], + "4201": [ + { + "name": "Blockscout", + "url": "https://explorer.execution.testnet.lukso.network", + "standard": "none" + } + ], + "4202": [ + { + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "4242": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } + ], + "4243": [ + { + "name": "nexiscan", + "url": "https://www.nexiscan.com", + "standard": "EIP3091" + } + ], + "4337": [ + { + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", + "standard": "EIP3091" + } + ], + "4400": [ + { + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } + ], + "4444": [ + { + "name": "htmlcoin", + "url": "https://explorer.htmlcoin.com", + "icon": "htmlcoin", + "standard": "none" + } + ], + "4460": [ + { + "name": "basescout", + "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "4544": [ + { + "name": "EMoney ethscan", + "url": "https://ethscan.emoney.network", + "icon": "emoney", + "standard": "EIP3091" + } + ], + "4613": [ + { + "name": "VERY explorer", + "url": "https://www.veryscan.io", + "standard": "none" + } + ], + "4689": [ + { + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } + ], + "4690": [ + { + "name": "testnet iotexscan", + "url": "https://testnet.iotexscan.io", + "standard": "EIP3091" + } + ], + "4759": [ + { + "name": "MEVerse Chain Testnet Explorer", + "url": "https://testnet.meversescan.io", + "standard": "none", + "icon": "meverse" + } + ], + "4777": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "4893": [ + { + "name": "blockscout", + "url": "https://gcscan.io", + "standard": "none" + } + ], + "4918": [ + { + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", + "standard": "EIP3091" + } + ], + "4919": [ + { + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } + ], + "4999": [ + { + "name": "blockscout", + "url": "https://explorer.blackfort.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "5000": [ + { + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } + ], + "5001": [ + { + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", + "standard": "EIP3091" + } + ], + "5002": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } + ], + "5003": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.mantle.xyz", + "standard": "EIP3091" + } + ], + "5005": [ + { + "name": "Treasurenet EVM BlockExplorer", + "url": "https://evmexplorer.testnet.treasurenet.io", + "icon": "treasurenet", + "standard": "none" + } + ], + "5039": [ + { + "name": "ONIGIRI Explorer", + "url": "https://subnets-test.avax.network/onigiri", + "standard": "EIP3091" + } + ], + "5040": [ + { + "name": "ONIGIRI Explorer", + "url": "https://subnets.avax.network/onigiri", + "standard": "EIP3091" + } + ], + "5051": [ + { + "name": "Nollie Skate Chain Testnet Explorer", + "url": "https://nolliescan.skatechain.org", + "standard": "EIP3091" + } + ], + "5102": [ + { + "name": "blockscout", + "url": "https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz", + "standard": "EIP3091" + } + ], + "5106": [ + { + "name": "blockscout", + "url": "https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz", + "standard": "EIP3091" + } + ], + "5112": [ + { + "name": "blockscout", + "url": "https://explorer.ham.fun", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "5165": [ + { + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + } + ], + "5169": [ + { + "name": "SLN Mainnet Explorer", + "url": "https://explorer.main.smartlayer.network", + "standard": "EIP3091" + } + ], + "5177": [ + { + "name": "TLChain Explorer", + "url": "https://explorer.tlchain.network", + "standard": "none" + } + ], + "5234": [ + { + "name": "Subscan", + "url": "https://humanode.subscan.io", + "standard": "EIP3091", + "icon": "subscan" + } + ], + "5317": [ + { + "name": "OpTrust Testnet explorer", + "url": "https://scantest.optrust.io", + "icon": "optrust", + "standard": "none" + } + ], + "5321": [ + { + "name": "ITX Testnet Explorer (Blockscout)", + "url": "https://explorer.testnet.itxchain.com", + "standard": "EIP3091" + } + ], + "5353": [ + { + "name": "TRITANIUM Testnet Explorer", + "icon": "tritanium", + "url": "https://testnet.tritanium.network", + "standard": "none" + } + ], + "5372": [ + { + "name": "Settlus Scan", + "url": "https://testnet.settlus.network", + "standard": "EIP3091" + } + ], + "5424": [ + { + "name": "edexa-mainnet", + "url": "https://explorer.edexa.network", + "standard": "EIP3091" + } + ], + "5439": [ + { + "name": "egoscan", + "url": "https://egoscan.io", + "standard": "EIP3091" + } + ], + "5522": [ + { + "name": "Vexascan-EVM-TestNet", + "url": "https://testnet.vexascan.com/evmexplorer", + "standard": "EIP3091" + } + ], + "5551": [ + { + "name": "Nahmii 2 Mainnet Explorer", + "url": "https://explorer.n2.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "5555": [ + { + "name": "Chain Verse Explorer", + "url": "https://explorer.chainverse.info", + "standard": "EIP3091" + } + ], + "5611": [ + { + "name": "bscscan-opbnb-testnet", + "url": "https://opbnb-testnet.bscscan.com", + "standard": "EIP3091" + }, + { + "name": "opbnbscan", + "url": "https://opbnbscan.com", + "standard": "EIP3091" + } + ], + "5615": [ + { + "name": "explorer-arcturus-testnet", + "url": "https://testnet.arcscan.net", + "standard": "EIP3091" + } + ], + "5656": [ + { + "name": "QIE Explorer", + "url": "https://mainnet.qiblockchain.online", + "standard": "EIP3091" + } + ], + "5675": [ + { + "name": "filenova testnet explorer", + "url": "https://scantest.filenova.org", + "icon": "filenova", + "standard": "none" + } + ], + "5678": [ + { + "name": "BlockScout", + "url": "https://3001-blockscout.a.dancebox.tanssi.network", + "standard": "EIP3091" + } + ], + "5700": [ + { + "name": "Syscoin Testnet Block Explorer", + "url": "https://tanenbaum.io", + "standard": "EIP3091" + } + ], + "5729": [ + { + "name": "Hika Network Testnet Explorer", + "url": "https://scan-testnet.hika.network", + "standard": "none" + } + ], + "5758": [ + { + "name": "SatoshiChain Testnet Explorer", + "url": "https://testnet.satoshiscan.io", + "standard": "EIP3091" + } + ], + "5845": [ + { + "name": "Tangle EVM Explorer", + "url": "https://explorer.tangle.tools", + "standard": "EIP3091", + "icon": "tangle" + } + ], + "5851": [ + { + "name": "explorer", + "url": "https://explorer.ont.io/testnet", + "standard": "EIP3091" + } + ], + "5869": [ + { + "name": "wegoscan2", + "url": "https://scan2.wegochain.io", + "standard": "EIP3091" + } + ], + "6000": [ + { + "name": "BBScan Testnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } + ], + "6001": [ + { + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } + ], + "6065": [ + { + "name": "treslechesexplorer", + "url": "https://explorer-test.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } + ], + "6066": [ + { + "name": "treslechesexplorer", + "url": "https://explorer.tresleches.finance", + "icon": "treslechesexplorer", + "standard": "EIP3091" + } + ], + "6102": [ + { + "name": "Cascadia EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + }, + { + "name": "Cascadia Cosmos Explorer", + "url": "https://validator.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + } + ], + "6118": [ + { + "name": "UPTN Testnet Explorer", + "url": "https://testnet.explorer.uptn.io", + "standard": "EIP3091" + } + ], + "6119": [ + { + "name": "UPTN Explorer", + "url": "https://explorer.uptn.io", + "standard": "EIP3091" + } + ], + "6321": [ + { + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" + } + ], + "6322": [ + { + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" + } + ], + "6552": [ + { + "name": "Scolscan Testnet Explorer", + "url": "https://testnet-explorer.scolcoin.com", + "standard": "EIP3091" + } + ], + "6565": [ + { + "name": "FOX Testnet Explorer", + "icon": "fox", + "url": "https://testnet.foxscan.app", + "standard": "none" + } + ], + "6626": [ + { + "name": "blockscout", + "url": "https://scan.chain.pixie.xyz", + "standard": "none" + } + ], + "6660": [ + { + "name": "Latest Chain", + "url": "http://testnet.latestchain.io", + "standard": "EIP3091" + } + ], + "6661": [ + { + "name": "Cybria Explorer", + "url": "https://cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } + ], + "6666": [ + { + "name": "Cybria Explorer", + "url": "https://explorer.cybascan.io", + "icon": "cybascan", + "standard": "EIP3091" + } + ], + "6688": [ + { + "name": "IRISHub Cosmos Explorer (IOBScan)", + "url": "https://irishub.iobscan.io", + "standard": "none", + "icon": "irishub" + } + ], + "6701": [ + { + "name": "PAXB Explorer", + "url": "https://scan.paxb.io", + "icon": "paxb", + "standard": "EIP3091" + } + ], + "6779": [ + { + "name": "cpvscan", + "url": "https://scan.compverse.io", + "standard": "EIP3091" + } + ], + "6789": [ + { + "name": "Gold Smart Chain", + "url": "https://mainnet.goldsmartchain.com", + "standard": "EIP3091" + } + ], + "6868": [ + { + "name": "poolsscan", + "url": "https://scan.poolsmobility.com", + "icon": "POOLS", + "standard": "EIP3091" + } + ], + "6969": [ + { + "name": "tombscout", + "url": "https://tombscout.com", + "standard": "none" + } + ], + "7000": [ + { + "name": "ZetaChain Mainnet Explorer", + "url": "https://explorer.zetachain.com", + "standard": "none" + } + ], + "7001": [ + { + "name": "ZetaChain Athens Testnet Explorer", + "url": "https://athens3.explorer.zetachain.com", + "standard": "none" + }, + { + "name": "blockscout", + "url": "https://zetachain-athens-3.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "7007": [ + { + "name": "blockscout", + "url": "https://bstscan.com", + "standard": "EIP3091" + } + ], + "7027": [ + { + "name": "Ella", + "url": "https://ella.network", + "standard": "EIP3091" + } + ], + "7070": [ + { + "name": "Planq EVM Explorer (Blockscout)", + "url": "https://evm.planq.network", + "standard": "none" + }, + { + "name": "Planq Cosmos Explorer (BigDipper)", + "url": "https://explorer.planq.network", + "standard": "none" + } + ], + "7100": [ + { + "name": "numeexplorer", + "url": "https://explorer.numecrypto.com", + "icon": "nume", + "standard": "none" + } + ], + "7171": [ + { + "name": "Bitrock Explorer", + "url": "https://explorer.bit-rock.io", + "standard": "EIP3091" + } + ], + "7300": [ + { + "name": "XPLA Verse Explorer", + "url": "https://explorer-xpla-verse.xpla.dev", + "standard": "EIP3091" + } + ], + "7332": [ + { + "name": "Horizen EON Block Explorer", + "url": "https://eon-explorer.horizenlabs.io", + "icon": "eon", + "standard": "EIP3091" + } + ], + "7341": [ + { + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } + ], + "7484": [ + { + "name": "raba", + "url": "https://x.raba.app/explorer", + "standard": "none" + } + ], + "7518": [ + { + "name": "MEVerse Chain Explorer", + "url": "https://www.meversescan.io", + "standard": "none", + "icon": "meverse" + } + ], + "7560": [ + { + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", + "standard": "EIP3091" + } + ], + "7575": [ + { + "name": "ADIL Testnet Explorer", + "url": "https://testnet.adilchain-scan.io", + "standard": "EIP3091" + } + ], + "7576": [ + { + "name": "ADIL Mainnet Explorer", + "url": "https://adilchain-scan.io", + "standard": "EIP3091" + } + ], + "7668": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.live", + "standard": "EIP3091" + } + ], + "7672": [ + { + "name": "rootnet", + "url": "https://explorer.rootnet.cloud", + "standard": "EIP3091" + } + ], + "7700": [ + { + "name": "Canto Explorer (OKLink)", + "url": "https://www.oklink.com/canto", + "standard": "EIP3091" + }, + { + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://canto.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "7701": [ + { + "name": "Canto Testnet EVM Explorer (Blockscout)", + "url": "https://testnet.tuber.build", + "standard": "none" + }, + { + "name": "dexguru", + "url": "https://canto-test.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "7771": [ + { + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } + ], + "7775": [ + { + "name": "GDCC", + "url": "https://testnet.gdccscan.io", + "standard": "none" + } + ], + "7777": [ + { + "name": "avascan", + "url": "https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy", + "standard": "none" + } + ], + "7778": [ + { + "name": "ORE Mainnet Explorer", + "icon": "ore", + "url": "https://oreniumscan.org", + "standard": "none" + } + ], + "7798": [ + { + "name": "OpenEX Long Testnet Explorer", + "url": "https://scan.long.openex.network", + "icon": "oex", + "standard": "EIP3091" + } + ], + "7860": [ + { + "name": "maalscan testnet", + "url": "https://testnet.maalscan.io", + "standard": "EIP3091" + } + ], + "7878": [ + { + "name": "Hazlor Testnet Explorer", + "url": "https://explorer.hazlor.com", + "standard": "none" + } + ], + "7887": [ + { + "name": "Kinto Explorer", + "url": "https://explorer.kinto.xyz", + "icon": "kinto", + "standard": "EIP3091" + } + ], + "7895": [ + { + "name": "ARDENIUM Athena Explorer", + "icon": "ard", + "url": "https://testnet.ardscan.com", + "standard": "none" + } + ], + "7923": [ + { + "name": "blockscout", + "url": "https://explorer.dotblox.io", + "standard": "none" + } + ], + "7924": [ + { + "name": "MO Explorer", + "url": "https://moscan.app", + "standard": "none" + } + ], + "7979": [ + { + "name": "DOScan", + "url": "https://doscan.io", + "icon": "doschain", + "standard": "EIP3091" + } + ], + "8000": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.teleport.network", + "standard": "none", + "icon": "teleport" + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.teleport.network", + "standard": "none", + "icon": "teleport" + } + ], + "8001": [ + { + "name": "Teleport EVM Explorer (Blockscout)", + "url": "https://evm-explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" + }, + { + "name": "Teleport Cosmos Explorer (Big Dipper)", + "url": "https://explorer.testnet.teleport.network", + "standard": "none", + "icon": "teleport" + } + ], + "8047": [ + { + "name": "BOAT Mainnet Explorer", + "url": "https://scan.come.boats", + "icon": "boat", + "standard": "EIP3091" + } + ], + "8054": [ + { + "name": "Karak Sepolia Explorer", + "url": "https://explorer.sepolia.karak.network", + "standard": "EIP3091" + } + ], + "8080": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-liberty10.shardeum.org", + "standard": "EIP3091" + } + ], + "8081": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-liberty20.shardeum.org", + "standard": "EIP3091" + } + ], + "8082": [ + { + "name": "Shardeum Scan", + "url": "https://explorer-sphinx.shardeum.org", + "standard": "EIP3091" + } + ], + "8131": [ + { + "name": "meerscan testnet", + "icon": "meer", + "url": "https://testnet-qng.qitmeer.io", + "standard": "EIP3091" + } + ], + "8181": [ + { + "name": "Testnet BeOne Chain", + "url": "https://testnet.beonescan.com", + "icon": "beonechain", + "standard": "none" + } + ], + "8192": [ + { + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "8194": [ + { + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "8217": [ + { + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "EIP3091" + }, + { + "name": "Klaytnfinder", + "url": "https://klaytnfinder.io", + "standard": "EIP3091" + } + ], + "8227": [ + { + "name": "SPACE Explorer", + "url": "https://subnets.avax.network/space", + "standard": "EIP3091" + } + ], + "8272": [ + { + "name": "Blockton Explorer", + "url": "https://blocktonscan.com", + "standard": "none" + } + ], + "8329": [ + { + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" + } + ], + "8453": [ + { + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://base.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "8668": [ + { + "name": "Hela Official Runtime Mainnet Explorer", + "url": "https://mainnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } + ], + "8723": [ + { + "name": "OLO Block Explorer", + "url": "https://www.olo.network", + "standard": "EIP3091" + } + ], + "8726": [ + { + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain", + "standard": "none" + } + ], + "8727": [ + { + "name": "Storscan", + "url": "https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet", + "standard": "none" + } + ], + "8738": [ + { + "name": "alphscan", + "url": "https://explorer.alph.network", + "standard": "EIP3091" + } + ], + "8822": [ + { + "name": "explorer", + "url": "https://explorer.evm.iota.org", + "icon": "iotaevm", + "standard": "EIP3091" + } + ], + "8844": [ + { + "name": "Hydra Chain Testnet explorer", + "url": "https://hydragon.hydrachain.org", + "icon": "hydra", + "standard": "EIP3091" + } + ], + "8848": [ + { + "name": "MARO Scan", + "url": "https://scan.ma.ro/#", + "standard": "none" + } + ], + "8866": [ + { + "name": "Lumio explorer", + "url": "https://explorer.lumio.io", + "standard": "none" + } + ], + "8880": [ + { + "name": "Unique Scan", + "url": "https://uniquescan.io/unique", + "standard": "none" + } + ], + "8881": [ + { + "name": "Unique Scan / Quartz", + "url": "https://uniquescan.io/quartz", + "standard": "none" + } + ], + "8882": [ + { + "name": "Unique Scan / Opal", + "url": "https://uniquescan.io/opal", + "standard": "none" + } + ], + "8883": [ + { + "name": "Unique Scan / Sapphire", + "url": "https://uniquescan.io/sapphire", + "standard": "none" + } + ], + "8888": [ + { + "name": "XANAChain", + "url": "https://xanachain.xana.net", + "standard": "EIP3091" + } + ], + "8890": [ + { + "name": "ORE Testnet Explorer", + "icon": "ore", + "url": "https://testnet.oreniumscan.org", + "standard": "none" + } + ], + "8898": [ + { + "name": "mmtscan", + "url": "https://mmtscan.io", + "standard": "EIP3091", + "icon": "mmt" + } + ], + "8899": [ + { + "name": "JIBCHAIN Explorer", + "url": "https://exp-l1.jibchain.net", + "standard": "EIP3091" + } + ], + "8911": [ + { + "name": "algscan", + "url": "https://scan.algen.network", + "icon": "alg", + "standard": "EIP3091" + } + ], + "8912": [ + { + "name": "algscan", + "url": "https://scan.test.algen.network", + "icon": "alg", + "standard": "EIP3091" + } + ], + "8921": [ + { + "name": "algl2scan", + "url": "https://scan.alg2.algen.network", + "icon": "algl2", + "standard": "EIP3091" + } + ], + "8922": [ + { + "name": "algl2scan", + "url": "https://scan.alg2-test.algen.network", + "icon": "algl2", + "standard": "EIP3091" + } + ], + "8989": [ + { + "name": "gmmtscan", + "url": "https://scan.gmmtchain.io", + "standard": "EIP3091", + "icon": "gmmt" + } + ], + "9000": [ + { + "name": "Evmos Explorer (Escan)", + "url": "https://testnet.escan.live", + "standard": "none", + "icon": "evmos" + } + ], + "9001": [ + { + "name": "Evmos Explorer (Escan)", + "url": "https://escan.live", + "standard": "none", + "icon": "evmos" + } + ], + "9007": [ + { + "name": "Shidoblock Testnet Explorer", + "url": "https://testnet.shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } + ], + "9008": [ + { + "name": "Shidoblock Mainnet Explorer", + "url": "https://shidoscan.com", + "standard": "none", + "icon": "shidoChain" + } + ], + "9012": [ + { + "name": "berylbit-explorer", + "url": "https://explorer.berylbit.io", + "standard": "EIP3091" + } + ], + "9024": [ + { + "name": "Nexablock Testnet Explorer", + "url": "https://testnet.nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } + ], + "9025": [ + { + "name": "Nexablock Mainnet Explorer", + "url": "https://nexablockscan.io", + "standard": "none", + "icon": "nexaChain" + } + ], + "9223": [ + { + "name": "Codefin Net Explorer", + "url": "https://explorer.codefin.pro", + "standard": "EIP3091" + } + ], + "9339": [ + { + "name": "Dogcoin", + "url": "https://testnet.dogcoin.network", + "standard": "EIP3091" + } + ], + "9393": [ + { + "name": "basescout", + "url": "https://sepolia-delascan.deperp.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "9395": [ + { + "name": "Evoke SmartChain Explorer", + "url": "https://explorer.evokescan.org", + "standard": "EIP3091" + } + ], + "9527": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ], + "9528": [ + { + "name": "QEasyWeb3 Explorer", + "url": "https://www.qeasyweb3.com", + "standard": "EIP3091" + } + ], + "9559": [ + { + "name": "Neon Blockchain Explorer", + "url": "https://testnet-scan.neonlink.io", + "standard": "EIP3091", + "icon": "neonlink" + } + ], + "9700": [ + { + "name": "Oort MainnetDev Scan", + "url": "https://dev-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ], + "9728": [ + { + "name": "Boba BNB Testnet block explorer", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "9768": [ + { + "name": "MainnetZ", + "url": "https://testnet.mainnetz.io", + "standard": "EIP3091" + } + ], + "9779": [ + { + "name": "Pepe Explorer", + "url": "https://explorer.pepenetwork.io", + "icon": "pepenetwork", + "standard": "none" + } + ], + "9789": [ + { + "name": "Tabi Testnet Explorer", + "url": "https://testnet.tabiscan.com", + "standard": "none" + } + ], + "9797": [ + { + "name": "OptimusZ7 Mainnet Explorer", + "url": "https://explorer.optimusz7.com", + "standard": "EIP3091" + } + ], + "9818": [ + { + "name": "IMPERIUM TESTNET Explorer", + "icon": "timp", + "url": "https://network.impscan.com", + "standard": "none" + } + ], + "9819": [ + { + "name": "IMPERIUM Explorer", + "icon": "imp", + "url": "https://impscan.com", + "standard": "none" + } + ], + "9888": [ + { + "name": "Dogelayer mainnet explorer", + "url": "https://dl-explorer.dogelayer.org", + "standard": "EIP3091" + } + ], + "9898": [ + { + "name": "Larissa Scan", + "url": "https://scan.larissa.network", + "standard": "EIP3091" + } + ], + "9911": [ + { + "name": "escscan", + "url": "https://escscan.com", + "icon": "espento", + "standard": "EIP3091" + } + ], + "9977": [ + { + "name": "Mind Chain explorer", + "url": "https://testnet.mindscan.info", + "standard": "EIP3091" + } + ], + "9980": [ + { + "name": "combotrace explorer", + "url": "https://combotrace.nodereal.io", + "standard": "EIP3091" + } + ], + "9981": [ + { + "name": "Volley Mainnet Explorer", + "url": "https://volleyscan.io", + "standard": "EIP3091" + } + ], + "9990": [ + { + "name": "Polkadot.js", + "url": "https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer", + "standard": "none" + }, + { + "name": "Subscan", + "url": "https://agung.subscan.io", + "standard": "none" + } + ], + "9996": [ + { + "name": "Mind Chain explorer", + "url": "https://mainnet.mindscan.info", + "standard": "EIP3091" + } + ], + "9997": [ + { + "name": "blockscout", + "url": "https://testnet-rollup-explorer.altlayer.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "10024": [ + { + "name": "Gon Explorer", + "url": "https://gonscan.com", + "standard": "none" + } + ], + "10081": [ + { + "name": "Testnet Block Explorer", + "url": "https://explorer.testnet.japanopenchain.org", + "standard": "EIP3091" + } + ], + "10200": [ + { + "name": "blockscout-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis-chiado.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "10201": [ + { + "name": "MaxxChain Block Explorer", + "url": "https://explorer.maxxchain.org", + "standard": "EIP3091" + } + ], + "10222": [ + { + "name": "GLScan Explorer", + "url": "https://glscan.io", + "standard": "none", + "icon": "glc" + } + ], + "10242": [ + { + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "10243": [ + { + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "10248": [ + { + "name": "0xtrade Scan", + "url": "https://www.0xtscan.com", + "standard": "none" + } + ], + "10321": [ + { + "name": "TAO Mainnet Explorer", + "url": "https://taoscan.org", + "standard": "EIP3091" + } + ], + "10324": [ + { + "name": "TAO Testnet Explorer", + "url": "https://testnet.taoscan.org", + "standard": "EIP3091" + } + ], + "10395": [ + { + "name": "Worldland Explorer", + "url": "https://testscan.worldland.foundation", + "standard": "EIP3091" + } + ], + "10507": [ + { + "name": "ethernal", + "url": "https://mainnet.num.network", + "standard": "EIP3091" + } + ], + "10508": [ + { + "name": "ethernal", + "url": "https://testnet.num.network", + "standard": "EIP3091" + } + ], + "10823": [ + { + "name": "CCP Explorer", + "url": "https://cryptocoinpay.info", + "standard": "EIP3091" + } + ], + "10849": [ + { + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" + } + ], + "10850": [ + { + "name": "Lamina1 Identity Explorer", + "url": "https://subnets.avax.network/lamina1id", + "standard": "EIP3091" + } + ], + "10946": [ + { + "name": "explorer", + "url": "https://explorer.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } + ], + "10947": [ + { + "name": "explorer", + "url": "https://explorer.testnet.quadrans.io", + "icon": "quadrans", + "standard": "EIP3091" + } + ], + "11110": [ + { + "name": "Astra EVM Explorer (Blockscout)", + "url": "https://explorer.astranaut.io", + "standard": "none", + "icon": "astra" + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.io/astra", + "standard": "none", + "icon": "astra" + } + ], + "11111": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/wagmi", + "standard": "EIP3091" + } + ], + "11115": [ + { + "name": "Astra EVM Explorer", + "url": "https://explorer.astranaut.dev", + "standard": "EIP3091", + "icon": "astra" + }, + { + "name": "Astra PingPub Explorer", + "url": "https://ping.astranaut.dev/astra", + "standard": "none", + "icon": "astra" + } + ], + "11119": [ + { + "name": "hashbitscan", + "url": "https://explorer.hashbit.org", + "standard": "EIP3091" + } + ], + "11221": [ + { + "name": "shinescan", + "url": "https://shinescan.io", + "icon": "shine", + "standard": "none" + } + ], + "11227": [ + { + "name": "JIRITSUTES Explorer", + "url": "https://subnets-test.avax.network/jiritsutes", + "standard": "EIP3091" + } + ], + "11235": [ + { + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } + ], + "11437": [ + { + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", + "standard": "EIP3091" + } + ], + "11501": [ + { + "name": "bevm mainnet scan", + "url": "https://scan-mainnet.bevm.io", + "standard": "none" + } + ], + "11503": [ + { + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", + "standard": "none" + } + ], + "11612": [ + { + "name": "Sardis", + "url": "https://testnet.sardisnetwork.com", + "standard": "EIP3091" + } + ], + "11822": [ + { + "name": "ArtelaScan", + "url": "https://betanet-scan.artela.network", + "standard": "EIP3091" + } + ], + "11891": [ + { + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } + ], + "12009": [ + { + "name": "SatoshiChain Explorer", + "url": "https://satoshiscan.io", + "standard": "EIP3091" + } + ], + "12020": [ + { + "name": "blockscout", + "url": "https://explorer.aternoschain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "12051": [ + { + "name": "zeroscan", + "url": "https://betaenv.singularity.gold:18002", + "standard": "EIP3091" + } + ], + "12052": [ + { + "name": "zeroscan", + "url": "https://zeroscan.singularity.gold", + "standard": "EIP3091" + } + ], + "12123": [ + { + "name": "BRC Chain Explorer", + "url": "https://scan.brcchain.io", + "standard": "EIP3091" + } + ], + "12306": [ + { + "name": "fiboscan", + "url": "https://scan.fibochain.org", + "standard": "EIP3091" + } + ], + "12324": [ + { + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", + "standard": "EIP3091" + } + ], + "12325": [ + { + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" + } + ], + "12345": [ + { + "name": "StepScan", + "url": "https://testnet.stepscan.io", + "icon": "step", + "standard": "EIP3091" + } + ], + "12553": [ + { + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", + "standard": "EIP3091" + } + ], + "12715": [ + { + "name": "Rikeza Blockchain explorer", + "url": "https://testnet.rikscan.com", + "standard": "EIP3091" + } + ], + "12781": [ + { + "name": "Playdapp Testnet Explorer", + "url": "https://subnets-test.avax.network/playdappte", + "standard": "EIP3091" + } + ], + "12890": [ + { + "name": "Quantum Scan Testnet", + "url": "https://testnet.quantumscan.org", + "standard": "EIP3091" + } + ], + "12898": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/letsplayfair", + "standard": "EIP3091" + } + ], + "13000": [ + { + "name": "SPS Explorer", + "url": "http://spsscan.ssquad.games", + "standard": "EIP3091" + } + ], + "13308": [ + { + "name": "Creditscan", + "url": "https://scan.creditsmartchain.com", + "icon": "credit", + "standard": "EIP3091" + } + ], + "13337": [ + { + "name": "Beam Explorer", + "url": "https://subnets-test.avax.network/beam", + "standard": "EIP3091" + } + ], + "13371": [ + { + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ], + "13381": [ + { + "name": "phoenixplorer", + "url": "https://phoenixplorer.com", + "standard": "EIP3091" + } + ], + "13396": [ + { + "name": "Masa Explorer", + "url": "https://subnets.avax.network/masa", + "standard": "EIP3091" + } + ], + "13473": [ + { + "name": "Immutable Testnet explorer", + "url": "https://explorer.testnet.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ], + "13505": [ + { + "name": "Gravity Alpha Testnet Sepolia Explorer", + "url": "https://explorer-sepolia.gravity.xyz", + "standard": "EIP3091" + } + ], + "13600": [ + { + "name": "qbitscan", + "url": "https://explorer.qbitscan.com", + "icon": "kronobit", + "standard": "EIP3091" + } + ], + "13812": [ + { + "name": "Susono", + "url": "http://explorer.opn.network", + "standard": "none" + } + ], + "14000": [ + { + "name": "SPS Test Explorer", + "url": "https://explorer.3sps.net", + "standard": "EIP3091" + } + ], + "14324": [ + { + "name": "Evolve Testnet Explorer", + "url": "https://testnet.evolveblockchain.io", + "standard": "EIP3091" + } + ], + "14333": [ + { + "name": "Vitruveo Testnet Explorer", + "url": "https://test-explorer.vitruveo.xyz", + "icon": "vitruveo", + "standard": "EIP3091" + } + ], + "14801": [ + { + "name": "satoriscan", + "url": "https://satori.vanascan.io", + "standard": "EIP3091" + } + ], + "15003": [ + { + "name": "Immutable Devnet explorer", + "url": "https://explorer.dev.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ], + "15257": [ + { + "name": "Poodl Testnet Explorer", + "url": "https://testnet.poodl.org", + "standard": "EIP3091" + } + ], + "15259": [ + { + "name": "Poodl Mainnet Explorer", + "url": "https://explorer.poodl.org", + "standard": "EIP3091" + } + ], + "15551": [ + { + "name": "loopscan", + "url": "http://explorer.mainnetloop.com", + "standard": "none" + } + ], + "15555": [ + { + "name": "Trust EVM Explorer", + "url": "https://trustscan.one", + "standard": "EIP3091" + } + ], + "15557": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.testnet.evm.eosnetwork.com", + "standard": "EIP3091" + } + ], + "16116": [ + { + "name": "DeFiVerse Explorer", + "url": "https://scan.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } + ], + "16507": [ + { + "name": "GchainExplorer", + "url": "https://gchainexplorer.genesys.network", + "standard": "EIP3091" + } + ], + "16688": [ + { + "name": "IRISHub Testnet Cosmos Explorer (IOBScan)", + "url": "https://nyancat.iobscan.io", + "standard": "none", + "icon": "nyancat" + } + ], + "16718": [ + { + "name": "AirDAO Network Explorer", + "url": "https://airdao.io/explorer", + "standard": "none" + } + ], + "16888": [ + { + "name": "ivarscan", + "url": "https://testnet.ivarscan.com", + "standard": "EIP3091" + } + ], + "17000": [ + { + "name": "Holesky Explorer", + "url": "https://holesky.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "Holesky Etherscan", + "url": "https://holesky.etherscan.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ], + "17069": [ + { + "name": "blockscout", + "url": "https://explorer.garnetchain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "17117": [ + { + "name": "DeFiVerse Testnet Explorer", + "url": "https://scan-testnet.defi-verse.org", + "icon": "defiverse", + "standard": "EIP3091" + } + ], + "17171": [ + { + "name": "G8Chain", + "url": "https://mainnet.oneg8.network", + "standard": "EIP3091" + } + ], + "17172": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", + "standard": "EIP3091" + } + ], + "17180": [ + { + "name": "Palettescan", + "url": "https://testnet.palettescan.com", + "icon": "PLT", + "standard": "none" + } + ], + "17217": [ + { + "name": "konet-explorer", + "url": "https://explorer.kon-wallet.com", + "standard": "EIP3091" + } + ], + "17777": [ + { + "name": "EOS EVM Explorer", + "url": "https://explorer.evm.eosnetwork.com", + "standard": "EIP3091" + } + ], + "18000": [ + { + "name": "Game Network", + "url": "https://explorer.fod.games", + "standard": "EIP3091" + } + ], + "18122": [ + { + "name": "stnscan", + "url": "https://stnscan.com", + "icon": "stn", + "standard": "none" + } + ], + "18159": [ + { + "name": "explorer-proofofmemes", + "url": "https://memescan.io", + "standard": "EIP3091" + } + ], + "18181": [ + { + "name": "G8Chain", + "url": "https://testnet.oneg8.network", + "standard": "EIP3091" + } + ], + "18233": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "18686": [ + { + "name": "MXC zkEVM Moonchain", + "url": "https://explorer.moonchain.com", + "standard": "EIP3091" + } + ], + "18888": [ + { + "name": "Titan Explorer", + "url": "https://tkxscan.io/Titan", + "standard": "none", + "icon": "titan_tkx" + } + ], + "18889": [ + { + "name": "Titan Explorer", + "url": "https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet", + "standard": "none", + "icon": "titan_tkx" + } + ], + "19011": [ + { + "name": "HOME Verse Explorer", + "url": "https://explorer.oasys.homeverse.games", + "standard": "EIP3091" + } + ], + "19224": [ + { + "name": "Decentraconnect Social", + "url": "https://decentraconnect.io", + "standard": "EIP3091" + } + ], + "19600": [ + { + "name": "LBRY Block Explorer", + "url": "https://explorer.lbry.com", + "icon": "lbry", + "standard": "none" + } + ], + "19845": [ + { + "name": "BTCIXScan", + "url": "https://btcixscan.com", + "standard": "none" + } + ], + "20001": [ + { + "name": "CamelarkScan", + "url": "https://scan.camelark.com", + "standard": "EIP3091" + } + ], + "20041": [ + { + "name": "NizaScan", + "url": "https://nizascan.io", + "standard": "EIP3091" + } + ], + "20073": [ + { + "name": "NizaScan", + "url": "https://testnet.nizascan.io", + "standard": "EIP3091" + } + ], + "20736": [ + { + "name": "P12 Chain Explorer", + "url": "https://explorer.p12.games", + "standard": "EIP3091" + } + ], + "20765": [ + { + "name": "JONO11 Explorer", + "url": "https://subnets-test.avax.network/jono11", + "standard": "EIP3091" + } + ], + "21004": [ + { + "name": "C4EI sirato", + "url": "https://exp.c4ei.net", + "icon": "c4ei", + "standard": "none" + } + ], + "21133": [ + { + "name": "AAH Blockscout", + "url": "https://exp.c4ex.net", + "icon": "aah", + "standard": "EIP3091" + } + ], + "21223": [ + { + "name": "DCpay Mainnet Explorer", + "url": "https://mainnet.dcpay.io", + "standard": "EIP3091" + } + ], + "21224": [ + { + "name": "DCpay Testnet Explorer", + "url": "https://testnet.dcpay.io", + "standard": "EIP3091" + } + ], + "21337": [ + { + "name": "UNcover", + "url": "https://uncoverexplorer.com", + "standard": "none" + } + ], + "21816": [ + { + "name": "omChain Explorer", + "url": "https://explorer.omchain.io", + "standard": "EIP3091" + } + ], + "21912": [ + { + "name": "BSL Mainnet Explorer", + "url": "https://scan.nftruth.io", + "standard": "EIP3091" + } + ], + "22023": [ + { + "name": "Taycan Explorer(Blockscout)", + "url": "https://taycan-evmscan.hupayx.io", + "standard": "none", + "icon": "shuffle" + }, + { + "name": "Taycan Cosmos Explorer(BigDipper)", + "url": "https://taycan-cosmoscan.hupayx.io", + "standard": "none", + "icon": "shuffle" + } + ], + "22040": [ + { + "name": "AirDAO Network Explorer", + "url": "https://testnet.airdao.io/explorer", + "standard": "none" + } + ], + "22222": [ + { + "name": "Nautscan", + "url": "https://nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } + ], + "22324": [ + { + "name": "GoldXChain Testnet Explorer", + "url": "https://testnet-explorer.goldxchain.io", + "standard": "EIP3091" + } + ], + "22776": [ + { + "name": "maposcan", + "url": "https://maposcan.io", + "standard": "EIP3091" + } + ], + "23006": [ + { + "name": "Antofy Testnet", + "url": "https://test.antofyscan.com", + "standard": "EIP3091" + } + ], + "23118": [ + { + "name": "opsideInfo", + "url": "https://opside.info", + "standard": "EIP3091" + } + ], + "23294": [ + { + "name": "Oasis Sapphire Explorer", + "url": "https://explorer.oasis.io/mainnet/sapphire", + "standard": "EIP3091" + } + ], + "23295": [ + { + "name": "Oasis Sapphire Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/sapphire", + "standard": "EIP3091" + } + ], + "23451": [ + { + "name": "drxscan", + "url": "https://scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } + ], + "23452": [ + { + "name": "drxscan", + "url": "https://testnet-scan.dreyerx.com", + "icon": "dreyerx", + "standard": "EIP3091" + } + ], + "23888": [ + { + "name": "Blast Testnet", + "url": "http://testnet-explorer.blastblockchain.com", + "standard": "EIP3091" + } + ], + "25186": [ + { + "name": "LiquidLayer Mainnet Explorer", + "url": "https://scan.liquidlayer.network", + "standard": "EIP3091" + } + ], + "25839": [ + { + "name": "AlveyScan Testnet", + "url": "https://alveytestnet.com", + "icon": "alveychain", + "standard": "EIP3091" + } + ], + "25888": [ + { + "name": "Hammer Chain Explorer", + "url": "https://www.hammerchain.io", + "standard": "none" + } + ], + "25925": [ + { + "name": "bkcscan-testnet", + "url": "https://testnet.bkcscan.com", + "standard": "none", + "icon": "bkc" + } + ], + "26026": [ + { + "name": "polkadotjs", + "url": "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer", + "standard": "none" + } + ], + "26600": [ + { + "name": "Hertz Scan", + "url": "https://hertzscan.com", + "icon": "hertz-network", + "standard": "EIP3091" + } + ], + "26863": [ + { + "name": "OasisChain Explorer", + "url": "https://scan.oasischain.io", + "standard": "EIP3091" + } + ], + "27181": [ + { + "name": "blockscout", + "url": "https://blockscout.klaosnova.laosfoundation.io", + "icon": "k-laos", + "standard": "EIP3091" + } + ], + "27483": [ + { + "name": "Nanon Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.nanon.network", + "standard": "EIP3091" + } + ], + "27827": [ + { + "name": "ZEROONEMAI Explorer", + "url": "https://subnets.avax.network/zeroonemai", + "standard": "EIP3091" + } + ], + "28516": [ + { + "name": "blockscout", + "url": "https://explorer-sepolia.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } + ], + "28518": [ + { + "name": "blockscout", + "url": "https://explorer.vizing.com", + "icon": "vizing", + "standard": "EIP3091" + } + ], + "28528": [ + { + "name": "blockscout", + "url": "https://blockscout.com/optimism/bedrock-alpha", + "standard": "EIP3091" + } + ], + "28882": [ + { + "name": "Bobascan", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "29112": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hychain.com", + "icon": "hychain", + "standard": "EIP3091" + } + ], + "29536": [ + { + "name": "KaiChain Explorer", + "url": "https://testnet-explorer.kaichain.net", + "standard": "EIP3091" + } + ], + "29548": [ + { + "name": "MCH Verse Explorer", + "url": "https://explorer.oasys.mycryptoheroes.net", + "standard": "EIP3091" + } + ], + "30067": [ + { + "name": "Piece Scan", + "url": "https://testnet-scan.piecenetwork.com", + "standard": "EIP3091" + } + ], + "30088": [ + { + "name": "MiYou block explorer", + "url": "https://myscan.miyou.io", + "standard": "EIP3091" + } + ], + "30103": [ + { + "name": "canxium explorer", + "url": "https://cerium-explorer.canxium.net", + "standard": "none" + } + ], + "30730": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "30731": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "30732": [ + { + "name": "mevm explorer", + "url": "https://explorer.movementlabs.xyz", + "standard": "none" + } + ], + "31223": [ + { + "name": "cloudtxscan", + "url": "https://scan.cloudtx.finance", + "standard": "EIP3091" + } + ], + "31224": [ + { + "name": "cloudtxexplorer", + "url": "https://explorer.cloudtx.finance", + "standard": "EIP3091" + } + ], + "31337": [ + { + "name": "GoChain Testnet Explorer", + "url": "https://testnet-explorer.gochain.io", + "standard": "EIP3091" + } + ], + "31414": [ + { + "name": "Evoke SmartChain Testnet Explorer", + "url": "https://testnet-explorer.evokescan.org", + "standard": "EIP3091" + } + ], + "31753": [ + { + "name": "Xchain Mainnet Explorer", + "url": "https://xchainscan.com", + "standard": "EIP3091" + } + ], + "31754": [ + { + "name": "Xchain Testnet Explorer", + "url": "https://xchaintest.net", + "standard": "EIP3091" + } + ], + "32001": [ + { + "name": "W3Gamez Holesky Explorer", + "url": "https://w3gamez-holesky.web3games.com", + "icon": "web3games", + "standard": "EIP3091" + } + ], + "32382": [ + { + "name": "Santiment Intelligence Explorer", + "url": "https://app-explorer-pos.sanr.app", + "standard": "none" + } + ], + "32520": [ + { + "name": "Brise Scan", + "url": "https://brisescan.com", + "icon": "brise", + "standard": "EIP3091" + } + ], + "32659": [ + { + "name": "fsnscan", + "url": "https://fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } + ], + "32769": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ], + "32990": [ + { + "name": "Zilliqa EVM Isolated Server Explorer", + "url": "https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com", + "standard": "none" + } + ], + "33033": [ + { + "name": "Entangle Mainnet Explorer", + "url": "https://explorer.entangle.fi", + "standard": "none" + } + ], + "33101": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ], + "33210": [ + { + "name": "CLOUDVERSE Explorer", + "url": "https://subnets.avax.network/cloudverse", + "standard": "EIP3091" + } + ], + "33333": [ + { + "name": "avescan", + "url": "https://avescan.io", + "icon": "avescan", + "standard": "EIP3091" + } + ], + "33385": [ + { + "name": "Zilliqa EVM Devnet Explorer", + "url": "https://otterscan.devnet.zilliqa.com", + "standard": "EIP3091" + } + ], + "33469": [ + { + "name": "Zilliqa-2 EVM Devnet Explorer", + "url": "https://explorer.zq2-devnet.zilliqa.com", + "standard": "EIP3091" + } + ], + "33979": [ + { + "name": "Funki Mainnet Explorer", + "url": "https://mainnet.funkichain.com", + "standard": "none" + } + ], + "34443": [ + { + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" + } + ], + "35011": [ + { + "name": "J2O Taro Explorer", + "url": "https://exp.j2o.io", + "icon": "j2otaro", + "standard": "EIP3091" + } + ], + "35441": [ + { + "name": "Q explorer", + "url": "https://explorer.q.org", + "icon": "q", + "standard": "EIP3091" + } + ], + "35443": [ + { + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", + "standard": "EIP3091" + } + ], + "38400": [ + { + "name": "rangersscan", + "url": "https://scan.rangersprotocol.com", + "standard": "none" + } + ], + "38401": [ + { + "name": "rangersscan-robin", + "url": "https://robin-rangersscan.rangersprotocol.com", + "standard": "none" + } + ], + "39656": [ + { + "name": "Primal Network", + "url": "https://prmscan.org", + "standard": "EIP3091" + } + ], + "39815": [ + { + "name": "ohoscan", + "url": "https://ohoscan.com", + "icon": "ohoscan", + "standard": "EIP3091" + } + ], + "41500": [ + { + "name": "Opulent-X BETA Explorer", + "url": "https://explorer.opulent-x.com", + "standard": "none" + } + ], + "42072": [ + { + "name": "AgentLayer Testnet Explorer", + "url": "https://testnet-explorer.agentlayer.xyz", + "standard": "EIP3091" + } + ], + "42161": [ + { + "name": "Arbiscan", + "url": "https://arbiscan.io", + "standard": "EIP3091" + }, + { + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://arbitrum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "42170": [ + { + "name": "Arbitrum Nova Chain Explorer", + "url": "https://nova-explorer.arbitrum.io", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://nova.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "42220": [ + { + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" + } + ], + "42261": [ + { + "name": "Oasis Emerald Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/emerald", + "standard": "EIP3091" + } + ], + "42262": [ + { + "name": "Oasis Emerald Explorer", + "url": "https://explorer.oasis.io/mainnet/emerald", + "standard": "EIP3091" + } + ], + "42355": [ + { + "name": "GoldXChain Explorer", + "url": "https://explorer.goldxchain.io", + "standard": "EIP3091" + } + ], + "42766": [ + { + "name": "blockscout", + "url": "https://scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } + ], + "42793": [ + { + "name": "Etherlink Explorer", + "url": "https://explorer.etherlink.com", + "standard": "EIP3091" + } + ], + "42801": [ + { + "name": "Gesoten Verse Testnet Explorer", + "url": "https://explorer.testnet.verse.gesoten.com", + "standard": "EIP3091" + } + ], + "42888": [ + { + "name": "kintoscan", + "url": "http://35.215.120.180:4000", + "standard": "EIP3091" + } + ], + "43113": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } + ], + "43114": [ + { + "name": "snowtrace", + "url": "https://snowtrace.io", + "standard": "EIP3091" + } + ], + "43851": [ + { + "name": "ZKFair Testnet Info", + "url": "https://testnet-scan.zkfair.io", + "icon": "zkfair", + "standard": "EIP3091" + } + ], + "44444": [ + { + "name": "blockscout", + "url": "https://frenscan.io", + "icon": "fren", + "standard": "EIP3091" + } + ], + "44445": [ + { + "name": "Quantum Explorer", + "url": "https://qtm.avescoin.io", + "icon": "quantum", + "standard": "EIP3091" + } + ], + "44787": [ + { + "name": "Alfajoresscan", + "url": "https://alfajores.celoscan.io", + "standard": "EIP3091" + } + ], + "45000": [ + { + "name": "autobahn explorer", + "url": "https://explorer.autobahn.network", + "icon": "autobahn", + "standard": "EIP3091" + } + ], + "45454": [ + { + "name": "blockscout", + "url": "https://swamps-explorer.tc.l2aas.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "45510": [ + { + "name": "Deelance Mainnet Explorer", + "url": "https://deescan.com", + "standard": "EIP3091" + } + ], + "46688": [ + { + "name": "fsnscan", + "url": "https://testnet.fsnscan.com", + "icon": "fsnscan", + "standard": "EIP3091" + } + ], + "47805": [ + { + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } + ], + "48795": [ + { + "name": "SPACE Explorer", + "url": "https://subnets-test.avax.network/space", + "standard": "EIP3091" + } + ], + "48899": [ + { + "name": "Zircuit", + "url": "https://explorer.zircuit.com", + "icon": "zircuit", + "standard": "none" + } + ], + "49049": [ + { + "name": "Wire Explorer", + "url": "https://floripa-explorer.wireshape.org", + "standard": "EIP3091" + } + ], + "49088": [ + { + "name": "explorer-thebifrost", + "url": "https://explorer.testnet.bifrostnetwork.com", + "standard": "EIP3091" + } + ], + "49321": [ + { + "name": "blockscout", + "url": "https://testnet.gunzscan.io", + "standard": "EIP3091" + } + ], + "50005": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "50006": [ + { + "name": "Yooldo Verse Explorer", + "url": "https://explorer.testnet.yooldo-verse.xyz", + "standard": "EIP3091" + } + ], + "50021": [ + { + "name": "GTON Testnet Network Explorer", + "url": "https://explorer.testnet.gton.network", + "standard": "EIP3091" + } + ], + "51178": [ + { + "name": "LumozTestnetInfo", + "url": "https://lumoz.info", + "icon": "opside-new", + "standard": "EIP3091" + } + ], + "51712": [ + { + "name": "Sardis", + "url": "https://contract-mainnet.sardisnetwork.com", + "standard": "EIP3091" + } + ], + "52014": [ + { + "name": "blockscout", + "url": "https://blockexplorer.electroneum.com", + "icon": "electroneum", + "standard": "EIP3091" + } + ], + "53277": [ + { + "name": "DOID Scan", + "url": "https://scan.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } + ], + "53302": [ + { + "name": "seedscout", + "url": "https://sepolia-explorer.superseed.xyz", + "standard": "EIP3091" + } + ], + "53457": [ + { + "name": "DODOchain Testnet (Sepolia) Explorer", + "url": "https://testnet-scan.dodochain.com", + "icon": "dodochain_testnet", + "standard": "EIP3091" + } + ], + "53935": [ + { + "name": "ethernal", + "url": "https://explorer.dfkchain.com", + "icon": "ethereum", + "standard": "none" + } + ], + "54211": [ + { + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } + ], + "54321": [ + { + "name": "toronet_explorer", + "url": "https://testnet.toronet.org", + "standard": "none" + } + ], + "54555": [ + { + "name": "photon_testnet_explorer", + "url": "https://testnet.photonchain.io", + "standard": "none" + } + ], + "55004": [ + { + "name": "blockscout", + "url": "https://explorer.titan.tokamak.network", + "standard": "EIP3091" + } + ], + "55555": [ + { + "name": "reiscan", + "url": "https://reiscan.com", + "standard": "EIP3091" + } + ], + "55556": [ + { + "name": "reiscan", + "url": "https://testnet.reiscan.com", + "standard": "EIP3091" + } + ], + "56026": [ + { + "name": "Lambda Chain Mainnet Explorer", + "url": "https://scan.lambda.im", + "standard": "EIP3091" + } + ], + "56288": [ + { + "name": "Boba BNB block explorer", + "url": "https://bobascan.com", + "standard": "none" + } + ], + "56400": [ + { + "name": "TESTNETZER Explorer", + "url": "https://subnets-test.avax.network/testnetzer", + "standard": "EIP3091" + } + ], + "56789": [ + { + "name": "novascan", + "url": "https://novascan.velo.org", + "standard": "EIP3091" + } + ], + "56797": [ + { + "name": "DOID Testnet Scan", + "url": "https://scan.testnet.doid.tech", + "icon": "doid", + "standard": "EIP3091" + } + ], + "57000": [ + { + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } + ], + "57451": [ + { + "name": "coinsecnetwork", + "url": "https://explorer.coinsec.network", + "standard": "EIP3091" + } + ], + "58008": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "59140": [ + { + "name": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.goerli.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "59141": [ + { + "name": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.sepolia.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "59144": [ + { + "name": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.linea.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } + ], + "59971": [ + { + "name": "Genesys Scan", + "url": "https://genesysscan.io", + "icon": "genesyscode", + "standard": "none" + } + ], + "60000": [ + { + "name": "thinkiumscan", + "url": "https://test0.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "60001": [ + { + "name": "thinkiumscan", + "url": "https://test1.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "60002": [ + { + "name": "thinkiumscan", + "url": "https://test2.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "60103": [ + { + "name": "thinkiumscan", + "url": "https://test103.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "60808": [ + { + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "61406": [ + { + "name": "KaiChain Explorer", + "url": "https://explorer.kaichain.net", + "standard": "EIP3091" + } + ], + "61800": [ + { + "name": "AxelChain Dev-Net Explorer", + "url": "https://devexplorer2.viacube.com", + "standard": "EIP3091" + } + ], + "61803": [ + { + "name": "eticascan", + "url": "https://eticascan.org", + "standard": "EIP3091" + }, + { + "name": "eticastats", + "url": "http://explorer.etica-stats.org", + "standard": "EIP3091" + } + ], + "61916": [ + { + "name": "DSC Scan", + "url": "https://explore.doken.dev", + "icon": "doken", + "standard": "EIP3091" + } + ], + "62049": [ + { + "name": "optopia-testnet-scan", + "url": "https://scan-testnet.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } + ], + "62050": [ + { + "name": "optopia-scan", + "url": "https://scan.optopia.ai", + "icon": "optopia", + "standard": "EIP3091" + } + ], + "62298": [ + { + "name": "Citrea Devnet Explorer", + "url": "https://explorer.devnet.citrea.xyz", + "icon": "citrea", + "standard": "EIP3091" + } + ], + "62621": [ + { + "name": "MultiVAC Explorer", + "url": "https://e.mtv.ac", + "standard": "none" + } + ], + "62831": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/plyr", + "standard": "EIP3091" + } + ], + "63000": [ + { + "name": "eCredits MainNet Explorer", + "url": "https://explorer.ecredits.com", + "icon": "ecredits", + "standard": "EIP3091" + } + ], + "63001": [ + { + "name": "eCredits TestNet Explorer", + "url": "https://explorer.tst.ecredits.com", + "icon": "ecredits", + "standard": "EIP3091" + } + ], + "65450": [ + { + "name": "Scolscan Explorer", + "url": "https://explorer.scolcoin.com", + "standard": "EIP3091" + } + ], + "66988": [ + { + "name": "JanusNetwork Testnet Explorer", + "url": "https://beta.scan.janusnetwork.io", + "standard": "none" + } + ], + "68770": [ + { + "name": "DM2Verse Explorer", + "url": "https://explorer.dm2verse.dmm.com", + "standard": "EIP3091" + } + ], + "69420": [ + { + "name": "Condrieu explorer", + "url": "https://explorer.condrieu.ethdevops.io", + "standard": "none" + } + ], + "70000": [ + { + "name": "thinkiumscan", + "url": "https://chain0.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "70001": [ + { + "name": "thinkiumscan", + "url": "https://chain1.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "70002": [ + { + "name": "thinkiumscan", + "url": "https://chain2.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "70103": [ + { + "name": "thinkiumscan", + "url": "https://chain103.thinkiumscan.net", + "standard": "EIP3091" + } + ], + "70700": [ + { + "name": "Proof of Play Apex Explorer", + "url": "https://explorer.apex.proofofplay.com", + "icon": "pop-apex", + "standard": "EIP3091" + } + ], + "71111": [ + { + "name": "GuapcoinX Explorer", + "url": "http://explorer.guapcoinx.com", + "standard": "none", + "icon": "guapcoinx" + } + ], + "71401": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.testnet.gwscan.com", + "standard": "none" + } + ], + "71402": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.gwscan.com", + "standard": "none" + } + ], + "72778": [ + { + "name": "ankara", + "url": "https://explorer.ankara-cagacrypto.com", + "standard": "EIP3091" + } + ], + "72992": [ + { + "name": "GrokScan", + "url": "https://mainnet-explorer.grokchain.dev", + "standard": "none" + } + ], + "73114": [ + { + "name": "ICB Tesnet Explorer", + "url": "https://testnet.icbscan.io", + "standard": "EIP3091" + } + ], + "73115": [ + { + "name": "ICB Explorer", + "url": "https://icbscan.io", + "standard": "EIP3091" + } + ], + "73927": [ + { + "name": "mvmscan", + "url": "https://scan.mvm.dev", + "icon": "mvm", + "standard": "EIP3091" + } + ], + "75000": [ + { + "name": "ResinScan", + "url": "https://explorer.resincoin.dev", + "standard": "none" + } + ], + "75512": [ + { + "name": "Geek Explorer", + "url": "https://explorer.geekout-pte.com", + "standard": "EIP3091" + } + ], + "75513": [ + { + "name": "Geek Testnet Explorer", + "url": "https://explorer-testnet.geekout-pte.com", + "standard": "EIP3091" + } + ], + "77001": [ + { + "name": "BORAchainscope", + "url": "https://scope.boraportal.com", + "standard": "EIP3091" + } + ], + "77238": [ + { + "name": "Foundry Scan Testnet", + "url": "https://testnet-explorer.foundryscan.org", + "standard": "EIP3091" + } + ], + "77612": [ + { + "name": "ventionscan", + "url": "https://ventionscan.io", + "standard": "EIP3091" + } + ], + "77777": [ + { + "name": "toronet_explorer", + "url": "https://toronet.org/explorer", + "standard": "none" + } + ], + "78281": [ + { + "name": "Dragonfly Blockscout", + "url": "https://blockscout.dragonfly.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "78430": [ + { + "name": "AMPLIFY Explorer", + "url": "https://subnets-test.avax.network/amplify", + "standard": "EIP3091" + } + ], + "78431": [ + { + "name": "BULLETIN Explorer", + "url": "https://subnets-test.avax.network/bulletin", + "standard": "EIP3091" + } + ], + "78432": [ + { + "name": "CONDUIT Explorer", + "url": "https://subnets-test.avax.network/conduit", + "standard": "EIP3091" + } + ], + "78600": [ + { + "name": "Vanguard Explorer", + "url": "https://explorer-vanguard.vanarchain.com", + "icon": "vanguard", + "standard": "EIP3091" + } + ], + "79879": [ + { + "name": "Gold Smart Chain", + "url": "https://testnet.goldsmartchain.com", + "standard": "EIP3091" + } + ], + "80001": [ + { + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } + ], + "80002": [ + { + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } + ], + "80084": [ + { + "name": "Beratrail", + "url": "https://bartio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ], + "80085": [ + { + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ], + "80096": [ + { + "name": "blockscout", + "url": "https://hizoco.net:38443", + "standard": "none" + } + ], + "81041": [ + { + "name": "nordek", + "url": "https://nordekscan.com", + "standard": "EIP3091" + } + ], + "81457": [ + { + "name": "Blastscan", + "url": "https://blastscan.io", + "icon": "blast", + "standard": "EIP3091" + }, + { + "name": "Blast Explorer", + "url": "https://blastexplorer.io", + "icon": "blast", + "standard": "EIP3091" + } + ], + "81720": [ + { + "name": "Quantum Scan Mainnet", + "url": "https://quantumscan.org", + "standard": "EIP3091" + } + ], + "82459": [ + { + "name": "SLN Testnet Explorer", + "url": "https://explorer.test.smartlayer.network", + "standard": "EIP3091" + } + ], + "83872": [ + { + "name": "Zedscan", + "url": "http://zedscan.net", + "standard": "EIP3091" + } + ], + "84531": [ + { + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://base-goerli.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "84532": [ + { + "name": "basescout", + "url": "https://base-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "84886": [ + { + "name": "Aerie Explorer", + "url": "https://explorer.aerielab.io", + "icon": "aerie", + "standard": "EIP3091" + } + ], + "88002": [ + { + "name": "Nautscan", + "url": "https://proteus.nautscan.com", + "standard": "EIP3091", + "icon": "nautilus" + } + ], + "88559": [ + { + "name": "inoai live", + "url": "https://inoai.live", + "standard": "none" + } + ], + "88817": [ + { + "name": "explorer-testnet", + "url": "https://explorer-testnet.unit0.dev", + "standard": "EIP3091" + } + ], + "88819": [ + { + "name": "explorer-stagenet", + "url": "https://explorer-stagenet.unit0.dev", + "standard": "EIP3091" + } + ], + "88882": [ + { + "name": "spicy-explorer", + "url": "https://testnet.chiliscan.com", + "standard": "EIP3091" + } + ], + "88888": [ + { + "name": "chiliscan", + "url": "https://chiliscan.com", + "standard": "EIP3091" + }, + { + "name": "chilizscan", + "url": "https://scan.chiliz.com", + "standard": "EIP3091" + } + ], + "90210": [ + { + "name": "Beverly Hills explorer", + "url": "https://explorer.beverlyhills.ethdevops.io", + "standard": "none" + } + ], + "90354": [ + { + "name": "blockscout", + "url": "https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "91002": [ + { + "name": "Nautscan", + "url": "https://triton.nautscan.com", + "standard": "EIP3091" + } + ], + "91120": [ + { + "name": "MetaDAP Enterprise Mainnet explorer", + "url": "https://explorer.chain.metadap.io", + "standard": "none" + } + ], + "91715": [ + { + "name": "combotrace explorer", + "url": "https://combotrace-testnet.nodereal.io", + "standard": "EIP3091" + } + ], + "92001": [ + { + "name": "Lambda EVM Explorer", + "url": "https://explorer.lambda.top", + "standard": "EIP3091", + "icon": "lambda" + } + ], + "93572": [ + { + "name": "LiquidLayer Testnet Explorer", + "url": "https://testnet-scan.liquidlayer.network", + "standard": "EIP3091" + } + ], + "96970": [ + { + "name": "Mantis Blockscout", + "url": "https://blockscout.mantis.hexapod.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "97531": [ + { + "name": "Green Chain Explorer", + "url": "https://explorer.greenchain.app", + "standard": "EIP3091" + } + ], + "97970": [ + { + "name": "OptimusZ7 Testnet Explorer", + "url": "https://testnet.optimusz7.com", + "standard": "EIP3091" + } + ], + "99099": [ + { + "name": "eLiberty Testnet", + "url": "https://testnet.eliberty.ngo", + "standard": "EIP3091" + } + ], + "100001": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/0", + "standard": "EIP3091" + } + ], + "100002": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/1", + "standard": "EIP3091" + } + ], + "100003": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/2", + "standard": "EIP3091" + } + ], + "100004": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/3", + "standard": "EIP3091" + } + ], + "100005": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/4", + "standard": "EIP3091" + } + ], + "100006": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/5", + "standard": "EIP3091" + } + ], + "100007": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/6", + "standard": "EIP3091" + } + ], + "100008": [ + { + "name": "quarkchain-mainnet", + "url": "https://mainnet.quarkchain.io/7", + "standard": "EIP3091" + } + ], + "100009": [ + { + "name": "VeChain Stats", + "url": "https://vechainstats.com", + "standard": "none" + }, + { + "name": "VeChain Explorer", + "url": "https://explore.vechain.org", + "standard": "none" + } + ], + "100010": [ + { + "name": "VeChain Explorer", + "url": "https://explore-testnet.vechain.org", + "standard": "none" + } + ], + "101010": [ + { + "name": "blockscout", + "url": "https://stability.blockscout.com", + "standard": "EIP3091" + } + ], + "102031": [ + { + "name": "blockscout", + "url": "https://creditcoin-testnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "103090": [ + { + "name": "blockscout", + "url": "https://scan.crystaleum.org", + "icon": "crystal", + "standard": "EIP3091" + } + ], + "103454": [ + { + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } + ], + "104566": [ + { + "name": "KaspaClassic Explorer", + "url": "https://explorer.kaspaclassic.world", + "standard": "none" + } + ], + "105105": [ + { + "name": "Stratis Explorer", + "url": "https://explorer.stratisevm.com", + "standard": "EIP3091" + } + ], + "108801": [ + { + "name": "BROChain Explorer", + "url": "https://explorer.brochain.org", + "standard": "EIP3091" + } + ], + "110001": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/0", + "standard": "EIP3091" + } + ], + "110002": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/1", + "standard": "EIP3091" + } + ], + "110003": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/2", + "standard": "EIP3091" + } + ], + "110004": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/3", + "standard": "EIP3091" + } + ], + "110005": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/4", + "standard": "EIP3091" + } + ], + "110006": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/5", + "standard": "EIP3091" + } + ], + "110007": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/6", + "standard": "EIP3091" + } + ], + "110008": [ + { + "name": "quarkchain-devnet", + "url": "https://devnet.quarkchain.io/7", + "standard": "EIP3091" + } + ], + "111000": [ + { + "name": "Siberium Testnet Explorer - blockscout", + "url": "https://explorer.test.siberium.net", + "icon": "siberium", + "standard": "EIP3091" + } + ], + "111111": [ + { + "name": "Siberium Mainnet Explorer - blockscout - 1", + "url": "https://explorer.main.siberium.net", + "icon": "siberium", + "standard": "EIP3091" + }, + { + "name": "Siberium Mainnet Explorer - blockscout - 2", + "url": "https://explorer.main.siberium.net.ru", + "icon": "siberium", + "standard": "EIP3091" + } + ], + "111188": [ + { + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } + ], + "112358": [ + { + "name": "blockscout", + "url": "https://explorer.metachain.one", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "119139": [ + { + "name": "MetaDAP Enterprise Testnet explorer", + "url": "https://explorer.testnet.chain.metadap.io", + "standard": "none" + } + ], + "123456": [ + { + "name": "ADIL Devnet Explorer", + "url": "https://devnet.adilchain-scan.io", + "standard": "EIP3091" + } + ], + "128123": [ + { + "name": "Etherlink Testnet Explorer", + "url": "https://testnet-explorer.etherlink.com", + "standard": "EIP3091" + } + ], + "131419": [ + { + "name": "etndscan", + "url": "https://scan.etnd.pro", + "icon": "ETND", + "standard": "none" + } + ], + "132902": [ + { + "name": "Form Testnet explorer", + "url": "https://testnet-explorer.form.network", + "standard": "EIP3091" + } + ], + "141319": [ + { + "name": "etherscan", + "url": "http://testnet-api.magape.io:81", + "icon": "magape", + "standard": "EIP3091" + } + ], + "142857": [ + { + "name": "ICPlaza", + "url": "https://browsemainnet.ic-plaza.org/index", + "standard": "none" + } + ], + "165279": [ + { + "name": "Eclat Mainnet Explorer", + "url": "https://eclatscan.com", + "standard": "EIP3091" + } + ], + "167000": [ + { + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + } + ], + "167008": [ + { + "name": "blockscout", + "url": "https://explorer.katla.taiko.xyz", + "standard": "EIP3091" + } + ], + "167009": [ + { + "name": "blockscout", + "url": "https://blockscoutapi.hekla.taiko.xyz", + "standard": "EIP3091" + }, + { + "name": "routescan", + "url": "https://hekla.taikoscan.network", + "standard": "EIP3091" + } + ], + "188710": [ + { + "name": "Bitica DPOS Blockchain Explorer", + "url": "https://biticablockchain.com", + "standard": "none" + } + ], + "188881": [ + { + "name": "CondorScan", + "url": "https://explorer.condor.systems", + "standard": "none" + } + ], + "200101": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ], + "200202": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ], + "200810": [ + { + "name": "bitlayer testnet scan", + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" + } + ], + "200901": [ + { + "name": "bitlayer mainnet scan", + "url": "https://www.btrscan.com", + "standard": "EIP3091" + } + ], + "201018": [ + { + "name": "alaya explorer", + "url": "https://scan.alaya.network", + "standard": "none" + } + ], + "201030": [ + { + "name": "alaya explorer", + "url": "https://devnetscan.alaya.network", + "standard": "none" + } + ], + "201804": [ + { + "name": "Mythical Chain Explorer", + "url": "https://explorer.mythicalgames.com", + "icon": "mythical", + "standard": "EIP3091" + } + ], + "202020": [ + { + "name": "DSC Explorer Testnet", + "url": "https://testnet.explorer.decimalchain.com", + "icon": "dsc", + "standard": "EIP3091" + } + ], + "202212": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-devnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "202401": [ + { + "name": "YMTECH-BESU Chainlens", + "url": "http://39.119.118.198", + "standard": "none" + } + ], + "202624": [ + { + "name": "Jellie Blockchain Explorer", + "url": "https://jellie.twala.io", + "standard": "EIP3091", + "icon": "twala" + } + ], + "204005": [ + { + "name": "Blockscout", + "url": "https://explorer.x1-testnet.xen.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "205205": [ + { + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.stratisevm.com", + "standard": "EIP3091" + } + ], + "210425": [ + { + "name": "PlatON explorer", + "url": "https://scan.platon.network", + "standard": "none" + } + ], + "220315": [ + { + "name": "explorer masnet", + "url": "https://explorer.masnet.ai", + "standard": "EIP3091" + } + ], + "221230": [ + { + "name": "Reapchain Dashboard", + "url": "https://dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } + ], + "221231": [ + { + "name": "Reapchain Testnet Dashboard", + "url": "https://test-dashboard.reapchain.org", + "icon": "reapchain", + "standard": "none" + } + ], + "222222": [ + { + "name": "blockscout", + "url": "https://explorer.evm.hydration.cloud", + "standard": "EIP3091" + } + ], + "222555": [ + { + "name": "DeepL Mainnet Explorer", + "url": "https://scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } + ], + "222666": [ + { + "name": "DeepL Testnet Explorer", + "url": "https://testnet-scan.deeplnetwork.org", + "icon": "deepl", + "standard": "EIP3091" + } + ], + "224168": [ + { + "name": "Taf ECO Chain Mainnet", + "url": "https://ecoscan.tafchain.com", + "standard": "EIP3091" + } + ], + "224422": [ + { + "name": "CONET Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } + ], + "224433": [ + { + "name": "CONET Holesky Scan", + "url": "https://scan.conet.network", + "standard": "EIP3091" + } + ], + "230315": [ + { + "name": "HashKey Chain Testnet Explorer", + "url": "https://testnet.hashkeyscan.io", + "standard": "none" + } + ], + "240515": [ + { + "name": "Blockscout", + "url": "https://testnet-scan.orangechain.xyz", + "icon": "orange", + "standard": "EIP3091" + } + ], + "247253": [ + { + "name": "saakuru-explorer-testnet", + "url": "https://explorer-testnet.saakuru.network", + "standard": "EIP3091" + } + ], + "256256": [ + { + "name": "Mainnet Scan", + "url": "https://mainnet.scan.caduceus.foundation", + "standard": "none" + } + ], + "262371": [ + { + "name": "Eclat Testnet Explorer", + "url": "https://testnet-explorer.eclatscan.com", + "standard": "EIP3091" + } + ], + "271271": [ + { + "name": "EgonCoin Testnet", + "url": "https://testnet.egonscan.com", + "standard": "EIP3091" + } + ], + "282828": [ + { + "name": "zillscout", + "url": "https://sepolia.zillnet.io", + "icon": "zillion", + "standard": "EIP3091" + } + ], + "309075": [ + { + "name": "One World Chain Mainnet Explorer", + "url": "https://mainnet.oneworldchain.org", + "standard": "EIP3091" + } + ], + "313313": [ + { + "name": "Testnet Scan", + "url": "https://explorer.saharaa.info", + "standard": "EIP3091" + } + ], + "314159": [ + { + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" + }, + { + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" + }, + { + "name": "Filfox - Calibration", + "url": "https://calibration.filfox.info", + "standard": "none" + }, + { + "name": "Glif Explorer - Calibration", + "url": "https://explorer.glif.io/?network=calibration", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + } + ], + "322202": [ + { + "name": "Parex Mainnet Explorer", + "url": "https://scan.parex.network", + "icon": "parexmain", + "standard": "EIP3091" + } + ], + "323213": [ + { + "name": "Bloom Genesis Testnet", + "url": "https://testnet.bloomgenesis.com", + "standard": "EIP3091" + } + ], + "330844": [ + { + "name": "TTcoin Smart Chain Explorer", + "url": "https://tscscan.com", + "standard": "EIP3091", + "icon": "tscscan" + } + ], + "333313": [ + { + "name": "Bloom Genesis Mainnet", + "url": "https://explorer.bloomgenesis.com", + "standard": "EIP3091" + } + ], + "333331": [ + { + "name": "avescan", + "url": "https://testnet.avescoin.io", + "icon": "avescan", + "standard": "EIP3091" + } + ], + "333333": [ + { + "name": "Nativ3 Test Explorer", + "url": "https://scantest.nativ3.network", + "standard": "EIP3091" + } + ], + "333666": [ + { + "name": "blockscout", + "url": "https://testnet.oonescan.com", + "standard": "none" + } + ], + "333777": [ + { + "name": "blockscout", + "url": "https://dev.oonescan.com", + "standard": "none" + } + ], + "336655": [ + { + "name": "UPchain Testnet Explorer", + "url": "https://explorer-testnet.uniport.network", + "icon": "up", + "standard": "EIP3091" + } + ], + "336666": [ + { + "name": "UPchain Mainnet Explorer", + "url": "https://explorer.uniport.network", + "icon": "up", + "standard": "EIP3091" + } + ], + "355110": [ + { + "name": "Bitfinity Mainnet Block Explorer", + "url": "https://explorer.mainnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + } + ], + "355113": [ + { + "name": "Bitfinity Testnet Block Explorer", + "url": "https://explorer.testnet.bitfinity.network", + "icon": "bitfinity", + "standard": "EIP3091" + }, + { + "name": "Bitfinity Testnet Block Explorer", + "url": "https://bitfinity-test.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "360890": [ + { + "name": "LAVITA Mainnet Explorer", + "url": "https://tsub360890-explorer.thetatoken.org", + "icon": "lavita", + "standard": "EIP3091" + } + ], + "363636": [ + { + "name": "Digit Soul Explorer", + "url": "https://dgs-exp.digitsoul.co.th", + "standard": "EIP3091" + } + ], + "373737": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout-test.hap.land", + "standard": "none", + "icon": "hap" + } + ], + "381931": [ + { + "name": "metalscan", + "url": "https://metalscan.io", + "standard": "EIP3091" + } + ], + "381932": [ + { + "name": "metalscan", + "url": "https://tahoe.metalscan.io", + "standard": "EIP3091" + } + ], + "404040": [ + { + "name": "Tipboxcoin", + "url": "https://tipboxcoin.net", + "standard": "EIP3091" + } + ], + "413413": [ + { + "name": "aiescan-testnet", + "icon": "aie", + "url": "https://testnet.aiescan.io", + "standard": "none" + } + ], + "420420": [ + { + "name": "blockscout", + "url": "https://mainnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } + ], + "420666": [ + { + "name": "blockscout", + "url": "https://testnet-explorer.kekchain.com", + "icon": "kek", + "standard": "EIP3091" + } + ], + "420692": [ + { + "name": "Alterium L2 Testnet Explorer", + "url": "https://l2-testnet.altscan.org", + "standard": "EIP3091" + } + ], + "421611": [ + { + "name": "arbiscan-testnet", + "url": "https://testnet.arbiscan.io", + "standard": "EIP3091" + }, + { + "name": "arbitrum-rinkeby", + "url": "https://rinkeby-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "421613": [ + { + "name": "Arbitrum Goerli Arbiscan", + "url": "https://goerli.arbiscan.io", + "standard": "EIP3091" + } + ], + "421614": [ + { + "name": "Arbitrum Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "424242": [ + { + "name": "blockscout", + "url": "https://testnet.ftnscan.com", + "standard": "none" + } + ], + "432201": [ + { + "name": "Avalanche Subnet Testnet Explorer", + "url": "https://subnets-test.avax.network/dexalot", + "standard": "EIP3091" + } + ], + "432204": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets.avax.network/dexalot", + "standard": "EIP3091" + } + ], + "444444": [ + { + "name": "Syndr L3 Sepolia Testnet Explorer", + "url": "https://sepolia-explorer.syndr.com", + "standard": "EIP3091" + } + ], + "444900": [ + { + "name": "weelink-testnet", + "url": "https://weelink.cloud/#/blockView/overview", + "standard": "none" + } + ], + "473861": [ + { + "name": "ultraproscan", + "url": "https://ultraproscan.io", + "icon": "ultrapro", + "standard": "EIP3091" + } + ], + "474142": [ + { + "name": "SIDE SCAN", + "url": "https://sidescan.luniverse.io/1641349324562974539", + "standard": "none" + } + ], + "504441": [ + { + "name": "Playdapp Explorer", + "url": "https://subnets.avax.network/playdappne", + "standard": "EIP3091" + } + ], + "512512": [ + { + "name": "Galaxy Scan", + "url": "https://galaxy.scan.caduceus.foundation", + "standard": "none" + } + ], + "513100": [ + { + "name": "DisChain", + "url": "https://www.oklink.com/dis", + "standard": "EIP3091" + } + ], + "526916": [ + { + "name": "DoCoin Community Chain Explorer", + "url": "https://explorer.docoin.shop", + "standard": "EIP3091" + } + ], + "534351": [ + { + "name": "Scroll Sepolia Etherscan", + "url": "https://sepolia.scrollscan.com", + "standard": "EIP3091" + } + ], + "534352": [ + { + "name": "Scrollscan", + "url": "https://scrollscan.com", + "standard": "EIP3091" + } + ], + "534849": [ + { + "name": "shinascan", + "url": "https://shinascan.shinarium.org", + "standard": "EIP3091" + } + ], + "535037": [ + { + "name": "bescscan", + "url": "https://Bescscan.io", + "standard": "EIP3091" + } + ], + "552981": [ + { + "name": "One World Chain Testnet Explorer", + "url": "https://testnet.oneworldchain.org", + "standard": "EIP3091" + } + ], + "555555": [ + { + "name": "Pentagon Testnet Explorer", + "url": "https://explorer-testnet.pentagon.games", + "icon": "pentagon", + "standard": "EIP3091" + } + ], + "555666": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "standard": "EIP3091" + } + ], + "622277": [ + { + "name": "hypra", + "url": "https://explorer.hypra.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "622463": [ + { + "name": "Atlas Testnet Scan", + "url": "https://explorer.testnet.atl.network", + "icon": "atlas", + "standard": "EIP3091" + } + ], + "641230": [ + { + "name": "brnkscan", + "url": "https://brnkscan.bearnetwork.net", + "standard": "EIP3091" + } + ], + "651940": [ + { + "name": "Alltra SmartChain Explorer", + "url": "https://alltra.global", + "standard": "EIP3091" + } + ], + "656476": [ + { + "name": "Open Campus Codex", + "url": "https://opencampus-codex.blockscout.com", + "icon": "open-campus-codex", + "standard": "none" + } + ], + "660279": [ + { + "name": "Blockscout", + "url": "https://explorer.xai-chain.net", + "standard": "EIP3091" + } + ], + "666888": [ + { + "name": "Hela Official Runtime Testnet Explorer", + "url": "https://testnet-blockexplorer.helachain.com", + "standard": "EIP3091" + } + ], + "686868": [ + { + "name": "Won Explorer", + "url": "https://scan.wonnetwork.org", + "standard": "EIP3091" + } + ], + "696969": [ + { + "name": "Galadriel Explorer", + "url": "https://explorer.galadriel.com", + "standard": "none" + } + ], + "710420": [ + { + "name": "TILTYARD Explorer", + "url": "https://subnets.avax.network/tiltyard", + "standard": "EIP3091" + } + ], + "713715": [ + { + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" + }, + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ], + "721529": [ + { + "name": "Eramscan", + "url": "https://eramscan.com", + "standard": "EIP3091" + } + ], + "743111": [ + { + "name": "blockscout", + "url": "https://testnet.explorer.hemi.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "751230": [ + { + "name": "brnktestscan", + "url": "https://brnktest-scan.bearnetwork.net", + "standard": "EIP3091" + } + ], + "761412": [ + { + "name": "Miexs Smartchain Explorer", + "url": "https://miexs.com", + "standard": "EIP3091" + } + ], + "764984": [ + { + "name": "Lamina1 Test Explorer", + "url": "https://subnets-test.avax.network/lamina1tes", + "standard": "EIP3091" + } + ], + "767368": [ + { + "name": "Lamina1 Identity Testnet Explorer", + "url": "https://subnets-test.avax.network/lamina1id", + "standard": "EIP3091" + } + ], + "776877": [ + { + "name": "Tanssi Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network", + "standard": "none" + } + ], + "800001": [ + { + "name": "blockscout", + "url": "https://explorer.octa.space", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "808080": [ + { + "name": "BIZ Smart Chain Testnet Explorer", + "url": "https://testnet.btscan.io", + "standard": "EIP3091" + } + ], + "810180": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "810181": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://sepolia.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "810182": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://goerli.explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "820522": [ + { + "name": "tscscan", + "url": "https://testnet.tscscan.io", + "icon": "netxscan", + "standard": "none" + } + ], + "827431": [ + { + "name": "CURVE Mainnet", + "url": "https://curvescan.io", + "standard": "EIP3091" + } + ], + "839320": [ + { + "name": "Primal Network Testnet", + "url": "https://testnet-explorer.prmscan.org", + "standard": "EIP3091" + } + ], + "855456": [ + { + "name": "Dodao Explorer", + "url": "https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", + "icon": "dodao", + "standard": "EIP3091" + } + ], + "879151": [ + { + "name": "BlocX Mainnet Explorer", + "url": "https://explorer.blxscan.com", + "icon": "blx", + "standard": "none" + } + ], + "888882": [ + { + "name": "REXX Mainnet Explorer", + "url": "https://rexxnetwork.com", + "standard": "EIP3091" + } + ], + "888888": [ + { + "name": "Visionscan", + "url": "https://www.visionscan.org", + "standard": "EIP3091" + } + ], + "900000": [ + { + "name": "Posichain Explorer", + "url": "https://explorer.posichain.org", + "standard": "EIP3091" + } + ], + "910000": [ + { + "name": "Posichain Explorer Testnet", + "url": "https://explorer-testnet.posichain.org", + "standard": "EIP3091" + } + ], + "912559": [ + { + "name": "Astria EVM Dusknet Explorer", + "url": "https://explorer.evm.dusk-3.devnet.astria.org", + "standard": "EIP3091" + } + ], + "920000": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ], + "920001": [ + { + "name": "Posichain Explorer Devnet", + "url": "https://explorer-devnet.posichain.org", + "standard": "EIP3091" + } + ], + "923018": [ + { + "name": "fncy scan testnet", + "url": "https://fncyscan-testnet.fncy.world", + "icon": "fncy", + "standard": "EIP3091" + } + ], + "955081": [ + { + "name": "JONO12 Explorer", + "url": "https://subnets-test.avax.network/jono12", + "standard": "EIP3091" + } + ], + "955305": [ + { + "name": "blockscout", + "url": "https://explorer.eluv.io", + "standard": "EIP3091" + } + ], + "978657": [ + { + "name": "treasurescan", + "url": "https://testnet.treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } + ], + "984122": [ + { + "name": "blockscout", + "url": "https://explorer.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "984123": [ + { + "name": "blockscout", + "url": "https://explorer.sketchpad-1.forma.art", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "988207": [ + { + "name": "Ecrox Chain Explorer", + "url": "https://ecroxscan.com", + "standard": "EIP3091" + } + ], + "998899": [ + { + "name": "supernet-testnet-explorer", + "url": "https://testnet-explorer.supernet.chaingames.io", + "standard": "EIP3091" + } + ], + "999999": [ + { + "name": "AMCAmChain explorer", + "url": "https://explorer.amchain.net", + "standard": "none" + } + ], + "1100789": [ + { + "name": "NetMind Testnet Explorer", + "url": "https://testbrower.protago-dev.com", + "icon": "netmind", + "standard": "EIP3091" + } + ], + "1127469": [ + { + "name": "TILTYARD Explorer", + "url": "http://testnet-explorer.tiltyard.gg", + "standard": "EIP3091" + } + ], + "1261120": [ + { + "name": "Blockscout zKatana chain explorer", + "url": "https://zkatana.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "Startale zKatana chain explorer", + "url": "https://zkatana.explorer.startale.com", + "standard": "EIP3091" + } + ], + "1313114": [ + { + "name": "blockscout", + "url": "https://explorer.ethoprotocol.com", + "standard": "none" + } + ], + "1337702": [ + { + "name": "kintsugi explorer", + "url": "https://explorer.kintsugi.themerge.dev", + "standard": "EIP3091" + } + ], + "1337802": [ + { + "name": "Kiln Explorer", + "url": "https://explorer.kiln.themerge.dev", + "icon": "ethereum", + "standard": "EIP3091" + } + ], + "1337803": [ + { + "name": "Zhejiang Explorer", + "url": "https://zhejiang.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + } + ], + "1612127": [ + { + "name": "PlayFi Block Explorer", + "url": "https://albireo-explorer.playfi.ai", + "standard": "EIP3091" + } + ], + "1637450": [ + { + "name": "Xterio Testnet Explorer", + "url": "https://testnet.xterscan.io", + "standard": "EIP3091" + } + ], + "2021398": [ + { + "name": "DeBank Chain Explorer", + "url": "https://explorer.testnet.debank.com", + "standard": "EIP3091" + } + ], + "2099156": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/pchain", + "standard": "EIP3091" + } + ], + "2206132": [ + { + "name": "PlatON explorer", + "url": "https://devnet2scan.platon.network", + "standard": "none" + } + ], + "3397901": [ + { + "name": "Funki Sepolia Sandbox Explorer", + "url": "https://sepolia-sandbox.funkichain.com", + "standard": "none" + } + ], + "3441005": [ + { + "name": "manta-testnet Explorer", + "url": "https://manta-testnet.calderaexplorer.xyz", + "standard": "EIP3091" + } + ], + "3441006": [ + { + "name": "manta-testnet Explorer", + "url": "https://pacific-explorer.sepolia-testnet.manta.network", + "standard": "EIP3091" + } + ], + "4000003": [ + { + "name": "blockscout", + "url": "https://zero-explorer.alt.technology", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "5112023": [ + { + "name": "NumBlock Explorer", + "url": "https://mainnet.numblock.org", + "standard": "none", + "icon": "NumBlock" + } + ], + "5167003": [ + { + "name": "MXC Wannsee zkEVM Testnet", + "url": "https://wannsee-explorer.mxc.com", + "standard": "EIP3091" + } + ], + "5167004": [ + { + "name": "Moonchain Geneva Testnet", + "url": "https://geneva-explorer.moonchain.com", + "standard": "EIP3091" + } + ], + "5201420": [ + { + "name": "blockscout", + "url": "https://blockexplorer.thesecurityteam.rocks", + "icon": "electroneum", + "standard": "EIP3091" + } + ], + "5318008": [ + { + "name": "reactscan", + "url": "https://kopli.reactscan.net", + "standard": "none" + } + ], + "5555555": [ + { + "name": "Imversed EVM explorer (Blockscout)", + "url": "https://txe.imversed.network", + "icon": "imversed", + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-c.imversed.com", + "icon": "imversed", + "standard": "none" + } + ], + "5555558": [ + { + "name": "Imversed EVM Explorer (Blockscout)", + "url": "https://txe-test.imversed.network", + "icon": "imversed", + "standard": "EIP3091" + }, + { + "name": "Imversed Cosmos Explorer (Big Dipper)", + "url": "https://tex-t.imversed.com", + "icon": "imversed", + "standard": "none" + } + ], + "6038361": [ + { + "name": "Blockscout zKyoto explorer", + "url": "https://astar-zkyoto.blockscout.com", + "standard": "EIP3091" + } + ], + "6666665": [ + { + "name": "Safe(AnWang) Explorer", + "url": "http://safe4.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } + ], + "6666666": [ + { + "name": "Safe(AnWang) Testnet Explorer", + "url": "http://safe4-testnet.anwang.com", + "icon": "safe-anwang", + "standard": "EIP3091" + } + ], + "7225878": [ + { + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } + ], + "7355310": [ + { + "name": "openvessel-mainnet", + "url": "https://mainnet-explorer.openvessel.io", + "standard": "none" + } + ], + "7668378": [ + { + "name": "QL1 Testnet Explorer", + "url": "https://testnet.qom.one", + "icon": "qom", + "standard": "EIP3091" + } + ], + "7777777": [ + { + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } + ], + "8007736": [ + { + "name": "piscan", + "url": "https://piscan.plian.org/child_0", + "standard": "EIP3091" + } + ], + "8008135": [ + { + "name": "Fhenix Helium Explorer (Blockscout)", + "url": "https://explorer.helium.fhenix.zone", + "standard": "EIP3091" + } + ], + "8080808": [ + { + "name": "Hokum Explorer", + "url": "https://explorer.hokum.gg", + "standard": "EIP3091" + } + ], + "8794598": [ + { + "name": "HAP EVM Explorer (Blockscout)", + "url": "https://blockscout.hap.land", + "standard": "none", + "icon": "hap" + } + ], + "9322252": [ + { + "name": "blockscout", + "url": "https://xcap-mainnet.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "9322253": [ + { + "name": "blockscout", + "url": "https://xcap-milvine.explorer.xcap.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "10067275": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/child_test", + "standard": "EIP3091" + } + ], + "10101010": [ + { + "name": "Soverun", + "url": "https://explorer.soverun.com", + "standard": "EIP3091" + } + ], + "10241025": [ + { + "name": "Hal Explorer", + "url": "https://hal-explorer.alienxchain.io", + "standard": "EIP3091" + } + ], + "11155111": [ + { + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } + ], + "11155420": [ + { + "name": "opscout", + "url": "https://optimism-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "13068200": [ + { + "name": "coti devnet explorer", + "url": "https://explorer-devnet.coti.io", + "icon": "ethernal", + "standard": "EIP3091" + } + ], + "14288640": [ + { + "name": "anduschain explorer", + "url": "https://explorer.anduschain.io", + "icon": "daon", + "standard": "none" + } + ], + "16658437": [ + { + "name": "piscan", + "url": "https://testnet.plian.org/testnet", + "standard": "EIP3091" + } + ], + "17000920": [ + { + "name": "Lambda Chain Testnet Explorer", + "url": "https://testscan.lambda.im", + "standard": "EIP3091" + } + ], + "20180427": [ + { + "name": "blockscout", + "url": "https://stability-testnet.blockscout.com", + "standard": "EIP3091" + } + ], + "20180430": [ + { + "name": "spectrum", + "url": "https://spectrum.pub", + "standard": "none" + } + ], + "20181205": [ + { + "name": "qkiscan", + "url": "https://qkiscan.io", + "standard": "EIP3091" + } + ], + "20201022": [ + { + "name": "Pego Network Explorer", + "url": "https://scan.pego.network", + "standard": "EIP3091" + } + ], + "20240324": [ + { + "name": "DeBank Chain Explorer", + "url": "https://sepolia-explorer.testnet.debank.com", + "standard": "EIP3091" + } + ], + "20241133": [ + { + "name": "Swan Proxima Chain explorer", + "url": "https://proxima-explorer.swanchain.io", + "standard": "EIP3091" + } + ], + "20482050": [ + { + "name": "Hokum Explorer", + "url": "https://testnet-explorer.hokum.gg", + "standard": "EIP3091" + } + ], + "22052002": [ + { + "name": "Excelon explorer", + "url": "https://explorer.excelon.io", + "standard": "EIP3091" + } + ], + "27082017": [ + { + "name": "exlscan", + "url": "https://testnet-explorer.exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } + ], + "27082022": [ + { + "name": "exlscan", + "url": "https://exlscan.com", + "icon": "exl", + "standard": "EIP3091" + } + ], + "28122024": [ + { + "name": "scan-testnet", + "url": "https://scanv2-testnet.ancient8.gg", + "standard": "EIP3091" + } + ], + "29032022": [ + { + "name": "FLXExplorer", + "url": "https://explorer.flaexchange.top", + "standard": "EIP3091" + } + ], + "37084624": [ + { + "name": "Blockscout", + "url": "https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "39916801": [ + { + "name": "TravelSong", + "url": "https://www.beastkingdom.io/travelsong", + "standard": "EIP3091" + } + ], + "43214913": [ + { + "name": "maistesntet", + "url": "http://174.138.9.169:3006/?network=maistesntet", + "standard": "none" + } + ], + "65010002": [ + { + "name": "autonity-blockscout", + "url": "https://bakerloo.autonity.org", + "standard": "EIP3091" + } + ], + "65100002": [ + { + "name": "autonity-blockscout", + "url": "https://piccadilly.autonity.org", + "standard": "EIP3091" + } + ], + "68840142": [ + { + "name": "Frame Testnet Explorer", + "url": "https://explorer.testnet.frame.xyz", + "standard": "EIP3091" + } + ], + "77787778": [ + { + "name": "blockscout", + "url": "https://test.0xhashscan.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "88888888": [ + { + "name": "teamscan", + "url": "https://teamblockchain.team", + "standard": "EIP3091" + } + ], + "94204209": [ + { + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "111557560": [ + { + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } + ], + "123420111": [ + { + "name": "blockscout", + "url": "https://opcelestia-raspberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "161221135": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.plumenetwork.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "168587773": [ + { + "name": "Blast Sepolia Explorer", + "url": "https://testnet.blastscan.io", + "icon": "blast", + "standard": "EIP3091" + } + ], + "192837465": [ + { + "name": "Blockscout", + "url": "https://explorer.gather.network", + "icon": "gather", + "standard": "none" + } + ], + "222000222": [ + { + "name": "explorer", + "url": "https://testnet.meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets-test.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ], + "245022926": [ + { + "name": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://neon-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "245022934": [ + { + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" + }, + { + "name": "native", + "url": "https://neon.blockscout.com", + "standard": "EIP3091" + } + ], + "278611351": [ + { + "name": "turbulent-unique-scheat", + "url": "https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "311752642": [ + { + "name": "OneLedger Block Explorer", + "url": "https://mainnet-explorer.oneledger.network", + "standard": "EIP3091" + } + ], + "328527624": [ + { + "name": "Nal Sepolia Testnet Network Explorer", + "url": "https://testnet-scan.nal.network", + "standard": "EIP3091" + } + ], + "333000333": [ + { + "name": "explorer", + "url": "https://meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ], + "356256156": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.gather.network", + "icon": "gather", + "standard": "none" + } + ], + "486217935": [ + { + "name": "Blockscout", + "url": "https://devnet-explorer.gather.network", + "standard": "none" + } + ], + "888888888": [ + { + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } + ], + "889910245": [ + { + "name": "PTCESCAN Testnet Explorer", + "url": "https://explorer-testnet.ptcscan.io", + "standard": "EIP3091" + } + ], + "889910246": [ + { + "name": "PTCESCAN Explorer", + "url": "https://ptcscan.io", + "standard": "EIP3091" + } + ], + "974399131": [ + { + "name": "Blockscout", + "url": "https://giant-half-dual-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "999999999": [ + { + "name": "Zora Sepolia Testnet Network Explorer", + "url": "https://sepolia.explorer.zora.energy", + "standard": "EIP3091" + } + ], + "1020352220": [ + { + "name": "Blockscout", + "url": "https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "1146703430": [ + { + "name": "CybEthExplorer", + "url": "http://cybeth1.cyberdeck.eu:8000", + "icon": "cyberdeck", + "standard": "none" + } + ], + "1273227453": [ + { + "name": "Blockscout", + "url": "https://wan-red-ain.explorer.mainnet.skalenodes.com", + "icon": "human", + "standard": "EIP3091" + } + ], + "1313161554": [ + { + "name": "aurorascan.dev", + "url": "https://aurorascan.dev", + "standard": "EIP3091" + } + ], + "1313161555": [ + { + "name": "aurorascan.dev", + "url": "https://testnet.aurorascan.dev", + "standard": "EIP3091" + } + ], + "1313161560": [ + { + "name": "PowerGold explorer", + "url": "https://explorer.powergold.aurora.dev", + "standard": "EIP3091" + } + ], + "1350216234": [ + { + "name": "Blockscout", + "url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "1351057110": [ + { + "name": "Blockscout", + "url": "https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com", + "icon": "chaos", + "standard": "EIP3091" + } + ], + "1380012617": [ + { + "name": "rarichain-explorer", + "url": "https://mainnet.explorer.rarichain.org", + "standard": "EIP3091" + } + ], + "1380996178": [ + { + "name": "RaptorChain Explorer", + "url": "https://explorer.raptorchain.io", + "icon": "raptorchain_explorer", + "standard": "EIP3091" + } + ], + "1444673419": [ + { + "name": "Blockscout", + "url": "https://juicy-low-small-testnet.explorer.testnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "1482601649": [ + { + "name": "Blockscout", + "url": "https://green-giddy-denebola.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "1564830818": [ + { + "name": "Blockscout", + "url": "https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "1666600000": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one", + "standard": "EIP3091" + } + ], + "1666600001": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one/blocks/shard/1", + "standard": "none" + } + ], + "1666700000": [ + { + "name": "Harmony Testnet Block Explorer", + "url": "https://explorer.testnet.harmony.one", + "standard": "EIP3091" + } + ], + "1666700001": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.testnet.harmony.one", + "standard": "none" + } + ], + "1802203764": [ + { + "name": "Kakarot Scan", + "url": "https://sepolia.kakarotscan.org", + "standard": "EIP3091" + }, + { + "name": "Kakarot Explorer", + "url": "https://sepolia-explorer.kakarot.org", + "standard": "EIP3091" + } + ], + "1918988905": [ + { + "name": "rarichain-testnet-explorer", + "url": "https://explorer.rarichain.org", + "standard": "EIP3091" + } + ], + "2046399126": [ + { + "name": "Blockscout", + "url": "https://elated-tan-skat.explorer.mainnet.skalenodes.com", + "standard": "EIP3091" + } + ], + "4216137055": [ + { + "name": "OneLedger Block Explorer", + "url": "https://frankenstein-explorer.oneledger.network", + "standard": "EIP3091" + } + ], + "11297108109": [ + { + "name": "Chainlens", + "url": "https://palm.chainlens.com", + "standard": "EIP3091" + }, + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm", + "standard": "none" + } + ], + "11297108099": [ + { + "name": "Chainlens", + "url": "https://testnet.palm.chainlens.com", + "standard": "EIP3091" + }, + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm-testnet", + "standard": "none" + } + ], + "37714555429": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer-v2.xai-chain.net", + "standard": "EIP3091" + } + ], + "88153591557": [ + { + "name": "blockscout", + "url": "https://arb-blueberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "111222333444": [ + { + "name": "Alphabet Explorer", + "url": "https://scan.alphabetnetwork.org", + "standard": "EIP3091" + } + ], + "197710212030": [ + { + "name": "Ntity Blockscout", + "url": "https://blockscout.ntity.io", + "icon": "ntity", + "standard": "EIP3091" + } + ], + "197710212031": [ + { + "name": "Ntity Haradev Blockscout", + "url": "https://blockscout.haradev.com", + "icon": "ntity", + "standard": "EIP3091" + } + ], + "202402181627": [ + { + "name": "gmnetwork-testnet", + "url": "https://gmnetwork-testnet-explorer.alt.technology", + "standard": "EIP3091" + } + ], + "383414847825": [ + { + "name": "zeniq-smart-chain-explorer", + "url": "https://smart.zeniq.net", + "standard": "EIP3091" + } + ], + "666301171999": [ + { + "name": "ipdcscan", + "url": "https://scan.ipdc.io", + "standard": "EIP3091" + } + ], + "2713017997578000": [ + { + "name": "dchaint scan", + "url": "https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io", + "standard": "EIP3091" + } + ], + "2716446429837000": [ + { + "name": "dchain scan", + "url": "https://dchain-2716446429837000-1.sagaexplorer.io", + "standard": "EIP3091" + } + ] +}; + +export const NETWORK_FAUCETS = { + "1": [], + "2": [], + "3": [ + "http://fauceth.komputing.org?chain=3&address=${ADDRESS}", + "https://faucet.ropsten.be?${ADDRESS}" + ], + "4": [ + "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", + "https://faucet.rinkeby.io" + ], + "5": [ + "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", + "https://goerli-faucet.slock.it?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "7": [], + "8": [], + "9": [], + "10": [], + "11": [], + "12": [], + "13": [], + "14": [], + "15": [], + "16": [ + "https://faucet.flare.network" + ], + "17": [], + "18": [ + "https://faucet-testnet.thundercore.com" + ], + "19": [], + "20": [], + "21": [ + "https://esc-faucet.elastos.io/" + ], + "22": [], + "23": [], + "24": [], + "25": [], + "26": [], + "27": [], + "29": [], + "30": [], + "31": [ + "https://faucet.rsk.co/" + ], + "32": [], + "33": [], + "34": [], + "35": [], + "36": [], + "37": [], + "38": [], + "39": [], + "40": [], + "41": [ + "https://app.telos.net/testnet/developers" + ], + "42": [], + "43": [ + "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" + ], + "44": [], + "45": [ + "https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2" + ], + "46": [], + "47": [], + "48": [], + "49": [], + "50": [], + "51": [ + "https://faucet.apothem.network" + ], + "52": [], + "53": [], + "54": [], + "55": [], + "56": [], + "57": [ + "https://faucet.syscoin.org" + ], + "58": [], + "60": [], + "61": [], + "63": [ + "https://easy.hebeswap.com/#/faucet", + "https://faucet.mordortest.net" + ], + "64": [], + "65": [ + "https://www.okex.com/drawdex" + ], + "66": [], + "67": [], + "68": [], + "69": [ + "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" + ], + "70": [], + "71": [ + "https://faucet.confluxnetwork.org" + ], + "72": [ + "https://faucet.dxscan.io" + ], + "73": [ + "https://faucet-testnet.fncy.world" + ], + "74": [], + "75": [], + "76": [], + "77": [], + "78": [], + "79": [], + "80": [], + "81": [], + "82": [ + "https://faucet.meter.io" + ], + "83": [ + "https://faucet-warringstakes.meter.io" + ], + "84": [], + "85": [ + "https://www.gatescan.org/testnet/faucet" + ], + "86": [ + "https://www.gatescan.org/faucet" + ], + "87": [], + "88": [], + "89": [], + "90": [], + "91": [], + "92": [], + "93": [], + "94": [], + "95": [ + "https://faucet.camdl.gov.kh/" + ], + "96": [], + "97": [ + "https://testnet.bnbchain.org/faucet-smart" + ], + "98": [], + "99": [], + "100": [ + "https://gnosisfaucet.com", + "https://stakely.io/faucet/gnosis-chain-xdai", + "https://faucet.prussia.dev/xdai" + ], + "101": [], + "102": [], + "103": [], + "104": [], + "105": [], + "106": [], + "107": [ + "https://faucet.novanetwork.io" + ], + "108": [], + "109": [], + "110": [], + "111": [ + "https://etherlite.org/faucets" + ], + "112": [], + "113": [ + "https://buy.dehvo.com" + ], + "114": [ + "https://faucet.flare.network" + ], + "117": [], + "118": [], + "119": [], + "120": [ + "http://faucet.nuls.io" + ], + "121": [], + "122": [], + "123": [ + "https://get.fusespark.io" + ], + "124": [], + "125": [ + "https://faucet.oychain.io" + ], + "126": [], + "127": [], + "128": [], + "129": [], + "131": [], + "132": [], + "133": [], + "134": [], + "135": [ + "https://faucet.alyxchain.com" + ], + "136": [], + "137": [], + "138": [], + "139": [], + "140": [], + "141": [], + "142": [], + "144": [], + "145": [], + "147": [], + "148": [], + "150": [ + "https://faucet.sixprotocol.net" + ], + "151": [], + "152": [], + "153": [], + "154": [], + "155": [ + "https://faucet.testnet.tenet.org" + ], + "156": [], + "157": [ + "https://beta.shibariumtech.com/faucet" + ], + "158": [], + "159": [], + "160": [], + "161": [], + "162": [ + "https://discuss.lightstreams.network/t/request-test-tokens" + ], + "163": [], + "164": [], + "166": [], + "167": [], + "168": [], + "169": [], + "170": [ + "https://faucet-testnet.hscscan.com/" + ], + "172": [ + "https://faucet.latam-blockchain.com" + ], + "176": [], + "180": [], + "181": [], + "185": [], + "186": [], + "188": [], + "189": [], + "191": [], + "193": [], + "195": [ + "https://www.okx.com/xlayer/faucet" + ], + "196": [], + "197": [ + "https://neutrinoschain.com/faucet" + ], + "198": [], + "199": [], + "200": [], + "201": [], + "202": [], + "204": [], + "206": [], + "207": [], + "208": [], + "210": [], + "211": [ + "http://faucet.freight.sh" + ], + "212": [ + "https://faucet.mapprotocol.io" + ], + "213": [], + "214": [], + "217": [], + "220": [ + "https://faucet.scalind.com" + ], + "223": [], + "224": [ + "https://faucet.vrd.network" + ], + "225": [], + "226": [], + "228": [], + "230": [], + "234": [ + "https://protojumbo.jumbochain.org/faucet-smart" + ], + "236": [ + "https://faucet.deamchain.com" + ], + "242": [], + "246": [], + "248": [], + "250": [], + "252": [], + "255": [], + "256": [ + "https://scan-testnet.hecochain.com/faucet" + ], + "258": [], + "259": [], + "262": [], + "266": [], + "267": [ + "https://testnet.neuraprotocol.io/faucet" + ], + "268": [], + "269": [ + "https://myhpbwallet.com/" + ], + "271": [], + "274": [], + "278": [], + "279": [], + "282": [ + "https://zkevm.cronos.org/faucet" + ], + "288": [], + "291": [], + "295": [], + "296": [ + "https://portal.hedera.com" + ], + "297": [ + "https://portal.hedera.com" + ], + "298": [], + "300": [], + "302": [], + "303": [], + "305": [], + "307": [ + "https://faucet.lovely.network" + ], + "308": [], + "309": [], + "311": [ + "https://faucet.omaxray.com/" + ], + "313": [], + "314": [], + "321": [], + "322": [ + "https://faucet-testnet.kcc.network" + ], + "323": [], + "324": [], + "333": [], + "335": [], + "336": [], + "338": [ + "https://cronos.org/faucet" + ], + "345": [], + "361": [], + "363": [], + "364": [], + "365": [], + "369": [], + "371": [], + "380": [], + "381": [], + "385": [ + "https://pipa.lisinski.online" + ], + "395": [ + "https://faucet.testnet.camdl.gov.kh/" + ], + "397": [], + "398": [], + "399": [], + "400": [ + "https://faucet.hyperonchain.com" + ], + "401": [], + "404": [], + "411": [], + "416": [], + "418": [ + "https://faucet.lachain.network" + ], + "420": [], + "422": [], + "424": [], + "427": [], + "428": [], + "434": [], + "443": [], + "444": [], + "456": [], + "462": [], + "463": [], + "499": [], + "500": [], + "501": [], + "510": [], + "512": [], + "513": [ + "https://scan-testnet.acuteangle.com/faucet" + ], + "516": [], + "520": [ + "https://xsc.pub/faucet" + ], + "529": [], + "530": [], + "534": [], + "537": [], + "542": [], + "545": [ + "https://testnet-faucet.onflow.org" + ], + "555": [], + "558": [], + "568": [ + "https://faucet.dogechain.dog" + ], + "570": [ + "https://rollux.id/faucetapp" + ], + "571": [], + "579": [], + "592": [], + "595": [], + "596": [], + "597": [], + "600": [], + "601": [ + "https://vne.network/rose" + ], + "612": [], + "614": [], + "634": [], + "646": [ + "https://previewnet-faucet.onflow.org" + ], + "647": [ + "https://faucet.toronto.sx.technology" + ], + "648": [], + "653": [], + "654": [], + "662": [], + "666": [ + "https://chain.pixie.xyz/faucet" + ], + "667": [], + "668": [], + "669": [ + "https://faucet-testnet.juncachain.com" + ], + "686": [], + "690": [], + "700": [], + "701": [], + "707": [], + "708": [ + "https://faucet.bcsdev.io" + ], + "710": [], + "713": [], + "719": [], + "721": [], + "727": [], + "730": [], + "741": [ + "https://faucet.vention.network" + ], + "742": [], + "747": [], + "766": [], + "776": [ + "https://faucet.openchain.info/" + ], + "777": [], + "786": [], + "787": [], + "788": [ + "https://faucet.aerochain.id/" + ], + "789": [], + "799": [ + "https://faucet.testnet.rupaya.io" + ], + "800": [ + "https://faucet.lucidcoin.io" + ], + "803": [], + "808": [], + "810": [ + "https://www.haven1.org/faucet" + ], + "813": [], + "814": [], + "818": [], + "820": [], + "822": [ + "https://faucet.runic.build" + ], + "831": [], + "841": [], + "842": [], + "859": [], + "868": [], + "876": [], + "877": [ + "https://faucet.dexit.network" + ], + "880": [], + "888": [], + "898": [ + "https://faucet.maxi.network" + ], + "899": [], + "900": [ + "https://faucet-testnet.garizon.com" + ], + "901": [ + "https://faucet-testnet.garizon.com" + ], + "902": [ + "https://faucet-testnet.garizon.com" + ], + "903": [ + "https://faucet-testnet.garizon.com" + ], + "909": [], + "910": [], + "911": [], + "917": [ + "https://faucet.thefirechain.com" + ], + "919": [ + "https://sepoliafaucet.com/" + ], + "927": [], + "943": [ + "https://faucet.v4.testnet.pulsechain.com/" + ], + "956": [], + "957": [], + "963": [], + "969": [], + "970": [], + "971": [], + "972": [], + "977": [ + "https://faucet.nepalblockchain.network" + ], + "979": [], + "980": [], + "985": [ + "https://faucet.metamemo.one/" + ], + "989": [], + "990": [ + "https://faucet.eliberty.ngo" + ], + "997": [ + "https://explorer.5ire.network/faucet" + ], + "998": [], + "999": [], + "1000": [], + "1001": [ + "https://baobab.wallet.klaytn.com/access?next=faucet" + ], + "1003": [], + "1004": [], + "1007": [], + "1008": [], + "1009": [], + "1010": [], + "1011": [], + "1012": [], + "1022": [], + "1023": [], + "1024": [], + "1028": [], + "1030": [], + "1031": [], + "1038": [ + "https://faucet.bronos.org" + ], + "1039": [], + "1073": [ + "https://evm-toolkit.evm.testnet.shimmer.network", + "https://evm-faucet.testnet.shimmer.network" + ], + "1075": [ + "https://evm-toolkit.evm.testnet.iotaledger.net" + ], + "1079": [], + "1080": [], + "1088": [], + "1089": [], + "1099": [], + "1100": [], + "1101": [], + "1107": [], + "1108": [], + "1111": [], + "1112": [ + "https://wallet.test.wemix.com/faucet" + ], + "1113": [], + "1115": [ + "https://scan.test.btcs.network/faucet" + ], + "1116": [], + "1117": [ + "https://faucet.dogcoin.network" + ], + "1123": [], + "1130": [], + "1131": [], + "1133": [ + "http://tc04.mydefichain.com/faucet" + ], + "1135": [], + "1138": [], + "1139": [], + "1140": [ + "https://scan.boka.network/#/Galois/faucet" + ], + "1147": [ + "https://faucet.flagscan.xyz" + ], + "1149": [], + "1170": [], + "1177": [], + "1188": [], + "1197": [], + "1200": [], + "1201": [], + "1202": [], + "1209": [], + "1210": [ + "https://cuckoo.network/portal/faucet/" + ], + "1213": [], + "1214": [], + "1221": [], + "1225": [], + "1229": [], + "1230": [], + "1231": [], + "1234": [], + "1235": [], + "1243": [], + "1244": [ + "https://faucet.archiechain.io" + ], + "1246": [], + "1248": [], + "1252": [ + "https://cicfaucet.com" + ], + "1280": [], + "1284": [], + "1285": [], + "1287": [], + "1288": [], + "1291": [ + "https://faucet.testnet.swisstronik.com" + ], + "1311": [], + "1314": [], + "1319": [], + "1320": [ + "https://aia-faucet-testnet.aiachain.org" + ], + "1328": [ + "https://atlantic-2.app.sei.io/faucet" + ], + "1329": [], + "1337": [], + "1338": [], + "1339": [], + "1343": [], + "1353": [], + "1369": [], + "1370": [], + "1377": [], + "1379": [], + "1388": [], + "1392": [], + "1414": [], + "1433": [], + "1440": [], + "1442": [], + "1452": [], + "1453": [ + "https://istanbul-faucet.metachain.dev" + ], + "1455": [ + "https://faucet.ctexscan.com" + ], + "1490": [], + "1499": [], + "1501": [], + "1506": [], + "1507": [], + "1515": [ + "https://faucet.beagle.chat/" + ], + "1559": [], + "1617": [], + "1618": [], + "1620": [], + "1625": [], + "1657": [], + "1662": [], + "1663": [ + "https://faucet.horizen.io" + ], + "1686": [], + "1687": [], + "1688": [], + "1701": [ + "https://evm.anytype.io/faucet" + ], + "1707": [], + "1708": [ + "https://faucet.blockchain.or.th" + ], + "1717": [], + "1718": [], + "1729": [], + "1740": [], + "1750": [], + "1773": [], + "1777": [], + "1789": [], + "1804": [ + "https://github.com/ethereum-pocr/kerleano/blob/main/docs/faucet.md" + ], + "1807": [ + "https://analogfaucet.com" + ], + "1818": [], + "1819": [ + "https://faucet.cube.network" + ], + "1821": [], + "1856": [], + "1875": [], + "1881": [], + "1890": [], + "1891": [ + "https://faucet.pegasus.lightlink.io/" + ], + "1898": [], + "1904": [], + "1907": [], + "1908": [ + "https://faucet.bitcichain.com" + ], + "1909": [], + "1911": [], + "1912": [ + "https://claim-faucet.rubychain.io/" + ], + "1918": [], + "1945": [], + "1951": [], + "1953": [], + "1954": [], + "1956": [], + "1961": [], + "1967": [ + "https://faucet.metatime.com/eleanor" + ], + "1969": [ + "https://testnet.scschain.com" + ], + "1970": [], + "1971": [], + "1972": [], + "1975": [], + "1984": [], + "1985": [], + "1986": [], + "1987": [], + "1992": [], + "1994": [], + "1995": [ + "https://faucet.edexa.com/" + ], + "1996": [], + "1997": [], + "1998": [ + "https://faucet.kyotoprotocol.io" + ], + "2000": [], + "2001": [], + "2002": [], + "2004": [], + "2008": [], + "2009": [], + "2013": [], + "2014": [], + "2016": [], + "2017": [ + "https://telcoin.network/faucet" + ], + "2018": [], + "2019": [], + "2020": [], + "2021": [], + "2022": [], + "2023": [ + "https://ttaycan-faucet.hupayx.io/" + ], + "2024": [], + "2025": [], + "2026": [], + "2031": [], + "2032": [], + "2035": [], + "2037": [], + "2038": [], + "2039": [], + "2040": [], + "2043": [], + "2044": [], + "2045": [], + "2047": [], + "2048": [], + "2049": [], + "2077": [], + "2088": [], + "2100": [], + "2101": [], + "2109": [], + "2112": [], + "2121": [], + "2122": [], + "2124": [], + "2136": [], + "2137": [], + "2138": [], + "2140": [], + "2141": [], + "2151": [], + "2152": [], + "2153": [], + "2154": [], + "2199": [ + "https://multiverse.moonsama.com/faucet" + ], + "2202": [ + "https://faucet.antofy.io" + ], + "2203": [], + "2213": [], + "2221": [ + "https://faucet.kava.io" + ], + "2222": [], + "2223": [], + "2241": [], + "2300": [], + "2306": [], + "2309": [], + "2323": [ + "https://faucet.somanetwork.io" + ], + "2330": [], + "2331": [], + "2332": [ + "https://airdrop.somanetwork.io" + ], + "2340": [ + "https://app-olympia.atleta.network/faucet" + ], + "2342": [ + "https://www.omniaverse.io" + ], + "2355": [], + "2358": [], + "2370": [ + "https://evm-faucet.nexis.network" + ], + "2399": [ + "https://faucet.bombchain-testnet.ankr.com/" + ], + "2400": [], + "2410": [], + "2415": [], + "2425": [], + "2442": [], + "2458": [ + "https://faucet-testnet.hybridchain.ai" + ], + "2468": [ + "https://faucet-testnet.hybridchain.ai" + ], + "2484": [ + "https://faucet.uniultra.xyz" + ], + "2522": [], + "2525": [], + "2559": [], + "2569": [], + "2606": [], + "2611": [], + "2612": [], + "2613": [ + "https://testnet-faucet.ezchain.com" + ], + "2625": [ + "https://testnet.whitechain.io/faucet" + ], + "2648": [], + "2649": [], + "2662": [], + "2710": [], + "2718": [], + "2730": [], + "2731": [], + "2748": [], + "2777": [], + "2810": [], + "2907": [], + "2911": [], + "2941": [ + "https://xfaucet.xenonchain.com" + ], + "2999": [], + "3000": [ + "https://app-faucet.centrality.me" + ], + "3001": [ + "https://app-faucet.centrality.me" + ], + "3003": [], + "3011": [], + "3031": [], + "3033": [], + "3068": [], + "3073": [], + "3100": [], + "3102": [], + "3109": [], + "3110": [], + "3269": [], + "3270": [ + "https://faucet.arabianchain.org/" + ], + "3306": [], + "3331": [ + "https://faucet.zcore.cash" + ], + "3333": [], + "3334": [], + "3335": [], + "3400": [], + "3424": [], + "3434": [ + "https://faucet.securechain.ai" + ], + "3456": [ + "https://testnet-faucet.layeredge.io" + ], + "3490": [], + "3500": [ + "https://faucet.paribuscan.com" + ], + "3501": [], + "3601": [], + "3602": [], + "3630": [], + "3636": [ + "https://faucet.botanixlabs.dev" + ], + "3637": [ + "https://faucet.btxtestchain.com" + ], + "3639": [], + "3645": [], + "3666": [], + "3690": [], + "3693": [], + "3698": [ + "https://faucet.senjepowersscan.com" + ], + "3699": [ + "https://faucet.senjepowersscan.com" + ], + "3737": [ + "https://faucet.crossbell.io" + ], + "3776": [], + "3797": [], + "3799": [ + "https://faucet.tangle.tools" + ], + "3885": [ + "zkevm-faucet.thefirechain.com" + ], + "3888": [], + "3889": [], + "3912": [ + "https://www.dracscan.io/faucet" + ], + "3939": [], + "3966": [ + "https://faucet.dynoscan.io" + ], + "3967": [ + "https://faucet.dynoscan.io" + ], + "3993": [ + "https://sepoliafaucet.com/" + ], + "3999": [], + "4000": [], + "4001": [], + "4002": [ + "https://faucet.fantom.network" + ], + "4003": [], + "4040": [ + "https://getfaucet.carbonium.network" + ], + "4048": [], + "4058": [], + "4061": [], + "4062": [], + "4078": [], + "4080": [], + "4090": [ + "https://faucet.oasis.fastexchain.com" + ], + "4096": [ + "https://faucet.bitindi.org" + ], + "4099": [ + "https://faucet.bitindi.org" + ], + "4102": [], + "4139": [], + "4141": [ + "https://faucet.tipboxcoin.net" + ], + "4157": [], + "4181": [], + "4200": [], + "4201": [ + "https://faucet.testnet.lukso.network" + ], + "4202": [ + "https://app.optimism.io/faucet" + ], + "4242": [], + "4243": [], + "4337": [ + "https://faucet.onbeam.com" + ], + "4400": [], + "4444": [ + "https://gruvin.me/htmlcoin" + ], + "4460": [], + "4488": [], + "4544": [ + "https://faucet.emoney.network/faucet" + ], + "4613": [], + "4653": [], + "4689": [], + "4690": [ + "https://faucet.iotex.io/" + ], + "4759": [], + "4777": [], + "4893": [], + "4918": [], + "4919": [], + "4999": [], + "5000": [], + "5001": [ + "https://faucet.testnet.mantle.xyz" + ], + "5002": [], + "5003": [ + "https://faucet.sepolia.mantle.xyz" + ], + "5005": [], + "5039": [], + "5040": [], + "5051": [], + "5100": [], + "5101": [], + "5102": [], + "5103": [], + "5104": [], + "5105": [], + "5106": [], + "5112": [], + "5165": [], + "5169": [], + "5177": [], + "5197": [], + "5234": [], + "5315": [], + "5317": [], + "5321": [], + "5353": [ + "https://faucet.tritanium.network" + ], + "5372": [ + "https://faucet.settlus.io" + ], + "5424": [], + "5439": [], + "5522": [ + "https://t.me/vexfaucetbot" + ], + "5551": [], + "5555": [], + "5611": [ + "https://testnet.bnbchain.org/faucet-smart" + ], + "5615": [ + "https://faucet.arcturuschain.io" + ], + "5616": [], + "5656": [], + "5675": [], + "5678": [], + "5700": [ + "https://faucet.tanenbaum.io" + ], + "5729": [], + "5758": [ + "https://faucet.satoshichain.io" + ], + "5777": [], + "5845": [], + "5851": [ + "https://developer.ont.io/" + ], + "5869": [], + "6000": [], + "6001": [], + "6065": [ + "http://faucet.tresleches.finance:8080" + ], + "6066": [], + "6102": [ + "https://www.cascadia.foundation/faucet" + ], + "6118": [], + "6119": [], + "6321": [ + "https://aura.faucetme.pro" + ], + "6322": [], + "6363": [], + "6502": [], + "6552": [ + "https://faucet.scolcoin.com" + ], + "6565": [ + "https://faucet.foxchain.app" + ], + "6626": [], + "6660": [ + "http://faucet.latestchain.io" + ], + "6661": [], + "6666": [ + "https://faucet.cybascan.io" + ], + "6688": [], + "6699": [], + "6701": [], + "6779": [], + "6789": [ + "https://faucet.goldsmartchain.com" + ], + "6868": [], + "6969": [], + "6999": [], + "7000": [], + "7001": [ + "https://labs.zetachain.com/get-zeta" + ], + "7007": [], + "7027": [], + "7070": [], + "7077": [], + "7100": [], + "7118": [], + "7171": [], + "7300": [], + "7331": [], + "7332": [], + "7341": [], + "7484": [], + "7518": [], + "7560": [], + "7575": [ + "https://testnet-faucet.adil-scan.io" + ], + "7576": [], + "7668": [], + "7672": [], + "7700": [], + "7701": [], + "7771": [ + "https://faucet.bit-rock.io" + ], + "7775": [], + "7777": [], + "7778": [], + "7798": [ + "https://long.hub.openex.network/faucet" + ], + "7860": [ + "https://faucet-testnet.maalscan.io/" + ], + "7878": [ + "https://faucet.hazlor.com" + ], + "7887": [], + "7895": [ + "https://faucet-athena.ardescan.com/" + ], + "7923": [], + "7924": [ + "https://faucet.mochain.app/" + ], + "7979": [], + "8000": [], + "8001": [ + "https://chain-docs.teleport.network/testnet/faucet.html" + ], + "8029": [], + "8047": [], + "8054": [], + "8080": [ + "https://faucet.liberty10.shardeum.org" + ], + "8081": [ + "https://faucet.liberty20.shardeum.org" + ], + "8082": [ + "https://faucet-sphinx.shardeum.org/" + ], + "8086": [], + "8087": [], + "8098": [], + "8131": [ + "https://faucet.qitmeer.io" + ], + "8132": [], + "8133": [], + "8134": [], + "8135": [], + "8136": [], + "8181": [ + "https://testnet.beonescan.com/faucet" + ], + "8192": [], + "8194": [], + "8217": [], + "8227": [], + "8272": [ + "https://faucet.blocktonscan.com/" + ], + "8285": [], + "8329": [], + "8387": [], + "8453": [], + "8654": [], + "8655": [], + "8668": [], + "8723": [], + "8724": [ + "https://testnet-explorer.wolot.io" + ], + "8726": [], + "8727": [], + "8738": [], + "8768": [ + "https://faucet.tmychain.org/" + ], + "8822": [], + "8844": [ + "https://app.testnet.hydrachain.org/faucet" + ], + "8848": [], + "8866": [], + "8880": [], + "8881": [], + "8882": [ + "https://t.me/unique2faucet_opal_bot" + ], + "8883": [], + "8888": [], + "8889": [], + "8890": [ + "https://faucetcoin.orenium.org" + ], + "8898": [ + "https://faucet.mmtscan.io/" + ], + "8899": [], + "8911": [], + "8912": [], + "8921": [], + "8922": [], + "8989": [], + "8995": [ + "https://faucet.bloxberg.org/" + ], + "9000": [ + "https://faucet.evmos.dev" + ], + "9001": [], + "9007": [ + "https://testnet.shidoscan.com/faucet" + ], + "9008": [], + "9012": [ + "https://t.me/BerylBit" + ], + "9024": [ + "https://testnet.nexablockscan.io/faucet" + ], + "9025": [], + "9100": [], + "9223": [], + "9339": [ + "https://faucet.dogcoin.network" + ], + "9393": [], + "9395": [], + "9527": [ + "https://robin-faucet.rangersprotocol.com" + ], + "9528": [ + "http://faucet.qeasyweb3.com" + ], + "9559": [ + "https://faucet.neonlink.io/" + ], + "9700": [], + "9728": [], + "9768": [ + "https://faucet.mainnetz.io" + ], + "9779": [], + "9789": [ + "https://faucet.testnet.tabichain.com" + ], + "9790": [], + "9792": [], + "9797": [], + "9818": [ + "https://faucet.imperiumchain.com/" + ], + "9819": [ + "https://faucet.imperiumchain.com/" + ], + "9888": [], + "9898": [], + "9911": [], + "9977": [ + "https://faucet.mindchain.info/" + ], + "9980": [], + "9981": [], + "9990": [], + "9996": [], + "9997": [], + "9998": [], + "9999": [], + "10000": [], + "10001": [], + "10024": [], + "10081": [], + "10086": [], + "10101": [], + "10200": [ + "https://gnosisfaucet.com" + ], + "10201": [ + "https://faucet.maxxchain.org" + ], + "10222": [], + "10242": [], + "10243": [ + "https://faucet.arthera.net" + ], + "10248": [], + "10321": [], + "10324": [ + "https://faucet.taoevm.io" + ], + "10395": [], + "10507": [], + "10508": [ + "https://faucet.avax.network/?subnet=num", + "https://faucet.num.network" + ], + "10823": [], + "10849": [], + "10850": [], + "10946": [], + "10947": [ + "https://faucetpage.quadrans.io" + ], + "11110": [], + "11111": [ + "https://faucet.avax.network/?subnet=wagmi" + ], + "11115": [ + "https://faucet.astranaut.dev" + ], + "11119": [], + "11221": [], + "11227": [], + "11235": [], + "11437": [], + "11501": [], + "11503": [], + "11612": [ + "https://faucet.sardisnetwork.com" + ], + "11822": [], + "11891": [], + "12009": [], + "12020": [ + "https://faucet.aternoschain.com" + ], + "12051": [ + "https://nft.singularity.gold" + ], + "12052": [ + "https://zeroscan.singularity.gold" + ], + "12123": [ + "https://faucet.brcchain.io" + ], + "12306": [ + "https://test.fibochain.org/faucets" + ], + "12321": [ + "https://faucet.blgchain.com" + ], + "12324": [], + "12325": [], + "12345": [ + "https://faucet.step.network" + ], + "12553": [], + "12715": [], + "12781": [], + "12890": [], + "12898": [], + "13000": [], + "13308": [], + "13337": [ + "https://faucet.avax.network/?subnet=beam", + "https://faucet.onbeam.com" + ], + "13371": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "13381": [], + "13396": [], + "13473": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "13505": [], + "13600": [], + "13812": [], + "14000": [], + "14324": [ + "https://faucet.evolveblockchain.io" + ], + "14333": [ + "https://faucet.vitruveo.xyz" + ], + "14801": [ + "https://faucet.vana.org" + ], + "14853": [ + "https://t.me/HumanodeTestnet5FaucetBot" + ], + "15003": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "15257": [ + "https://faucet.poodl.org" + ], + "15259": [], + "15551": [], + "15555": [ + "https://faucet.testnet-dev.trust.one/" + ], + "15557": [], + "16000": [], + "16001": [ + "https://faucet.metadot.network/" + ], + "16116": [], + "16507": [], + "16688": [], + "16718": [], + "16888": [ + "https://tfaucet.ivarex.com/" + ], + "17000": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" + ], + "17069": [], + "17117": [], + "17171": [ + "https://faucet.oneg8.network" + ], + "17172": [], + "17180": [], + "17217": [], + "17777": [], + "18000": [], + "18122": [], + "18159": [], + "18181": [ + "https://faucet.oneg8.network" + ], + "18233": [], + "18686": [], + "18888": [], + "18889": [], + "19011": [], + "19224": [], + "19527": [], + "19600": [], + "19845": [], + "20001": [], + "20041": [], + "20073": [], + "20729": [ + "https://faucet.callisto.network/" + ], + "20736": [], + "20765": [], + "21004": [ + "https://play.google.com/store/apps/details?id=net.c4ei.fps2" + ], + "21133": [ + "https://t.me/c4eiAirdrop" + ], + "21223": [], + "21224": [ + "https://faucet.dcpay.io" + ], + "21337": [], + "21816": [], + "21912": [], + "22023": [], + "22040": [], + "22222": [], + "22324": [ + "https://faucet.goldxchain.io" + ], + "22776": [], + "23006": [ + "https://faucet.antofy.io" + ], + "23118": [ + "https://faucet.opside.network" + ], + "23294": [], + "23295": [], + "23451": [], + "23452": [], + "23888": [], + "24484": [], + "24734": [], + "25186": [], + "25839": [ + "https://faucet.alveytestnet.com" + ], + "25888": [], + "25925": [ + "https://faucet.bitkubchain.com" + ], + "26026": [ + "https://testnet.faucet.ferrumnetwork.io" + ], + "26600": [], + "26863": [ + "http://faucet.oasischain.io" + ], + "27181": [], + "27483": [], + "27827": [], + "28516": [], + "28518": [], + "28528": [], + "28882": [ + "https://www.l2faucet.com/boba" + ], + "29112": [], + "29536": [ + "https://faucet.kaichain.net" + ], + "29548": [], + "30067": [ + "https://piecenetwork.com/faucet" + ], + "30088": [], + "30103": [], + "30730": [], + "30731": [], + "30732": [], + "31102": [], + "31223": [], + "31224": [ + "https://faucet.cloudtx.finance" + ], + "31337": [], + "31414": [ + "https://faucet.evokescan.org" + ], + "31753": [], + "31754": [ + "https://xchainfaucet.net" + ], + "32001": [], + "32382": [], + "32520": [], + "32659": [], + "32769": [], + "32990": [ + "https://dev-wallet.zilliqa.com/faucet?network=isolated_server" + ], + "33033": [], + "33101": [ + "https://dev-wallet.zilliqa.com/faucet?network=testnet" + ], + "33133": [], + "33210": [], + "33333": [], + "33385": [ + "https://faucet.devnet.zilliqa.com/" + ], + "33469": [ + "https://faucet.zq2-devnet.zilliqa.com" + ], + "33979": [], + "34443": [], + "35011": [], + "35441": [], + "35443": [], + "38400": [], + "38401": [ + "https://robin-faucet.rangersprotocol.com" + ], + "39656": [], + "39797": [], + "39815": [], + "41500": [], + "42069": [], + "42072": [], + "42161": [], + "42170": [], + "42220": [], + "42261": [ + "https://faucet.testnet.oasis.io/" + ], + "42262": [], + "42355": [], + "42766": [], + "42793": [], + "42801": [], + "42888": [], + "43110": [ + "http://athfaucet.ava.network//?address=${ADDRESS}" + ], + "43111": [], + "43113": [ + "https://faucet.avax-test.network/" + ], + "43114": [], + "43851": [], + "44444": [], + "44445": [], + "44787": [ + "https://celo.org/developers/faucet", + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" + ], + "45000": [], + "45454": [], + "45510": [ + "https://faucet.deelance.com" + ], + "46688": [], + "47805": [], + "48795": [], + "48899": [], + "49049": [], + "49088": [], + "49321": [], + "49797": [], + "50001": [], + "50005": [], + "50006": [], + "50021": [], + "51178": [], + "51712": [ + "https://faucet.sardisnetwork.com" + ], + "52014": [], + "53277": [], + "53302": [ + "https://sepoliafaucet.com" + ], + "53457": [], + "53935": [], + "54211": [ + "https://testedge2.haqq.network" + ], + "54321": [], + "54555": [ + "https://photonchain.io/airdrop" + ], + "55004": [], + "55555": [ + "http://kururu.finance/faucet?chainId=55555" + ], + "55556": [ + "http://kururu.finance/faucet?chainId=55556" + ], + "56026": [], + "56288": [], + "56400": [], + "56789": [ + "https://nova-faucet.velo.org" + ], + "56797": [], + "57000": [ + "https://rollux.id/faucetapp" + ], + "57451": [], + "58008": [], + "59140": [ + "https://faucetlink.to/goerli" + ], + "59141": [], + "59144": [], + "59971": [], + "60000": [ + "https://www.thinkiumdev.net/faucet" + ], + "60001": [ + "https://www.thinkiumdev.net/faucet" + ], + "60002": [ + "https://www.thinkiumdev.net/faucet" + ], + "60103": [ + "https://www.thinkiumdev.net/faucet" + ], + "60808": [], + "61406": [], + "61800": [], + "61803": [ + "http://faucet.etica-stats.org/" + ], + "61916": [], + "62049": [], + "62050": [], + "62298": [ + "https://citrea.xyz/bridge" + ], + "62320": [ + "https://docs.google.com/forms/d/e/1FAIpQLSdfr1BwUTYepVmmvfVUDRCwALejZ-TUva2YujNpvrEmPAX2pg/viewform", + "https://cauldron.pretoriaresearchlab.io/baklava-faucet" + ], + "62621": [], + "62831": [ + "https://faucet.avax.network/?subnet=plyr" + ], + "63000": [], + "63001": [ + "https://faucet.tst.ecredits.com" + ], + "65450": [], + "66988": [], + "67588": [], + "68770": [], + "69420": [ + "https://faucet.condrieu.ethdevops.io" + ], + "70000": [], + "70001": [], + "70002": [], + "70103": [], + "70700": [], + "71111": [], + "71393": [ + "https://faucet.nervos.org/" + ], + "71401": [ + "https://testnet.bridge.godwoken.io" + ], + "71402": [], + "72778": [], + "72992": [], + "73114": [], + "73115": [], + "73799": [ + "https://voltafaucet.energyweb.org" + ], + "73927": [], + "75000": [], + "75512": [], + "75513": [], + "77001": [], + "77238": [ + "https://faucet.foundryscan.org" + ], + "77612": [ + "https://faucet.vention.network" + ], + "77777": [], + "78110": [], + "78281": [], + "78430": [], + "78431": [], + "78432": [], + "78600": [ + "https://faucet.vanarchain.com" + ], + "79879": [ + "https://faucet.goldsmartchain.com" + ], + "80001": [ + "https://faucet.polygon.technology/" + ], + "80002": [ + "https://faucet.polygon.technology/" + ], + "80084": [ + "https://bartio.faucet.berachain.com" + ], + "80085": [ + "https://artio.faucet.berachain.com" + ], + "80096": [], + "81041": [], + "81341": [], + "81342": [], + "81343": [], + "81351": [], + "81352": [], + "81353": [], + "81361": [], + "81362": [], + "81363": [], + "81457": [], + "81720": [], + "82459": [], + "83872": [], + "84531": [ + "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" + ], + "84532": [], + "84886": [], + "85449": [], + "88002": [ + "https://proteusfaucet.nautchain.xyz" + ], + "88559": [], + "88817": [], + "88819": [], + "88882": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" + ], + "88888": [ + "https://spicy-faucet.chiliz.com", + "https://tatum.io/faucets/chiliz" + ], + "90001": [], + "90210": [ + "https://faucet.beverlyhills.ethdevops.io" + ], + "90354": [ + "https://www.campnetwork.xyz/faucet" + ], + "91002": [ + "https://faucet.eclipse.builders" + ], + "91120": [], + "91715": [], + "92001": [ + "https://faucet.lambda.top" + ], + "93572": [ + "https://claim.liquidlayer.network" + ], + "96970": [ + "https://mantis.switch.ch/faucet", + "https://mantis.kore-technologies.ch/faucet", + "https://mantis.phoenix-systems.io/faucet", + "https://mantis.block-spirit.ch/faucet" + ], + "97531": [], + "97970": [ + "https://faucet.optimusz7.com" + ], + "98881": [], + "99099": [ + "https://faucet.eliberty.ngo" + ], + "99998": [], + "99999": [], + "100000": [], + "100001": [], + "100002": [], + "100003": [], + "100004": [], + "100005": [], + "100006": [], + "100007": [], + "100008": [], + "100009": [], + "100010": [ + "https://faucet.vecha.in" + ], + "100011": [], + "101010": [], + "102031": [], + "103090": [], + "103454": [], + "104566": [], + "105105": [], + "108801": [], + "110000": [], + "110001": [], + "110002": [], + "110003": [], + "110004": [], + "110005": [], + "110006": [], + "110007": [], + "110008": [], + "110011": [], + "111000": [], + "111111": [], + "111188": [], + "112358": [], + "119139": [], + "123456": [], + "128123": [ + "https://faucet.etherlink.com" + ], + "131313": [ + "https://faucet.dioneprotocol.com/" + ], + "131419": [], + "132902": [ + "https://info.form.network/faucet" + ], + "141319": [], + "142857": [], + "161212": [], + "165279": [], + "167000": [], + "167008": [], + "167009": [], + "188710": [], + "188881": [ + "https://faucet.condor.systems" + ], + "192940": [], + "200000": [], + "200101": [], + "200202": [], + "200625": [], + "200810": [ + "https://www.bitlayer.org/faucet" + ], + "200901": [], + "201018": [], + "201030": [ + "https://faucet.alaya.network/faucet/?id=f93426c0887f11eb83b900163e06151c" + ], + "201804": [], + "202020": [], + "202212": [], + "202401": [], + "202624": [], + "204005": [], + "205205": [ + "https://auroria.faucet.stratisevm.com" + ], + "210049": [], + "210425": [], + "220315": [], + "221230": [], + "221231": [ + "http://faucet.reapchain.com" + ], + "222222": [], + "222555": [], + "222666": [ + "https://faucet.deeplnetwork.org" + ], + "224168": [], + "224422": [], + "224433": [], + "230315": [ + "https://testnet.hashkeychain/faucet" + ], + "234666": [], + "240515": [], + "246529": [], + "246785": [], + "247253": [], + "256256": [], + "262371": [ + "https://faucet.eclatscan.com" + ], + "266256": [], + "271271": [ + "https://faucet.egonscan.com" + ], + "281121": [], + "282828": [], + "309075": [], + "313313": [], + "314159": [ + "https://faucet.calibration.fildev.network/" + ], + "322202": [], + "323213": [ + "https://faucet.bloomgenesis.com" + ], + "330844": [ + "https://faucet.tscscan.com" + ], + "333313": [], + "333331": [], + "333333": [], + "333666": [ + "https://apps-test.adigium.com/faucet" + ], + "333777": [ + "https://apps-test.adigium.com/faucet" + ], + "333888": [ + "https://faucet.polis.tech" + ], + "333999": [ + "https://faucet.polis.tech" + ], + "336655": [ + "https://faucet-testnet.uniport.network" + ], + "336666": [], + "355110": [], + "355113": [ + "https://bitfinity.network/faucet" + ], + "360890": [], + "363636": [], + "373737": [], + "381931": [], + "381932": [], + "404040": [ + "https://faucet.tipboxcoin.net" + ], + "413413": [], + "420420": [], + "420666": [], + "420692": [], + "421611": [ + "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" + ], + "421613": [], + "421614": [], + "424242": [], + "431140": [], + "432201": [ + "https://faucet.avax.network/?subnet=dexalot" + ], + "432204": [], + "444444": [], + "444900": [ + "https://faucet.weelink.gw002.oneitfarm.com" + ], + "471100": [], + "473861": [], + "474142": [], + "504441": [], + "512512": [ + "https://dev.caduceus.foundation/testNetwork" + ], + "513100": [], + "526916": [], + "534351": [], + "534352": [], + "534849": [ + "https://faucet.shinarium.org" + ], + "535037": [], + "552981": [ + "https://faucet.oneworldchain.org" + ], + "555555": [ + "https://bridge-testnet.pentagon.games" + ], + "555666": [], + "622277": [], + "622463": [], + "641230": [], + "651940": [], + "656476": [], + "660279": [], + "666666": [ + "https://vpioneerfaucet.visionscan.org" + ], + "666888": [ + "https://testnet-faucet.helachain.com" + ], + "686868": [ + "https://faucet.wondollars.org" + ], + "696969": [ + "https://docs.galadriel.com/faucet" + ], + "710420": [], + "713715": [ + "https://sei-faucet.nima.enterprises", + "https://sei-evm.faucetme.pro" + ], + "721529": [], + "743111": [], + "751230": [ + "https://faucet.bearnetwork.net" + ], + "761412": [], + "764984": [], + "767368": [], + "776877": [], + "800001": [], + "808080": [], + "810180": [], + "810181": [], + "810182": [], + "820522": [], + "827431": [], + "839320": [ + "https://faucet.prmscan.org" + ], + "846000": [], + "855456": [], + "879151": [], + "888882": [], + "888888": [], + "900000": [], + "910000": [ + "https://faucet.posichain.org/" + ], + "912559": [ + "https://faucet.evm.dusk-3.devnet.astria.org/" + ], + "920000": [ + "https://faucet.posichain.org/" + ], + "920001": [ + "https://faucet.posichain.org/" + ], + "923018": [ + "https://faucet-testnet.fncy.world" + ], + "955081": [], + "955305": [], + "978657": [ + "https://portal.treasure.lol/faucet" + ], + "984122": [], + "984123": [], + "988207": [], + "998899": [ + "https://faucet.chaingames.io" + ], + "999999": [], + "1100789": [], + "1127469": [], + "1261120": [], + "1313114": [], + "1313500": [], + "1337702": [ + "http://fauceth.komputing.org?chain=1337702&address=${ADDRESS}", + "https://faucet.kintsugi.themerge.dev" + ], + "1337802": [ + "https://faucet.kiln.themerge.dev", + "https://kiln-faucet.pk910.de", + "https://kilnfaucet.com" + ], + "1337803": [ + "https://faucet.zhejiang.ethpandaops.io", + "https://zhejiang-faucet.pk910.de" + ], + "1398243": [], + "1612127": [], + "1637450": [], + "1731313": [], + "2021398": [], + "2099156": [], + "2206132": [ + "https://devnet2faucet.platon.network/faucet" + ], + "2611555": [], + "3132023": [], + "3141592": [ + "https://faucet.butterfly.fildev.network" + ], + "3397901": [], + "3441005": [], + "3441006": [], + "4000003": [], + "4281033": [], + "5112023": [], + "5167003": [], + "5167004": [], + "5201420": [], + "5318008": [ + "https://dev.reactive.network/docs/kopli-testnet#faucet" + ], + "5555555": [], + "5555558": [], + "6038361": [], + "6666665": [], + "6666666": [], + "7225878": [], + "7355310": [], + "7668378": [ + "https://faucet.qom.one" + ], + "7762959": [], + "7777777": [], + "8007736": [], + "8008135": [ + "https://get-helium.fhenix.zone" + ], + "8080808": [], + "8601152": [ + "https://faucet.testnet8.waterfall.network" + ], + "8794598": [], + "8888881": [], + "8888888": [], + "9322252": [], + "9322253": [], + "10067275": [], + "10101010": [ + "https://faucet.soverun.com" + ], + "10241025": [], + "11155111": [ + "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" + ], + "11155420": [ + "https://app.optimism.io/faucet" + ], + "13068200": [ + "https://faucet.coti.io" + ], + "13371337": [], + "14288640": [], + "16658437": [], + "17000920": [], + "18289463": [], + "20180427": [], + "20180430": [], + "20181205": [], + "20201022": [], + "20240324": [], + "20241133": [], + "20482050": [], + "22052002": [], + "27082017": [ + "https://faucet.exlscan.com" + ], + "27082022": [], + "28122024": [], + "28945486": [], + "29032022": [], + "31415926": [], + "35855456": [], + "37084624": [ + "https://www.sfuelstation.com/" + ], + "39916801": [], + "43214913": [], + "61717561": [ + "https://aquacha.in/faucet" + ], + "65010002": [ + "https://faucet.autonity.org/" + ], + "65100002": [], + "68840142": [ + "https://faucet.triangleplatform.com/frame/testnet" + ], + "77787778": [], + "88888888": [], + "94204209": [], + "99415706": [ + "https://faucet.joys.digital/" + ], + "108160679": [], + "111557560": [], + "123420111": [], + "161221135": [], + "168587773": [ + "https://faucet.quicknode.com/blast/sepolia" + ], + "192837465": [], + "222000222": [], + "245022926": [ + "https://neonfaucet.org" + ], + "245022934": [], + "278611351": [ + "https://faucet.razorscan.io/" + ], + "311752642": [], + "328527624": [], + "333000333": [], + "356256156": [], + "486217935": [], + "666666666": [], + "888888888": [], + "889910245": [ + "https://faucet.ptcscan.io/" + ], + "889910246": [], + "974399131": [ + "https://www.sfuelstation.com/" + ], + "999999999": [], + "1020352220": [ + "https://www.sfuelstation.com/" + ], + "1122334455": [], + "1146703430": [], + "1273227453": [ + "https://dashboard.humanprotocol.org/faucet" + ], + "1313161554": [], + "1313161555": [], + "1313161556": [], + "1313161560": [], + "1350216234": [ + "https://sfuel.skale.network/" + ], + "1351057110": [ + "https://sfuel.skale.network/staging/chaos" + ], + "1380012617": [], + "1380996178": [], + "1444673419": [ + "https://www.sfuelstation.com/" + ], + "1482601649": [ + "https://sfuel.skale.network/" + ], + "1564830818": [ + "https://sfuel.dirtroad.dev" + ], + "1666600000": [], + "1666600001": [], + "1666700000": [ + "https://faucet.pops.one" + ], + "1666700001": [ + "https://faucet.pops.one" + ], + "1666900000": [], + "1666900001": [], + "1802203764": [], + "1918988905": [], + "2021121117": [], + "2046399126": [ + "https://ruby.exchange/faucet.html", + "https://sfuel.mylilius.com/" + ], + "3125659152": [], + "4216137055": [ + "https://frankenstein-faucet.oneledger.network" + ], + "11297108109": [], + "11297108099": [], + "28872323069": [], + "37714555429": [], + "88153591557": [], + "107107114116": [], + "111222333444": [], + "197710212030": [], + "197710212031": [], + "202402181627": [], + "383414847825": [ + "https://faucet.zeniq.net/" + ], + "666301171999": [], + "6022140761023": [], + "2713017997578000": [], + "2716446429837000": [] +}; + +export const NETWORK_CURRENCIES = { + "1": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2": { + "name": "Expanse Network Ether", + "symbol": "EXP", + "decimals": 18 + }, + "3": { + "name": "Ropsten Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4": { + "name": "Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "7": { + "name": "ThaiChain Ether", + "symbol": "TCH", + "decimals": 18 + }, + "8": { + "name": "Ubiq Ether", + "symbol": "UBQ", + "decimals": 18 + }, + "9": { + "name": "Ubiq Testnet Ether", + "symbol": "TUBQ", + "decimals": 18 + }, + "10": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "11": { + "name": "Metadium Mainnet Ether", + "symbol": "META", + "decimals": 18 + }, + "12": { + "name": "Metadium Testnet Ether", + "symbol": "KAL", + "decimals": 18 + }, + "13": { + "name": "Staging Diodes", + "symbol": "sDIODE", + "decimals": 18 + }, + "14": { + "name": "Flare", + "symbol": "FLR", + "decimals": 18 + }, + "15": { + "name": "Diodes", + "symbol": "DIODE", + "decimals": 18 + }, + "16": { + "name": "Coston Flare", + "symbol": "CFLR", + "decimals": 18 + }, + "17": { + "name": "Thaifi Ether", + "symbol": "TFI", + "decimals": 18 + }, + "18": { + "name": "ThunderCore Testnet Token", + "symbol": "TST", + "decimals": 18 + }, + "19": { + "name": "Songbird", + "symbol": "SGB", + "decimals": 18 + }, + "20": { + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 + }, + "21": { + "name": "Elastos", + "symbol": "tELA", + "decimals": 18 + }, + "22": { + "name": "Elastos", + "symbol": "ELA", + "decimals": 18 + }, + "23": { + "name": "Elastos", + "symbol": "tELA", + "decimals": 18 + }, + "24": { + "name": "KardiaChain", + "symbol": "KAI", + "decimals": 18 + }, + "25": { + "name": "Cronos", + "symbol": "CRO", + "decimals": 18 + }, + "26": { + "name": "L1 testcoin", + "symbol": "L1test", + "decimals": 18 + }, + "27": { + "name": "SHIBA INU COIN", + "symbol": "SHIB", + "decimals": 18 + }, + "29": { + "name": "L1 coin", + "symbol": "L1", + "decimals": 18 + }, + "30": { + "name": "Smart Bitcoin", + "symbol": "RBTC", + "decimals": 18 + }, + "31": { + "name": "Testnet Smart Bitcoin", + "symbol": "tRBTC", + "decimals": 18 + }, + "32": { + "name": "GoodData Testnet Ether", + "symbol": "GooD", + "decimals": 18 + }, + "33": { + "name": "GoodData Mainnet Ether", + "symbol": "GooD", + "decimals": 18 + }, + "34": { + "name": "SecureChain", + "symbol": "SCAI", + "decimals": 18 + }, + "35": { + "name": "TBWG Ether", + "symbol": "TBG", + "decimals": 18 + }, + "36": { + "name": "Dxchain", + "symbol": "DX", + "decimals": 18 + }, + "37": { + "name": "XPLA", + "symbol": "XPLA", + "decimals": 18 + }, + "38": { + "name": "Valorbit", + "symbol": "VAL", + "decimals": 18 + }, + "39": { + "name": "Unicorn Ultra", + "symbol": "U2U", + "decimals": 18 + }, + "40": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "41": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "42": { + "name": "LUKSO", + "symbol": "LYX", + "decimals": 18 + }, + "43": { + "name": "Pangolin Network Native Token", + "symbol": "PRING", + "decimals": 18 + }, + "44": { + "name": "Crab Network Native Token", + "symbol": "CRAB", + "decimals": 18 + }, + "45": { + "name": "Pangoro Network Native Token", + "symbol": "ORING", + "decimals": 18 + }, + "46": { + "name": "Darwinia Network Native Token", + "symbol": "RING", + "decimals": 18 + }, + "47": { + "name": "ACRIA", + "symbol": "ACRIA", + "decimals": 18 + }, + "48": { + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 + }, + "49": { + "name": "Ennothem", + "symbol": "ETMP", + "decimals": 18 + }, + "50": { + "name": "XinFin", + "symbol": "XDC", + "decimals": 18 + }, + "51": { + "name": "XinFin", + "symbol": "TXDC", + "decimals": 18 + }, + "52": { + "name": "CoinEx Chain Native Token", + "symbol": "cet", + "decimals": 18 + }, + "53": { + "name": "CoinEx Chain Test Native Token", + "symbol": "cett", + "decimals": 18 + }, + "54": { + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 + }, + "55": { + "name": "Zyx", + "symbol": "ZYX", + "decimals": 18 + }, + "56": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "57": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "58": { + "name": "ONG", + "symbol": "ONG", + "decimals": 18 + }, + "60": { + "name": "GoChain Ether", + "symbol": "GO", + "decimals": 18 + }, + "61": { + "name": "Ether", + "symbol": "ETC", + "decimals": 18 + }, + "63": { + "name": "Mordor Ether", + "symbol": "METC", + "decimals": 18 + }, + "64": { + "name": "Ellaism Ether", + "symbol": "ELLA", + "decimals": 18 + }, + "65": { + "name": "OKExChain Global Utility Token in testnet", + "symbol": "OKT", + "decimals": 18 + }, + "66": { + "name": "OKXChain Global Utility Token", + "symbol": "OKT", + "decimals": 18 + }, + "67": { + "name": "DBChain Testnet", + "symbol": "DBM", + "decimals": 18 + }, + "68": { + "name": "SoterOne Mainnet Ether", + "symbol": "SOTER", + "decimals": 18 + }, + "69": { + "name": "Kovan Ether", + "symbol": "ETH", + "decimals": 18 + }, + "70": { + "name": "Hoo Smart Chain Native Token", + "symbol": "HOO", + "decimals": 18 + }, + "71": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "72": { + "name": "DxChain Testnet", + "symbol": "DX", + "decimals": 18 + }, + "73": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "74": { + "name": "EIDI", + "symbol": "EIDI", + "decimals": 18 + }, + "75": { + "name": "Decimal", + "symbol": "DEL", + "decimals": 18 + }, + "76": { + "name": "Mix Ether", + "symbol": "MIX", + "decimals": 18 + }, + "77": { + "name": "POA Sokol Ether", + "symbol": "SPOA", + "decimals": 18 + }, + "78": { + "name": "Primus Ether", + "symbol": "PETH", + "decimals": 18 + }, + "79": { + "name": "ZENITH", + "symbol": "ZENITH", + "decimals": 18 + }, + "80": { + "name": "RNA", + "symbol": "RNA", + "decimals": 18 + }, + "81": { + "name": "Japan Open Chain Token", + "symbol": "JOC", + "decimals": 18 + }, + "82": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "83": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "84": { + "name": "XRP", + "symbol": "XRP", + "decimals": 18 + }, + "85": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "86": { + "name": "GateToken", + "symbol": "GT", + "decimals": 18 + }, + "87": { + "name": "Supernova", + "symbol": "SNT", + "decimals": 18 + }, + "88": { + "name": "Viction", + "symbol": "VIC", + "decimals": 18 + }, + "89": { + "name": "Viction", + "symbol": "VIC", + "decimals": 18 + }, + "90": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "91": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "92": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "93": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "94": { + "name": "BCTS", + "symbol": "BCTS", + "decimals": 18 + }, + "95": { + "name": "CADL", + "symbol": "CADL", + "decimals": 18 + }, + "96": { + "name": "Bitkub Coin", + "symbol": "KUB", + "decimals": 18 + }, + "97": { + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "98": { + "name": "SIX evm token", + "symbol": "SIX", + "decimals": 18 + }, + "99": { + "name": "POA Network Core Ether", + "symbol": "POA", + "decimals": 18 + }, + "100": { + "name": "xDAI", + "symbol": "XDAI", + "decimals": 18 + }, + "101": { + "name": "EtherInc Ether", + "symbol": "ETI", + "decimals": 18 + }, + "102": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "103": { + "name": "Worldland", + "symbol": "WLC", + "decimals": 18 + }, + "104": { + "name": "Kaiba Testnet Token", + "symbol": "tKAIBA", + "decimals": 18 + }, + "105": { + "name": "Web3Games", + "symbol": "W3G", + "decimals": 18 + }, + "106": { + "name": "Velas", + "symbol": "VLX", + "decimals": 18 + }, + "107": { + "name": "Nebula X", + "symbol": "NBX", + "decimals": 18 + }, + "108": { + "name": "ThunderCore Token", + "symbol": "TT", + "decimals": 18 + }, + "109": { + "name": "BONE Shibarium", + "symbol": "BONE", + "decimals": 18 + }, + "110": { + "name": "Proton", + "symbol": "XPR", + "decimals": 4 + }, + "111": { + "name": "EtherLite", + "symbol": "ETL", + "decimals": 18 + }, + "112": { + "name": "Gas IDR", + "symbol": "GIDR", + "decimals": 18 + }, + "113": { + "name": "Dehvo", + "symbol": "Deh", + "decimals": 18 + }, + "114": { + "name": "Coston2 Flare", + "symbol": "C2FLR", + "decimals": 18 + }, + "117": { + "name": "Uptick", + "symbol": "UPTICK", + "decimals": 18 + }, + "118": { + "name": "Arcology Coin", + "symbol": "Acol", + "decimals": 18 + }, + "119": { + "name": "NULS", + "symbol": "NULS", + "decimals": 18 + }, + "120": { + "name": "NULS", + "symbol": "NULS", + "decimals": 18 + }, + "121": { + "name": "Realchain", + "symbol": "REAL", + "decimals": 18 + }, + "122": { + "name": "Fuse", + "symbol": "FUSE", + "decimals": 18 + }, + "123": { + "name": "Spark", + "symbol": "SPARK", + "decimals": 18 + }, + "124": { + "name": "Decentralized Web Utility", + "symbol": "DWU", + "decimals": 18 + }, + "125": { + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 + }, + "126": { + "name": "OYchain Token", + "symbol": "OY", + "decimals": 18 + }, + "127": { + "name": "Factory 127 Token", + "symbol": "FETH", + "decimals": 18 + }, + "128": { + "name": "Huobi ECO Chain Native Token", + "symbol": "HT", + "decimals": 18 + }, + "129": { + "name": "INOV8", + "symbol": "INOV8", + "decimals": 18 + }, + "131": { + "name": "Engram Tokio Testnet", + "symbol": "tGRAM", + "decimals": 18 + }, + "132": { + "name": "Namefi Coin", + "symbol": "NFIC", + "decimals": 18 + }, + "133": { + "name": "HashKey EcoPoints", + "symbol": "HSK", + "decimals": 18 + }, + "134": { + "name": "xRLC", + "symbol": "xRLC", + "decimals": 18 + }, + "135": { + "name": "Alyx Testnet Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "136": { + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 + }, + "137": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "138": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "139": { + "name": "WoopCoin", + "symbol": "WOOC", + "decimals": 18 + }, + "140": { + "name": "Eternal", + "symbol": "Eter", + "decimals": 18 + }, + "141": { + "name": "Belly", + "symbol": "BELLY", + "decimals": 18 + }, + "142": { + "name": "Prodax", + "symbol": "DAX", + "decimals": 18 + }, + "144": { + "name": "PHI", + "symbol": "Φ", + "decimals": 18 + }, + "145": { + "name": "SoraETH", + "symbol": "SETH", + "decimals": 18 + }, + "147": { + "name": "Flag", + "symbol": "FLAG", + "decimals": 18 + }, + "148": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "150": { + "name": "SIX testnet evm token", + "symbol": "tSIX", + "decimals": 18 + }, + "151": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "152": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "153": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "154": { + "name": "Redbelly Network Coin", + "symbol": "RBNT", + "decimals": 18 + }, + "155": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "156": { + "name": "OEBlock", + "symbol": "OEB", + "decimals": 18 + }, + "157": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "158": { + "name": "Roburna", + "symbol": "RBA", + "decimals": 18 + }, + "159": { + "name": "Roburna", + "symbol": "RBAT", + "decimals": 18 + }, + "160": { + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 + }, + "161": { + "name": "Armonia Multichain Native Token", + "symbol": "AMAX", + "decimals": 18 + }, + "162": { + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 + }, + "163": { + "name": "Lightstreams PHT", + "symbol": "PHT", + "decimals": 18 + }, + "164": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "166": { + "name": "Omni", + "symbol": "OMNI", + "decimals": 18 + }, + "167": { + "name": "ATOSHI", + "symbol": "ATOS", + "decimals": 18 + }, + "168": { + "name": "AIOZ", + "symbol": "AIOZ", + "decimals": 18 + }, + "169": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "170": { + "name": "HOO", + "symbol": "HOO", + "decimals": 18 + }, + "172": { + "name": "Latam-Blockchain Resil Test Native Token", + "symbol": "usd", + "decimals": 18 + }, + "176": { + "name": "DC Native Token", + "symbol": "DCT", + "decimals": 18 + }, + "180": { + "name": "AME", + "symbol": "AME", + "decimals": 18 + }, + "181": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "185": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "186": { + "name": "Seele", + "symbol": "Seele", + "decimals": 18 + }, + "188": { + "name": "BTM", + "symbol": "BTM", + "decimals": 18 + }, + "189": { + "name": "BTM", + "symbol": "BTM", + "decimals": 18 + }, + "191": { + "name": "FFG", + "symbol": "FFG", + "decimals": 18 + }, + "193": { + "name": "Crypto Emergency", + "symbol": "CEM", + "decimals": 18 + }, + "195": { + "name": "X Layer Global Utility Token in testnet", + "symbol": "OKB", + "decimals": 18 + }, + "196": { + "name": "X Layer Global Utility Token", + "symbol": "OKB", + "decimals": 18 + }, + "197": { + "name": "Neutrinos", + "symbol": "NEUTR", + "decimals": 18 + }, + "198": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "199": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "200": { + "name": "xDAI", + "symbol": "xDAI", + "decimals": 18 + }, + "201": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "202": { + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 + }, + "204": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "206": { + "name": "VinuChain", + "symbol": "VC", + "decimals": 18 + }, + "207": { + "name": "VinuChain", + "symbol": "VC", + "decimals": 18 + }, + "208": { + "name": "Notes", + "symbol": "utx", + "decimals": 18 + }, + "210": { + "name": "Bitnet", + "symbol": "BTN", + "decimals": 18 + }, + "211": { + "name": "Freight Trust Native", + "symbol": "0xF", + "decimals": 18 + }, + "212": { + "name": "Makalu MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "213": { + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 + }, + "214": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "217": { + "name": "MCD", + "symbol": "MCD", + "decimals": 18 + }, + "220": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "223": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "224": { + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 + }, + "225": { + "name": "LA", + "symbol": "LA", + "decimals": 18 + }, + "226": { + "name": "TLA", + "symbol": "TLA", + "decimals": 18 + }, + "228": { + "name": "FHE", + "symbol": "FHE", + "decimals": 18 + }, + "230": { + "name": "SwapDEX", + "symbol": "SDX", + "decimals": 18 + }, + "234": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "236": { + "name": "Deamchain Native Token", + "symbol": "DEAM", + "decimals": 18 + }, + "242": { + "name": "Plinga", + "symbol": "PLINGA", + "decimals": 18 + }, + "246": { + "name": "Energy Web Token", + "symbol": "EWT", + "decimals": 18 + }, + "248": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "250": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "252": { + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 + }, + "255": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "256": { + "name": "Huobi ECO Chain Test Native Token", + "symbol": "htt", + "decimals": 18 + }, + "258": { + "name": "Setheum", + "symbol": "SETM", + "decimals": 18 + }, + "259": { + "name": "Neonlink Native Token", + "symbol": "NEON", + "decimals": 18 + }, + "262": { + "name": "Suren", + "symbol": "SRN", + "decimals": 18 + }, + "266": { + "name": "Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "267": { + "name": "Testnet Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "268": { + "name": "Devnet Ankr", + "symbol": "ANKR", + "decimals": 18 + }, + "269": { + "name": "High Performance Blockchain Ether", + "symbol": "HPB", + "decimals": 18 + }, + "271": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "274": { + "name": "LaCoin", + "symbol": "LAC", + "decimals": 18 + }, + "278": { + "name": "FAI", + "symbol": "FAI", + "decimals": 18 + }, + "279": { + "name": "BPX", + "symbol": "BPX", + "decimals": 18 + }, + "282": { + "name": "Cronos zkEVM Test Coin", + "symbol": "zkTCRO", + "decimals": 18 + }, + "288": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "291": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "295": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "296": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "297": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "298": { + "name": "hbar", + "symbol": "HBAR", + "decimals": 18 + }, + "300": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "302": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "303": { + "name": "Neurochain", + "symbol": "tNCN", + "decimals": 18 + }, + "305": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "307": { + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 + }, + "308": { + "name": "Furtheon", + "symbol": "FTH", + "decimals": 18 + }, + "309": { + "name": "Wyzth", + "symbol": "WYZ", + "decimals": 18 + }, + "311": { + "name": "OMAX COIN", + "symbol": "OMAX", + "decimals": 18 + }, + "313": { + "name": "Neurochain", + "symbol": "NCN", + "decimals": 18 + }, + "314": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "321": { + "name": "KuCoin Token", + "symbol": "KCS", + "decimals": 18 + }, + "322": { + "name": "KuCoin Testnet Token", + "symbol": "tKCS", + "decimals": 18 + }, + "323": { + "name": "Cosvm", + "symbol": "CVM", + "decimals": 18 + }, + "324": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "333": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "335": { + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 + }, + "336": { + "name": "Shiden", + "symbol": "SDN", + "decimals": 18 + }, + "338": { + "name": "Cronos Test Coin", + "symbol": "TCRO", + "decimals": 18 + }, + "345": { + "name": "TAS", + "symbol": "TAS", + "decimals": 18 + }, + "361": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "363": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "364": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "365": { + "name": "Theta Fuel", + "symbol": "TFUEL", + "decimals": 18 + }, + "369": { + "name": "Pulse", + "symbol": "PLS", + "decimals": 18 + }, + "371": { + "name": "tCNT", + "symbol": "tCNT", + "decimals": 18 + }, + "380": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "381": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "385": { + "name": "Lisinski Ether", + "symbol": "LISINS", + "decimals": 18 + }, + "395": { + "name": "CADL", + "symbol": "CADL", + "decimals": 18 + }, + "397": { + "name": "NEAR", + "symbol": "NEAR", + "decimals": 18 + }, + "398": { + "name": "Testnet NEAR", + "symbol": "NEAR", + "decimals": 18 + }, + "399": { + "name": "USNT", + "symbol": "USNT", + "decimals": 18 + }, + "400": { + "name": "HyperonChain", + "symbol": "HPN", + "decimals": 18 + }, + "401": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "404": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "411": { + "name": "Pepe", + "symbol": "PEPE", + "decimals": 18 + }, + "416": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "418": { + "name": "Test LaCoin", + "symbol": "TLA", + "decimals": 18 + }, + "420": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "422": { + "name": "Viridis Token", + "symbol": "VRD", + "decimals": 18 + }, + "424": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "427": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "428": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "434": { + "name": "Boyaa mainnet native coin", + "symbol": "BYC", + "decimals": 18 + }, + "443": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "444": { + "name": "Sepolia ETH", + "symbol": "ETH", + "decimals": 18 + }, + "456": { + "name": "ARZIO", + "symbol": "AZO", + "decimals": 18 + }, + "462": { + "name": "Areon", + "symbol": "TAREA", + "decimals": 18 + }, + "463": { + "name": "Areon", + "symbol": "AREA", + "decimals": 18 + }, + "499": { + "name": "Rupaya", + "symbol": "RUPX", + "decimals": 18 + }, + "500": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "501": { + "name": "Camino", + "symbol": "CAM", + "decimals": 18 + }, + "510": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "512": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "513": { + "name": "Acuteangle Native Token", + "symbol": "AAC", + "decimals": 18 + }, + "516": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "520": { + "name": "XT Smart Chain Native Token", + "symbol": "XT", + "decimals": 18 + }, + "529": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "530": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "534": { + "name": "CANDLE", + "symbol": "CNDL", + "decimals": 18 + }, + "537": { + "name": "BSC", + "symbol": "BNB", + "decimals": 18 + }, + "542": { + "name": "PAW", + "symbol": "PAW", + "decimals": 18 + }, + "545": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "555": { + "name": "CLASS COIN", + "symbol": "CLASS", + "decimals": 18 + }, + "558": { + "name": "Tao", + "symbol": "TAO", + "decimals": 18 + }, + "568": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "570": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "571": { + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 + }, + "579": { + "name": "Filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "592": { + "name": "Astar", + "symbol": "ASTR", + "decimals": 18 + }, + "595": { + "name": "Acala Mandala Token", + "symbol": "mACA", + "decimals": 18 + }, + "596": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "597": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "600": { + "name": "Meshnyan Testnet Native Token", + "symbol": "MESHT", + "decimals": 18 + }, + "601": { + "name": "VINE", + "symbol": "VNE", + "decimals": 18 + }, + "612": { + "name": "EIOB", + "symbol": "EIOB", + "decimals": 18 + }, + "614": { + "name": "GLQ", + "symbol": "GLQ", + "decimals": 18 + }, + "634": { + "name": "USDC", + "symbol": "USDC", + "decimals": 18 + }, + "646": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "647": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "648": { + "name": "Endurance Chain Native Token", + "symbol": "ACE", + "decimals": 18 + }, + "653": { + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 + }, + "654": { + "name": "kalis", + "symbol": "KALIS", + "decimals": 18 + }, + "662": { + "name": "ulc", + "symbol": "ULC", + "decimals": 18 + }, + "666": { + "name": "Pixie Chain Testnet Native Token", + "symbol": "PCTT", + "decimals": 18 + }, + "667": { + "name": "LAOS", + "symbol": "LAOS", + "decimals": 18 + }, + "668": { + "name": "JuncaChain Native Token", + "symbol": "JGC", + "decimals": 18 + }, + "669": { + "name": "JuncaChain Testnet Native Token", + "symbol": "JGCT", + "decimals": 18 + }, + "686": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "690": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "700": { + "name": "Social", + "symbol": "SNS", + "decimals": 18 + }, + "701": { + "name": "Koi Network Native Token", + "symbol": "KRING", + "decimals": 18 + }, + "707": { + "name": "BCS Token", + "symbol": "BCS", + "decimals": 18 + }, + "708": { + "name": "BCS Testnet Token", + "symbol": "tBCS", + "decimals": 18 + }, + "710": { + "name": "Fury", + "symbol": "FURY", + "decimals": 18 + }, + "713": { + "name": "VRC Chain", + "symbol": "VRC", + "decimals": 18 + }, + "719": { + "name": "BONE", + "symbol": "BONE", + "decimals": 18 + }, + "721": { + "name": "Lycan", + "symbol": "LYC", + "decimals": 18 + }, + "727": { + "name": "Blucrates", + "symbol": "BLU", + "decimals": 18 + }, + "730": { + "name": "Lovely", + "symbol": "LOVELY", + "decimals": 18 + }, + "741": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "742": { + "name": "Script", + "symbol": "SPAY", + "decimals": 18 + }, + "747": { + "name": "FLOW", + "symbol": "FLOW", + "decimals": 18 + }, + "766": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "776": { + "name": "Openchain Testnet", + "symbol": "TOPC", + "decimals": 18 + }, + "777": { + "name": "cTH", + "symbol": "cTH", + "decimals": 18 + }, + "786": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "787": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "788": { + "name": "Aerochain Testnet", + "symbol": "TAero", + "decimals": 18 + }, + "789": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "799": { + "name": "Test Rupaya", + "symbol": "TRUPX", + "decimals": 18 + }, + "800": { + "name": "LUCID", + "symbol": "LUCID", + "decimals": 18 + }, + "803": { + "name": "Haicoin", + "symbol": "HAIC", + "decimals": 18 + }, + "808": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "810": { + "name": "Haven1", + "symbol": "H1", + "decimals": 18 + }, + "813": { + "name": "Qitmeer", + "symbol": "MEER", + "decimals": 18 + }, + "814": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "818": { + "name": "BeOne Chain Mainnet", + "symbol": "BOC", + "decimals": 18 + }, + "820": { + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 + }, + "822": { + "name": "Bitcoin", + "symbol": "rBTC", + "decimals": 18 + }, + "831": { + "name": "CDT", + "symbol": "CDT", + "decimals": 18 + }, + "841": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "842": { + "name": "Tara", + "symbol": "TARA", + "decimals": 18 + }, + "859": { + "name": "Zeeth Token", + "symbol": "ZTH", + "decimals": 18 + }, + "868": { + "name": "FST", + "symbol": "FST", + "decimals": 18 + }, + "876": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "877": { + "name": "Dexit network", + "symbol": "DXT", + "decimals": 18 + }, + "880": { + "name": "AMBROS", + "symbol": "AMBROS", + "decimals": 18 + }, + "888": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "898": { + "name": "MAXI GAS", + "symbol": "MGAS", + "decimals": 18 + }, + "899": { + "name": "MAXI GAS", + "symbol": "MGAS", + "decimals": 18 + }, + "900": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "901": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "902": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "903": { + "name": "Garizon", + "symbol": "GAR", + "decimals": 18 + }, + "909": { + "name": "Portal Fantasy Token", + "symbol": "PFT", + "decimals": 18 + }, + "910": { + "name": "DecentraBone", + "symbol": "DBONE", + "decimals": 18 + }, + "911": { + "name": "TBTC", + "symbol": "TBTC", + "decimals": 18 + }, + "917": { + "name": "Firechain", + "symbol": "FIRE", + "decimals": 18 + }, + "919": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "927": { + "name": "Yidark", + "symbol": "YDK", + "decimals": 18 + }, + "943": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + }, + "956": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "957": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "963": { + "name": "BTCC", + "symbol": "BTCC", + "decimals": 18 + }, + "969": { + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 + }, + "970": { + "name": "Oort", + "symbol": "OORT", + "decimals": 18 + }, + "971": { + "name": "Oort", + "symbol": "CCN", + "decimals": 18 + }, + "972": { + "name": "Oort", + "symbol": "CCNA", + "decimals": 18 + }, + "977": { + "name": "Nepal Blockchain Network Ether", + "symbol": "YETI", + "decimals": 18 + }, + "979": { + "name": "Settled EthXY Token", + "symbol": "SEXY", + "decimals": 18 + }, + "980": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "985": { + "name": "Memo", + "symbol": "CMEMO", + "decimals": 18 + }, + "989": { + "name": "TOP", + "symbol": "TOP", + "decimals": 6 + }, + "990": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "997": { + "name": "5ire Token", + "symbol": "5ire", + "decimals": 18 + }, + "998": { + "name": "Lucky", + "symbol": "L99", + "decimals": 18 + }, + "999": { + "name": "Wancoin", + "symbol": "WAN", + "decimals": 18 + }, + "1000": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "1001": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "1003": { + "name": "Tectum", + "symbol": "TET", + "decimals": 8 + }, + "1004": { + "name": "T-EKTA", + "symbol": "T-EKTA", + "decimals": 18 + }, + "1007": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "1008": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "1009": { + "name": "JNFTC", + "symbol": "JNFTC", + "decimals": 18 + }, + "1010": { + "name": "Evrice", + "symbol": "EVC", + "decimals": 18 + }, + "1011": { + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 + }, + "1012": { + "name": "Newton", + "symbol": "NEW", + "decimals": 18 + }, + "1022": { + "name": "Sakura", + "symbol": "SKU", + "decimals": 18 + }, + "1023": { + "name": "Clover", + "symbol": "CLV", + "decimals": 18 + }, + "1024": { + "name": "CLV", + "symbol": "CLV", + "decimals": 18 + }, + "1028": { + "name": "BitTorrent", + "symbol": "BTT", + "decimals": 18 + }, + "1030": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "1031": { + "name": "PRX", + "symbol": "PRX", + "decimals": 18 + }, + "1038": { + "name": "tBRO", + "symbol": "tBRO", + "decimals": 18 + }, + "1039": { + "name": "BRO", + "symbol": "BRO", + "decimals": 18 + }, + "1073": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "1075": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "1079": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "1080": { + "name": "MINTARA", + "symbol": "MNTR", + "decimals": 18 + }, + "1088": { + "name": "Metis", + "symbol": "METIS", + "decimals": 18 + }, + "1089": { + "name": "HEART", + "symbol": "HEART", + "decimals": 18 + }, + "1099": { + "name": "MOAC", + "symbol": "mc", + "decimals": 18 + }, + "1100": { + "name": "DYM", + "symbol": "DYM", + "decimals": 18 + }, + "1101": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1107": { + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 + }, + "1108": { + "name": "BLXQ", + "symbol": "BLXQ", + "decimals": 18 + }, + "1111": { + "name": "WEMIX", + "symbol": "WEMIX", + "decimals": 18 + }, + "1112": { + "name": "TestnetWEMIX", + "symbol": "tWEMIX", + "decimals": 18 + }, + "1113": { + "name": "BSquared Token", + "symbol": "B2", + "decimals": 18 + }, + "1115": { + "name": "Core Blockchain Testnet Native Token", + "symbol": "tCORE", + "decimals": 18 + }, + "1116": { + "name": "Core Blockchain Native Token", + "symbol": "CORE", + "decimals": 18 + }, + "1117": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "1123": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "1130": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "1131": { + "name": "DeFiChain", + "symbol": "DFI", + "decimals": 18 + }, + "1133": { + "name": "DeFiChain Token", + "symbol": "DFI", + "decimals": 18 + }, + "1135": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1138": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "1139": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "1140": { + "name": "MathChain", + "symbol": "MATH", + "decimals": 18 + }, + "1147": { + "name": "Flag Testnet", + "symbol": "FLAG", + "decimals": 18 + }, + "1149": { + "name": "Plex Native Token", + "symbol": "PLEX", + "decimals": 18 + }, + "1170": { + "name": "Origin", + "symbol": "UOC", + "decimals": 18 + }, + "1177": { + "name": "Smart Host Teknoloji TESTNET", + "symbol": "tSHT", + "decimals": 18 + }, + "1188": { + "name": "ClubMos", + "symbol": "MOS", + "decimals": 18 + }, + "1197": { + "name": "Iora", + "symbol": "IORA", + "decimals": 18 + }, + "1200": { + "name": "CuckooAI", + "symbol": "CAI", + "decimals": 18 + }, + "1201": { + "name": "AVIS", + "symbol": "AVIS", + "decimals": 18 + }, + "1202": { + "name": "World Trade Token", + "symbol": "WTT", + "decimals": 18 + }, + "1209": { + "name": "SaitaBlockChain(SBC)", + "symbol": "STC", + "decimals": 18 + }, + "1210": { + "name": "CuckooAI", + "symbol": "CAI", + "decimals": 18 + }, + "1213": { + "name": "Popcat", + "symbol": "POP", + "decimals": 18 + }, + "1214": { + "name": "EnterCoin", + "symbol": "ENTER", + "decimals": 18 + }, + "1221": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1225": { + "name": "Hybrid", + "symbol": "HYB", + "decimals": 18 + }, + "1229": { + "name": "Exzo", + "symbol": "XZO", + "decimals": 18 + }, + "1230": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "1231": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "1234": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "1235": { + "name": "ITX", + "symbol": "ITX", + "decimals": 18 + }, + "1243": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "1244": { + "name": "ARC", + "symbol": "ARC", + "decimals": 18 + }, + "1246": { + "name": "OMCOIN", + "symbol": "OM", + "decimals": 18 + }, + "1248": { + "name": "Dogether", + "symbol": "dogeth", + "decimals": 18 + }, + "1252": { + "name": "Crazy Internet Coin", + "symbol": "CICT", + "decimals": 18 + }, + "1280": { + "name": "HALO", + "symbol": "HO", + "decimals": 18 + }, + "1284": { + "name": "Glimmer", + "symbol": "GLMR", + "decimals": 18 + }, + "1285": { + "name": "Moonriver", + "symbol": "MOVR", + "decimals": 18 + }, + "1287": { + "name": "Dev", + "symbol": "DEV", + "decimals": 18 + }, + "1288": { + "name": "Rocs", + "symbol": "ROC", + "decimals": 18 + }, + "1291": { + "name": "Swisstronik", + "symbol": "SWTR", + "decimals": 18 + }, + "1311": { + "name": "Dos Native Token", + "symbol": "DOS", + "decimals": 18 + }, + "1314": { + "name": "Alyx Chain Native Token", + "symbol": "ALYX", + "decimals": 18 + }, + "1319": { + "name": "AIA Mainnet", + "symbol": "AIA", + "decimals": 18 + }, + "1320": { + "name": "AIA Testnet", + "symbol": "AIA", + "decimals": 18 + }, + "1328": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "1329": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "1337": { + "name": "Geth Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1338": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "1339": { + "name": "LAVA", + "symbol": "LAVA", + "decimals": 18 + }, + "1343": { + "name": "BLITZ GAS", + "symbol": "BGAS", + "decimals": 18 + }, + "1353": { + "name": "Crazy Internet Coin", + "symbol": "CIC", + "decimals": 18 + }, + "1369": { + "name": "Zakumi Chain Native Token", + "symbol": "ZAFIC", + "decimals": 18 + }, + "1370": { + "name": "Rama", + "symbol": "RAMA", + "decimals": 18 + }, + "1377": { + "name": "Rama", + "symbol": "tRAMA", + "decimals": 18 + }, + "1379": { + "name": "Kalar", + "symbol": "KLC", + "decimals": 18 + }, + "1388": { + "name": "SINSO", + "symbol": "SINSO", + "decimals": 18 + }, + "1392": { + "name": "Joseon Mun", + "symbol": "JSM", + "decimals": 18 + }, + "1414": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1433": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "1440": { + "name": "LAS", + "symbol": "LAS", + "decimals": 18 + }, + "1442": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1452": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "1453": { + "name": "Metatime Coin", + "symbol": "MTC", + "decimals": 18 + }, + "1455": { + "name": "CTEX", + "symbol": "CTEX", + "decimals": 18 + }, + "1490": { + "name": "Vitruveo Coin", + "symbol": "VTRU", + "decimals": 18 + }, + "1499": { + "name": "iDos Games Coin", + "symbol": "IGC", + "decimals": 18 + }, + "1501": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "1506": { + "name": "KSX", + "symbol": "KSX", + "decimals": 18 + }, + "1507": { + "name": "KSX", + "symbol": "KSX", + "decimals": 18 + }, + "1515": { + "name": "Beagle", + "symbol": "BG", + "decimals": 18 + }, + "1559": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "1617": { + "name": "Ethereum Inscription", + "symbol": "ETINS", + "decimals": 18 + }, + "1618": { + "name": "Catecoin", + "symbol": "CATE", + "decimals": 18 + }, + "1620": { + "name": "Atheios Ether", + "symbol": "ATH", + "decimals": 18 + }, + "1625": { + "name": "Gravity", + "symbol": "G.", + "decimals": 18 + }, + "1657": { + "name": "Bitcoin Asset", + "symbol": "BTA", + "decimals": 18 + }, + "1662": { + "name": "Licoin", + "symbol": "LCN", + "decimals": 18 + }, + "1663": { + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 + }, + "1686": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1687": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1688": { + "name": "LUDAN", + "symbol": "LUDAN", + "decimals": 18 + }, + "1701": { + "name": "ANY", + "symbol": "ANY", + "decimals": 18 + }, + "1707": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "1708": { + "name": "Jinda", + "symbol": "JINDA", + "decimals": 18 + }, + "1717": { + "name": "Doric Native Token", + "symbol": "DRC", + "decimals": 18 + }, + "1718": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "1729": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1740": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "1750": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "1773": { + "name": "Grams", + "symbol": "GRAMS", + "decimals": 18 + }, + "1777": { + "name": "GANG", + "symbol": "GANG", + "decimals": 18 + }, + "1789": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1804": { + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 + }, + "1807": { + "name": "Rabbit Analog Test Chain Native Token ", + "symbol": "rAna", + "decimals": 18 + }, + "1818": { + "name": "Cube Chain Native Token", + "symbol": "CUBE", + "decimals": 18 + }, + "1819": { + "name": "Cube Chain Test Native Token", + "symbol": "CUBET", + "decimals": 18 + }, + "1821": { + "name": "RUBY Smart Chain Native Token", + "symbol": "RUBY", + "decimals": 18 + }, + "1856": { + "name": "Teslafunds Ether", + "symbol": "TSF", + "decimals": 18 + }, + "1875": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "1881": { + "name": "Gitshock Cartenz", + "symbol": "tGTFX", + "decimals": 18 + }, + "1890": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "1891": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "1898": { + "name": "BOYACoin", + "symbol": "BOY", + "decimals": 18 + }, + "1904": { + "name": "SCN", + "symbol": "SCN", + "decimals": 18 + }, + "1907": { + "name": "Bitci", + "symbol": "BITCI", + "decimals": 18 + }, + "1908": { + "name": "Test Bitci", + "symbol": "TBITCI", + "decimals": 18 + }, + "1909": { + "name": "Merkle", + "symbol": "MRK", + "decimals": 18 + }, + "1911": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1912": { + "name": "RUBY Smart Chain Native Token", + "symbol": "tRUBY", + "decimals": 18 + }, + "1918": { + "name": "UPBEth", + "symbol": "UPBEth", + "decimals": 18 + }, + "1945": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "1951": { + "name": "DOINX", + "symbol": "DOINX", + "decimals": 18 + }, + "1953": { + "name": "Selendra", + "symbol": "tSEL", + "decimals": 18 + }, + "1954": { + "name": "Dexilla Native Token", + "symbol": "DXZ", + "decimals": 18 + }, + "1956": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "1961": { + "name": "Selendra", + "symbol": "SEL", + "decimals": 18 + }, + "1967": { + "name": "Eleanor Metacoin", + "symbol": "MTC", + "decimals": 18 + }, + "1969": { + "name": "Super Chain Native Token", + "symbol": "TSCS", + "decimals": 18 + }, + "1970": { + "name": "Super Chain Native Token", + "symbol": "SCS", + "decimals": 18 + }, + "1971": { + "name": "ATLR", + "symbol": "ATLR", + "decimals": 18 + }, + "1972": { + "name": "RedeCoin", + "symbol": "REDEV2", + "decimals": 18 + }, + "1975": { + "name": "ONUS", + "symbol": "ONUS", + "decimals": 18 + }, + "1984": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "1985": { + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 + }, + "1986": { + "name": "Tushy Token", + "symbol": "TUSHY", + "decimals": 18 + }, + "1987": { + "name": "EtherGem Ether", + "symbol": "EGEM", + "decimals": 18 + }, + "1992": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "1994": { + "name": "EKTA", + "symbol": "EKTA", + "decimals": 18 + }, + "1995": { + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 + }, + "1996": { + "name": "DMT", + "symbol": "DMT", + "decimals": 18 + }, + "1997": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 + }, + "1998": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 + }, + "2000": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "2001": { + "name": "milkAda", + "symbol": "mADA", + "decimals": 18 + }, + "2002": { + "name": "milkALGO", + "symbol": "mALGO", + "decimals": 18 + }, + "2004": { + "name": "MetaLink", + "symbol": "MTL", + "decimals": 18 + }, + "2008": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "2009": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "2013": { + "name": "GAS", + "symbol": "GAS", + "decimals": 18 + }, + "2014": { + "name": "NOW Coin", + "symbol": "NOW", + "decimals": 18 + }, + "2016": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "2017": { + "name": "Telcoin", + "symbol": "TEL", + "decimals": 18 + }, + "2018": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "2019": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "2020": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "2021": { + "name": "Edgeware", + "symbol": "EDG", + "decimals": 18 + }, + "2022": { + "name": "Testnet EDG", + "symbol": "tEDG", + "decimals": 18 + }, + "2023": { + "name": "test-Shuffle", + "symbol": "tSFL", + "decimals": 18 + }, + "2024": { + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 + }, + "2025": { + "name": "Rangers Protocol Gas", + "symbol": "RPG", + "decimals": 18 + }, + "2026": { + "name": "Edgeless Wrapped Eth", + "symbol": "EwEth", + "decimals": 18 + }, + "2031": { + "name": "Centrifuge", + "symbol": "CFG", + "decimals": 18 + }, + "2032": { + "name": "Catalyst CFG", + "symbol": "NCFG", + "decimals": 18 + }, + "2035": { + "name": "Phala", + "symbol": "PHA", + "decimals": 18 + }, + "2037": { + "name": "Shrapgas", + "symbol": "SHRAP", + "decimals": 18 + }, + "2038": { + "name": "SHRAPG", + "symbol": "SHRAPG", + "decimals": 18 + }, + "2039": { + "name": "TZERO", + "symbol": "TZERO", + "decimals": 18 + }, + "2040": { + "name": "VANRY", + "symbol": "VANRY", + "decimals": 18 + }, + "2043": { + "name": "NeuroWeb Token", + "symbol": "NEURO", + "decimals": 12 + }, + "2044": { + "name": "Shrapnel Gas Token", + "symbol": "SHRAPG", + "decimals": 18 + }, + "2045": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "2047": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "2048": { + "name": "STOS", + "symbol": "STOS", + "decimals": 18 + }, + "2049": { + "name": "Movo Smart Chain", + "symbol": "MOVO", + "decimals": 18 + }, + "2077": { + "name": "Qkacoin", + "symbol": "QKA", + "decimals": 18 + }, + "2088": { + "name": "Altair", + "symbol": "AIR", + "decimals": 18 + }, + "2100": { + "name": "Ecoball Coin", + "symbol": "ECO", + "decimals": 18 + }, + "2101": { + "name": "Espuma Coin", + "symbol": "ECO", + "decimals": 18 + }, + "2109": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "2112": { + "name": "UCASH", + "symbol": "UCASH", + "decimals": 18 + }, + "2121": { + "name": "Catena", + "symbol": "CMCX", + "decimals": 18 + }, + "2122": { + "name": "METAD", + "symbol": "METAD", + "decimals": 18 + }, + "2124": { + "name": "Metaunit", + "symbol": "MEU", + "decimals": 18 + }, + "2136": { + "name": "Dolarz", + "symbol": "Dolarz", + "decimals": 18 + }, + "2137": { + "name": "USD Coin", + "symbol": "USDC", + "decimals": 18 + }, + "2138": { + "name": "testEther", + "symbol": "tETH", + "decimals": 18 + }, + "2140": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "2141": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "2151": { + "name": "BOSAGORA", + "symbol": "BOA", + "decimals": 18 + }, + "2152": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "2153": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "2154": { + "name": "FRA", + "symbol": "FRA", + "decimals": 18 + }, + "2199": { + "name": "Sama Token", + "symbol": "SAMA", + "decimals": 18 + }, + "2202": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "2203": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "2213": { + "name": "EVA", + "symbol": "EVA", + "decimals": 18 + }, + "2221": { + "name": "TKava", + "symbol": "TKAVA", + "decimals": 18 + }, + "2222": { + "name": "Kava", + "symbol": "KAVA", + "decimals": 18 + }, + "2223": { + "name": "VNDT", + "symbol": "VNDT", + "decimals": 18 + }, + "2241": { + "name": "Krest", + "symbol": "KRST", + "decimals": 18 + }, + "2300": { + "name": "BOMB Token", + "symbol": "BOMB", + "decimals": 18 + }, + "2306": { + "name": "Ebro", + "symbol": "ebro", + "decimals": 18 + }, + "2309": { + "name": "Arev", + "symbol": "ARÉV", + "decimals": 18 + }, + "2323": { + "name": "SMA", + "symbol": "tSMA", + "decimals": 18 + }, + "2330": { + "name": "Altcoin", + "symbol": "ALT", + "decimals": 18 + }, + "2331": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "2332": { + "name": "Soma Native Token", + "symbol": "SMA", + "decimals": 18 + }, + "2340": { + "name": "Atla", + "symbol": "ATLA", + "decimals": 18 + }, + "2342": { + "name": "Omnia", + "symbol": "OMNIA", + "decimals": 18 + }, + "2355": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2358": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2370": { + "name": "Nexis", + "symbol": "NZT", + "decimals": 18 + }, + "2399": { + "name": "BOMB Token", + "symbol": "tBOMB", + "decimals": 18 + }, + "2400": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "2410": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2415": { + "name": "XODEX Native Token", + "symbol": "XODEX", + "decimals": 18 + }, + "2425": { + "name": "King Of Legends", + "symbol": "KOL", + "decimals": 18 + }, + "2442": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2458": { + "name": "Hybrid Chain Native Token", + "symbol": "tHRC", + "decimals": 18 + }, + "2468": { + "name": "Hybrid Chain Native Token", + "symbol": "HRC", + "decimals": 18 + }, + "2484": { + "name": "Unicorn Ultra Nebulas Testnet", + "symbol": "U2U", + "decimals": 18 + }, + "2522": { + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 + }, + "2525": { + "name": "Injective", + "symbol": "INJ", + "decimals": 18 + }, + "2559": { + "name": "KorthoChain", + "symbol": "KTO", + "decimals": 11 + }, + "2569": { + "name": "TechPay", + "symbol": "TPC", + "decimals": 18 + }, + "2606": { + "name": "Climate awaReness Coin", + "symbol": "CRC", + "decimals": 18 + }, + "2611": { + "name": "Redlight Coin", + "symbol": "REDLC", + "decimals": 18 + }, + "2612": { + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 + }, + "2613": { + "name": "EZChain", + "symbol": "EZC", + "decimals": 18 + }, + "2625": { + "name": "WhiteBIT Coin", + "symbol": "WBT", + "decimals": 18 + }, + "2648": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "2649": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "2662": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2710": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2718": { + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 + }, + "2730": { + "name": "tXR", + "symbol": "tXR", + "decimals": 18 + }, + "2731": { + "name": "TIME", + "symbol": "TIME", + "decimals": 18 + }, + "2748": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2777": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2810": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2907": { + "name": "Elux Chain", + "symbol": "ELUX", + "decimals": 18 + }, + "2911": { + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 + }, + "2941": { + "name": "Xenon Testnet", + "symbol": "tXEN", + "decimals": 18 + }, + "2999": { + "name": "BTY", + "symbol": "BTY", + "decimals": 18 + }, + "3000": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "3001": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "3003": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "3011": { + "name": "3ULL", + "symbol": "3ULL", + "decimals": 18 + }, + "3031": { + "name": "Orlando", + "symbol": "ORL", + "decimals": 18 + }, + "3033": { + "name": "Rebus", + "symbol": "REBUS", + "decimals": 18 + }, + "3068": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "3073": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "3100": { + "name": "IMMU", + "symbol": "IMMU", + "decimals": 18 + }, + "3102": { + "name": "VFI", + "symbol": "VFI", + "decimals": 18 + }, + "3109": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "3110": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "3269": { + "name": "Dubxcoin mainnet", + "symbol": "DUBX", + "decimals": 18 + }, + "3270": { + "name": "Dubxcoin testnet", + "symbol": "TDUBX", + "decimals": 18 + }, + "3306": { + "name": "Debounce Network", + "symbol": "DB", + "decimals": 18 + }, + "3331": { + "name": "ZCore", + "symbol": "ZCR", + "decimals": 18 + }, + "3333": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "3334": { + "name": "Web3Q", + "symbol": "W3Q", + "decimals": 18 + }, + "3335": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "3400": { + "name": "PRB", + "symbol": "PRB", + "decimals": 18 + }, + "3424": { + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 + }, + "3434": { + "name": "SCAI", + "symbol": "SCAI", + "decimals": 18 + }, + "3456": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "3490": { + "name": "GTC", + "symbol": "GTC", + "decimals": 18 + }, + "3500": { + "name": "PRB", + "symbol": "PRB", + "decimals": 18 + }, + "3501": { + "name": "JFIN Coin", + "symbol": "JFIN", + "decimals": 18 + }, + "3601": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "3602": { + "name": "pando-token", + "symbol": "PTX", + "decimals": 18 + }, + "3630": { + "name": "Tycooncoin", + "symbol": "TYCO", + "decimals": 18 + }, + "3636": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "3637": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "3639": { + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 + }, + "3645": { + "name": "ISLAMICOIN", + "symbol": "ISLAMI", + "decimals": 18 + }, + "3666": { + "name": "J", + "symbol": "J", + "decimals": 18 + }, + "3690": { + "name": "Bittex", + "symbol": "BTX", + "decimals": 18 + }, + "3693": { + "name": "Empire", + "symbol": "EMPIRE", + "decimals": 18 + }, + "3698": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "3699": { + "name": "SenjePowers", + "symbol": "SPC", + "decimals": 18 + }, + "3737": { + "name": "Crossbell Token", + "symbol": "CSB", + "decimals": 18 + }, + "3776": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "3797": { + "name": "AlveyCoin", + "symbol": "ALV", + "decimals": 18 + }, + "3799": { + "name": "Testnet Tangle Network Token", + "symbol": "tTNT", + "decimals": 18 + }, + "3885": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "3888": { + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 + }, + "3889": { + "name": "KalyCoin", + "symbol": "KLC", + "decimals": 18 + }, + "3912": { + "name": "DRAC", + "symbol": "DRAC", + "decimals": 18 + }, + "3939": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "3966": { + "name": "DYNO Token", + "symbol": "DYNO", + "decimals": 18 + }, + "3967": { + "name": "DYNO Token", + "symbol": "tDYNO", + "decimals": 18 + }, + "3993": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "3999": { + "name": "YCC", + "symbol": "YCC", + "decimals": 18 + }, + "4000": { + "name": "OZONE", + "symbol": "OZO", + "decimals": 18 + }, + "4001": { + "name": "Peperium Chain Testnet", + "symbol": "PERIUM", + "decimals": 18 + }, + "4002": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "4003": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "4040": { + "name": "Carbonium", + "symbol": "tCBR", + "decimals": 18 + }, + "4048": { + "name": "GP Token", + "symbol": "GP", + "decimals": 18 + }, + "4058": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "4061": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4062": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4078": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4080": { + "name": "Tobe Coin", + "symbol": "TBC", + "decimals": 18 + }, + "4090": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "4096": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "4099": { + "name": "BNI", + "symbol": "$BNI", + "decimals": 18 + }, + "4102": { + "name": "testAIOZ", + "symbol": "AIOZ", + "decimals": 18 + }, + "4139": { + "name": "HEART", + "symbol": "HEART", + "decimals": 18 + }, + "4141": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "4157": { + "name": "XFI", + "symbol": "XFI", + "decimals": 18 + }, + "4181": { + "name": "PHI", + "symbol": "Φ", + "decimals": 18 + }, + "4200": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "4201": { + "name": "TestLYX", + "symbol": "LYXt", + "decimals": 18 + }, + "4202": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4242": { + "name": "Nexi", + "symbol": "NEXI", + "decimals": 18 + }, + "4243": { + "name": "NexiV2", + "symbol": "NEXI", + "decimals": 18 + }, + "4337": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "4400": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "4444": { + "name": "Htmlcoin", + "symbol": "HTML", + "decimals": 8 + }, + "4460": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4488": { + "name": "Hydra", + "symbol": "HYDRA", + "decimals": 18 + }, + "4544": { + "name": "Emoney Network", + "symbol": "EMYC", + "decimals": 18 + }, + "4613": { + "name": "VERY", + "symbol": "VERY", + "decimals": 18 + }, + "4653": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4689": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "4690": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "4759": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "4777": { + "name": "BlackFort Testnet Token", + "symbol": "TBXN", + "decimals": 18 + }, + "4893": { + "name": "Globel Chain", + "symbol": "GC", + "decimals": 18 + }, + "4918": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "4919": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "4999": { + "name": "BlackFort Token", + "symbol": "BXN", + "decimals": 18 + }, + "5000": { + "name": "Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "5001": { + "name": "Testnet Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "5002": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "5003": { + "name": "Sepolia Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "5005": { + "name": "UNIT", + "symbol": "UNIT", + "decimals": 18 + }, + "5039": { + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 + }, + "5040": { + "name": "ONIGIRI", + "symbol": "ONGR", + "decimals": 18 + }, + "5051": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5100": { + "name": "S-Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5101": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5102": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "5103": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "5104": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "5105": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "5106": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "5112": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5165": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "5169": { + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 + }, + "5177": { + "name": "TLChain Network", + "symbol": "TLC", + "decimals": 18 + }, + "5197": { + "name": "EraSwap", + "symbol": "ES", + "decimals": 18 + }, + "5234": { + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 + }, + "5315": { + "name": "UZMI", + "symbol": "UZMI", + "decimals": 18 + }, + "5317": { + "name": "TestBSC", + "symbol": "tBNB", + "decimals": 18 + }, + "5321": { + "name": "ITX", + "symbol": "ITX", + "decimals": 18 + }, + "5353": { + "name": "Tritanium Native Token", + "symbol": "tTRN", + "decimals": 18 + }, + "5372": { + "name": "Setl", + "symbol": "SETL", + "decimals": 18 + }, + "5424": { + "name": "EDEXA", + "symbol": "EDX", + "decimals": 18 + }, + "5439": { + "name": "EGAX", + "symbol": "EGAX", + "decimals": 18 + }, + "5522": { + "name": "VEX EVM TESTNET", + "symbol": "VEX", + "decimals": 18 + }, + "5551": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5555": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "5611": { + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "5615": { + "name": "tARC", + "symbol": "tARC", + "decimals": 18 + }, + "5616": { + "name": "Test Arct", + "symbol": "tARCT", + "decimals": 18 + }, + "5656": { + "name": "QIE Blockchain", + "symbol": "QIE", + "decimals": 18 + }, + "5675": { + "name": "Test Filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "5678": { + "name": "TANGO", + "symbol": "TANGO", + "decimals": 18 + }, + "5700": { + "name": "Testnet Syscoin", + "symbol": "tSYS", + "decimals": 18 + }, + "5729": { + "name": "Hik Token", + "symbol": "HIK", + "decimals": 18 + }, + "5758": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "5777": { + "name": "Ganache Test Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5845": { + "name": "Tangle", + "symbol": "TNT", + "decimals": 18 + }, + "5851": { + "name": "ONG", + "symbol": "ONG", + "decimals": 18 + }, + "5869": { + "name": "Rubid", + "symbol": "RBD", + "decimals": 18 + }, + "6000": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "6001": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "6065": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "6066": { + "name": "TRES", + "symbol": "TRES", + "decimals": 18 + }, + "6102": { + "name": "CC", + "symbol": "tCC", + "decimals": 18 + }, + "6118": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "6119": { + "name": "UPTN", + "symbol": "UPTN", + "decimals": 18 + }, + "6321": { + "name": "test-EAura", + "symbol": "eAura", + "decimals": 18 + }, + "6322": { + "name": "Aura", + "symbol": "AURA", + "decimals": 18 + }, + "6363": { + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 + }, + "6502": { + "name": "Peerpay", + "symbol": "P2P", + "decimals": 18 + }, + "6552": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "6565": { + "name": "FOX Native Token", + "symbol": "tFOX", + "decimals": 18 + }, + "6626": { + "name": "Pixie Chain Native Token", + "symbol": "PIX", + "decimals": 18 + }, + "6660": { + "name": "Latest", + "symbol": "LATEST", + "decimals": 18 + }, + "6661": { + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 + }, + "6666": { + "name": "Cybria", + "symbol": "CYBA", + "decimals": 18 + }, + "6688": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "6699": { + "name": "OX", + "symbol": "OX", + "decimals": 18 + }, + "6701": { + "name": "PAXB", + "symbol": "PAXB", + "decimals": 18 + }, + "6779": { + "name": "compverse", + "symbol": "CPV", + "decimals": 18 + }, + "6789": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "6868": { + "name": "POOLS Native Token", + "symbol": "POOLS", + "decimals": 18 + }, + "6969": { + "name": "Tomb", + "symbol": "TOMB", + "decimals": 18 + }, + "6999": { + "name": "PSC", + "symbol": "PSC", + "decimals": 18 + }, + "7000": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "7001": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "7007": { + "name": "BST Chain", + "symbol": "BSTC", + "decimals": 18 + }, + "7027": { + "name": "Ella", + "symbol": "ELLA", + "decimals": 18 + }, + "7070": { + "name": "Planq", + "symbol": "PLQ", + "decimals": 18 + }, + "7077": { + "name": "Planq", + "symbol": "tPLQ", + "decimals": 18 + }, + "7100": { + "name": "Dai Stablecoin", + "symbol": "DAI", + "decimals": 18 + }, + "7118": { + "name": "Help The Homeless Coin", + "symbol": "HTH", + "decimals": 18 + }, + "7171": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "7300": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "7331": { + "name": "KLYNTAR", + "symbol": "KLY", + "decimals": 18 + }, + "7332": { + "name": "Zencash", + "symbol": "ZEN", + "decimals": 18 + }, + "7341": { + "name": "Shyft", + "symbol": "SHYFT", + "decimals": 18 + }, + "7484": { + "name": "Raba", + "symbol": "RABA", + "decimals": 18 + }, + "7518": { + "name": "MEVerse", + "symbol": "MEV", + "decimals": 18 + }, + "7560": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "7575": { + "name": "Testnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "7576": { + "name": "ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "7668": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "7672": { + "name": "XRP", + "symbol": "XRP", + "decimals": 6 + }, + "7700": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "7701": { + "name": "Testnet Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "7771": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "7775": { + "name": "GDCC", + "symbol": "GDCC", + "decimals": 18 + }, + "7777": { + "name": "Nano Machines", + "symbol": "NMAC", + "decimals": 18 + }, + "7778": { + "name": "ORENIUM", + "symbol": "ORE", + "decimals": 18 + }, + "7798": { + "name": "USDT Testnet", + "symbol": "USDT", + "decimals": 18 + }, + "7860": { + "name": "MAAL", + "symbol": "MAAL", + "decimals": 18 + }, + "7878": { + "name": "Hazlor Test Coin", + "symbol": "TSCAS", + "decimals": 18 + }, + "7887": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "7895": { + "name": "ARD", + "symbol": "tARD", + "decimals": 18 + }, + "7923": { + "name": "Dot Blox", + "symbol": "DTBX", + "decimals": 18 + }, + "7924": { + "name": "MO", + "symbol": "MO", + "decimals": 18 + }, + "7979": { + "name": "DOS", + "symbol": "DOS", + "decimals": 18 + }, + "8000": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "8001": { + "name": "Tele", + "symbol": "TELE", + "decimals": 18 + }, + "8029": { + "name": "MDGL Token", + "symbol": "MDGLT", + "decimals": 18 + }, + "8047": { + "name": "Best Of All Time Token", + "symbol": "BOAT", + "decimals": 18 + }, + "8054": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "8080": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "8081": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "8082": { + "name": "Shardeum SHM", + "symbol": "SHM", + "decimals": 18 + }, + "8086": { + "name": "Bitcoin", + "symbol": "BTC", + "decimals": 18 + }, + "8087": { + "name": "E-Dollar", + "symbol": "USD", + "decimals": 18 + }, + "8098": { + "name": "StreamuX", + "symbol": "SmuX", + "decimals": 18 + }, + "8131": { + "name": "Qitmeer Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "8132": { + "name": "Qitmeer Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "8133": { + "name": "Qitmeer Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "8134": { + "name": "Amana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "8135": { + "name": "Flana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "8136": { + "name": "Mizana Mainnet", + "symbol": "MEER", + "decimals": 18 + }, + "8181": { + "name": "Testnet BeOne Chain", + "symbol": "tBOC", + "decimals": 18 + }, + "8192": { + "name": "TQF", + "symbol": "TQF", + "decimals": 18 + }, + "8194": { + "name": "tTQF", + "symbol": "TTQF", + "decimals": 18 + }, + "8217": { + "name": "KLAY", + "symbol": "KLAY", + "decimals": 18 + }, + "8227": { + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 + }, + "8272": { + "name": "BLOCKTON", + "symbol": "BTON", + "decimals": 18 + }, + "8285": { + "name": "Kortho Test", + "symbol": "KTO", + "decimals": 11 + }, + "8329": { + "name": "Lorenzo stBTC", + "symbol": "stBTC", + "decimals": 18 + }, + "8387": { + "name": "Functionally Universal Coin Kind", + "symbol": "FUCK", + "decimals": 18 + }, + "8453": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "8654": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "8655": { + "name": "Toki", + "symbol": "TOKI", + "decimals": 18 + }, + "8668": { + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 + }, + "8723": { + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 + }, + "8724": { + "name": "TOOL Global", + "symbol": "OLO", + "decimals": 18 + }, + "8726": { + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 + }, + "8727": { + "name": "Storagechain", + "symbol": "STOR", + "decimals": 18 + }, + "8738": { + "name": "Alph Network", + "symbol": "ALPH", + "decimals": 18 + }, + "8768": { + "name": "TMY", + "symbol": "TMY", + "decimals": 18 + }, + "8822": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "8844": { + "name": "tHydra", + "symbol": "tHYDRA", + "decimals": 18 + }, + "8848": { + "name": "MARO", + "symbol": "MARO", + "decimals": 18 + }, + "8866": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "8880": { + "name": "Unique", + "symbol": "UNQ", + "decimals": 18 + }, + "8881": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "8882": { + "name": "Opal", + "symbol": "UNQ", + "decimals": 18 + }, + "8883": { + "name": "Quartz", + "symbol": "QTZ", + "decimals": 18 + }, + "8888": { + "name": "XETA", + "symbol": "XETA", + "decimals": 18 + }, + "8889": { + "name": "VSC", + "symbol": "VSC", + "decimals": 18 + }, + "8890": { + "name": "ORENIUM", + "symbol": "tORE", + "decimals": 18 + }, + "8898": { + "name": "Mammoth Token", + "symbol": "MMT", + "decimals": 18 + }, + "8899": { + "name": "JIBCOIN", + "symbol": "JBC", + "decimals": 18 + }, + "8911": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "8912": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "8921": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "8922": { + "name": "ALG", + "symbol": "ALG", + "decimals": 18 + }, + "8989": { + "name": "Giant Mammoth Coin", + "symbol": "GMMT", + "decimals": 18 + }, + "8995": { + "name": "BERG", + "symbol": "U+25B3", + "decimals": 18 + }, + "9000": { + "name": "test-Evmos", + "symbol": "tEVMOS", + "decimals": 18 + }, + "9001": { + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 + }, + "9007": { + "name": "Shido Testnet Token", + "symbol": "SHIDO", + "decimals": 18 + }, + "9008": { + "name": "Shido Mainnet Token", + "symbol": "SHIDO", + "decimals": 18 + }, + "9012": { + "name": "BerylBit Chain Native Token", + "symbol": "BRB", + "decimals": 18 + }, + "9024": { + "name": "Nexa Testnet Token", + "symbol": "NEXB", + "decimals": 18 + }, + "9025": { + "name": "Nexa Mainnet Token", + "symbol": "NEXB", + "decimals": 18 + }, + "9100": { + "name": "GN Coin", + "symbol": "GNC", + "decimals": 18 + }, + "9223": { + "name": "Codefin", + "symbol": "COF", + "decimals": 18 + }, + "9339": { + "name": "Dogcoin", + "symbol": "DOGS", + "decimals": 18 + }, + "9393": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "9395": { + "name": "MTHN", + "symbol": "MTHN", + "decimals": 18 + }, + "9527": { + "name": "Rangers Protocol Gas", + "symbol": "tRPG", + "decimals": 18 + }, + "9528": { + "name": "QET", + "symbol": "QET", + "decimals": 18 + }, + "9559": { + "name": "Neonlink Native Token", + "symbol": "tNEON", + "decimals": 18 + }, + "9700": { + "name": "Oort", + "symbol": "OORT", + "decimals": 18 + }, + "9728": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "9768": { + "name": "MainnetZ", + "symbol": "NetZ", + "decimals": 18 + }, + "9779": { + "name": "Pepe", + "symbol": "WPEPE", + "decimals": 18 + }, + "9789": { + "name": "Tabi", + "symbol": "TABI", + "decimals": 18 + }, + "9790": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "9792": { + "name": "swth", + "symbol": "SWTH", + "decimals": 18 + }, + "9797": { + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 + }, + "9818": { + "name": "tIMP", + "symbol": "tIMP", + "decimals": 18 + }, + "9819": { + "name": "IMP", + "symbol": "IMP", + "decimals": 18 + }, + "9888": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "9898": { + "name": "Larissa", + "symbol": "LRS", + "decimals": 18 + }, + "9911": { + "name": "ESPENTO", + "symbol": "SPENT", + "decimals": 18 + }, + "9977": { + "name": "MIND Coin", + "symbol": "tMIND", + "decimals": 18 + }, + "9980": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "9981": { + "name": "V2X", + "symbol": "V2X", + "decimals": 18 + }, + "9990": { + "name": "Agung", + "symbol": "AGNG", + "decimals": 18 + }, + "9996": { + "name": "MIND Coin", + "symbol": "MIND", + "decimals": 18 + }, + "9997": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "9998": { + "name": "Ztcer", + "symbol": "ZTC", + "decimals": 5 + }, + "9999": { + "name": "MYN", + "symbol": "MYN", + "decimals": 18 + }, + "10000": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "10001": { + "name": "Bitcoin Cash Test Token", + "symbol": "BCHT", + "decimals": 18 + }, + "10024": { + "name": "Gon Token", + "symbol": "GT", + "decimals": 18 + }, + "10081": { + "name": "Japan Open Chain Testnet Token", + "symbol": "JOCT", + "decimals": 18 + }, + "10086": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "10101": { + "name": "GEN", + "symbol": "GEN", + "decimals": 18 + }, + "10200": { + "name": "Chiado xDAI", + "symbol": "XDAI", + "decimals": 18 + }, + "10201": { + "name": "Power", + "symbol": "PWR", + "decimals": 18 + }, + "10222": { + "name": "GLC", + "symbol": "GLC", + "decimals": 18 + }, + "10242": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "10243": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "10248": { + "name": "0XT", + "symbol": "0XT", + "decimals": 18 + }, + "10321": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "10324": { + "name": "TAO", + "symbol": "TAO", + "decimals": 18 + }, + "10395": { + "name": "Worldland", + "symbol": "WLC", + "decimals": 18 + }, + "10507": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "10508": { + "name": "NUM Token", + "symbol": "NUM", + "decimals": 18 + }, + "10823": { + "name": "CryptoCoinPay", + "symbol": "CCP", + "decimals": 18 + }, + "10849": { + "name": "L1", + "symbol": "L1", + "decimals": 18 + }, + "10850": { + "name": "L1 ID", + "symbol": "L1ID", + "decimals": 18 + }, + "10946": { + "name": "Quadrans Coin", + "symbol": "QDC", + "decimals": 18 + }, + "10947": { + "name": "Quadrans Testnet Coin", + "symbol": "tQDC", + "decimals": 18 + }, + "11110": { + "name": "Astra", + "symbol": "ASA", + "decimals": 18 + }, + "11111": { + "name": "WAGMI", + "symbol": "WGM", + "decimals": 18 + }, + "11115": { + "name": "test-Astra", + "symbol": "tASA", + "decimals": 18 + }, + "11119": { + "name": "HashBit Native Token", + "symbol": "HBIT", + "decimals": 18 + }, + "11221": { + "name": "Shine", + "symbol": "SC20", + "decimals": 18 + }, + "11227": { + "name": "JIRI", + "symbol": "TZW", + "decimals": 18 + }, + "11235": { + "name": "Islamic Coin", + "symbol": "ISLM", + "decimals": 18 + }, + "11437": { + "name": "Shyft Test Token", + "symbol": "SHYFTT", + "decimals": 18 + }, + "11501": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "11503": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "11612": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "11822": { + "name": "ART", + "symbol": "ART", + "decimals": 18 + }, + "11891": { + "name": "Arianee", + "symbol": "ARIA20", + "decimals": 18 + }, + "12009": { + "name": "SatoshiChain Coin", + "symbol": "SATS", + "decimals": 18 + }, + "12020": { + "name": "Aternos", + "symbol": "ATR", + "decimals": 18 + }, + "12051": { + "name": "ZERO", + "symbol": "tZERO", + "decimals": 18 + }, + "12052": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "12123": { + "name": "BRC Chain mainnet native token", + "symbol": "BRC", + "decimals": 18 + }, + "12306": { + "name": "FIBONACCI UTILITY TOKEN", + "symbol": "FIBO", + "decimals": 18 + }, + "12321": { + "name": "Blg", + "symbol": "BLG", + "decimals": 18 + }, + "12324": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "12325": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "12345": { + "name": "FITFI", + "symbol": "FITFI", + "decimals": 18 + }, + "12553": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "12715": { + "name": "Rikeza", + "symbol": "RIK", + "decimals": 18 + }, + "12781": { + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 + }, + "12890": { + "name": "Quantum Chain", + "symbol": "tQNET", + "decimals": 18 + }, + "12898": { + "name": "BTLT Token", + "symbol": "BTLT", + "decimals": 18 + }, + "13000": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "13308": { + "name": "Credit", + "symbol": "CREDIT", + "decimals": 18 + }, + "13337": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "13371": { + "name": "IMX", + "symbol": "IMX", + "decimals": 18 + }, + "13381": { + "name": "Phoenix", + "symbol": "PHX", + "decimals": 18 + }, + "13396": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "13473": { + "name": "Test IMX", + "symbol": "tIMX", + "decimals": 18 + }, + "13505": { + "name": "Sepolia Gravity", + "symbol": "G.", + "decimals": 18 + }, + "13600": { + "name": "Kronobit", + "symbol": "KNB", + "decimals": 18 + }, + "13812": { + "name": "Susono", + "symbol": "OPN", + "decimals": 18 + }, + "14000": { + "name": "ECG", + "symbol": "ECG", + "decimals": 18 + }, + "14324": { + "name": "Evolve", + "symbol": "EVO", + "decimals": 18 + }, + "14333": { + "name": "Vitruveo Test Coin", + "symbol": "tVTRU", + "decimals": 18 + }, + "14801": { + "name": "DAT", + "symbol": "DAT", + "decimals": 18 + }, + "14853": { + "name": "eHMND", + "symbol": "eHMND", + "decimals": 18 + }, + "15003": { + "name": "Dev IMX", + "symbol": "dIMX", + "decimals": 18 + }, + "15257": { + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 + }, + "15259": { + "name": "Poodl", + "symbol": "POODL", + "decimals": 18 + }, + "15551": { + "name": "LOOP", + "symbol": "LOOP", + "decimals": 18 + }, + "15555": { + "name": "Trust EVM", + "symbol": "EVM", + "decimals": 18 + }, + "15557": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "16000": { + "name": "MetaDot Token", + "symbol": "MTT", + "decimals": 18 + }, + "16001": { + "name": "MetaDot Token TestNet", + "symbol": "MTTest", + "decimals": 18 + }, + "16116": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "16507": { + "name": "Genesys", + "symbol": "GSYS", + "decimals": 18 + }, + "16688": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "16718": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "16888": { + "name": "tIvar", + "symbol": "tIVAR", + "decimals": 18 + }, + "17000": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "17069": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "17117": { + "name": "Oasys", + "symbol": "OAS", + "decimals": 18 + }, + "17171": { + "name": "G8Chain", + "symbol": "G8C", + "decimals": 18 + }, + "17172": { + "name": "Eclipse", + "symbol": "ECLP", + "decimals": 16 + }, + "17180": { + "name": "Palette Token", + "symbol": "PLT", + "decimals": 18 + }, + "17217": { + "name": "KONET", + "symbol": "KONET", + "decimals": 18 + }, + "17777": { + "name": "EOS", + "symbol": "EOS", + "decimals": 18 + }, + "18000": { + "name": "ZKST", + "symbol": "ZKST", + "decimals": 18 + }, + "18122": { + "name": "STN", + "symbol": "STN", + "decimals": 18 + }, + "18159": { + "name": "Proof Of Memes", + "symbol": "POM", + "decimals": 18 + }, + "18181": { + "name": "G8Coin", + "symbol": "G8C", + "decimals": 18 + }, + "18233": { + "name": "unreal Ether", + "symbol": "reETH", + "decimals": 18 + }, + "18686": { + "name": "MXC zkEVM Moonchain", + "symbol": "MXC", + "decimals": 18 + }, + "18888": { + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 + }, + "18889": { + "name": "Titan tkx", + "symbol": "TKX", + "decimals": 18 + }, + "19011": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "19224": { + "name": "Decentraconnect Social", + "symbol": "DCSM", + "decimals": 18 + }, + "19527": { + "name": "Magnet Network", + "symbol": "DOT", + "decimals": 18 + }, + "19600": { + "name": "LBRY Credits", + "symbol": "LBC", + "decimals": 8 + }, + "19845": { + "name": "BTCIX Network", + "symbol": "BTCIX", + "decimals": 18 + }, + "20001": { + "name": "EthereumPoW", + "symbol": "ETHW", + "decimals": 18 + }, + "20041": { + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 + }, + "20073": { + "name": "Niza Global", + "symbol": "NIZA", + "decimals": 18 + }, + "20729": { + "name": "Callisto", + "symbol": "CLO", + "decimals": 18 + }, + "20736": { + "name": "Hooked P2", + "symbol": "hP2", + "decimals": 18 + }, + "20765": { + "name": "Jono11 Token", + "symbol": "JONO", + "decimals": 18 + }, + "21004": { + "name": "C4EI", + "symbol": "C4EI", + "decimals": 18 + }, + "21133": { + "name": "AAH", + "symbol": "AAH", + "decimals": 18 + }, + "21223": { + "name": "DCP", + "symbol": "DCP", + "decimals": 18 + }, + "21224": { + "name": "DCP", + "symbol": "DCP", + "decimals": 18 + }, + "21337": { + "name": "CPAY", + "symbol": "CPAY", + "decimals": 18 + }, + "21816": { + "name": "omChain", + "symbol": "OMC", + "decimals": 18 + }, + "21912": { + "name": "Origin NFT", + "symbol": "ONF", + "decimals": 18 + }, + "22023": { + "name": "shuffle", + "symbol": "SFL", + "decimals": 18 + }, + "22040": { + "name": "Amber", + "symbol": "AMB", + "decimals": 18 + }, + "22222": { + "name": "Zebec", + "symbol": "ZBC", + "decimals": 18 + }, + "22324": { + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 + }, + "22776": { + "name": "MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "23006": { + "name": "Antofy", + "symbol": "ABN", + "decimals": 18 + }, + "23118": { + "name": "IDE", + "symbol": "IDE", + "decimals": 18 + }, + "23294": { + "name": "Sapphire Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "23295": { + "name": "Sapphire Test Rose", + "symbol": "TEST", + "decimals": 18 + }, + "23451": { + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 + }, + "23452": { + "name": "DreyerX", + "symbol": "DRX", + "decimals": 18 + }, + "23888": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "24484": { + "name": "Webchain Ether", + "symbol": "WEB", + "decimals": 18 + }, + "24734": { + "name": "MintMe.com Coin", + "symbol": "MINTME", + "decimals": 18 + }, + "25186": { + "name": "LiquidLayer", + "symbol": "LILA", + "decimals": 18 + }, + "25839": { + "name": "AlveyCoin Testnet", + "symbol": "tALV", + "decimals": 18 + }, + "25888": { + "name": "GOLDT", + "symbol": "GOLDT", + "decimals": 18 + }, + "25925": { + "name": "Bitkub Coin", + "symbol": "tKUB", + "decimals": 18 + }, + "26026": { + "name": "Ferrum", + "symbol": "tFRM", + "decimals": 18 + }, + "26600": { + "name": "Hertz", + "symbol": "HTZ", + "decimals": 18 + }, + "26863": { + "name": "OAC", + "symbol": "OAC", + "decimals": 18 + }, + "27181": { + "name": "KLAOS", + "symbol": "KLAOS", + "decimals": 18 + }, + "27483": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "27827": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "28516": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "28518": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "28528": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "28882": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "29112": { + "name": "TOPIA", + "symbol": "TOPIA", + "decimals": 18 + }, + "29536": { + "name": "KaiChain Testnet Native Token", + "symbol": "KEC", + "decimals": 18 + }, + "29548": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "30067": { + "name": "ECE", + "symbol": "ECE", + "decimals": 18 + }, + "30088": { + "name": "Miyou", + "symbol": "MY", + "decimals": 18 + }, + "30103": { + "name": "Canxium", + "symbol": "CAU", + "decimals": 18 + }, + "30730": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "30731": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "30732": { + "name": "Move", + "symbol": "MOVE", + "decimals": 18 + }, + "31102": { + "name": "Ethersocial Network Ether", + "symbol": "ESN", + "decimals": 18 + }, + "31223": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "31224": { + "name": "CloudTx", + "symbol": "CLD", + "decimals": 18 + }, + "31337": { + "name": "GoChain Coin", + "symbol": "GO", + "decimals": 18 + }, + "31414": { + "name": "MTHN Testnet", + "symbol": "MTHN", + "decimals": 18 + }, + "31753": { + "name": "Intdestcoin", + "symbol": "INTD", + "decimals": 18 + }, + "31754": { + "name": "Intdestcoin Testnet", + "symbol": "INTD", + "decimals": 18 + }, + "32001": { + "name": "W3Gamez Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "32382": { + "name": "SANR", + "symbol": "SANR", + "decimals": 18 + }, + "32520": { + "name": "Bitrise Token", + "symbol": "Brise", + "decimals": 18 + }, + "32659": { + "name": "Fusion", + "symbol": "FSN", + "decimals": 18 + }, + "32769": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "32990": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "33033": { + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 + }, + "33101": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "33133": { + "name": "Entangle", + "symbol": "NGL", + "decimals": 18 + }, + "33210": { + "name": "XCLOUD", + "symbol": "XCLOUD", + "decimals": 18 + }, + "33333": { + "name": "Aves", + "symbol": "AVS", + "decimals": 18 + }, + "33385": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "33469": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "33979": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "34443": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "35011": { + "name": "TARO Coin", + "symbol": "taro", + "decimals": 18 + }, + "35441": { + "name": "QGOV", + "symbol": "QGOV", + "decimals": 18 + }, + "35443": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "38400": { + "name": "Rangers Protocol Gas", + "symbol": "cmRPG", + "decimals": 18 + }, + "38401": { + "name": "Rangers Protocol Gas", + "symbol": "ttRPG", + "decimals": 18 + }, + "39656": { + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 + }, + "39797": { + "name": "Energi", + "symbol": "NRG", + "decimals": 18 + }, + "39815": { + "name": "OHO", + "symbol": "OHO", + "decimals": 18 + }, + "41500": { + "name": "Oxyn Gas", + "symbol": "OXYN", + "decimals": 18 + }, + "42069": { + "name": "pegglecoin", + "symbol": "peggle", + "decimals": 18 + }, + "42072": { + "name": "Agent", + "symbol": "AGENT", + "decimals": 18 + }, + "42161": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "42170": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "42220": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "42261": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "42262": { + "name": "Emerald Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "42355": { + "name": "GoldX", + "symbol": "GOLDX", + "decimals": 18 + }, + "42766": { + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 + }, + "42793": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "42801": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "42888": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "43110": { + "name": "Athereum Ether", + "symbol": "ATH", + "decimals": 18 + }, + "43111": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "43113": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "43114": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "43851": { + "name": "USDC Token", + "symbol": "USDC", + "decimals": 18 + }, + "44444": { + "name": "FREN", + "symbol": "FREN", + "decimals": 18 + }, + "44445": { + "name": "Quantum", + "symbol": "QTM", + "decimals": 18 + }, + "44787": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "45000": { + "name": "TXL", + "symbol": "TXL", + "decimals": 18 + }, + "45454": { + "name": "SWP", + "symbol": "SWP", + "decimals": 18 + }, + "45510": { + "name": "Deelance", + "symbol": "DEE", + "decimals": 18 + }, + "46688": { + "name": "Testnet Fusion", + "symbol": "T-FSN", + "decimals": 18 + }, + "47805": { + "name": "REI", + "symbol": "REI", + "decimals": 18 + }, + "48795": { + "name": "FUEL", + "symbol": "FUEL", + "decimals": 18 + }, + "48899": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "49049": { + "name": "WIRE", + "symbol": "WIRE", + "decimals": 18 + }, + "49088": { + "name": "Bifrost", + "symbol": "BFC", + "decimals": 18 + }, + "49321": { + "name": "GUN", + "symbol": "GUN", + "decimals": 18 + }, + "49797": { + "name": "Energi", + "symbol": "NRG", + "decimals": 18 + }, + "50001": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "50005": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "50006": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "50021": { + "name": "GCD", + "symbol": "GCD", + "decimals": 18 + }, + "51178": { + "name": "Lumoz Test Token", + "symbol": "MOZ", + "decimals": 18 + }, + "51712": { + "name": "Sardis", + "symbol": "SRDX", + "decimals": 18 + }, + "52014": { + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 + }, + "53277": { + "name": "DOID", + "symbol": "DOID", + "decimals": 18 + }, + "53302": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "53457": { + "name": "DODO", + "symbol": "DODO", + "decimals": 18 + }, + "53935": { + "name": "Jewel", + "symbol": "JEWEL", + "decimals": 18 + }, + "54211": { + "name": "Islamic Coin", + "symbol": "ISLMT", + "decimals": 18 + }, + "54321": { + "name": "Toro", + "symbol": "TORO", + "decimals": 18 + }, + "54555": { + "name": "Photon", + "symbol": "PTON", + "decimals": 18 + }, + "55004": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "55555": { + "name": "Rei", + "symbol": "REI", + "decimals": 18 + }, + "55556": { + "name": "tRei", + "symbol": "tREI", + "decimals": 18 + }, + "56026": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "56288": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "56400": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "56789": { + "name": "Nova", + "symbol": "NOVA", + "decimals": 18 + }, + "56797": { + "name": "DOID", + "symbol": "DOID", + "decimals": 18 + }, + "57000": { + "name": "Testnet Syscoin", + "symbol": "TSYS", + "decimals": 18 + }, + "57451": { + "name": "COINSEC", + "symbol": "SEC", + "decimals": 18 + }, + "58008": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "59140": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "59141": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "59144": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "59971": { + "name": "GenesysCode", + "symbol": "GCODE", + "decimals": 18 + }, + "60000": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "60001": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "60002": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "60103": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "60808": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "61406": { + "name": "KaiChain Native Token", + "symbol": "KEC", + "decimals": 18 + }, + "61800": { + "name": "Axelium", + "symbol": "AIUM", + "decimals": 18 + }, + "61803": { + "name": "EGAZ", + "symbol": "EGAZ", + "decimals": 18 + }, + "61916": { + "name": "DoKEN", + "symbol": "DKN", + "decimals": 18 + }, + "62049": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "62050": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "62298": { + "name": "Citrea BTC", + "symbol": "cBTC", + "decimals": 18 + }, + "62320": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "62621": { + "name": "MultiVAC", + "symbol": "MTV", + "decimals": 18 + }, + "62831": { + "name": "PLYR", + "symbol": "PLYR", + "decimals": 18 + }, + "63000": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "63001": { + "name": "eCredits", + "symbol": "ECS", + "decimals": 18 + }, + "65450": { + "name": "Scolcoin", + "symbol": "SCOL", + "decimals": 18 + }, + "66988": { + "name": "Janus", + "symbol": "JNS", + "decimals": 18 + }, + "67588": { + "name": "Cosmic Chain", + "symbol": "COSMIC", + "decimals": 18 + }, + "68770": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "69420": { + "name": "Condrieu Testnet Ether", + "symbol": "CTE", + "decimals": 18 + }, + "70000": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "70001": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "70002": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "70103": { + "name": "TKM", + "symbol": "TKM", + "decimals": 18 + }, + "70700": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "71111": { + "name": "GuapcoinX", + "symbol": "GuapX", + "decimals": 18 + }, + "71393": { + "name": "CKB", + "symbol": "CKB", + "decimals": 8 + }, + "71401": { + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 + }, + "71402": { + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 + }, + "72778": { + "name": "Caga", + "symbol": "CAGA", + "decimals": 18 + }, + "72992": { + "name": "Groc", + "symbol": "GROC", + "decimals": 18 + }, + "73114": { + "name": "ICB Testnet Token", + "symbol": "ICBT", + "decimals": 18 + }, + "73115": { + "name": "ICB Native Token", + "symbol": "ICBX", + "decimals": 18 + }, + "73799": { + "name": "Volta Token", + "symbol": "VT", + "decimals": 18 + }, + "73927": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "75000": { + "name": "Ether", + "symbol": "RESIN", + "decimals": 18 + }, + "75512": { + "name": "Geek", + "symbol": "GEEK", + "decimals": 18 + }, + "75513": { + "name": "Geek", + "symbol": "GEEK", + "decimals": 18 + }, + "77001": { + "name": "BORA", + "symbol": "BORA", + "decimals": 18 + }, + "77238": { + "name": "Foundry Chain Testnet", + "symbol": "tFNC", + "decimals": 18 + }, + "77612": { + "name": "VNT", + "symbol": "VNT", + "decimals": 18 + }, + "77777": { + "name": "Toro", + "symbol": "TORO", + "decimals": 18 + }, + "78110": { + "name": "Firenze Ether", + "symbol": "FIN", + "decimals": 18 + }, + "78281": { + "name": "Dragonfly", + "symbol": "DFLY", + "decimals": 18 + }, + "78430": { + "name": "AMP", + "symbol": "AMP", + "decimals": 18 + }, + "78431": { + "name": "BLT", + "symbol": "BLT", + "decimals": 18 + }, + "78432": { + "name": "CON", + "symbol": "CON", + "decimals": 18 + }, + "78600": { + "name": "Vanguard Vanry", + "symbol": "VANRY", + "decimals": 18 + }, + "79879": { + "name": "Standard in Gold", + "symbol": "STAND", + "decimals": 18 + }, + "80001": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "80002": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "80084": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "80085": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "80096": { + "name": "Hizoco", + "symbol": "HZC", + "decimals": 18 + }, + "81041": { + "name": "NRK", + "symbol": "NRK", + "decimals": 18 + }, + "81341": { + "name": "Amana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "81342": { + "name": "Amana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "81343": { + "name": "Amana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "81351": { + "name": "Flana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "81352": { + "name": "Flana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "81353": { + "name": "Flana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "81361": { + "name": "Mizana Testnet", + "symbol": "MEER-T", + "decimals": 18 + }, + "81362": { + "name": "Mizana Mixnet", + "symbol": "MEER-M", + "decimals": 18 + }, + "81363": { + "name": "Mizana Privnet", + "symbol": "MEER-P", + "decimals": 18 + }, + "81457": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "81720": { + "name": "Quantum Chain", + "symbol": "QNET", + "decimals": 18 + }, + "82459": { + "name": "Service Unit Token", + "symbol": "SU", + "decimals": 18 + }, + "83872": { + "name": "Zedxion", + "symbol": "ZEDX", + "decimals": 9 + }, + "84531": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "84532": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "84886": { + "name": "Aerie", + "symbol": "AER", + "decimals": 18 + }, + "85449": { + "name": "Cyber Trust", + "symbol": "CYBER", + "decimals": 18 + }, + "88002": { + "name": "Zebec Test Token", + "symbol": "tZBC", + "decimals": 18 + }, + "88559": { + "name": "Inoai", + "symbol": "INO", + "decimals": 18 + }, + "88817": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "88819": { + "name": "UNIT0", + "symbol": "UNIT0", + "decimals": 18 + }, + "88882": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "88888": { + "name": "Chiliz", + "symbol": "CHZ", + "decimals": 18 + }, + "90001": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "90210": { + "name": "Beverly Hills Testnet Ether", + "symbol": "BVE", + "decimals": 18 + }, + "90354": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "91002": { + "name": "Nautilus Zebec Testnet Tokens", + "symbol": "tZBC", + "decimals": 18 + }, + "91120": { + "name": "DAP", + "symbol": "DAP", + "decimals": 18 + }, + "91715": { + "name": "BNB Chain Native Token", + "symbol": "tcBNB", + "decimals": 18 + }, + "92001": { + "name": "test-Lamb", + "symbol": "LAMB", + "decimals": 18 + }, + "93572": { + "name": "LiquidLayer Testnet", + "symbol": "LILA", + "decimals": 18 + }, + "96970": { + "name": "Mantis", + "symbol": "MANTIS", + "decimals": 18 + }, + "97531": { + "name": "GREEN", + "symbol": "GREEN", + "decimals": 18 + }, + "97970": { + "name": "OptimusZ7", + "symbol": "OZ7", + "decimals": 18 + }, + "98881": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "99099": { + "name": "eLiberty", + "symbol": "$EL", + "decimals": 18 + }, + "99998": { + "name": "UBC", + "symbol": "UBC", + "decimals": 18 + }, + "99999": { + "name": "UBC", + "symbol": "UBC", + "decimals": 18 + }, + "100000": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100001": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100002": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100003": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100004": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100005": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100006": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100007": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100008": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "100009": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "100010": { + "name": "VeChain", + "symbol": "VET", + "decimals": 18 + }, + "100011": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "101010": { + "name": "FREE", + "symbol": "FREE", + "decimals": 18 + }, + "102031": { + "name": "Testnet CTC", + "symbol": "tCTC", + "decimals": 18 + }, + "103090": { + "name": "CRFI", + "symbol": "◈", + "decimals": 18 + }, + "103454": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "104566": { + "name": "KaspaClassic", + "symbol": "CAS", + "decimals": 18 + }, + "105105": { + "name": "Stratis", + "symbol": "STRAX", + "decimals": 18 + }, + "108801": { + "name": "Brother", + "symbol": "BRO", + "decimals": 18 + }, + "110000": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110001": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110002": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110003": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110004": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110005": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110006": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110007": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110008": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "110011": { + "name": "QKC", + "symbol": "QKC", + "decimals": 18 + }, + "111000": { + "name": "TestSIBR", + "symbol": "SIBR", + "decimals": 18 + }, + "111111": { + "name": "Siberium", + "symbol": "SIBR", + "decimals": 18 + }, + "111188": { + "name": "re.al Ether", + "symbol": "reETH", + "decimals": 18 + }, + "112358": { + "name": "Metao", + "symbol": "METAO", + "decimals": 18 + }, + "119139": { + "name": "DAP", + "symbol": "DAP", + "decimals": 18 + }, + "123456": { + "name": "Devnet ADIL", + "symbol": "ADIL", + "decimals": 18 + }, + "128123": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "131313": { + "name": "DIONE", + "symbol": "DIONE", + "decimals": 18 + }, + "131419": { + "name": "ETND", + "symbol": "ETND", + "decimals": 18 + }, + "132902": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "141319": { + "name": "MagApe", + "symbol": "MAG", + "decimals": 18 + }, + "142857": { + "name": "ict", + "symbol": "ict", + "decimals": 18 + }, + "161212": { + "name": "Play", + "symbol": "PLAY", + "decimals": 18 + }, + "165279": { + "name": "Eclat", + "symbol": "ECLAT", + "decimals": 18 + }, + "167000": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "167008": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "167009": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "188710": { + "name": "Bitica Coin", + "symbol": "BDCC", + "decimals": 18 + }, + "188881": { + "name": "Condor Native Token", + "symbol": "CONDOR", + "decimals": 18 + }, + "192940": { + "name": "FHE", + "symbol": "FHE", + "decimals": 18 + }, + "200000": { + "name": "FAI", + "symbol": "FAI", + "decimals": 18 + }, + "200101": { + "name": "milkTAda", + "symbol": "mTAda", + "decimals": 18 + }, + "200202": { + "name": "milkTAlgo", + "symbol": "mTAlgo", + "decimals": 18 + }, + "200625": { + "name": "Akroma Ether", + "symbol": "AKA", + "decimals": 18 + }, + "200810": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "200901": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "201018": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "201030": { + "name": "ATP", + "symbol": "atp", + "decimals": 18 + }, + "201804": { + "name": "Mythos", + "symbol": "MYTH", + "decimals": 18 + }, + "202020": { + "name": "Decimal", + "symbol": "tDEL", + "decimals": 18 + }, + "202212": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "202401": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "202624": { + "name": "Twala Coin", + "symbol": "TWL", + "decimals": 18 + }, + "204005": { + "name": "XN", + "symbol": "XN", + "decimals": 18 + }, + "205205": { + "name": "Auroria Stratis", + "symbol": "tSTRAX", + "decimals": 18 + }, + "210049": { + "name": "GitAGI", + "symbol": "tGAGI", + "decimals": 18 + }, + "210425": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "220315": { + "name": "Master Bank", + "symbol": "MAS", + "decimals": 18 + }, + "221230": { + "name": "Reap", + "symbol": "REAP", + "decimals": 18 + }, + "221231": { + "name": "test-Reap", + "symbol": "tREAP", + "decimals": 18 + }, + "222222": { + "name": "Wrapped ETH", + "symbol": "WETH", + "decimals": 18 + }, + "222555": { + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 + }, + "222666": { + "name": "DeepL", + "symbol": "DEEPL", + "decimals": 18 + }, + "224168": { + "name": "Taf ECO Chain Mainnet", + "symbol": "TAFECO", + "decimals": 18 + }, + "224422": { + "name": "CONET Sebolia", + "symbol": "CONET", + "decimals": 18 + }, + "224433": { + "name": "CONET Holesky", + "symbol": "CONET", + "decimals": 18 + }, + "230315": { + "name": "HashKey Token", + "symbol": "tHSK", + "decimals": 18 + }, + "234666": { + "name": "HAYMO", + "symbol": "HYM", + "decimals": 18 + }, + "240515": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "246529": { + "name": "ARTIS sigma1 Ether", + "symbol": "ATS", + "decimals": 18 + }, + "246785": { + "name": "ARTIS tau1 Ether", + "symbol": "tATS", + "decimals": 18 + }, + "247253": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "256256": { + "name": "Caduceus Token", + "symbol": "CMP", + "decimals": 18 + }, + "262371": { + "name": "Eclat Testnet", + "symbol": "ECLAT", + "decimals": 18 + }, + "266256": { + "name": "Gear Zero Network Native Token", + "symbol": "GZN", + "decimals": 18 + }, + "271271": { + "name": "EgonCoin", + "symbol": "EGON", + "decimals": 18 + }, + "281121": { + "name": "SoChain", + "symbol": "$OC", + "decimals": 18 + }, + "282828": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "309075": { + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 + }, + "313313": { + "name": "SAHARA", + "symbol": "SAH", + "decimals": 18 + }, + "314159": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "322202": { + "name": "PAREX", + "symbol": "PRX", + "decimals": 18 + }, + "323213": { + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 + }, + "330844": { + "name": "TTcoin", + "symbol": "TC", + "decimals": 18 + }, + "333313": { + "name": "Bloom", + "symbol": "BGBC", + "decimals": 18 + }, + "333331": { + "name": "AvesT", + "symbol": "AVST", + "decimals": 18 + }, + "333333": { + "name": "USNT", + "symbol": "USNT", + "decimals": 18 + }, + "333666": { + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 + }, + "333777": { + "name": "tOONE", + "symbol": "tOONE", + "decimals": 18 + }, + "333888": { + "name": "tPolis", + "symbol": "tPOLIS", + "decimals": 18 + }, + "333999": { + "name": "Polis", + "symbol": "POLIS", + "decimals": 18 + }, + "336655": { + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 + }, + "336666": { + "name": "UBTC", + "symbol": "UBTC", + "decimals": 18 + }, + "355110": { + "name": "Bitfinity Token", + "symbol": "BFT", + "decimals": 18 + }, + "355113": { + "name": "Bitfinity Token", + "symbol": "BFT", + "decimals": 18 + }, + "360890": { + "name": "vTFUEL", + "symbol": "vTFUEL", + "decimals": 18 + }, + "363636": { + "name": "Digit Coin", + "symbol": "DGC", + "decimals": 18 + }, + "373737": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "381931": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "381932": { + "name": "Metal", + "symbol": "METAL", + "decimals": 18 + }, + "404040": { + "name": "Tipboxcoin", + "symbol": "TPBX", + "decimals": 18 + }, + "413413": { + "name": "AIE", + "symbol": "tAIE", + "decimals": 18 + }, + "420420": { + "name": "KEK", + "symbol": "KEK", + "decimals": 18 + }, + "420666": { + "name": "tKEK", + "symbol": "tKEK", + "decimals": 18 + }, + "420692": { + "name": "Alterium ETH", + "symbol": "AltETH", + "decimals": 18 + }, + "421611": { + "name": "Arbitrum Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 + }, + "421613": { + "name": "Arbitrum Goerli Ether", + "symbol": "AGOR", + "decimals": 18 + }, + "421614": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "424242": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "431140": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "432201": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "432204": { + "name": "Dexalot", + "symbol": "ALOT", + "decimals": 18 + }, + "444444": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "444900": { + "name": "Weelink Chain Token", + "symbol": "tWLK", + "decimals": 18 + }, + "471100": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "473861": { + "name": "Ultra Pro", + "symbol": "UPRO", + "decimals": 18 + }, + "474142": { + "name": "OpenCoin", + "symbol": "OPC", + "decimals": 10 + }, + "504441": { + "name": "Playdapp", + "symbol": "PDA", + "decimals": 18 + }, + "512512": { + "name": "Caduceus Testnet Token", + "symbol": "CMP", + "decimals": 18 + }, + "513100": { + "name": "DisChain", + "symbol": "DIS", + "decimals": 18 + }, + "526916": { + "name": "DO", + "symbol": "DCT", + "decimals": 18 + }, + "534351": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "534352": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "534849": { + "name": "Shina Inu", + "symbol": "SHI", + "decimals": 18 + }, + "535037": { + "name": "BeanEco SmartChain", + "symbol": "BESC", + "decimals": 18 + }, + "552981": { + "name": "OWCT", + "symbol": "OWCT", + "decimals": 18 + }, + "555555": { + "name": "Pentagon", + "symbol": "PEN", + "decimals": 18 + }, + "555666": { + "name": "Eclipse", + "symbol": "ECLPS", + "decimals": 18 + }, + "622277": { + "name": "Hypra", + "symbol": "HYP", + "decimals": 18 + }, + "622463": { + "name": "TON", + "symbol": "TON", + "decimals": 18 + }, + "641230": { + "name": "Bear Network Chain Native Token", + "symbol": "BRNKC", + "decimals": 18 + }, + "651940": { + "name": "ALL", + "symbol": "ALL", + "decimals": 18 + }, + "656476": { + "name": "EDU", + "symbol": "EDU", + "decimals": 18 + }, + "660279": { + "name": "Xai", + "symbol": "XAI", + "decimals": 18 + }, + "666666": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "666888": { + "name": "Hela HLUSD", + "symbol": "HLUSD", + "decimals": 18 + }, + "686868": { + "name": "Won", + "symbol": "WON", + "decimals": 18 + }, + "696969": { + "name": "Galadriel Devnet token", + "symbol": "GAL", + "decimals": 18 + }, + "710420": { + "name": "TILT", + "symbol": "TILT", + "decimals": 18 + }, + "713715": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "721529": { + "name": "ERAM", + "symbol": "ERAM", + "decimals": 18 + }, + "743111": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "751230": { + "name": "Bear Network Chain Testnet Token", + "symbol": "tBRNKC", + "decimals": 18 + }, + "761412": { + "name": "Miexs Coin", + "symbol": "MIX", + "decimals": 18 + }, + "764984": { + "name": "Lamina1 Test", + "symbol": "L1T", + "decimals": 18 + }, + "767368": { + "name": "L1ID Test", + "symbol": "L1IDT", + "decimals": 18 + }, + "776877": { + "name": "Modularium", + "symbol": "MDM", + "decimals": 18 + }, + "800001": { + "name": "OctaSpace", + "symbol": "OCTA", + "decimals": 18 + }, + "808080": { + "name": "tBIZT", + "symbol": "tBIZT", + "decimals": 18 + }, + "810180": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "810181": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "810182": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "820522": { + "name": "TAS", + "symbol": "tTAS", + "decimals": 18 + }, + "827431": { + "name": "Curve", + "symbol": "CURVE", + "decimals": 18 + }, + "839320": { + "name": "Primal Network", + "symbol": "PRM", + "decimals": 18 + }, + "846000": { + "name": "APTA", + "symbol": "APTA", + "decimals": 18 + }, + "855456": { + "name": "Dodao", + "symbol": "DODAO", + "decimals": 18 + }, + "879151": { + "name": "BlocX", + "symbol": "BLX", + "decimals": 18 + }, + "888882": { + "name": "REXX", + "symbol": "REXX", + "decimals": 18 + }, + "888888": { + "name": "VS", + "symbol": "VS", + "decimals": 18 + }, + "900000": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "910000": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "912559": { + "name": "RIA", + "symbol": "RIA", + "decimals": 18 + }, + "920000": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "920001": { + "name": "Posichain Native Token", + "symbol": "POSI", + "decimals": 18 + }, + "923018": { + "name": "FNCY", + "symbol": "FNCY", + "decimals": 18 + }, + "955081": { + "name": "Jono12 Token", + "symbol": "JONO", + "decimals": 18 + }, + "955305": { + "name": "ELV", + "symbol": "ELV", + "decimals": 18 + }, + "978657": { + "name": "Testnet MAGIC", + "symbol": "MAGIC", + "decimals": 18 + }, + "984122": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "984123": { + "name": "TIA", + "symbol": "TIA", + "decimals": 18 + }, + "988207": { + "name": "ECROX COIN", + "symbol": "ECROX", + "decimals": 18 + }, + "998899": { + "name": "CHAIN", + "symbol": "CHAIN", + "decimals": 18 + }, + "999999": { + "name": "AMC", + "symbol": "AMC", + "decimals": 18 + }, + "1100789": { + "name": "NMT", + "symbol": "NMT", + "decimals": 18 + }, + "1127469": { + "name": "Tiltyard Token", + "symbol": "TILTG", + "decimals": 18 + }, + "1261120": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1313114": { + "name": "Etho Protocol", + "symbol": "ETHO", + "decimals": 18 + }, + "1313500": { + "name": "Xerom Ether", + "symbol": "XERO", + "decimals": 18 + }, + "1337702": { + "name": "kintsugi Ethere", + "symbol": "kiETH", + "decimals": 18 + }, + "1337802": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "1337803": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "1398243": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1612127": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1637450": { + "name": "tBNB", + "symbol": "tBNB", + "decimals": 18 + }, + "1731313": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2021398": { + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 + }, + "2099156": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "2206132": { + "name": "LAT", + "symbol": "lat", + "decimals": 18 + }, + "2611555": { + "name": "DGC", + "symbol": "DGC", + "decimals": 18 + }, + "3132023": { + "name": "SAHARA", + "symbol": "SAH", + "decimals": 18 + }, + "3141592": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "3397901": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "3441005": { + "name": "Manta", + "symbol": "MANTA", + "decimals": 18 + }, + "3441006": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "4000003": { + "name": "ZERO", + "symbol": "ZERO", + "decimals": 18 + }, + "4281033": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "5112023": { + "name": "NUMB Token", + "symbol": "NUMB", + "decimals": 18 + }, + "5167003": { + "name": "MXC Wannsee zkEVM Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "5167004": { + "name": "Moonchain Geneva Testnet", + "symbol": "MXC", + "decimals": 18 + }, + "5201420": { + "name": "Electroneum", + "symbol": "ETN", + "decimals": 18 + }, + "5318008": { + "name": "Kopli React", + "symbol": "REACT", + "decimals": 18 + }, + "5555555": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "5555558": { + "name": "Imversed Token", + "symbol": "IMV", + "decimals": 18 + }, + "6038361": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "6666665": { + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 + }, + "6666666": { + "name": "SAFE(AnWang)", + "symbol": "SAFE", + "decimals": 18 + }, + "7225878": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "7355310": { + "name": "Vessel ETH", + "symbol": "VETH", + "decimals": 18 + }, + "7668378": { + "name": "Shiba Predator", + "symbol": "QOM", + "decimals": 18 + }, + "7762959": { + "name": "Musicoin", + "symbol": "MUSIC", + "decimals": 18 + }, + "7777777": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "8007736": { + "name": "Plian Token", + "symbol": "PI", + "decimals": 18 + }, + "8008135": { + "name": "tFHE", + "symbol": "tFHE", + "decimals": 18 + }, + "8080808": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "8601152": { + "name": "WATER", + "symbol": "WATER", + "decimals": 18 + }, + "8794598": { + "name": "HAP", + "symbol": "HAP", + "decimals": 18 + }, + "8888881": { + "name": "QARE", + "symbol": "QARE", + "decimals": 18 + }, + "8888888": { + "name": "QARE", + "symbol": "QARE", + "decimals": 18 + }, + "9322252": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "9322253": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "10067275": { + "name": "Plian Token", + "symbol": "TPI", + "decimals": 18 + }, + "10101010": { + "name": "Soverun", + "symbol": "SVRN", + "decimals": 18 + }, + "10241025": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "11155111": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "11155420": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "13068200": { + "name": "COTI2", + "symbol": "COTI2", + "decimals": 18 + }, + "13371337": { + "name": "PepChain Churchill Ether", + "symbol": "TPEP", + "decimals": 18 + }, + "14288640": { + "name": "DAON", + "symbol": "DEB", + "decimals": 18 + }, + "16658437": { + "name": "Plian Testnet Token", + "symbol": "TPI", + "decimals": 18 + }, + "17000920": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "18289463": { + "name": "IOLite Ether", + "symbol": "ILT", + "decimals": 18 + }, + "20180427": { + "name": "FREE", + "symbol": "FREE", + "decimals": 18 + }, + "20180430": { + "name": "SmartMesh Native Token", + "symbol": "SMT", + "decimals": 18 + }, + "20181205": { + "name": "quarkblockchain Native Token", + "symbol": "QKI", + "decimals": 18 + }, + "20201022": { + "name": "Pego Native Token", + "symbol": "PG", + "decimals": 18 + }, + "20240324": { + "name": "DeBank USD", + "symbol": "USD", + "decimals": 18 + }, + "20241133": { + "name": "SWANETH", + "symbol": "sETH", + "decimals": 18 + }, + "20482050": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "22052002": { + "name": "Excelon", + "symbol": "xlon", + "decimals": 18 + }, + "27082017": { + "name": "TExlcoin", + "symbol": "TEXL", + "decimals": 18 + }, + "27082022": { + "name": "Exlcoin", + "symbol": "EXL", + "decimals": 18 + }, + "28122024": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "28945486": { + "name": "Auxilium coin", + "symbol": "AUX", + "decimals": 18 + }, + "29032022": { + "name": "Flacoin", + "symbol": "FLA", + "decimals": 18 + }, + "31415926": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "35855456": { + "name": "JOYS", + "symbol": "JOYS", + "decimals": 18 + }, + "37084624": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "39916801": { + "name": "Kozi", + "symbol": "KOZI", + "decimals": 18 + }, + "43214913": { + "name": "maistestsubnet", + "symbol": "MAI", + "decimals": 18 + }, + "61717561": { + "name": "Aquachain Ether", + "symbol": "AQUA", + "decimals": 18 + }, + "65010002": { + "name": "Bakerloo Auton", + "symbol": "ATN", + "decimals": 18 + }, + "65100002": { + "name": "Piccadilly Auton", + "symbol": "ATN", + "decimals": 18 + }, + "68840142": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "77787778": { + "name": "0xHash", + "symbol": "HETH", + "decimals": 18 + }, + "88888888": { + "name": "TEAM", + "symbol": "$TEAM", + "decimals": 18 + }, + "94204209": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "99415706": { + "name": "TOYS", + "symbol": "TOYS", + "decimals": 18 + }, + "108160679": { + "name": "Oraichain Token", + "symbol": "ORAI", + "decimals": 18 + }, + "111557560": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "123420111": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "161221135": { + "name": "Plume Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "168587773": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "192837465": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "222000222": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "245022926": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "245022934": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "278611351": { + "name": "sFuel", + "symbol": "SFUEL", + "decimals": 18 + }, + "311752642": { + "name": "OLT", + "symbol": "OLT", + "decimals": 18 + }, + "328527624": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "333000333": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "356256156": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "486217935": { + "name": "Gather", + "symbol": "GTH", + "decimals": 18 + }, + "666666666": { + "name": "DEGEN", + "symbol": "DEGEN", + "decimals": 18 + }, + "888888888": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "889910245": { + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 + }, + "889910246": { + "name": "PTCE", + "symbol": "PTCE", + "decimals": 18 + }, + "974399131": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "999999999": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1020352220": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1122334455": { + "name": "IPOS Network Ether", + "symbol": "IPOS", + "decimals": 18 + }, + "1146703430": { + "name": "Cyb", + "symbol": "CYB", + "decimals": 18 + }, + "1273227453": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1313161554": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1313161555": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1313161556": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1313161560": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1350216234": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1351057110": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1380012617": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "1380996178": { + "name": "Raptor", + "symbol": "RPTR", + "decimals": 18 + }, + "1444673419": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1482601649": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1564830818": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "1666600000": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "1666600001": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "1666700000": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "1666700001": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "1666900000": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "1666900001": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "1802203764": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "1918988905": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "2021121117": { + "name": "DataHoppers", + "symbol": "HOP", + "decimals": 18 + }, + "2046399126": { + "name": "sFUEL", + "symbol": "sFUEL", + "decimals": 18 + }, + "3125659152": { + "name": "Pirl Ether", + "symbol": "PIRL", + "decimals": 18 + }, + "4216137055": { + "name": "OLT", + "symbol": "OLT", + "decimals": 18 + }, + "11297108109": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "11297108099": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "28872323069": { + "name": "GitSwarm Ether", + "symbol": "GS-ETH", + "decimals": 18 + }, + "37714555429": { + "name": "sXai", + "symbol": "sXAI", + "decimals": 18 + }, + "88153591557": { + "name": "GelatoCGT", + "symbol": "CGT", + "decimals": 18 + }, + "107107114116": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "111222333444": { + "name": "ALT", + "symbol": "ALT", + "decimals": 18 + }, + "197710212030": { + "name": "Ntity", + "symbol": "NTT", + "decimals": 18 + }, + "197710212031": { + "name": "Ntity Haradev", + "symbol": "NTTH", + "decimals": 18 + }, + "202402181627": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "383414847825": { + "name": "Zeniq", + "symbol": "ZENIQ", + "decimals": 18 + }, + "666301171999": { + "name": "PDC", + "symbol": "PDC", + "decimals": 18 + }, + "6022140761023": { + "name": "Molereum Ether", + "symbol": "MOLE", + "decimals": 18 + }, + "2713017997578000": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "2716446429837000": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + } +}; + +export const EXTRA_RPCS = { + "1": [ + "https://eth.llamarpc.com", + "https://endpoints.omniatech.io/v1/eth/mainnet/public", + "https://rpc.ankr.com/eth", + "https://go.getblock.io/d7dab8149ec04390aaa923ff2768f914", + "https://eth-mainnet.nodereal.io/v1/1659dfb40aa24bbb8153a677b98064d7", + "https://ethereum-rpc.publicnode.com", + "wss://ethereum-rpc.publicnode.com", + "https://1rpc.io/eth", + "https://rpc.builder0x69.io", + "https://rpc.mevblocker.io", + "https://rpc.flashbots.net", + "https://virginia.rpc.blxrbdn.com", + "https://uk.rpc.blxrbdn.com", + "https://singapore.rpc.blxrbdn.com", + "https://eth.rpc.blxrbdn.com", + "https://cloudflare-eth.com", + "https://eth-mainnet.public.blastapi.io", + "https://api.securerpc.com/v1", + "https://openapi.bitstack.com/v1/wNFxbiJyQsSeLrX8RRCHi7NpRxrlErZk/DjShIqLishPCTB9HiMkPHXjUM9CNM9Na/ETH/mainnet", + "https://eth-pokt.nodies.app", + "https://eth-mainnet-public.unifra.io", + "https://ethereum.blockpi.network/v1/rpc/public", + "https://rpc.payload.de", + "https://api.zmok.io/mainnet/oaen6dy8ff6hju9k", + "https://eth-mainnet.g.alchemy.com/v2/demo", + "https://eth.api.onfinality.io/public", + "https://core.gashawk.io/rpc", + "https://mainnet.eth.cloud.ava.do", + "https://ethereumnodelight.app.runonflux.io", + "https://eth-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", + "https://main-light.eth.linkpool.io", + "https://rpc.eth.gateway.fm", + "https://rpc.chain49.com/ethereum?api_key=14d1a8b86d8a4b4797938332394203dc", + "https://eth.meowrpc.com", + "https://eth.drpc.org", + "https://mainnet.gateway.tenderly.co", + "https://rpc.tenderly.co/fork/c63af728-a183-4cfb-b24e-a92801463484", + "https://gateway.tenderly.co/public/mainnet", + "https://api.zan.top/node/v1/eth/mainnet/public", + "https://eth-mainnet.diamondswap.org/rpc", + "https://rpc.notadegen.com/eth", + "https://eth.merkle.io", + "https://rpc.lokibuilder.xyz/wallet", + "https://services.tokenview.io/vipapi/nodeservice/eth?apikey=qVHq2o6jpaakcw3lRstl", + "https://eth.nodeconnect.org", + "https://api.stateless.solutions/ethereum/v1/0ec6cac0-ecac-4247-8a41-1e685deadfe4", + "https://rpc.polysplit.cloud/v1/chain/1", + "https://rpc.tornadoeth.cash/eth", + "https://rpc.tornadoeth.cash/mev", + "https://eth1.lava.build/lava-referer-ed07f753-8c19-4309-b632-5a4a421aa589", + "https://eth1.lava.build/lava-referer-16223de7-12c0-49f3-8d87-e5f1e6a0eb3b", + "https://api.mycryptoapi.com/eth", + "wss://mainnet.gateway.tenderly.co", + "https://rpc.blocknative.com/boost", + "https://rpc.flashbots.net/fast", + "https://rpc.mevblocker.io/fast", + "https://rpc.mevblocker.io/noreverts", + "https://rpc.mevblocker.io/fullprivacy", + "wss://eth.drpc.org" + ], + "2": [ + "https://node.eggs.cool", + "https://node.expanse.tech" + ], + "3": [ + "https://rpc.ankr.com/eth_ropsten", + "https://ropsten.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161" + ], + "4": [ + "https://rpc.ankr.com/eth_rinkeby", + "https://rinkeby.infura.io/3/9aa3d95b3bc440fa88ea12eaa4456161" + ], + "5": [ + "https://rpc.ankr.com/eth_goerli", + "https://endpoints.omniatech.io/v1/eth/goerli/public", + "https://goerli.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161", + "https://eth-goerli.public.blastapi.io", + "https://eth-goerli.g.alchemy.com/v2/demo", + "https://goerli.blockpi.network/v1/rpc/public", + "https://eth-goerli.api.onfinality.io/public", + "https://rpc.goerli.eth.gateway.fm", + "https://ethereum-goerli-rpc.publicnode.com", + "wss://ethereum-goerli-rpc.publicnode.com", + "https://goerli.gateway.tenderly.co", + "https://gateway.tenderly.co/public/goerli", + "https://api.zan.top/node/v1/eth/goerli/public", + "https://builder-rpc1.0xblockswap.com", + "https://builder-rpc2.0xblockswap.com", + "https://rpc.tornadoeth.cash/goerli", + "https://rpc.goerli.mudit.blog", + "wss://goerli.gateway.tenderly.co" + ], + "7": [ + "https://rpc.dome.cloud", + "https://rpc.thaichain.org" + ], + "8": [ + "https://rpc.octano.dev", + "https://pyrus2.ubiqscan.io" + ], + "10": [ + "https://optimism.llamarpc.com", + "https://mainnet.optimism.io", + "https://optimism-mainnet.public.blastapi.io", + "https://rpc.ankr.com/optimism", + "https://1rpc.io/op", + "https://op-pokt.nodies.app", + "https://opt-mainnet.g.alchemy.com/v2/demo", + "https://optimism.blockpi.network/v1/rpc/public", + "https://endpoints.omniatech.io/v1/op/mainnet/public", + "https://optimism.api.onfinality.io/public", + "https://rpc.optimism.gateway.fm", + "https://optimism-rpc.publicnode.com", + "wss://optimism-rpc.publicnode.com", + "https://optimism.meowrpc.com", + "https://api.zan.top/node/v1/opt/mainnet/public", + "https://optimism.drpc.org", + "https://optimism.gateway.tenderly.co", + "https://gateway.tenderly.co/public/optimism", + "https://api.stateless.solutions/optimism/v1/f373feb1-c8e4-41c9-bb74-2c691988dd34", + "https://rpc.tornadoeth.cash/optimism", + "wss://optimism.gateway.tenderly.co", + "wss://optimism.drpc.org" + ], + "11": [ + "https://api.metadium.com/dev", + "https://api.metadium.com/prod" + ], + "12": [ + "https://api.metadium.com/dev" + ], + "13": [ + "https://staging.diode.io:8443", + "wss://staging.diode.io:8443/ws" + ], + "14": [ + "https://flare-api.flare.network/ext/C/rpc", + "https://flare.rpc.thirdweb.com", + "https://flare-bundler.etherspot.io", + "https://rpc.ankr.com/flare", + "https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc", + "https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc", + "https://rpc.ftso.au/flare", + "https://flare.enosys.global/ext/C/rpc", + "https://flare.solidifi.app/ext/C/rpc" + ], + "15": [ + "https://prenet.diode.io:8443", + "wss://prenet.diode.io:8443/ws" + ], + "16": [ + "https://coston-api.flare.network/ext/C/rpc", + "https://songbird-testnet-coston.rpc.thirdweb.com", + "https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc", + "https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc", + "https://coston.enosys.global/ext/C/rpc" + ], + "17": [ + "https://rpc.thaifi.com" + ], + "18": [ + "https://testnet-rpc.thundercore.com", + "https://thundercore-testnet.drpc.org", + "wss://thundercore-testnet.drpc.org" + ], + "19": [ + "https://songbird.towolabs.com/rpc", + "https://songbird-api.flare.network/ext/C/rpc", + "https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc", + "https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc", + "https://rpc.ftso.au/songbird", + "https://songbird.enosys.global/ext/C/rpc", + "https://songbird.solidifi.app/ext/C/rpc" + ], + "20": [ + "https://api.elastos.io/esc", + "https://api.trinity-tech.io/esc", + "https://api.elastos.io/eth" + ], + "21": [ + "https://api-testnet.elastos.io/eth" + ], + "22": [ + "https://api.trinity-tech.io/eid", + "https://api.elastos.io/eid" + ], + "24": [ + "https://rpc.kardiachain.io" + ], + "25": [ + "https://evm.cronos.org", + "https://cronos-rpc.elk.finance", + "https://cronos.blockpi.network/v1/rpc/public", + "https://cronos-evm-rpc.publicnode.com", + "wss://cronos-evm-rpc.publicnode.com", + "https://1rpc.io/cro", + "https://cronos.drpc.org", + "wss://cronos.drpc.org" + ], + "26": [ + "https://testrpc.genesisl1.org" + ], + "27": [ + "https://rpc.shibachain.net", + "https://rpc.shibchain.org" + ], + "29": [ + "https://rpc.genesisl1.org" + ], + "30": [ + "https://public-node.rsk.co", + "https://mycrypto.rsk.co" + ], + "31": [ + "https://public-node.testnet.rsk.co", + "https://mycrypto.testnet.rsk.co" + ], + "32": [ + "https://test2.goodata.io" + ], + "33": [ + "https://rpc.goodata.io" + ], + "34": [ + "https://mainnet-rpc.scai.network" + ], + "35": [ + "https://rpc.tbwg.io" + ], + "36": [ + "https://mainnet.dxchain.com" + ], + "37": [ + "https://dimension-evm-rpc.xpla.dev" + ], + "38": [ + "https://rpc.valorbit.com/v2" + ], + "39": [ + "https://rpc-mainnet.uniultra.xyz" + ], + "40": [ + "https://mainnet.telos.net/evm", + "https://rpc1.eu.telos.net/evm", + "https://rpc1.us.telos.net/evm", + "https://rpc2.us.telos.net/evm", + "https://api.kainosbp.com/evm", + "https://rpc2.eu.telos.net/evm", + "https://evm.teloskorea.com/evm", + "https://rpc2.teloskorea.com/evm", + "https://rpc01.us.telosunlimited.io/evm", + "https://rpc02.us.telosunlimited.io/evm", + "https://1rpc.io/telos/evm", + "https://telos.drpc.org", + "wss://telos.drpc.org" + ], + "41": [ + "https://testnet.telos.net/evm", + "https://telos-testnet.drpc.org", + "wss://telos-testnet.drpc.org" + ], + "42": [ + "https://rpc.mainnet.lukso.network", + "wss://ws-rpc.mainnet.lukso.network" + ], + "43": [ + "https://pangolin-rpc.darwinia.network" + ], + "44": [ + "https://crab.api.onfinality.io/public", + "https://crab-rpc.darwinia.network", + "https://crab-rpc.darwiniacommunitydao.xyz" + ], + "45": [ + "https://pangoro-rpc.darwinia.network" + ], + "46": [ + "https://rpc.darwinia.network", + "https://darwinia-rpc.darwiniacommunitydao.xyz", + "https://darwinia-rpc.dwellir.com" + ], + "47": [ + "https://aic.acria.ai" + ], + "48": [ + "https://rpc.etm.network" + ], + "49": [ + "https://rpc.pioneer.etm.network" + ], + "50": [ + "https://rpc.xdcrpc.com", + "https://rpc1.xinfin.network", + "https://erpc.xinfin.network", + "https://rpc.xinfin.network", + "https://erpc.xdcrpc.com", + "https://rpc.xdc.org", + "https://rpc.ankr.com/xdc", + "https://rpc-xdc.icecreamswap.com" + ], + "51": [ + "https://rpc.apothem.network", + "https://erpc.apothem.network", + "https://apothem.xdcrpc.com" + ], + "52": [ + "https://rpc.coinex.net", + "https://rpc1.coinex.net", + "https://rpc2.coinex.net", + "https://rpc3.coinex.net", + "https://rpc4.coinex.net" + ], + "53": [ + "https://testnet-rpc.coinex.net" + ], + "54": [ + "https://mainnet.openpiece.io" + ], + "55": [ + "https://rpc-1.zyx.network", + "https://rpc-2.zyx.network", + "https://rpc-3.zyx.network", + "https://rpc-5.zyx.network", + "https://rpc-4.zyx.network", + "https://rpc-6.zyx.network" + ], + "56": [ + "https://binance.llamarpc.com", + "https://bsc-dataseed.bnbchain.org", + "https://bsc-dataseed1.defibit.io", + "https://bsc-dataseed1.ninicoin.io", + "https://bsc-dataseed2.defibit.io", + "https://bsc-dataseed3.defibit.io", + "https://bsc-dataseed4.defibit.io", + "https://bsc-dataseed2.ninicoin.io", + "https://bsc-dataseed3.ninicoin.io", + "https://bsc-dataseed4.ninicoin.io", + "https://bsc-dataseed1.bnbchain.org", + "https://bsc-dataseed2.bnbchain.org", + "https://bsc-dataseed3.bnbchain.org", + "https://bsc-dataseed4.bnbchain.org", + "https://bsc-dataseed6.dict.life", + "https://rpc-bsc.48.club", + "https://koge-rpc-bsc.48.club", + "https://endpoints.omniatech.io/v1/bsc/mainnet/public", + "https://bsc-pokt.nodies.app", + "https://bsc-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://rpc.ankr.com/bsc", + "https://getblock.io/nodes/bsc", + "https://bscrpc.com", + "https://bsc.rpcgator.com", + "https://binance.nodereal.io", + "https://bsc-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", + "https://nodes.vefinetwork.org/smartchain", + "https://1rpc.io/bnb", + "https://bsc.rpc.blxrbdn.com", + "https://bsc.blockpi.network/v1/rpc/public", + "https://bnb.api.onfinality.io/public", + "https://bsc-rpc.publicnode.com", + "wss://bsc-rpc.publicnode.com", + "https://bsc-mainnet.public.blastapi.io", + "https://bsc.meowrpc.com", + "https://api.zan.top/node/v1/bsc/mainnet/public", + "https://bsc.drpc.org", + "https://services.tokenview.io/vipapi/nodeservice/bsc?apikey=qVHq2o6jpaakcw3lRstl", + "https://rpc.polysplit.cloud/v1/chain/56", + "https://rpc.tornadoeth.cash/bsc", + "wss://bsc-ws-node.nariox.org" + ], + "57": [ + "https://rpc.syscoin.org", + "https://rpc.ankr.com/syscoin", + "https://syscoin-evm-rpc.publicnode.com", + "wss://syscoin-evm-rpc.publicnode.com", + "https://rpc.ankr.com/syscoin/${ANKR_API_KEY}", + "https://syscoin.public-rpc.com", + "wss://rpc.syscoin.org/wss", + "https://syscoin-evm.publicnode.com", + "wss://syscoin-evm.publicnode.com" + ], + "58": [ + "https://dappnode1.ont.io:10339", + "https://dappnode2.ont.io:10339", + "https://dappnode3.ont.io:10339", + "https://dappnode4.ont.io:10339", + "http://dappnode1.ont.io:20339", + "http://dappnode2.ont.io:20339", + "http://dappnode3.ont.io:20339", + "http://dappnode4.ont.io:20339" + ], + "60": [ + "https://rpc.gochain.io" + ], + "61": [ + "https://etc.mytokenpocket.vip", + "https://rpc.etcinscribe.com", + "https://etc.etcdesktop.com", + "https://besu-de.etc-network.info", + "https://geth-de.etc-network.info", + "https://besu-at.etc-network.info", + "https://geth-at.etc-network.info", + "https://services.tokenview.io/vipapi/nodeservice/etc?apikey=qVHq2o6jpaakcw3lRstl", + "https://etc.rivet.link" + ], + "63": [ + "https://rpc.mordor.etccooperative.org", + "https://geth-mordor.etc-network.info" + ], + "64": [ + "https://jsonrpc.ellaism.org" + ], + "65": [ + "https://exchaintestrpc.okex.org" + ], + "66": [ + "https://exchainrpc.okex.org", + "https://oktc-mainnet.public.blastapi.io", + "https://okt-chain.api.onfinality.io/public", + "https://1rpc.io/oktc", + "https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff" + ], + "67": [ + "http://test-rpc.dbmbp.com" + ], + "68": [ + "https://rpc.soter.one" + ], + "69": [ + "https://kovan.optimism.io" + ], + "70": [ + "https://http-mainnet.hoosmartchain.com", + "https://http-mainnet2.hoosmartchain.com", + "wss://ws-mainnet.hoosmartchain.com", + "wss://ws-mainnet2.hoosmartchain.com" + ], + "71": [ + "https://evmtestnet.confluxrpc.com" + ], + "72": [ + "https://testnet-http.dxchain.com" + ], + "73": [ + "https://fncy-seed1.fncy.world" + ], + "74": [ + "https://idchain.one/rpc", + "wss://idchain.one/ws" + ], + "75": [ + "https://node.decimalchain.com/web3", + "https://node1-mainnet.decimalchain.com/web3", + "https://node2-mainnet.decimalchain.com/web3", + "https://node3-mainnet.decimalchain.com/web3", + "https://node4-mainnet.decimalchain.com/web3" + ], + "76": [ + "https://rpc2.mix-blockchain.org:8647" + ], + "77": [ + "https://sokol.poa.network", + "wss://sokol.poa.network/wss", + "ws://sokol.poa.network:8546" + ], + "78": [ + "https://ethnode.primusmoney.com/mainnet" + ], + "79": [ + "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" + ], + "80": [ + "website:https://genechain.io/en/index.html", + "https://rpc.genechain.io" + ], + "81": [ + "https://rpc-1.japanopenchain.org:8545", + "https://rpc-2.japanopenchain.org:8545" + ], + "82": [ + "https://rpc.meter.io", + "https://rpc-meter.jellypool.xyz", + "https://meter.blockpi.network/v1/rpc/public" + ], + "83": [ + "https://rpctest.meter.io" + ], + "84": [ + "https://linqto-dev.com" + ], + "85": [ + "https://testnet.gatenode.cc" + ], + "86": [ + "https://evm.gatenode.cc" + ], + "87": [ + "https://rpc.novanetwork.io:9070", + "https://dev.rpc.novanetwork.io", + "https://connect.novanetwork.io", + "https://0x57.redjackstudio.com" + ], + "88": [ + "https://rpc.tomochain.com", + "https://viction.blockpi.network/v1/rpc/public", + "https://rpc.viction.xyz" + ], + "89": [ + "https://rpc-testnet.viction.xyz" + ], + "90": [ + "https://s0.garizon.net/rpc" + ], + "91": [ + "https://s1.garizon.net/rpc" + ], + "92": [ + "https://s2.garizon.net/rpc" + ], + "93": [ + "https://s3.garizon.net/rpc" + ], + "94": [ + "https://rpc.swissdlt.ch" + ], + "95": [ + "https://rpc1.camdl.gov.kh" + ], + "96": [ + "https://rpc.bitkubchain.io", + "wss://wss.bitkubchain.io" + ], + "97": [ + "https://endpoints.omniatech.io/v1/bsc/testnet/public", + "https://bsctestapi.terminet.io/rpc", + "https://bsc-testnet.public.blastapi.io", + "https://bsc-testnet-rpc.publicnode.com", + "wss://bsc-testnet-rpc.publicnode.com", + "https://api.zan.top/node/v1/bsc/testnet/public", + "https://bsc-testnet.blockpi.network/v1/rpc/public", + "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" + ], + "98": [ + "https://sixnet-rpc-evm.sixprotocol.net" + ], + "99": [ + "https://core.poanetwork.dev", + "https://core.poa.network" + ], + "100": [ + "https://rpc.gnosischain.com", + "https://xdai-archive.blockscout.com", + "https://gnosis-pokt.nodies.app", + "https://rpc.gnosis.gateway.fm", + "https://gnosis-mainnet.public.blastapi.io", + "https://rpc.ankr.com/gnosis", + "https://rpc.ap-southeast-1.gateway.fm/v4/gnosis/non-archival/mainnet", + "https://gnosis.blockpi.network/v1/rpc/public", + "https://gnosis.api.onfinality.io/public", + "https://gnosis.drpc.org", + "https://endpoints.omniatech.io/v1/gnosis/mainnet/public", + "https://gnosis-rpc.publicnode.com", + "wss://gnosis-rpc.publicnode.com", + "https://1rpc.io/gnosis", + "https://rpc.tornadoeth.cash/gnosis", + "https://gnosischain-rpc.gateway.pokt.network", + "https://web3endpoints.com/gnosischain-mainnet", + "https://gnosis.oat.farm", + "wss://rpc.gnosischain.com/wss" + ], + "101": [ + "https://api.einc.io/jsonrpc/mainnet" + ], + "102": [ + "https://testnet-rpc-0.web3games.org/evm", + "https://testnet-rpc-1.web3games.org/evm", + "https://testnet-rpc-2.web3games.org/evm" + ], + "103": [ + "https://seoul.worldland.foundation", + "https://seoul2.worldland.foundation" + ], + "104": [ + "https://klc.live" + ], + "105": [ + "https://devnet.web3games.org/evm" + ], + "106": [ + "https://evmexplorer.velas.com/rpc", + "https://velas-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", + "https://explorer.velas.com/rpc" + ], + "107": [ + "https://testnet.rpc.novanetwork.io" + ], + "108": [ + "https://mainnet-rpc.thundercore.com", + "https://mainnet-rpc.thundertoken.net", + "https://mainnet-rpc.thundercore.io" + ], + "109": [ + "https://www.shibrpc.com" + ], + "110": [ + "https://protontestnet.greymass.com" + ], + "111": [ + "https://rpc.etherlite.org" + ], + "112": [ + "https://coinbit-rpc-mainnet.chain.sbcrypto.app" + ], + "113": [ + "https://connect.dehvo.com", + "https://rpc.dehvo.com", + "https://rpc1.dehvo.com", + "https://rpc2.dehvo.com" + ], + "114": [ + "https://coston2-api.flare.network/ext/C/rpc", + "https://flare-testnet-coston2.rpc.thirdweb.com", + "https://flaretestnet-bundler.etherspot.io", + "https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc", + "https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc", + "https://coston2.enosys.global/ext/C/rpc" + ], + "117": [ + "https://json-rpc.uptick.network" + ], + "118": [ + "https://testnet.arcology.network/rpc" + ], + "119": [ + "https://evmapi.nuls.io", + "https://evmapi2.nuls.io" + ], + "120": [ + "https://beta.evmapi.nuls.io", + "https://beta.evmapi2.nuls.io" + ], + "121": [ + "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" + ], + "122": [ + "https://rpc.fuse.io", + "https://fuse-pokt.nodies.app", + "https://fuse-mainnet.chainstacklabs.com", + "https://fuse.api.onfinality.io/public", + "https://fuse.liquify.com", + "https://fuse.drpc.org", + "wss://fuse.drpc.org" + ], + "123": [ + "https://rpc.fusespark.io" + ], + "124": [ + "https://decentralized-web.tech/dw_rpc.php" + ], + "125": [ + "https://rpc.testnet.oychain.io" + ], + "126": [ + "https://rpc.mainnet.oychain.io", + "https://rpc.oychain.io" + ], + "128": [ + "https://http-mainnet.hecochain.com", + "https://http-mainnet-node.huobichain.com", + "https://hecoapi.terminet.io/rpc", + "wss://ws-mainnet.hecochain.com" + ], + "129": [ + "https://rpc.innovatorchain.com" + ], + "131": [ + "https://tokioswift.engram.tech", + "https://tokio-archive.engram.tech" + ], + "132": [ + "https://rpc.chain.namefi.io" + ], + "134": [ + "https://bellecour.iex.ec" + ], + "135": [ + "https://testnet-rpc.alyxchain.com" + ], + "136": [ + "https://mainnet.deamchain.com" + ], + "137": [ + "https://polygon.llamarpc.com", + "https://rpc-mainnet.maticvigil.com", + "https://endpoints.omniatech.io/v1/matic/mainnet/public", + "https://polygon-rpc.com", + "https://rpc-mainnet.matic.network", + "https://rpc-mainnet.matic.quiknode.pro", + "https://matic-mainnet-full-rpc.bwarelabs.com", + "https://matic-mainnet-archive-rpc.bwarelabs.com", + "https://polygon-pokt.nodies.app", + "https://rpc.ankr.com/polygon", + "https://polygon-mainnet.public.blastapi.io", + "https://polygonapi.terminet.io/rpc", + "https://1rpc.io/matic", + "https://polygon-mainnet.rpcfast.com?api_key=xbhWBI1Wkguk8SNMu1bvvLurPGLXmgwYeC4S6g2H7WdwFigZSmPWVZRxrskEQwIf", + "https://polygon-bor-rpc.publicnode.com", + "wss://polygon-bor-rpc.publicnode.com", + "https://polygon-mainnet-public.unifra.io", + "https://polygon-mainnet.g.alchemy.com/v2/demo", + "https://polygon.blockpi.network/v1/rpc/public", + "https://polygon.api.onfinality.io/public", + "https://polygon.rpc.blxrbdn.com", + "https://polygon.drpc.org", + "https://polygon.gateway.tenderly.co", + "https://gateway.tenderly.co/public/polygon", + "https://api.zan.top/node/v1/polygon/mainnet/public", + "https://polygon.meowrpc.com", + "https://getblock.io/nodes/matic", + "https://api.stateless.solutions/polygon/v1/5850f066-209e-4e3c-a294-0757a4eb34b3", + "https://rpc.tornadoeth.cash/polygon", + "https://matic-mainnet.chainstacklabs.com", + "wss://polygon.gateway.tenderly.co", + "wss://polygon.drpc.org" + ], + "138": [ + "https://rpc.defi-oracle.io", + "wss://wss.defi-oracle.io" + ], + "139": [ + "https://rpc.woop.ai/rpc" + ], + "140": [ + "https://mainnet.eternalcoin.io/v1", + "ws://mainnet.eternalcoin.io/v1/ws" + ], + "141": [ + "https://testnet.openpiece.io" + ], + "142": [ + "https://rpc.prodax.io" + ], + "144": [ + "https://connect.phi.network" + ], + "145": [ + "https://rpc-testnet.soraai.bot" + ], + "147": [ + "https://mainnet-rpc.flagscan.xyz" + ], + "148": [ + "https://json-rpc.evm.shimmer.network" + ], + "150": [ + "https://rpc-evm.fivenet.sixprotocol.net" + ], + "153": [ + "https://governors.testnet.redbelly.network" + ], + "155": [ + "https://rpc.testnet.tenet.org" + ], + "156": [ + "https://testnet-rpc.oeblock.com" + ], + "157": [ + "https://puppynet.shibrpc.com" + ], + "158": [ + "https://dataseed.roburna.com" + ], + "159": [ + "https://preseed-testnet-1.roburna.com" + ], + "160": [ + "https://evascan.io/api/eth-rpc" + ], + "161": [ + "https://testnet.evascan.io/api/eth-rpc" + ], + "162": [ + "https://node.sirius.lightstreams.io" + ], + "163": [ + "https://node.mainnet.lightstreams.io" + ], + "164": [ + "https://testnet.omni.network" + ], + "167": [ + "https://node.atoshi.io", + "https://node2.atoshi.io", + "https://node3.atoshi.io" + ], + "168": [ + "https://eth-dataseed.aioz.network" + ], + "169": [ + "https://pacific-rpc.manta.network/http", + "https://1rpc.io/manta", + "https://manta-pacific.drpc.org", + "wss://manta-pacific.drpc.org" + ], + "170": [ + "https://http-testnet.hoosmartchain.com" + ], + "172": [ + "https://rpc.latam-blockchain.com", + "wss://ws.latam-blockchain.com" + ], + "176": [ + "https://rpc.dcnetio.cloud", + "wss://ws.dcnetio.cloud" + ], + "180": [ + "https://node1.amechain.io" + ], + "181": [ + "https://rpc.waterfall.network" + ], + "185": [ + "https://rpc.mintchain.io", + "https://global.rpc.mintchain.io", + "https://asia.rpc.mintchain.io" + ], + "186": [ + "https://rpc.seelen.pro" + ], + "188": [ + "https://mainnet.bmcchain.com" + ], + "189": [ + "https://testnet.bmcchain.com" + ], + "191": [ + "https://rpc.filefilego.com/rpc" + ], + "193": [ + "https://cemchain.com" + ], + "195": [ + "https://x1-testnet.blockpi.network/v1/rpc/public ", + "https://testrpc.xlayer.tech", + "https://xlayertestrpc.okx.com" + ], + "196": [ + "https://rpc.xlayer.tech", + "https://xlayerrpc.okx.com" + ], + "197": [ + "https://testnet-rpc.neutrinoschain.com" + ], + "198": [ + "https://rpc.bitchain.biz" + ], + "199": [ + "https://rpc.bittorrentchain.io", + "https://rpc.bt.io", + "https://bittorrent.drpc.org", + "wss://bittorrent.drpc.org" + ], + "200": [ + "https://arbitrum.xdaichain.com" + ], + "201": [ + "https://gateway.moac.io/testnet" + ], + "202": [ + "https://testnet.rpc.edgeless.network/http" + ], + "204": [ + "https://opbnb-rpc.publicnode.com", + "wss://opbnb-rpc.publicnode.com", + "https://1rpc.io/opbnb", + "https://opbnb-mainnet-rpc.bnbchain.org", + "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "https://opbnb.drpc.org", + "wss://opbnb.drpc.org" + ], + "206": [ + "https://vinufoundation-rpc.com" + ], + "207": [ + "https://vinuchain-rpc.com" + ], + "208": [ + "https://mainnet.structx.io" + ], + "210": [ + "https://rpc.bitnet.money", + "https://rpc.btnscan.com" + ], + "211": [ + "http://13.57.207.168:3435", + "https://app.freighttrust.net/ftn/${API_KEY}" + ], + "212": [ + "https://testnet-rpc.maplabs.io" + ], + "213": [ + "https://hub-rpc.bsquared.network" + ], + "214": [ + "https://mainnet.shinarium.org" + ], + "217": [ + "https://rpc2.siriusnet.io" + ], + "220": [ + "https://rpc-sepolia.scalind.com" + ], + "223": [ + "https://mainnet.b2-rpc.com", + "https://rpc.bsquared.network", + "https://b2-mainnet.alt.technology", + "https://b2-mainnet-public.s.chainbase.com", + "https://rpc.ankr.com/b2" + ], + "224": [ + "https://testnet-rpc.vrd.network" + ], + "225": [ + "https://rpc-mainnet.lachain.io" + ], + "226": [ + "https://rpc-testnet.lachain.io" + ], + "228": [ + "https://rpc_mainnet.mindnetwork.xyz", + "wss://rpc_mainnet.mindnetwork.xyz" + ], + "230": [ + "https://rpc.swapdex.network", + "wss://ss.swapdex.network" + ], + "234": [ + "https://testnode.jumbochain.org" + ], + "236": [ + "https://testnet.deamchain.com" + ], + "242": [ + "https://rpcurl.mainnet.plgchain.com", + "https://rpcurl.plgchain.blockchain.evmnode.online", + "https://rpcurl.mainnet.plgchain.plinga.technology" + ], + "246": [ + "https://rpc.energyweb.org", + "wss://rpc.energyweb.org/ws" + ], + "248": [ + "https://oasys.blockpi.network/v1/rpc/public", + "https://oasys-mainnet.gateway.pokt.network/v1/lb/c967bd31", + "https://oasys-mainnet-archival.gateway.pokt.network/v1/lb/c967bd31", + "https://rpc.mainnet.oasys.games" + ], + "250": [ + "https://rpcapi.fantom.network", + "https://endpoints.omniatech.io/v1/fantom/mainnet/public", + "https://fantom-pokt.nodies.app", + "https://rpc.ftm.tools", + "https://rpc.ankr.com/fantom", + "https://rpc.fantom.network", + "https://rpc2.fantom.network", + "https://rpc3.fantom.network", + "https://fantom-mainnet.public.blastapi.io", + "https://1rpc.io/ftm", + "https://fantom.blockpi.network/v1/rpc/public", + "https://fantom-rpc.publicnode.com", + "wss://fantom-rpc.publicnode.com", + "https://fantom.api.onfinality.io/public", + "https://rpc.fantom.gateway.fm", + "https://fantom.drpc.org", + "wss://fantom.drpc.org" + ], + "252": [ + "https://rpc.frax.com" + ], + "255": [ + "https://1rpc.io/kroma", + "https://api.kroma.network", + "https://rpc-kroma.rockx.com" + ], + "256": [ + "https://hecotestapi.terminet.io/rpc", + "https://http-testnet.hecochain.com", + "wss://ws-testnet.hecochain.com" + ], + "259": [ + "https://mainnet.neonlink.io" + ], + "262": [ + "https://sur.nilin.org" + ], + "267": [ + "https://rpc.ankr.com/neura_testnet" + ], + "269": [ + "https://hpbnode.com", + "wss://ws.hpbnode.com" + ], + "271": [ + "https://rpc.egonscan.com" + ], + "274": [ + "https://rpc1.mainnet.lachain.network", + "https://rpc2.mainnet.lachain.network", + "https://lachain.rpc-nodes.cedalio.dev" + ], + "278": [ + "https://rpc_mainnet.xfair.ai", + "wss://rpc_mainnet.xfair.ai" + ], + "279": [ + "https://rpc.mainnet.bpxchain.cc", + "https://bpx-dataseed.infinex.cc" + ], + "282": [ + "https://testnet.zkevm.cronos.org" + ], + "288": [ + "https://mainnet.boba.network", + "https://boba-ethereum.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-ethereum", + "https://1rpc.io/boba/eth", + "https://replica.boba.network", + "wss://boba-ethereum.gateway.tenderly.co", + "wss://gateway.tenderly.co/public/boba-ethereum", + "https://boba-eth.drpc.org", + "wss://boba-eth.drpc.org" + ], + "291": [ + "https://rpc.orderly.network", + "https://l2-orderly-mainnet-0.t.conduit.xyz" + ], + "295": [ + "https://mainnet.hashio.io/api" + ], + "296": [ + "https://testnet.hashio.io/api" + ], + "297": [ + "https://previewnet.hashio.io/api" + ], + "300": [ + "https://zksync-era-sepolia.blockpi.network/v1/rpc/public", + "https://sepolia.era.zksync.dev", + "https://zksync-sepolia.drpc.org", + "wss://zksync-sepolia.drpc.org" + ], + "302": [ + "https://sepolia.rpc.zkcandy.io" + ], + "303": [ + "https://nc-rpc-test1.neurochain.io" + ], + "305": [ + "https://mainnet.zksats.io" + ], + "307": [ + "https://trpc.lovely.network" + ], + "308": [ + "https://rpc.furtheon.org" + ], + "309": [ + "https://rpc-testnet3.wyzthchain.org" + ], + "311": [ + "https://mainapi.omaxray.com" + ], + "313": [ + "https://nc-rpc-prd1.neurochain.io", + "https://nc-rpc-prd2.neurochain.io" + ], + "314": [ + "https://api.node.glif.io", + "https://node.filutils.com/rpc/v1", + "https://rpc.ankr.com/filecoin", + "https://filecoin.chainup.net/rpc/v1", + "https://infura.sftproject.io/filecoin/rpc/v1", + "https://api.chain.love/rpc/v1", + "https://filecoin-mainnet.chainstacklabs.com/rpc/v1", + "https://filfox.info/rpc/v1", + "https://filecoin.drpc.org", + "wss://filecoin.drpc.org" + ], + "321": [ + "https://rpc-mainnet.kcc.network", + "https://kcc.mytokenpocket.vip", + "https://kcc-rpc.com", + "https://services.tokenview.io/vipapi/nodeservice/kcs?apikey=qVHq2o6jpaakcw3lRstl", + "https://public-rpc.blockpi.io/http/kcc" + ], + "322": [ + "https://rpc-testnet.kcc.network" + ], + "323": [ + "https://rpc.cosvm.net" + ], + "324": [ + "https://zksync-era.blockpi.network/v1/rpc/public", + "https://zksync.meowrpc.com", + "https://zksync.drpc.org", + "https://1rpc.io/zksync2-era", + "https://mainnet.era.zksync.io", + "wss://zksync.drpc.org" + ], + "333": [ + "https://mainnet.web3q.io:8545" + ], + "335": [ + "https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc" + ], + "336": [ + "https://rpc.shiden.astar.network:8545", + "https://shiden.public.blastapi.io", + "https://shiden-rpc.dwellir.com", + "wss://shiden-rpc.dwellir.com", + "https://shiden.api.onfinality.io/public", + "wss://shiden.api.onfinality.io/public-ws", + "wss://shiden.public.blastapi.io" + ], + "338": [ + "https://evm-t3.cronos.org", + "https://cronos-testnet.drpc.org", + "wss://cronos-testnet.drpc.org" + ], + "345": [ + "https://rpc01.trias.one" + ], + "361": [ + "https://eth-rpc-api.thetatoken.org/rpc" + ], + "363": [ + "https://eth-rpc-api-sapphire.thetatoken.org/rpc" + ], + "364": [ + "https://eth-rpc-api-amber.thetatoken.org/rpc" + ], + "365": [ + "https://eth-rpc-api-testnet.thetatoken.org/rpc" + ], + "369": [ + "https://rpc.pulsechain.com", + "https://pulse-s.projectpi.xyz", + "https://pulsechain-rpc.publicnode.com", + "wss://pulsechain-rpc.publicnode.com", + "https://rpc-pulsechain.g4mm4.io", + "https://evex.cloud/pulserpc", + "wss://evex.cloud/pulsews", + "wss://rpc.pulsechain.com", + "wss://rpc-pulsechain.g4mm4.io" + ], + "371": [ + "https://rpc-testnet.theconsta.com" + ], + "380": [ + "https://rpc.testnet.zkamoeba.com:4050", + "https://rpc1.testnet.zkamoeba.com:4050" + ], + "381": [ + "https://rpc.mainnet.zkamoeba.com/rpc" + ], + "385": [ + "https://rpc-bitfalls1.lisinski.online" + ], + "395": [ + "https://rpc1.testnet.camdl.gov.kh" + ], + "399": [ + "https://rpc.nativ3.network", + "wss://ws.nativ3.network" + ], + "400": [ + "https://testnet-rpc.hyperonchain.com" + ], + "401": [ + "https://node1.testnet.ozonechain.io" + ], + "404": [ + "https://rpc.syndr.com", + "wss://rpc.syndr.com/ws" + ], + "411": [ + "https://rpc.pepe-chain.vip" + ], + "416": [ + "https://rpc.sx.technology" + ], + "418": [ + "https://rpc.testnet.lachain.network", + "https://lachain-testnet.rpc-nodes.cedalio.dev" + ], + "420": [ + "https://endpoints.omniatech.io/v1/op/goerli/public", + "https://opt-goerli.g.alchemy.com/v2/demo", + "https://optimism-goerli.public.blastapi.io", + "https://rpc.goerli.optimism.gateway.fm", + "https://optimism-goerli-rpc.publicnode.com", + "wss://optimism-goerli-rpc.publicnode.com", + "https://api.zan.top/node/v1/opt/goerli/public", + "https://optimism-goerli.gateway.tenderly.co", + "https://gateway.tenderly.co/public/optimism-goerli", + "https://goerli.optimism.io", + "wss://optimism-goerli.gateway.tenderly.co", + "https://optimism-testnet.drpc.org", + "wss://optimism-testnet.drpc.org" + ], + "422": [ + "https://mainnet-rpc.vrd.network" + ], + "424": [ + "https://rpc.publicgoods.network" + ], + "427": [ + "https://rpc.zeeth.io" + ], + "428": [ + "https://rpc.verse.gesoten.com" + ], + "434": [ + "https://evm-rpc.mainnet.boyaa.network" + ], + "443": [ + "https://testnet.ten.xyz" + ], + "444": [ + "https://sepolia.synapseprotocol.com" + ], + "456": [ + "https://chain-rpc.arzio.co" + ], + "462": [ + "https://testnet-rpc.areon.network", + "https://testnet-rpc2.areon.network", + "https://testnet-rpc3.areon.network", + "https://testnet-rpc4.areon.network", + "https://testnet-rpc5.areon.network" + ], + "463": [ + "https://mainnet-rpc.areon.network", + "https://mainnet-rpc2.areon.network", + "https://mainnet-rpc3.areon.network", + "https://mainnet-rpc4.areon.network", + "https://mainnet-rpc5.areon.network" + ], + "500": [ + "https://api.camino.network/ext/bc/C/rpc" + ], + "501": [ + "https://columbus.camino.network/ext/bc/C/rpc" + ], + "510": [ + "https://rpc-mainnet.syndicate.io" + ], + "512": [ + "https://rpc.acuteangle.com" + ], + "513": [ + "https://rpc-testnet.acuteangle.com" + ], + "516": [ + "https://gzn.linksme.info" + ], + "520": [ + "https://datarpc1.xsc.pub", + "https://datarpc2.xsc.pub", + "https://datarpc3.xsc.pub" + ], + "529": [ + "https://rpc-mainnet.thefirechain.com" + ], + "530": [ + "https://fx-json-web3.portfolio-x.xyz:8545", + "https://fx-json-web3.functionx.io:8545" + ], + "534": [ + "https://candle-rpc.com", + "https://rpc.cndlchain.com" + ], + "537": [ + "https://rpc.optrust.io" + ], + "542": [ + "https://pawchainx.com" + ], + "545": [ + "https://testnet.evm.nodes.onflow.org" + ], + "555": [ + "https://rpc.velaverse.io" + ], + "558": [ + "https://rpc.tao.network", + "https://rpc.testnet.tao.network", + "http://rpc.testnet.tao.network:8545", + "wss://rpc.tao.network" + ], + "568": [ + "https://rpc-testnet.dogechain.dog" + ], + "570": [ + "wss://rpc.rollux.com/wss", + "https://rpc.rollux.com", + "https://rollux.rpc.syscoin.org", + "wss://rollux.rpc.syscoin.org/wss", + "https://rpc.ankr.com/rollux" + ], + "571": [ + "https://rpc.metatime.com" + ], + "579": [ + "https://rpc.filenova.org" + ], + "592": [ + "https://evm.astar.network", + "https://rpc.astar.network:8545", + "https://astar.public.blastapi.io", + "https://getblock.io/nodes/bsc", + "https://1rpc.io/astr", + "https://astar-mainnet.g.alchemy.com/v2/demo", + "https://astar.api.onfinality.io/public", + "wss://astar.api.onfinality.io/public-ws", + "https://astar-rpc.dwellir.com", + "wss://astar-rpc.dwellir.com" + ], + "595": [ + "https://eth-rpc-tc9.aca-staging.network", + "wss://eth-rpc-tc9.aca-staging.network" + ], + "596": [ + "https://eth-rpc-karura-testnet.aca-staging.network", + "wss://eth-rpc-karura-testnet.aca-staging.network" + ], + "597": [ + "https://eth-rpc-acala-testnet.aca-staging.network", + "wss://eth-rpc-acala-testnet.aca-staging.network" + ], + "601": [ + "https://rpc-testnet.vne.network" + ], + "612": [ + "https://rpc.eiob.xyz" + ], + "614": [ + "https://glq-dataseed.graphlinq.io" + ], + "634": [ + "https://rpc.avocado.instadapp.io" + ], + "646": [ + "https://previewnet.evm.nodes.onflow.org" + ], + "647": [ + "https://rpc.toronto.sx.technology" + ], + "648": [ + "https://rpc-endurance.fusionist.io" + ], + "653": [ + "https://rpc.kalichain.com" + ], + "654": [ + "https://mainnet.kalichain.com" + ], + "662": [ + "https://rpc.ultronsmartchain.io" + ], + "666": [ + "https://http-testnet.chain.pixie.xyz", + "wss://ws-testnet.chain.pixie.xyz" + ], + "667": [ + "https://arrakis.gorengine.com/own", + "wss://arrakis.gorengine.com/own" + ], + "668": [ + "https://rpc.juncachain.com" + ], + "669": [ + "https://rpc-testnet.juncachain.com", + "wss://ws-testnet.juncachain.com" + ], + "686": [ + "https://eth-rpc-karura.aca-staging.network", + "https://rpc.evm.karura.network", + "https://karura.api.onfinality.io/public", + "https://eth-rpc-karura.aca-api.network", + "wss://eth-rpc-karura.aca-api.network" + ], + "690": [ + "https://rpc.redstonechain.com", + "wss://rpc.redstonechain.com" + ], + "700": [ + "https://avastar.cc/ext/bc/C/rpc" + ], + "701": [ + "https://koi-rpc.darwinia.network" + ], + "707": [ + "https://rpc-mainnet.bcsdev.io", + "wss://rpc-ws-mainnet.bcsdev.io" + ], + "708": [ + "https://rpc-testnet.bcsdev.io", + "wss://rpc-ws-testnet.bcsdev.io" + ], + "710": [ + "https://highbury.furya.io", + "https://rest.furya.io" + ], + "713": [ + "https://rpc-mainnet-5.vrcscan.com", + "https://rpc-mainnet-6.vrcscan.com", + "https://rpc-mainnet-7.vrcscan.com", + "https://rpc-mainnet-8.vrcscan.com" + ], + "719": [ + "https://puppynet.shibrpc.com" + ], + "721": [ + "https://rpc.lycanchain.com", + "https://us-east.lycanchain.com", + "https://us-west.lycanchain.com", + "https://eu-north.lycanchain.com", + "https://eu-west.lycanchain.com", + "https://asia-southeast.lycanchain.com" + ], + "727": [ + "https://data.bluchain.pro" + ], + "730": [ + "https://rpc.lovely.network" + ], + "741": [ + "https://node-testnet.vention.network" + ], + "742": [ + "https://testeth-rpc-api.script.tv/rpc" + ], + "747": [ + "https://mainnet.evm.nodes.onflow.org" + ], + "766": [ + "https://rpc.qom.one" + ], + "777": [ + "https://node.cheapeth.org/rpc" + ], + "786": [ + "https://node1-mainnet.maalscan.io", + "https://node2-mainnet.maalscan.io", + "https://node3-mainnet.maalscan.io" + ], + "787": [ + "https://eth-rpc-acala.aca-staging.network", + "https://rpc.evm.acala.network", + "https://eth-rpc-acala.aca-api.network", + "wss://eth-rpc-acala.aca-api.network" + ], + "788": [ + "https://testnet-rpc.aerochain.id" + ], + "789": [ + "https://rpc.patex.io" + ], + "799": [ + "https://rpc.testnet.rupaya.io" + ], + "800": [ + "https://rpc.lucidcoin.io" + ], + "803": [ + "https://orig.haichain.io" + ], + "808": [ + "https://subnets.avax.network/portal-fantasy/testnet/rpc" + ], + "810": [ + "https://testnet-rpc.haven1.org" + ], + "813": [ + "https://mainnet.meerlabs.com", + "https://evm-dataseed1.meerscan.io", + "https://evm-dataseed2.meerscan.io", + "https://evm-dataseed3.meerscan.io", + "https://evm-dataseed.meerscan.com", + "https://qng.rpc.qitmeer.io", + "https://rpc.dimai.ai", + "https://rpc.woowow.io" + ], + "814": [ + "https://rpc-zkevm.thefirechain.com" + ], + "818": [ + "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" + ], + "820": [ + "https://rpc.callisto.network", + "https://clo-geth.0xinfra.com" + ], + "822": [ + "https://rpc-testnet.runic.build" + ], + "831": [ + "https://devnet.checkdot.io" + ], + "841": [ + "https://rpc.mainnet.taraxa.io" + ], + "842": [ + "https://rpc.testnet.taraxa.io" + ], + "859": [ + "https://rpc.dev.zeeth.io" + ], + "868": [ + "https://mainnet-data1.fantasiachain.com", + "https://mainnet-data2.fantasiachain.com", + "https://mainnet-data3.fantasiachain.com" + ], + "876": [ + "https://rpc.main.oasvrs.bnken.net" + ], + "877": [ + "https://dxt.dexit.network" + ], + "880": [ + "https://api.ambros.network" + ], + "888": [ + "https://gwan-ssl.wandevs.org:56891", + "https://gwan2-ssl.wandevs.org" + ], + "898": [ + "https://rpc-testnet.maxi.network" + ], + "899": [ + "https://rpc.maxi.network" + ], + "900": [ + "https://s0-testnet.garizon.net/rpc" + ], + "901": [ + "https://s1-testnet.garizon.net/rpc" + ], + "902": [ + "https://s2-testnet.garizon.net/rpc" + ], + "903": [ + "https://s3-testnet.garizon.net/rpc" + ], + "910": [ + "https://layer1test.decentrabone.com" + ], + "911": [ + "https://rpc.taprootchain.io" + ], + "917": [ + "https://rinia-rpc1.thefirechain.com" + ], + "919": [ + "https://sepolia.mode.network" + ], + "927": [ + "https://rpc.yidark.io" + ], + "943": [ + "https://pulsetest-s.projectpi.xyz", + "https://pulsechain-testnet-rpc.publicnode.com", + "wss://pulsechain-testnet-rpc.publicnode.com", + "https://rpc.v4.testnet.pulsechain.com", + "wss://rpc.v4.testnet.pulsechain.com", + "https://rpc-testnet-pulsechain.g4mm4.io", + "wss://rpc-testnet-pulsechain.g4mm4.io" + ], + "957": [ + "https://rpc.lyra.finance" + ], + "963": [ + "https://rpc.bitcoincode.technology" + ], + "969": [ + "https://rpc.ethxy.com" + ], + "970": [ + "https://mainnet-rpc.oortech.com" + ], + "972": [ + "https://ascraeus-rpc.oortech.com" + ], + "977": [ + "https://api.nepalblockchain.dev", + "https://api.nepalblockchain.network" + ], + "979": [ + "https://rpc.testnet.ethxy.com" + ], + "980": [ + "https://ethapi.topnetwork.org" + ], + "985": [ + "https://chain.metamemo.one:8501", + "wss://chain.metamemo.one:16801" + ], + "990": [ + "https://rpc.eliberty.ngo" + ], + "997": [ + "https://rpc-testnet.5ire.network" + ], + "998": [ + "https://rpc.luckynetwork.org", + "wss://ws.lnscan.org", + "https://rpc.lnscan.org" + ], + "999": [ + "https://gwan-ssl.wandevs.org:46891" + ], + "1000": [ + "https://rpc.gton.network" + ], + "1001": [ + "https://public-en-baobab.klaytn.net", + "https://klaytn-baobab-rpc.allthatnode.com:8551", + "https://rpc.ankr.com/klaytn_testnet", + "https://klaytn-baobab.blockpi.network/v1/rpc/public", + "https://klaytn.api.onfinality.io/public", + "https://api.baobab.klaytn.net:8651" + ], + "1003": [ + "https://rpc.softnote.com" + ], + "1004": [ + "https://test.ekta.io:8545" + ], + "1007": [ + "https://rpc1.newchain.newtonproject.org" + ], + "1008": [ + "https://mainnet.eurus.network" + ], + "1009": [ + "https://rpcpriv.jumbochain.org" + ], + "1010": [ + "https://meta.evrice.com" + ], + "1011": [ + "https://apievm.rebuschain.com/rpc" + ], + "1012": [ + "https://global.rpc.mainnet.newtonproject.org" + ], + "1024": [ + "https://api-para.clover.finance" + ], + "1028": [ + "https://testrpc.bittorrentchain.io" + ], + "1030": [ + "https://evm.confluxrpc.com", + "https://conflux-espace-public.unifra.io" + ], + "1031": [ + "http://128.199.94.183:8041" + ], + "1038": [ + "https://evm-testnet.bronos.org" + ], + "1073": [ + "https://json-rpc.evm.testnet.shimmer.network" + ], + "1075": [ + "https://json-rpc.evm.testnet.iotaledger.net" + ], + "1079": [ + "https://subnets.avax.network/mintara/testnet/rpc" + ], + "1080": [ + "https://subnets.avax.network/mintara/mainnet/rpc" + ], + "1088": [ + "https://andromeda.metis.io/?owner=1088", + "https://metis-mainnet.public.blastapi.io", + "https://metis.api.onfinality.io/public", + "https://metis-pokt.nodies.app", + "https://metis.drpc.org", + "wss://metis.drpc.org" + ], + "1089": [ + "https://humans-mainnet-evm.itrocket.net", + "https://jsonrpc.humans.nodestake.top", + "https://humans-evm-rpc.staketab.org:443", + "https://evm.humans.stakepool.dev.br", + "https://mainnet-humans-evm.konsortech.xyz", + "https://evm-rpc.mainnet.humans.zone", + "https://json-rpc.humans.bh.rocks", + "https://evm-rpc.humans.huginn.tech" + ], + "1100": [ + "https://jsonrpc.dymension.nodestake.org", + "https://evm-archive.dymd.bitszn.com", + "https://dymension.liquify.com/json-rpc", + "https://dymension-evm.kynraze.com", + "https://dymension-evm.blockpi.network/v1/rpc/public", + "https://dymension-evm-rpc.publicnode.com", + "wss://dymension-evm-rpc.publicnode.com" + ], + "1101": [ + "https://rpc.ankr.com/polygon_zkevm", + "https://rpc.polygon-zkevm.gateway.fm", + "https://1rpc.io/polygon/zkevm", + "https://polygon-zkevm.blockpi.network/v1/rpc/public", + "https://polygon-zkevm-mainnet.public.blastapi.io", + "https://api.zan.top/node/v1/polygonzkevm/mainnet/public", + "https://polygon-zkevm.drpc.org", + "https://zkevm-rpc.com", + "wss://polygon-zkevm.drpc.org" + ], + "1107": [ + "https://testnetq1.blx.org" + ], + "1108": [ + "https://mainnet.blxq.org" + ], + "1111": [ + "https://api.wemix.com", + "wss://ws.wemix.com" + ], + "1112": [ + "https://api.test.wemix.com", + "wss://ws.test.wemix.com" + ], + "1113": [ + "https://testnet-hub-rpc.bsquared.network" + ], + "1115": [ + "https://rpc.test.btcs.network" + ], + "1116": [ + "https://rpc.coredao.org", + "https://core.public.infstones.com", + "https://1rpc.io/core", + "https://rpc.ankr.com/core", + "https://rpc-core.icecreamswap.com", + "https://core.drpc.org", + "wss://core.drpc.org" + ], + "1117": [ + "https://mainnet-rpc.dogcoin.me" + ], + "1123": [ + "https://b2-testnet.alt.technology", + "https://rpc.ankr.com/b2_testnet", + "https://testnet-rpc.bsquared.network" + ], + "1130": [ + "https://dmc.mydefichain.com/mainnet", + "https://dmc01.mydefichain.com/mainnet" + ], + "1131": [ + "https://dmc.mydefichain.com/testnet", + "https://dmc01.mydefichain.com/testnet", + "https://eth.testnet.ocean.jellyfishsdk.com" + ], + "1133": [ + "https://dmc.mydefichain.com/changi", + "https://testnet-dmc.mydefichain.com:20551" + ], + "1135": [ + "https://rpc.api.lisk.com" + ], + "1138": [ + "https://testnet-rpc.amstarscan.com" + ], + "1139": [ + "https://mathchain.maiziqianbao.net/rpc", + "https://mathchain-asia.maiziqianbao.net/rpc", + "https://mathchain-us.maiziqianbao.net/rpc" + ], + "1140": [ + "https://galois-hk.maiziqianbao.net/rpc" + ], + "1147": [ + "https://testnet-rpc.flagscan.xyz" + ], + "1149": [ + "https://plex-rpc.plexfinance.us" + ], + "1170": [ + "https://json-rpc.origin.uptick.network" + ], + "1177": [ + "https://s2.tl.web.tr:4041" + ], + "1188": [ + "https://mainnet.mosscan.com" + ], + "1197": [ + "https://dataseed.iorachain.com" + ], + "1200": [ + "https://mainnet-rpc.cuckoo.network", + "wss://mainnet-rpc.cuckoo.network" + ], + "1201": [ + "https://seed5.evanesco.org:8547" + ], + "1202": [ + "https://rpc.cadaut.com", + "wss://rpc.cadaut.com/ws" + ], + "1209": [ + "https://rpc-nodes.saitascan.io" + ], + "1210": [ + "https://testnet-rpc.cuckoo.network", + "wss://testnet-rpc.cuckoo.network" + ], + "1213": [ + "https://dataseed.popcateum.org" + ], + "1214": [ + "https://tapi.entercoin.net" + ], + "1221": [ + "https://rpc-testnet.cyclenetwork.io" + ], + "1225": [ + "https://hybrid-testnet.rpc.caldera.xyz/http", + "wss://hybrid-testnet.rpc.caldera.xyz/ws" + ], + "1229": [ + "https://mainnet.exzo.technology" + ], + "1230": [ + "https://ultron-dev.io" + ], + "1231": [ + "https://ultron-rpc.net" + ], + "1234": [ + "https://rpc.step.network" + ], + "1235": [ + "https://rpc.itxchain.com" + ], + "1243": [ + "https://rpc-main-1.archiechain.io" + ], + "1244": [ + "https://rpc-test-1.archiechain.io" + ], + "1246": [ + "https://rpc-cnx.omplatform.com" + ], + "1248": [ + "https://rpc.dogether.dog" + ], + "1252": [ + "https://testapi.cicscan.com" + ], + "1280": [ + "https://nodes.halo.land" + ], + "1284": [ + "https://rpc.api.moonbeam.network", + "https://moonbeam.api.onfinality.io/public", + "wss://moonbeam.api.onfinality.io/public-ws", + "https://moonbeam.unitedbloc.com:3000", + "wss://moonbeam.unitedbloc.com:3001", + "https://moonbeam.public.blastapi.io", + "https://rpc.ankr.com/moonbeam", + "https://1rpc.io/glmr", + "https://moonbeam-rpc.dwellir.com", + "wss://moonbeam-rpc.dwellir.com", + "https://endpoints.omniatech.io/v1/moonbeam/mainnet/public", + "https://moonbeam-rpc.publicnode.com", + "wss://moonbeam-rpc.publicnode.com", + "wss://wss.api.moonbeam.network", + "wss://moonbeam.public.blastapi.io", + "https://moonbeam.unitedbloc.com", + "wss://moonbeam.unitedbloc.com", + "https://moonbeam.drpc.org", + "wss://moonbeam.drpc.org" + ], + "1285": [ + "wss://moonriver.api.onfinality.io/public-ws", + "https://moonriver.api.onfinality.io/public", + "https://moonriver.unitedbloc.com:2000", + "wss://moonriver.unitedbloc.com:2001", + "https://moonriver.public.blastapi.io", + "https://moonriver-rpc.dwellir.com", + "wss://moonriver-rpc.dwellir.com", + "https://moonriver-rpc.publicnode.com", + "wss://moonriver-rpc.publicnode.com", + "https://rpc.api.moonriver.moonbeam.network", + "wss://wss.api.moonriver.moonbeam.network", + "wss://moonriver.public.blastapi.io", + "https://moonriver.unitedbloc.com", + "wss://moonriver.unitedbloc.com", + "https://moonriver.drpc.org", + "wss://moonriver.drpc.org" + ], + "1287": [ + "https://rpc.testnet.moonbeam.network", + "https://moonbase.unitedbloc.com:1000", + "wss://moonbase.unitedbloc.com:1001", + "https://moonbase-alpha.public.blastapi.io", + "https://moonbeam-alpha.api.onfinality.io/public", + "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "https://rpc.api.moonbase.moonbeam.network", + "wss://wss.api.moonbase.moonbeam.network", + "wss://moonbase-alpha.public.blastapi.io", + "https://moonbase-rpc.dwellir.com", + "wss://moonbase-rpc.dwellir.com", + "https://moonbase.unitedbloc.com", + "wss://moonbase.unitedbloc.com", + "https://moonbase-alpha.drpc.org", + "wss://moonbase-alpha.drpc.org" + ], + "1288": [ + "https://rpc.api.moonrock.moonbeam.network", + "wss://wss.api.moonrock.moonbeam.network" + ], + "1291": [ + "https://json-rpc.testnet.swisstronik.com" + ], + "1311": [ + "https://test.doschain.com/jsonrpc" + ], + "1314": [ + "https://rpc.alyxchain.com" + ], + "1319": [ + "https://aia-dataseed1.aiachain.org", + "https://aia-dataseed2.aiachain.org", + "https://aia-dataseed3.aiachain.org", + "https://aia-dataseed4.aiachain.org" + ], + "1320": [ + "https://aia-dataseed1-testnet.aiachain.org" + ], + "1328": [ + "https://evm-rpc-testnet.sei-apis.com", + "wss://evm-ws-testnet.sei-apis.com" + ], + "1329": [ + "https://evm-rpc.sei-apis.com", + "wss://evm-ws.sei-apis.com" + ], + "1337": [ + "http://127.0.0.1:8545" + ], + "1338": [ + "https://rpc.atlantischain.network", + "https://elysium-test-rpc.vulcanforged.com" + ], + "1339": [ + "https://rpc.elysiumchain.tech", + "https://rpc.elysiumchain.us" + ], + "1343": [ + "https://subnets.avax.network/blitz/testnet/rpc" + ], + "1353": [ + "https://xapi.cicscan.com" + ], + "1369": [ + "https://mainnet.zakumi.io" + ], + "1370": [ + "https://blockchain.ramestta.com", + "https://blockchain2.ramestta.com" + ], + "1377": [ + "https://testnet.ramestta.com" + ], + "1379": [ + "https://rpc-api.kalarchain.tech" + ], + "1388": [ + "https://mainnet-rpc.amstarscan.com" + ], + "1392": [ + "https://rpc.modchain.net/blockchain.joseon.com/rpc" + ], + "1433": [ + "https://rpc.rikscan.com" + ], + "1440": [ + "https://beta.mainnet.livingassets.io/rpc", + "https://gamma.mainnet.livingassets.io/rpc" + ], + "1442": [ + "https://api.zan.top/node/v1/polygonzkevm/testnet/public", + "https://polygon-zkevm-testnet.blockpi.network/v1/rpc/public", + "https://rpc.public.zkevm-test.net", + "https://polygon-zkevm-testnet.drpc.org", + "wss://polygon-zkevm-testnet.drpc.org" + ], + "1452": [ + "https://rpc.giltestnet.com" + ], + "1453": [ + "https://istanbul-rpc.metachain.dev" + ], + "1455": [ + "https://mainnet-rpc.ctexscan.com" + ], + "1490": [ + "https://rpc.vitruveo.xyz" + ], + "1499": [ + "https://rpc-testnet.idos.games" + ], + "1501": [ + "https://rpc-canary-1.bevm.io", + "https://rpc-canary-2.bevm.io" + ], + "1506": [ + "https://mainnet.sherpax.io/rpc" + ], + "1507": [ + "https://sherpax-testnet.chainx.org/rpc" + ], + "1515": [ + "https://beagle.chat/eth" + ], + "1559": [ + "https://rpc.tenet.org", + "https://tenet-evm.publicnode.com", + "wss://tenet-evm.publicnode.com" + ], + "1617": [ + "https://rpc.etins.org" + ], + "1618": [ + "https://send.catechain.com" + ], + "1620": [ + "https://rpc.atheios.org" + ], + "1625": [ + "https://rpc.gravity.xyz" + ], + "1657": [ + "https://dataseed1.btachain.com" + ], + "1663": [ + "https://gobi-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_gobi_testnet" + ], + "1686": [ + "https://testnet-rpc.mintchain.io" + ], + "1687": [ + "https://sepolia-testnet-rpc.mintchain.io" + ], + "1688": [ + "https://rpc.ludan.org" + ], + "1701": [ + "https://geth.anytype.io" + ], + "1707": [ + "https://rpc.blockchain.or.th" + ], + "1708": [ + "https://rpc.testnet.blockchain.or.th" + ], + "1717": [ + "https://mainnet.doric.network" + ], + "1718": [ + "https://palette-rpc.com:22000" + ], + "1729": [ + "https://rpc.reya.network", + "wss://ws.reya.network" + ], + "1740": [ + "https://testnet.rpc.metall2.com" + ], + "1750": [ + "https://rpc.metall2.com" + ], + "1773": [ + "https://tea.mining4people.com/rpc", + "http://172.104.194.36:8545" + ], + "1777": [ + "https://rpc.gaussgang.com" + ], + "1789": [ + "https://sepolia-rpc.zkbase.app" + ], + "1804": [ + "https://cacib-saturn-test.francecentral.cloudapp.azure.com", + "wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443" + ], + "1807": [ + "https://rabbit.analog-rpc.com" + ], + "1818": [ + "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" + ], + "1819": [ + "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" + ], + "1821": [ + "https://mainnet-data.rubychain.io", + "https://mainnet.rubychain.io" + ], + "1856": [ + "rpcWorking:false", + "https://tsfapi.europool.me" + ], + "1875": [ + "https://rpc.whitechain.io" + ], + "1881": [ + "https://rpc.cartenz.works" + ], + "1890": [ + "https://replicator.phoenix.lightlink.io/rpc/v1" + ], + "1891": [ + "https://replicator.pegasus.lightlink.io/rpc/v1" + ], + "1898": [ + "http://rpc.boyanet.org:8545", + "ws://rpc.boyanet.org:8546" + ], + "1904": [ + "https://rpc.sportschainnetwork.xyz" + ], + "1907": [ + "https://rpc.bitci.com" + ], + "1908": [ + "https://testnet.bitcichain.com" + ], + "1909": [ + "https://marklechain-rpc.merklescan.com" + ], + "1911": [ + "https://rpc.scalind.com" + ], + "1912": [ + "https://testnet-rchain.rubychain.io" + ], + "1918": [ + "https://testnet.crescdi.pub.ro" + ], + "1945": [ + "https://rpc-testnet.onuschain.io" + ], + "1951": [ + "https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc" + ], + "1953": [ + "https://rpc0-testnet.selendra.org", + "https://rpc1-testnet.selendra.org" + ], + "1954": [ + "https://rpc.dexilla.com" + ], + "1956": [ + "https://rpc-testnet.aiw3.io" + ], + "1961": [ + "https://rpc0.selendra.org", + "https://rpc1.selendra.org" + ], + "1967": [ + "https://rpc.metatime.com/eleanor", + "wss://ws.metatime.com/eleanor" + ], + "1969": [ + "https://testnetrpc.scschain.com" + ], + "1970": [ + "https://rpc.scschain.com" + ], + "1971": [ + "https://1971.network/atlr", + "wss://1971.network/atlr" + ], + "1972": [ + "https://rpc2.redecoin.eu" + ], + "1975": [ + "https://rpc.onuschain.io", + "wss://ws.onuschain.io" + ], + "1984": [ + "https://testnet.eurus.network" + ], + "1985": [ + "http://rpc.satosh.ie" + ], + "1986": [ + "http://testnet.satosh.ie" + ], + "1987": [ + "https://jsonrpc.egem.io/custom" + ], + "1992": [ + "https://rpc.hubble.exchange", + "wss://ws-rpc.hubble.exchange" + ], + "1994": [ + "https://main.ekta.io" + ], + "1995": [ + "https://testnet.edexa.network/rpc", + "https://io-dataseed1.testnet.edexa.io-market.com/rpc" + ], + "1996": [ + "https://mainnet.sanko.xyz" + ], + "1997": [ + "https://rpc.kyotochain.io" + ], + "1998": [ + "https://rpc.testnet.kyotoprotocol.io:8545" + ], + "2000": [ + "https://rpc.dogechain.dog", + "https://rpc-us.dogechain.dog", + "https://rpc-sg.dogechain.dog", + "https://rpc.dogechain.dog", + "https://rpc01-sg.dogechain.dog", + "https://rpc02-sg.dogechain.dog", + "https://rpc03-sg.dogechain.dog", + "https://dogechain.ankr.com", + "https://dogechain-sj.ankr.com", + "https://rpc.ankr.com/dogechain" + ], + "2001": [ + "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" + ], + "2002": [ + "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", + "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" + ], + "2004": [ + "http://77.237.237.69:9933" + ], + "2013": [ + "https://polytopia.org:8545" + ], + "2014": [ + "https://rpc.nowscan.io" + ], + "2016": [ + "https://eu-rpc.mainnetz.io", + "https://mainnet-rpc.mainnetz.io" + ], + "2017": [ + "https://rpc.telcoin.network", + "https://adiri.tel", + "https://node1.telcoin.network", + "https://node2.telcoin.network", + "https://node3.telcoin.network", + "https://node4.telcoin.network" + ], + "2018": [ + "https://rpc.dev.publicmint.io:8545" + ], + "2019": [ + "https://rpc.tst.publicmint.io:8545" + ], + "2020": [ + "https://rpc.publicmint.io:8545" + ], + "2021": [ + "https://mainnet2.edgewa.re/evm", + "https://mainnet3.edgewa.re/evm", + "https://edgeware-evm.jelliedowl.net", + "https://edgeware.api.onfinality.io/public", + "https://edgeware-evm0.jelliedowl.net", + "https://edgeware-evm1.jelliedowl.net", + "https://edgeware-evm2.jelliedowl.net", + "https://edgeware-evm3.jelliedowl.net", + "wss://edgeware.jelliedowl.net", + "wss://edgeware-rpc0.jelliedowl.net", + "wss://edgeware-rpc1.jelliedowl.net", + "wss://edgeware-rpc2.jelliedowl.net", + "wss://edgeware-rpc3.jelliedowl.net" + ], + "2022": [ + "https://beresheet-evm.jelliedowl.net", + "wss://beresheet.jelliedowl.net" + ], + "2023": [ + "https://test-taycan.hupayx.io" + ], + "2024": [ + "https://saturn-rpc.swanchain.io" + ], + "2025": [ + "https://mainnet.rangersprotocol.com/api/jsonrpc" + ], + "2026": [ + "https://rpc.edgeless.network/http" + ], + "2031": [ + "https://fullnode.centrifuge.io", + "wss://fullnode.centrifuge.io", + "https://centrifuge-parachain.api.onfinality.io/public", + "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "https://centrifuge-rpc.dwellir.com", + "wss://centrifuge-rpc.dwellir.com", + "https://rpc-centrifuge.luckyfriday.io", + "wss://rpc-centrifuge.luckyfriday.io" + ], + "2032": [ + "wss://fullnode.catalyst.cntrfg.com" + ], + "2037": [ + "https://subnets.avax.network/kiwi/testnet/rpc" + ], + "2038": [ + "https://subnets.avax.network/shrapnel/testnet/rpc" + ], + "2039": [ + "https://rpc.alephzero-testnet.gelato.digital", + "wss://rpc.alephzero-testnet.gelato.digital" + ], + "2040": [ + "https://rpc.vanarchain.com", + "wss://ws.vanarchain.com" + ], + "2043": [ + "https://astrosat.origintrail.network", + "wss://parachain-rpc.origin-trail.network" + ], + "2044": [ + "https://subnets.avax.network/shrapnel/mainnet/rpc" + ], + "2047": [ + "https://web3-rpc-mesos.thestratos.org" + ], + "2048": [ + "https://web3-rpc.thestratos.org" + ], + "2049": [ + "https://msc-rpc.movoscan.com", + "https://msc-rpc.movochain.org", + "https://msc-rpc.movoswap.com" + ], + "2077": [ + "http://rpc.qkacoin.org:8548", + "https://rpc.qkacoin.org" + ], + "2088": [ + "wss://fullnode.altair.centrifuge.io", + "wss://altair.api.onfinality.io/public-ws" + ], + "2100": [ + "https://api.ecoball.org/ecoball" + ], + "2101": [ + "https://api.ecoball.org/espuma" + ], + "2109": [ + "https://rpc.exosama.com", + "wss://rpc.exosama.com" + ], + "2112": [ + "https://rpc.uchain.link" + ], + "2121": [ + "https://rpc1.catenarpc.com" + ], + "2122": [ + "https://rpc.metaplayer.one" + ], + "2124": [ + "https://rpc-dubai.mp1network.com" + ], + "2136": [ + "https://test-market.bigsb.network", + "wss://test-market.bigsb.network" + ], + "2137": [ + "https://market.bigsb.io", + "wss://market.bigsb.io" + ], + "2138": [ + "https://rpc.public-2138.defi-oracle.io", + "wss://rpc.public-2138.defi-oracle.io" + ], + "2140": [ + "https://rpc.onenesslabs.io" + ], + "2141": [ + "https://rpc.testnet.onenesslabs.io" + ], + "2151": [ + "https://mainnet.bosagora.org", + "https://rpc.bosagora.org" + ], + "2152": [ + "https://rpc-mainnet.findora.org" + ], + "2153": [ + "https://prod-testnet.prod.findora.org:8545" + ], + "2154": [ + "https://prod-forge.prod.findora.org:8545" + ], + "2199": [ + "https://rpc.moonsama.com", + "wss://rpc.moonsama.com/ws" + ], + "2202": [ + "https://rpc.antofy.io" + ], + "2203": [ + "https://connect.bitcoinevm.com" + ], + "2213": [ + "https://seed4.evanesco.org:8546" + ], + "2221": [ + "https://evm.testnet.kava.io", + "https://kava-evm-testnet.rpc.thirdweb.com", + "wss://wevm.testnet.kava.io", + "https://kava-testnet.drpc.org", + "wss://kava-testnet.drpc.org" + ], + "2222": [ + "https://evm.kava.io", + "https://kava.api.onfinality.io/public", + "https://kava-evm-rpc.publicnode.com", + "https://kava-pokt.nodies.app", + "wss://kava-evm-rpc.publicnode.com", + "https://evm.kava.chainstacklabs.com", + "wss://wevm.kava.chainstacklabs.com", + "https://rpc.ankr.com/kava_evm", + "https://evm.kava-rpc.com", + "https://kava-rpc.gateway.pokt.network", + "https://kava-evm.rpc.thirdweb.com", + "wss://wevm.kava.io", + "wss://wevm.kava-rpc.com", + "https://kava.drpc.org", + "wss://kava.drpc.org" + ], + "2223": [ + "https://bc.vcex.xyz" + ], + "2241": [ + "https://erpc-krest.peaq.network", + "https://krest.unitedbloc.com" + ], + "2300": [ + "https://rpc.bombchain.com" + ], + "2306": [ + "https://greendinoswap.com" + ], + "2323": [ + "https://data-testnet-v1.somanetwork.io", + "https://block-testnet-v1.somanetwork.io", + "https://testnet-au-server-2.somanetwork.io", + "https://testnet-au-server-1.somanetwork.io", + "https://testnet-sg-server-1.somanetwork.io", + "https://testnet-sg-server-2.somanetwork.io" + ], + "2330": [ + "https://rpc0.altcoinchain.org/rpc" + ], + "2331": [ + "https://rpc.testnet.rss3.io" + ], + "2332": [ + "https://data-mainnet-v1.somanetwork.io", + "https://block-mainnet-v1.somanetwork.io", + "https://id-mainnet.somanetwork.io", + "https://hk-mainnet.somanetwork.io", + "https://sg-mainnet.somanetwork.io" + ], + "2340": [ + "wss://testnet-rpc.atleta.network:9944", + "https://testnet-rpc.atleta.network:9944", + "https://testnet-rpc.atleta.network" + ], + "2342": [ + "https://rpc.omniaverse.io" + ], + "2358": [ + "https://api.sepolia.kroma.network" + ], + "2370": [ + "https://evm-testnet.nexis.network" + ], + "2399": [ + "https://bombchain-testnet.ankr.com/bas_full_rpc_1" + ], + "2400": [ + "https://rpc.tcgverse.xyz" + ], + "2410": [ + "https://rpc.karak.network" + ], + "2415": [ + "https://mainnet.xo-dex.com/rpc", + "https://xo-dex.io" + ], + "2425": [ + "https://rpc-devnet.kinggamer.org" + ], + "2442": [ + "https://rpc.cardona.zkevm-rpc.com" + ], + "2458": [ + "https://rpc-testnet.hybridchain.ai" + ], + "2468": [ + "https://coredata-mainnet.hybridchain.ai", + "https://rpc-mainnet.hybridchain.ai" + ], + "2484": [ + "https://rpc-nebulas-testnet.uniultra.xyz" + ], + "2522": [ + "https://rpc.testnet.frax.com" + ], + "2525": [ + "https://mainnet.rpc.inevm.com/http" + ], + "2559": [ + "https://www.kortho-chain.com" + ], + "2569": [ + "https://api.techpay.io" + ], + "2606": [ + "https://pocrnet.westeurope.cloudapp.azure.com/http", + "wss://pocrnet.westeurope.cloudapp.azure.com/ws" + ], + "2611": [ + "https://dataseed2.redlightscan.finance" + ], + "2612": [ + "https://api.ezchain.com/ext/bc/C/rpc" + ], + "2613": [ + "https://testnet-api.ezchain.com/ext/bc/C/rpc" + ], + "2625": [ + "https://rpc-testnet.whitechain.io" + ], + "2648": [ + "https://testnet-rpc.ailayer.xyz", + "wss://testnet-rpc.ailayer.xyz" + ], + "2649": [ + "https://mainnet-rpc.ailayer.xyz", + "wss://mainnet-rpc.ailayer.xyz" + ], + "2710": [ + "https://rpc-testnet.morphl2.io" + ], + "2718": [ + "https://rpc.klaos.laosfoundation.io", + "wss://rpc.klaos.laosfoundation.io" + ], + "2730": [ + "https://xr-sepolia-testnet.rpc.caldera.xyz/http" + ], + "2731": [ + "https://testnet-rpc.timenetwork.io" + ], + "2748": [ + "https://rpc.nanon.network" + ], + "2777": [ + "https://rpc.gmnetwork.ai" + ], + "2810": [ + "https://rpc-quicknode-holesky.morphl2.io", + "wss://rpc-quicknode-holesky.morphl2.io", + "https://rpc-holesky.morphl2.io" + ], + "2907": [ + "https://rpc.eluxscan.com" + ], + "2911": [ + "https://rpc.hychain.com/http" + ], + "2941": [ + "https://testnet-chain.xenonchain.com", + "https://testnet-dev.xenonchain.com" + ], + "2999": [ + "https://mainnet.bityuan.com/eth" + ], + "3001": [ + "https://nikau.centrality.me/public" + ], + "3003": [ + "https://rpc.canxium.org" + ], + "3011": [ + "https://api.mainnet.playa3ull.games" + ], + "3031": [ + "https://rpc-testnet.orlchain.com" + ], + "3033": [ + "https://testnet.rebus.money/rpc" + ], + "3068": [ + "https://public-01.mainnet.bifrostnetwork.com/rpc", + "https://public-02.mainnet.bifrostnetwork.com/rpc" + ], + "3100": [ + "https://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network", + "wss://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network" + ], + "3102": [ + "https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network" + ], + "3109": [ + "https://alpha-rpc-node-http.svmscan.io" + ], + "3110": [ + "https://test-rpc-node-http.svmscan.io" + ], + "3269": [ + "https://rpcmain.arabianchain.org" + ], + "3270": [ + "https://rpctestnet.arabianchain.org" + ], + "3306": [ + "https://dev-rpc.debounce.network" + ], + "3331": [ + "https://rpc-testnet.zcore.cash" + ], + "3333": [ + "http://testnet.ethstorage.io:9540" + ], + "3334": [ + "https://galileo.web3q.io:8545" + ], + "3335": [ + "http://mainnet.ethstorage.io:9540" + ], + "3400": [ + "https://rpc.paribu.network" + ], + "3424": [ + "https://rpc.evolveblockchain.io" + ], + "3434": [ + "https://testnet-rpc.securechain.ai" + ], + "3456": [ + "https://testnet-rpc.layeredge.io" + ], + "3490": [ + "https://gtc-dataseed.gtcscan.io" + ], + "3500": [ + "https://rpc.testnet.paribuscan.com" + ], + "3501": [ + "https://rpc.jfinchain.com", + "https://rpc.jfinchain.com" + ], + "3601": [ + "https://eth-rpc-api.pandoproject.org/rpc" + ], + "3602": [ + "https://testnet.ethrpc.pandoproject.org/rpc" + ], + "3630": [ + "https://mainnet-rpc.tycoscan.com" + ], + "3636": [ + "https://node.botanixlabs.dev" + ], + "3637": [ + "https://rpc.btxtestchain.com" + ], + "3639": [ + "https://rpc.ichainscan.com" + ], + "3645": [ + "https://istanbul.ichainscan.com" + ], + "3666": [ + "https://rpc.jnsdao.com:8503" + ], + "3690": [ + "https://rpc1.bittexscan.info", + "https://rpc2.bittexscan.info" + ], + "3693": [ + "https://rpc.empirenetwork.io" + ], + "3698": [ + "https://testnet-rpc.senjepowersscan.com" + ], + "3699": [ + "https://rpc.senjepowersscan.com" + ], + "3737": [ + "https://rpc.crossbell.io" + ], + "3776": [ + "https://rpc.startale.com/astar-zkevm" + ], + "3797": [ + "https://elves-core1.alvey.io", + "https://elves-core2.alvey.io", + "https://elves-core3.alvey.io" + ], + "3799": [ + "https://testnet-rpc.tangle.tools", + "https://testnet-rpc-archive.tangle.tools", + "wss://testnet-rpc.tangle.tools", + "wss://testnet-rpc-archive.tangle.tools" + ], + "3885": [ + "https://rpc-zkevm-ghostrider.thefirechain.com" + ], + "3888": [ + "https://rpc.kalychain.io/rpc" + ], + "3889": [ + "https://testnetrpc.kalychain.io/rpc" + ], + "3912": [ + "https://www.dracscan.com/rpc" + ], + "3939": [ + "https://test.doschain.com" + ], + "3966": [ + "https://api.dynoprotocol.com" + ], + "3967": [ + "https://tapi.dynoprotocol.com" + ], + "3993": [ + "https://rpc-testnet.apexlayer.xyz" + ], + "3999": [ + "https://mainnet.yuan.org/eth" + ], + "4000": [ + "https://node1.ozonechain.io" + ], + "4001": [ + "https://rpc-testnet.peperium.io" + ], + "4002": [ + "https://rpc.testnet.fantom.network", + "https://endpoints.omniatech.io/v1/fantom/testnet/public", + "https://rpc.ankr.com/fantom_testnet", + "https://fantom-testnet.public.blastapi.io", + "https://fantom-testnet-rpc.publicnode.com", + "wss://fantom-testnet-rpc.publicnode.com", + "https://fantom.api.onfinality.io/public", + "https://fantom-testnet.drpc.org", + "wss://fantom-testnet.drpc.org" + ], + "4003": [ + "https://x1-fastnet.xen.network" + ], + "4040": [ + "https://rpc-dev.carbonium.network", + "https://server-testnet.carbonium.network" + ], + "4048": [ + "https://rpc.gpu.net" + ], + "4058": [ + "https://rpc1.ocean.bahamutchain.com" + ], + "4061": [ + "https://rpc.n3.nahmii.io" + ], + "4062": [ + "https://rpc.testnet.nahmii.io" + ], + "4078": [ + "https://muster.alt.technology" + ], + "4080": [ + "https://rpc.tobescan.com" + ], + "4090": [ + "https://rpc1.oasis.bahamutchain.com" + ], + "4096": [ + "https://testnet-rpc.bitindi.org" + ], + "4099": [ + "https://mainnet-rpc.bitindi.org" + ], + "4102": [ + "https://eth-ds.testnet.aioz.network" + ], + "4139": [ + "https://humans-testnet-evm.itrocket.net", + "https://evm-rpc.testnet.humans.zone" + ], + "4141": [ + "https://testnet-rpc.tipboxcoin.net" + ], + "4157": [ + "https://rpc.testnet.ms" + ], + "4181": [ + "https://rpc1.phi.network", + "https://rpc2.phi.network" + ], + "4200": [ + "https://rpc.merlinchain.io", + "https://merlin-mainnet-enterprise.unifra.io", + "https://rpc-merlin.rockx.com" + ], + "4201": [ + "https://rpc.testnet.lukso.network", + "wss://ws-rpc.testnet.lukso.network" + ], + "4202": [ + "https://rpc.sepolia-api.lisk.com" + ], + "4242": [ + "https://rpc.chain.nexi.technology", + "https://chain.nexilix.com", + "https://chain.nexi.evmnode.online" + ], + "4243": [ + "https://chain.nexiv2.nexilix.com", + "https://rpc.chainv1.nexi.technology" + ], + "4337": [ + "https://build.onbeam.com/rpc", + "wss://build.onbeam.com/ws", + "https://subnets.avax.network/beam/mainnet/rpc", + "wss://subnets.avax.network/beam/mainnet/ws" + ], + "4400": [ + "https://rpc.creditsmartchain.com" + ], + "4444": [ + "https://janus.htmlcoin.dev/janus", + "https://janus.htmlcoin.com/api" + ], + "4460": [ + "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + ], + "4544": [ + "https://testnet.emoney.network" + ], + "4613": [ + "https://rpc.verylabs.io" + ], + "4653": [ + "https://chain-rpc.gold.dev" + ], + "4689": [ + "https://rpc.ankr.com/iotex", + "https://babel-api.mainnet.iotex.io", + "https://babel-api.mainnet.iotex.one", + "https://babel-api.fastblocks.io", + "https://iotexrpc.com", + "https://iotex-network.rpc.thirdweb.com", + "https://iotex.api.onfinality.io/public" + ], + "4690": [ + "https://babel-api.testnet.iotex.io" + ], + "4759": [ + "https://rpc.meversetestnet.io" + ], + "4777": [ + "https://testnet.blackfort.network/rpc" + ], + "4893": [ + "https://rpc.gcscan.io" + ], + "4918": [ + "https://rpc-evm-testnet.venidium.io" + ], + "4919": [ + "https://rpc.venidium.io" + ], + "4999": [ + "https://mainnet.blackfort.network/rpc", + "https://mainnet-1.blackfort.network/rpc", + "https://mainnet-2.blackfort.network/rpc", + "https://mainnet-3.blackfort.network/rpc" + ], + "5000": [ + "https://mantle-rpc.publicnode.com", + "wss://mantle-rpc.publicnode.com", + "https://mantle-mainnet.public.blastapi.io", + "https://mantle.drpc.org", + "https://rpc.ankr.com/mantle", + "https://1rpc.io/mantle", + "https://rpc.mantle.xyz" + ], + "5001": [ + "https://rpc.testnet.mantle.xyz" + ], + "5002": [ + "https://node0.treasurenet.io", + "https://node1.treasurenet.io", + "https://node2.treasurenet.io", + "https://node3.treasurenet.io" + ], + "5003": [ + "https://rpc.sepolia.mantle.xyz" + ], + "5005": [ + "https://node0.testnet.treasurenet.io", + "https://node1.testnet.treasurenet.io", + "https://node2.testnet.treasurenet.io", + "https://node3.testnet.treasurenet.io" + ], + "5039": [ + "https://subnets.avax.network/onigiri/testnet/rpc" + ], + "5040": [ + "https://subnets.avax.network/onigiri/mainnet/rpc" + ], + "5051": [ + "https://nollie-rpc.skatechain.org" + ], + "5100": [ + "https://rpc-testnet.syndicate.io" + ], + "5101": [ + "https://rpc-frame.syndicate.io" + ], + "5102": [ + "https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz" + ], + "5103": [ + "https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz" + ], + "5104": [ + "https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz" + ], + "5105": [ + "https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz" + ], + "5106": [ + "https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz" + ], + "5112": [ + "https://rpc.ham.fun" + ], + "5165": [ + "https://bahamut-rpc.publicnode.com", + "wss://bahamut-rpc.publicnode.com", + "https://rpc1.bahamut.io", + "https://rpc2.bahamut.io", + "wss://ws1.sahara.bahamutchain.com", + "wss://ws2.sahara.bahamutchain.com" + ], + "5169": [ + "https://rpc.main.smartlayer.network" + ], + "5177": [ + "https://mainnet-rpc.tlxscan.com" + ], + "5197": [ + "https://mainnet.eraswap.network", + "https://rpc-mumbai.mainnet.eraswap.network" + ], + "5234": [ + "https://explorer-rpc-http.mainnet.stages.humanode.io" + ], + "5315": [ + "https://network.uzmigames.com.br" + ], + "5317": [ + "https://rpctest.optrust.io" + ], + "5321": [ + "https://rpc.testnet.itxchain.com" + ], + "5353": [ + "https://nodetestnet-station-one.tritanium.network", + "https://nodetestnet-station-two.tritanium.network" + ], + "5372": [ + "https://settlus-test-eth.settlus.io" + ], + "5424": [ + "https://mainnet.edexa.network/rpc", + "https://mainnet.edexa.com/rpc", + "https://io-dataseed1.mainnet.edexa.io-market.com/rpc" + ], + "5439": [ + "https://mainnet.egochain.org" + ], + "5522": [ + "https://testnet.vexascan.com/evmapi" + ], + "5551": [ + "https://l2.nahmii.io" + ], + "5555": [ + "https://rpc.chainverse.info" + ], + "5611": [ + "https://opbnb-testnet-rpc.bnbchain.org", + "https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "https://opbnb-testnet-rpc.publicnode.com", + "wss://opbnb-testnet-rpc.publicnode.com" + ], + "5615": [ + "https://rpc-testnet.arcturuschain.io" + ], + "5616": [ + "http://185.99.196.3:8545" + ], + "5656": [ + "https://rpc-main1.qiblockchain.online", + "https://rpc-main2.qiblockchain.online" + ], + "5675": [ + "https://rpctest.filenova.org" + ], + "5678": [ + "https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network" + ], + "5700": [ + "https://syscoin-tanenbaum-evm-rpc.publicnode.com", + "wss://syscoin-tanenbaum-evm-rpc.publicnode.com", + "https://rollux.rpc.tanenbaum.io", + "wss://rollux.rpc.tanenbaum.io/wss", + "https://rpc.tanenbaum.io", + "wss://rpc.tanenbaum.io/wss", + "https://syscoin-tanenbaum-evm.publicnode.com", + "wss://syscoin-tanenbaum-evm.publicnode.com" + ], + "5729": [ + "https://rpc-testnet.hika.network" + ], + "5758": [ + "https://testnet-rpc.satoshichain.io" + ], + "5777": [ + "https://127.0.0.1:7545" + ], + "5845": [ + "https://rpc.tangle.tools", + "wss://rpc.tangle.tools" + ], + "5851": [ + "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" + ], + "5869": [ + "https://proxy.wegochain.io", + "http://wallet.wegochain.io:7764" + ], + "6000": [ + "https://fullnode-testnet.bouncebitapi.com" + ], + "6001": [ + "https://fullnode-mainnet.bouncebitapi.com" + ], + "6065": [ + "https://rpc-test.tresleches.finance" + ], + "6066": [ + "https://rpc.tresleches.finance", + "https://rpc.treschain.io" + ], + "6102": [ + "https://testnet.cascadia.foundation" + ], + "6118": [ + "https://node-api.alp.uptn.io/v1/ext/rpc" + ], + "6119": [ + "https://node-api.uptn.io/v1/ext/rpc" + ], + "6321": [ + "https://jsonrpc.euphoria.aura.network" + ], + "6322": [ + "https://jsonrpc.aura.network" + ], + "6363": [ + "https://dsc-rpc.digitsoul.co.th" + ], + "6502": [ + "https://peerpay.su.gy/p2p" + ], + "6552": [ + "https://testnet-rpc.scolcoin.com" + ], + "6565": [ + "https://rpc-testnet-v1.foxchain.app", + "https://rpc2-testnet-v1.foxchain.app", + "https://rpc3-testnet-v1.foxchain.app" + ], + "6626": [ + "https://http-mainnet.chain.pixie.xyz", + "wss://ws-mainnet.chain.pixie.xyz" + ], + "6660": [ + "https://testnet-rpc.latestcoin.io" + ], + "6661": [ + "https://rpc-mainnet.cybria.io" + ], + "6666": [ + "https://l2-rpc.cybascan.io" + ], + "6688": [ + "https://iris-evm-rpc.publicnode.com", + "wss://iris-evm-rpc.publicnode.com", + "https://evmrpc.irishub-1.irisnet.org", + "https://iris-evm.publicnode.com", + "wss://iris-evm.publicnode.com" + ], + "6699": [ + "https://rpc.oxscan.io" + ], + "6701": [ + "https://chain.paxb.io" + ], + "6779": [ + "https://rpc.compverse.io", + "https://rpc-useast1.compverse.io" + ], + "6789": [ + "https://rpc-mainnet.goldsmartchain.com" + ], + "6868": [ + "https://rpc.poolsmobility.com" + ], + "6969": [ + "https://rpc.tombchain.com" + ], + "6999": [ + "https://seed0.polysmartchain.com", + "https://seed1.polysmartchain.com", + "https://seed2.polysmartchain.com" + ], + "7000": [ + "https://zetachain-evm.blockpi.network/v1/rpc/public", + "https://zetachain-mainnet-archive.allthatnode.com:8545", + "wss://zetachain-mainnet-archive.allthatnode.com:8546", + "https://zeta.rpcgrid.com", + "wss://zeta.rpcgrid.com" + ], + "7001": [ + "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", + "wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket", + "https://zetachain-testnet-archive.allthatnode.com:8545" + ], + "7007": [ + "https://rpc.bstchain.io" + ], + "7027": [ + "https://rpc.ella.network" + ], + "7070": [ + "https://planq-rpc.nodies.app", + "https://jsonrpc.planq.nodestake.top", + "https://evm-rpc.planq.network" + ], + "7077": [ + "https://evm-rpc-atlas.planq.network" + ], + "7100": [ + "https://rpc.numecrypto.com" + ], + "7171": [ + "https://connect.bit-rock.io", + "https://brockrpc.io" + ], + "7300": [ + "https://rpc-xpla-verse.xpla.dev" + ], + "7331": [ + "https://evm.klyntar.org/kly_evm_rpc", + "https://evm.klyntarscan.org/kly_evm_rpc" + ], + "7332": [ + "https://eon-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_eon" + ], + "7341": [ + "https://rpc.shyft.network" + ], + "7484": [ + "https://rpc.x.raba.app", + "wss://rpc.x.raba.app/ws" + ], + "7518": [ + "https://rpc.meversemainnet.io" + ], + "7560": [ + "https://cyber.alt.technology", + "wss://cyber-ws.alt.technology", + "https://rpc.cyber.co", + "wss://rpc.cyber.co" + ], + "7575": [ + "https://testnet.adilchain-rpc.io" + ], + "7576": [ + "https://adilchain-rpc.io" + ], + "7668": [ + "https://root.rootnet.live/archive", + "wss://root.rootnet.live/archive/ws" + ], + "7672": [ + "https://porcini.rootnet.app/archive", + "wss://porcini.rootnet.app/archive/ws" + ], + "7700": [ + "https://canto.gravitychain.io", + "https://canto.evm.chandrastation.com", + "https://jsonrpc.canto.nodestake.top", + "https://canto.dexvaults.com", + "wss://canto.gravitychain.io:8546", + "wss://canto.dexvaults.com/ws", + "https://canto-rpc.ansybl.io", + "https://canto.slingshot.finance", + "https://mainnode.plexnode.org:8545" + ], + "7701": [ + "https://testnet-archive.plexnode.wtf" + ], + "7771": [ + "https://testnet.bit-rock.io" + ], + "7775": [ + "https://testnet-rpc1.gdccscan.io" + ], + "7777": [ + "https://testnet1.rotw.games", + "https://testnet2.rotw.games", + "https://testnet3.rotw.games", + "https://testnet4.rotw.games", + "https://testnet5.rotw.games", + "https://testnet1.riseofthewarbots.com", + "https://testnet2.riseofthewarbots.com", + "https://testnet3.riseofthewarbots.com", + "https://testnet4.riseofthewarbots.com", + "https://testnet5.riseofthewarbots.com" + ], + "7778": [ + "https://validator-mainnet.orenium.org", + "https://rpc-oracle-mainnet.orenium.org", + "https://portalmainnet.orenium.org" + ], + "7798": [ + "https://long.rpc.openex.network" + ], + "7860": [ + "https://node1.maalscan.io", + "https://rpc-bntest.maalscan.io" + ], + "7878": [ + "https://hatlas.rpc.hazlor.com:8545", + "wss://hatlas.rpc.hazlor.com:8546" + ], + "7887": [ + "https://rpc.kinto.xyz/http", + "https://kinto-mainnet.calderachain.xyz/http" + ], + "7895": [ + "https://rpc-athena.ardescan.com" + ], + "7923": [ + "https://rpc.dotblox.io" + ], + "7924": [ + "https://mainnet-rpc.mochain.app" + ], + "7979": [ + "https://main.doschain.com" + ], + "8000": [ + "https://dataseed.testnet.teleport.network", + "https://evm-rpc.teleport.network" + ], + "8001": [ + "https://evm-rpc.testnet.teleport.network" + ], + "8029": [ + "https://testnet.mdgl.io" + ], + "8047": [ + "https://rpc0.come.boat" + ], + "8054": [ + "https://rpc.sepolia.karak.network" + ], + "8080": [ + "https://liberty10.shardeum.org" + ], + "8081": [ + "https://dapps.shardeum.org", + "https://liberty20.shardeum.org" + ], + "8082": [ + "https://sphinx.shardeum.org" + ], + "8086": [ + "https://rpc.biteth.org" + ], + "8087": [ + "https://rpc.e-dollar.org" + ], + "8098": [ + "https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io" + ], + "8131": [ + "https://testnet.meerlabs.com", + "https://testnet-qng.rpc.qitmeer.io", + "https://meer.testnet.meerfans.club" + ], + "8181": [ + "https://pre-boc1.beonechain.com" + ], + "8192": [ + "https://rpc.toruschain.com" + ], + "8194": [ + "https://rpc.testnet.toruschain.com" + ], + "8217": [ + "https://public-en-cypress.klaytn.net", + "https://klaytn-mainnet-rpc.allthatnode.com:8551", + "https://rpc.ankr.com/klaytn ", + "https://klaytn.blockpi.network/v1/rpc/public", + "https://klaytn.api.onfinality.io/public", + "https://1rpc.io/klay", + "https://klaytn-pokt.nodies.app", + "https://klaytn.drpc.org" + ], + "8227": [ + "https://subnets.avax.network/space/mainnet/rpc" + ], + "8272": [ + "https://rpc.blocktonscan.com" + ], + "8285": [ + "https://www.krotho-test.net" + ], + "8329": [ + "https://rpc.lorenzo-protocol.xyz" + ], + "8387": [ + "https://api.dracones.net" + ], + "8453": [ + "https://base.llamarpc.com", + "https://mainnet.base.org", + "https://developer-access-mainnet.base.org", + "https://base-mainnet.diamondswap.org/rpc", + "https://base.blockpi.network/v1/rpc/public", + "https://1rpc.io/base", + "https://base-pokt.nodies.app", + "https://base.meowrpc.com", + "https://base-mainnet.public.blastapi.io", + "https://base.gateway.tenderly.co", + "https://gateway.tenderly.co/public/base", + "https://rpc.notadegen.com/base", + "https://base-rpc.publicnode.com", + "wss://base-rpc.publicnode.com", + "https://base.drpc.org", + "https://endpoints.omniatech.io/v1/base/mainnet/public", + "https://base.api.onfinality.io/public", + "wss://base.gateway.tenderly.co" + ], + "8654": [ + "https://mainnet.buildwithtoki.com/v0/rpc" + ], + "8655": [ + "https://testnet.buildwithtoki.com/v0/rpc" + ], + "8668": [ + "https://mainnet-rpc.helachain.com" + ], + "8723": [ + "https://mainnet-web3.wolot.io" + ], + "8724": [ + "https://testnet-web3.wolot.io" + ], + "8726": [ + "https://mainnet-validator.storagechain.io" + ], + "8727": [ + "https://testnet-validator.storagechain.io" + ], + "8738": [ + "https://rpc.alph.network", + "wss://rpc.alph.network" + ], + "8768": [ + "https://node1.tmyblockchain.org/rpc" + ], + "8822": [ + "https://json-rpc.evm.iotaledger.net", + "https://ws.json-rpc.evm.iotaledger.net" + ], + "8844": [ + "https://rpc.testnet.hydrachain.org" + ], + "8848": [ + "https://rpc-mainnet.ma.ro" + ], + "8866": [ + "https://mainnet.lumio.io" + ], + "8880": [ + "https://rpc.unique.network", + "https://eu-rpc.unique.network", + "https://asia-rpc.unique.network", + "https://us-rpc.unique.network" + ], + "8881": [ + "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" + ], + "8882": [ + "https://rpc-opal.unique.network", + "https://us-rpc-opal.unique.network", + "https://eu-rpc-opal.unique.network", + "https://asia-rpc-opal.unique.network" + ], + "8883": [ + "https://rpc-sapphire.unique.network", + "https://us-rpc-sapphire.unique.network", + "https://eu-rpc-sapphire.unique.network", + "https://asia-rpc-sapphire.unique.network" + ], + "8888": [ + "https://mainnet.xana.net/rpc" + ], + "8889": [ + "https://vsc-dataseed.vyvo.org:8889" + ], + "8890": [ + "https://rpc-dev-testnet.orenium.org", + "https://rpc-testnet.orenium.org", + "https://rpc-orc.oredex.finance", + "https://testnet-rpc.oredex.finance", + "https://oredex-node.oredex.finance" + ], + "8898": [ + "https://dataseed.mmtscan.io", + "https://dataseed1.mmtscan.io", + "https://dataseed2.mmtscan.io" + ], + "8899": [ + "https://rpc-l1.jibchain.net", + "https://jib-rpc.inan.in.th", + "https://rpc-l1.jbc.aomwara.in.th", + "https://rpc-l1.jbc.xpool.pw" + ], + "8911": [ + "https://rpc.algen.network" + ], + "8912": [ + "https://rpc.test.algen.network" + ], + "8921": [ + "https://rpc.alg2.algen.network" + ], + "8922": [ + "https://rpc.alg2-test.algen.network" + ], + "8989": [ + "https://rpc-asia.gmmtchain.io" + ], + "8995": [ + "https://core.bloxberg.org" + ], + "9000": [ + "https://evmos-testnet-json.qubelabs.io", + "https://evmos-tjson.antrixy.org", + "https://evmos-testnet-rpc.kingsuper.services", + "https://rpc.evmos.test.theamsolutions.info", + "https://api.evmos-test.theamsolutions.info", + "https://rpc.evmos.testnet.node75.org", + "https://rpc-evm.testnet.evmos.dragonstake.io", + "https://evmos-testnet-rpc.stake-town.com", + "https://evmos-testnet-jsonrpc.stake-town.com", + "https://api.evmos-test.theamsolutions.info", + "https://jsonrpc-t.evmos.nodestake.top", + "https://evmos-testnet-jsonrpc.autostake.com", + "https://evmos-testnet-jsonrpc.alkadeta.com", + "https://evm-rpc.evmost.silentvalidator.com", + "https://testnet-evm-rpc-evmos.hoodrun.io", + "https://alphab.ai/rpc/eth/evmos_testnet", + "https://t-evmos-jsonrpc.kalia.network", + "https://jsonrpc-evmos-testnet.mzonder.com", + "https://evmos-testnet.lava.build/lava-referer-16223de7-12c0-49f3-8d87-e5f1e6a0eb3b", + "https://evmos-testnet.lava.build", + "https://eth.bd.evmos.dev:8545", + "https://evmos-testnet-evm-rpc.publicnode.com", + "wss://evmos-testnet-evm-rpc.publicnode.com" + ], + "9001": [ + "https://evmos.lava.build", + "https://evmos-mainnet-jsonrpc.autostake.com", + "https://evmos-pokt.nodies.app", + "https://evmos-mainnet.public.blastapi.io", + "https://evmos-evm-rpc.publicnode.com", + "wss://evmos-evm-rpc.publicnode.com", + "https://jsonrpc-evmos.goldenratiostaking.net", + "https://evmos.api.onfinality.io/public", + "https://evmos-jsonrpc.cyphercore.io", + "https://eth.bd.evmos.org:8545", + "https://evmos-json-rpc.stakely.io", + "https://jsonrpc-evmos-ia.cosmosia.notional.ventures", + "https://json-rpc.evmos.blockhunters.org", + "https://evmos-json-rpc.agoranodes.com", + "https://evmos-json.antrixy.org", + "https://jsonrpc.evmos.nodestake.top", + "https://evmos-jsonrpc.alkadeta.com", + "https://evmos-json.qubelabs.io", + "https://evmos-rpc.theamsolutions.info", + "https://evmos-api.theamsolutions.info", + "https://evmos-jsonrpc.theamsolutions.info", + "https://evm-rpc-evmos.hoodrun.io", + "https://evmos-json-rpc.0base.dev", + "https://json-rpc.evmos.tcnetwork.io", + "https://rpc-evm.evmos.dragonstake.io", + "https://evmosevm.rpc.stakin-nodes.com", + "https://evmos-jsonrpc.stake-town.com", + "https://json-rpc-evmos.mainnet.validatrium.club", + "https://rpc-evmos.imperator.co", + "https://evm-rpc.evmos.silentvalidator.com", + "https://alphab.ai/rpc/eth/evmos", + "https://evmos-jsonrpc.kalia.network", + "https://jsonrpc-evmos.mzonder.com", + "https://evmos.lava.build/lava-referer-16223de7-12c0-49f3-8d87-e5f1e6a0eb3b", + "wss://evmos.lava.build/websocket" + ], + "9007": [ + "https://rpc-testnet-nodes.shidoscan.com", + "wss://wss-testnet-nodes.shidoscan.com" + ], + "9008": [ + "https://rpc-nodes.shidoscan.com", + "wss://wss-nodes.shidoscan.com", + "https://rpc-delta-nodes.shidoscan.com", + "wss://wss-delta-nodes.shidoscan.com" + ], + "9012": [ + "https://mainnet.berylbit.io" + ], + "9024": [ + "https://rpc-testnet-nodes.nexablockscan.io" + ], + "9025": [ + "https://rpc-nodes.nexablockscan.io", + "wss://wss-nodes.nexablockscan.io", + "https://rpc-nodes-delta.nexablockscan.io" + ], + "9100": [ + "rpcWorking:false", + "https://genesis-gn.com", + "wss://genesis-gn.com" + ], + "9223": [ + "https://chain-rpc.codefin.pro" + ], + "9339": [ + "https://testnet-rpc.dogcoin.me" + ], + "9393": [ + "https://sepolia-dela.deperp.com" + ], + "9395": [ + "https://mainnet-rpc.evokescan.org" + ], + "9527": [ + "https://robin.rangersprotocol.com/api/jsonrpc" + ], + "9528": [ + "https://qeasyweb3.com" + ], + "9559": [ + "https://testnet.neonlink.io" + ], + "9700": [ + "https://dev-rpc.oortech.com" + ], + "9728": [ + "https://testnet.bnb.boba.network", + "wss://wss.testnet.bnb.boba.network", + "https://replica.testnet.bnb.boba.network", + "wss://replica-wss.testnet.bnb.boba.network", + "https://boba-bnb-testnet.gateway.tenderly.co", + "wss://boba-bnb-testnet.gateway.tenderly.co" + ], + "9768": [ + "https://testnet-rpc.mainnetz.io" + ], + "9779": [ + "https://rpc-mainnet.pepenetwork.io" + ], + "9789": [ + "https://rpc.testnet.tabichain.com" + ], + "9790": [ + "https://evm-api.carbon.network" + ], + "9792": [ + "https://test-evm-api.carbon.network" + ], + "9797": [ + "https://rpc.optimusz7.com" + ], + "9818": [ + "https://data-aws-testnet.imperiumchain.com", + "https://data-aws2-testnet.imperiumchain.com" + ], + "9819": [ + "https://data-aws-mainnet.imperiumchain.com", + "https://data-aws2-mainnet.imperiumchain.com" + ], + "9888": [ + "https://dl-rpc.dogelayer.org" + ], + "9898": [ + "https://rpc.larissa.network" + ], + "9911": [ + "https://rpc.escscan.com" + ], + "9977": [ + "https://testnet-msc.mindchain.info", + "wss://testnet-msc.mindchain.info/ws" + ], + "9980": [ + "https://rpc.combonetwork.io" + ], + "9981": [ + "https://main-rpc.volleychain.com" + ], + "9990": [ + "https://rpcpc1-qa.agung.peaq.network" + ], + "9996": [ + "https://rpc-msc.mindchain.info", + "https://seednode.mindchain.info", + "https://archive.mindchain.info", + "https://mind-smart-chain.rpc.thirdweb.com", + "wss://archive.mindchain.info/ws", + "wss://seednode.mindchain.info/ws" + ], + "9997": [ + "https://testnet-rollup-api.altlayer.io" + ], + "9998": [ + "https://zitcoin.us" + ], + "9999": [ + "https://geth.dev.bccloud.net" + ], + "10000": [ + "https://smartbch.fountainhead.cash/mainnet", + "https://global.uat.cash", + "https://rpc.uatvo.com", + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.devops.cash/mainnet" + ], + "10001": [ + "https://rpc-testnet.smartbch.org", + "https://smartbch.devops.cash/testnet" + ], + "10024": [ + "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" + ], + "10081": [ + "https://rpc-1.testnet.japanopenchain.org:8545", + "https://rpc-2.testnet.japanopenchain.org:8545" + ], + "10086": [ + "http://geth.free.idcfengye.com" + ], + "10101": [ + "https://eu.mainnet.xixoio.com", + "https://us.mainnet.xixoio.com", + "https://asia.mainnet.xixoio.com" + ], + "10200": [ + "https://rpc.chiadochain.net", + "https://rpc.chiado.gnosis.gateway.fm", + " https://endpoints.omniatech.io/v1/gnosis/chiado/public", + "https://gnosis-chiado-rpc.publicnode.com", + "wss://gnosis-chiado-rpc.publicnode.com", + "https://1rpc.io/gnosis", + "wss://rpc.chiadochain.net/wss", + "https://gnosis-chiado.drpc.org", + "wss://gnosis-chiado.drpc.org" + ], + "10201": [ + "https://rpc.maxxchain.org", + "https://rpc1.maxxchain.org", + "https://rpc2.maxxchain.org" + ], + "10222": [ + "https://glc-dataseed.glscan.io" + ], + "10242": [ + "https://rpc.arthera.net" + ], + "10243": [ + "https://rpc-test.arthera.net" + ], + "10248": [ + "https://node.0xtchain.com" + ], + "10321": [ + "https://rpc.taoevm.io" + ], + "10324": [ + "https://testnet-rpc.taoevm.io" + ], + "10395": [ + "https://gwangju.worldland.foundation" + ], + "10507": [ + "https://mainnetrpc.num.network" + ], + "10508": [ + "https://testnetrpc.num.network" + ], + "10823": [ + "http://node106.cryptocoinpay.info:8545", + "ws://node106.cryptocoinpay.info:8546" + ], + "10849": [ + "https://subnets.avax.network/lamina1/mainnet/rpc" + ], + "10850": [ + "https://subnets.avax.network/lamina1id/mainnet/rpc" + ], + "10946": [ + "https://rpc.quadrans.io", + "https://rpcna.quadrans.io", + "https://rpceu.quadrans.io" + ], + "10947": [ + "https://rpctest.quadrans.io", + "https://rpctest2.quadrans.io" + ], + "11110": [ + "https://rpc.astranaut.io", + "https://rpc1.astranaut.io" + ], + "11111": [ + "https://api.trywagmi.xyz/rpc", + "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" + ], + "11115": [ + "https://rpc.astranaut.dev" + ], + "11119": [ + "https://mainnet-rpc.hashbit.org", + "https://rpc.hashbit.org" + ], + "11221": [ + "https://rpc.shinescan.io" + ], + "11227": [ + "https://subnets.avax.network/jiritsutes/testnet/rpc" + ], + "11235": [ + "https://haqq-evm-rpc.publicnode.com", + "wss://haqq-evm-rpc.publicnode.com", + "https://rpc.eth.haqq.network", + "https://haqq.drpc.org", + "wss://haqq.drpc.org" + ], + "11501": [ + "https://rpc-mainnet-1.bevm.io", + "https://rpc-mainnet-2.bevm.io" + ], + "11503": [ + "https://testnet.bevm.io" + ], + "11612": [ + "https://testnet-rpc.sardisnetwork.com" + ], + "11822": [ + "https://betanet-rpc1.artela.network" + ], + "11891": [ + "https://rpc.polygonsupernet.public.arianee.net" + ], + "12009": [ + "https://mainnet-rpc.satoshichain.io" + ], + "12020": [ + "https://rpc.aternoschain.com" + ], + "12051": [ + "https://betaenv.singularity.gold:18545" + ], + "12052": [ + "https://zerorpc.singularity.gold" + ], + "12123": [ + "https://rpc.brcchain.io" + ], + "12306": [ + "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" + ], + "12321": [ + "https://rpc.blgchain.com" + ], + "12324": [ + "https://rpc-mainnet.l3x.com" + ], + "12325": [ + "https://rpc-testnet.l3x.com" + ], + "12345": [ + "https://rpc.testnet.step.network" + ], + "12553": [ + "https://rpc.rss3.io" + ], + "12715": [ + "https://testnet-rpc.rikscan.com" + ], + "12781": [ + "https://subnets.avax.network/playdappte/testnet/rpc" + ], + "12890": [ + "https://testnet-rpc.quantumscan.org" + ], + "12898": [ + "https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc" + ], + "13000": [ + "https://rpc.ssquad.games" + ], + "13308": [ + "https://rpc.creditsmartchain.com" + ], + "13337": [ + "https://build.onbeam.com/rpc/testnet", + "wss://build.onbeam.com/ws/testnet", + "https://subnets.avax.network/beam/testnet/rpc", + "wss://subnets.avax.network/beam/testnet/ws" + ], + "13371": [ + "https://rpc.immutable.com", + "https://immutable-zkevm.drpc.org", + "wss://immutable-zkevm.drpc.org" + ], + "13381": [ + "https://rpc.phoenixplorer.com" + ], + "13396": [ + "https://subnets.avax.network/masanetwork/mainnet/rpc" + ], + "13473": [ + "https://rpc.testnet.immutable.com", + "https://immutable-zkevm-testnet.drpc.org", + "wss://immutable-zkevm-testnet.drpc.org" + ], + "13505": [ + "https://rpc-sepolia.gravity.xyz" + ], + "13600": [ + "https://mainnet-rpc.qbitscan.com" + ], + "13812": [ + "https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc" + ], + "14000": [ + "https://www.3sps.net" + ], + "14324": [ + "https://testnet-rpc.evolveblockchain.io" + ], + "14333": [ + "https://test-rpc.vitruveo.xyz" + ], + "14801": [ + "http://rpc.satori.vana.org" + ], + "14853": [ + "https://explorer-rpc-http.testnet5.stages.humanode.io" + ], + "15003": [ + "https://rpc.dev.immutable.com" + ], + "15257": [ + "https://testnet-rpc.poodl.org" + ], + "15259": [ + "https://rpc.poodl.org" + ], + "15551": [ + "https://api.mainnetloop.com" + ], + "15555": [ + "https://api.testnet-dev.trust.one" + ], + "15557": [ + "https://api.testnet.evm.eosnetwork.com" + ], + "16000": [ + "https://mainnet.metadot.network" + ], + "16001": [ + "https://testnet.metadot.network" + ], + "16116": [ + "https://rpc.defi-verse.org" + ], + "16507": [ + "https://rpc.genesys.network" + ], + "16688": [ + "https://evmrpc.nyancat.irisnet.org" + ], + "16718": [ + "https://network.ambrosus.io" + ], + "16888": [ + "https://testnet-rpc.ivarex.com" + ], + "17000": [ + "https://ethereum-holesky-rpc.publicnode.com", + "wss://etherem-holesky-rpc.publicnode.com", + "https://1rpc.io/holesky", + "https://ethereum-holesky.blockpi.network/v1/rpc/public", + "https://holesky-rpc.nocturnode.tech", + "https://rpc.holesky.ethpandaops.io", + "wss://ethereum-holesky-rpc.publicnode.com", + "https://holesky.drpc.org", + "wss://holesky.drpc.org", + "https://rpc-holesky.rockx.com" + ], + "17069": [ + "https://rpc.garnetchain.com", + "wss://rpc.garnetchain.com" + ], + "17117": [ + "https://rpc-testnet.defi-verse.org" + ], + "17171": [ + "https://mainnet-rpc.oneg8.network" + ], + "17172": [ + "https://subnets.avax.network/eclipse/testnet/rpc" + ], + "17180": [ + "https://palette-opennet.com:22000" + ], + "17217": [ + "https://api.kon-wallet.com" + ], + "17777": [ + "https://api.evm.eosnetwork.com" + ], + "18000": [ + "https://rpc.fod.games" + ], + "18122": [ + "https://beefledgerwallet.com:8544" + ], + "18159": [ + "https://mainnet-rpc.memescan.io", + "https://mainnet-rpc2.memescan.io", + "https://mainnet-rpc3.memescan.io", + "https://mainnet-rpc4.memescan.io" + ], + "18181": [ + "https://testnet-rpc.oneg8.network" + ], + "18233": [ + "https://rpc.unreal-orbit.gelato.digital", + "wss://ws.unreal-orbit.gelato.digital" + ], + "18686": [ + "https://rpc.mxc.com" + ], + "18888": [ + "https://titan-json-rpc.titanlab.io", + "https://titan-json-rpc-tokyo.titanlab.io", + "https://titan-json-rpc-seoul.titanlab.io", + "https://titan-json-rpc-hongkong.titanlab.io" + ], + "18889": [ + "https://titan-testnet-json-rpc.titanlab.io", + "https://titan-testnet-json-rpc-1.titanlab.io", + "https://titan-testnet-json-rpc-2.titanlab.io" + ], + "19011": [ + "https://rpc.mainnet.oasys.homeverse.games" + ], + "19224": [ + "https://rpc.decentraconnect.io" + ], + "19527": [ + "https://magnet-rpc.magport.io" + ], + "19600": [ + "https://lbry.nl/rpc" + ], + "19845": [ + "https://seed.btcix.org/rpc" + ], + "20001": [ + "https://mainnet-http-rpc.camelark.com" + ], + "20041": [ + "https://nizascan.io/rpc" + ], + "20073": [ + "https://testnet.nizascan.io/rpc" + ], + "20729": [ + "https://testnet-rpc.callisto.network" + ], + "20736": [ + "https://rpc-chain.p12.games" + ], + "20765": [ + "https://subnets.avax.network/jono11/testnet/rpc" + ], + "21004": [ + "https://rpc.c4ei.net" + ], + "21133": [ + "https://rpc.c4ex.net" + ], + "21223": [ + "https://rpc.dcpay.io" + ], + "21224": [ + "https://testnet-rpc.dcpay.io" + ], + "21337": [ + "https://cennznet.unfrastructure.io/public" + ], + "21816": [ + "https://seed.omlira.com", + "https://seed.omchain.io" + ], + "21912": [ + "http://rpc-mainnet.nftruth.io:8545", + "ws://rpc-mainnet.nftruth.io:8645" + ], + "22023": [ + "https://taycan-rpc.hupayx.io:8545" + ], + "22040": [ + "https://network.ambrosus-test.io" + ], + "22222": [ + "https://api.nautilus.nautchain.xyz" + ], + "22324": [ + "https://testnet-rpc.goldxchain.io" + ], + "22776": [ + "https://rpc.maplabs.io" + ], + "23006": [ + "https://testnet-rpc.antofy.io" + ], + "23118": [ + "https://testrpc.opside.network" + ], + "23294": [ + "https://1rpc.io/oasis/sapphire", + "https://sapphire.oasis.io", + "wss://sapphire.oasis.io/ws" + ], + "23295": [ + "https://testnet.sapphire.oasis.io", + "wss://testnet.sapphire.oasis.io/ws" + ], + "23451": [ + "https://rpc.dreyerx.com" + ], + "23452": [ + "https://testnet-rpc.dreyerx.com" + ], + "23888": [ + "http://testnet-rpc.blastblockchain.com" + ], + "24734": [ + "https://node1.mintme.com" + ], + "25186": [ + "https://mainnet.liquidlayer.network" + ], + "25839": [ + "https://testnet-rpc.alvey.io" + ], + "25888": [ + "https://www.hammerchain.io/rpc" + ], + "25925": [ + "https://rpc-testnet.bitkubchain.io", + "wss://wss-testnet.bitkubchain.io" + ], + "26026": [ + "http://testnet.dev.svcs.ferrumnetwork.io:9933" + ], + "26600": [ + "https://mainnet-rpc.hertzscan.com" + ], + "26863": [ + "https://rpc1.oasischain.io", + "https://rpc2.oasischain.io", + "https://rpc3.oasischain.io" + ], + "27181": [ + "https://rpc.klaosnova.laosfoundation.io", + "wss://rpc.klaosnova.laosfoundation.io" + ], + "27483": [ + "https://sepolia-rpc.nanon.network" + ], + "27827": [ + "https://subnets.avax.network/zeroonemai/mainnet/rpc" + ], + "28516": [ + "https://rpc-sepolia.vizing.com" + ], + "28518": [ + "https://rpc.vizing.com" + ], + "28528": [ + "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" + ], + "28882": [ + "https://sepolia.boba.network", + "https://boba-sepolia.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-sepolia", + "wss://boba-sepolia.gateway.tenderly.co", + "wss://gateway.tenderly.co/public/boba-sepolia" + ], + "29112": [ + "https://testnet-rpc.hychain.com/http" + ], + "29536": [ + "https://testnet-rpc.kaichain.net" + ], + "29548": [ + "https://rpc.oasys.mycryptoheroes.net" + ], + "30067": [ + "https://testnet-rpc0.piecenetwork.com" + ], + "30088": [ + "https://blockchain.miyou.io", + "https://blockchain.miyoulab.com" + ], + "30103": [ + "https://cerium-rpc.canxium.net" + ], + "31102": [ + "rpcWorking:false", + "https://api.esn.gonspool.com" + ], + "31223": [ + "https://mainnet-rpc.cloudtx.finance" + ], + "31224": [ + "https://testnet-rpc.cloudtx.finance" + ], + "31337": [ + "https://testnet-rpc.gochain.io" + ], + "31414": [ + "https://testnet-rpc.evokescan.org" + ], + "31753": [ + "https://rpc.xchainscan.com" + ], + "31754": [ + "https://rpc.xchaintest.net" + ], + "32001": [ + "https://rpc-holesky.w3gamez.network" + ], + "32382": [ + "https://node.sanr.app" + ], + "32520": [ + "https://rpc.icecreamswap.com", + "https://nodes.vefinetwork.org/bitgert", + "https://flux-rpc.brisescan.com", + "https://flux-rpc1.brisescan.com", + "https://flux-rpc2.brisescan.com", + "https://rpc-1.chainrpc.com", + "https://rpc-2.chainrpc.com", + "https://node1.serverrpc.com", + "https://node2.serverrpc.com", + "https://mainnet-rpc.brisescan.com", + "https://chainrpc.com", + "https://serverrpc.com" + ], + "32659": [ + "https://mainnet.fusionnetwork.io", + "wss://mainnet.fusionnetwork.io" + ], + "32769": [ + "https://api.zilliqa.com" + ], + "32990": [ + "https://zilliqa-isolated-server.zilliqa.com" + ], + "33033": [ + "https://json-rpc.entangle.fi" + ], + "33101": [ + "https://dev-api.zilliqa.com" + ], + "33133": [ + "https://evm-testnet.entangle.fi" + ], + "33210": [ + "https://subnets.avax.network/cloudverse/mainnet/rpc" + ], + "33333": [ + "https://rpc.avescoin.io" + ], + "33385": [ + "https://api.devnet.zilliqa.com" + ], + "33469": [ + "https://api.zq2-devnet.zilliqa.com" + ], + "34443": [ + "https://1rpc.io/mode", + "https://mainnet.mode.network", + "https://mode.drpc.org", + "wss://mode.drpc.org" + ], + "35011": [ + "https://rpc.j2o.io" + ], + "35441": [ + "https://rpc.q.org" + ], + "35443": [ + "https://rpc.qtestnet.org" + ], + "38400": [ + "https://cm.rangersprotocol.com/api/jsonrpc" + ], + "38401": [ + "https://robin-cm.rangersprotocol.com/api/jsonrpc" + ], + "39656": [ + "https://mainnet-rpc.prmscan.org" + ], + "39797": [ + "https://nodeapi.energi.network", + "https://explorer.energi.network/api/eth-rpc" + ], + "39815": [ + "https://mainnet.oho.ai", + "https://mainnet-rpc.ohoscan.com", + "https://mainnet-rpc2.ohoscan.com" + ], + "41500": [ + "https://connect.opulent-x.com" + ], + "42069": [ + "rpcWorking:false" + ], + "42072": [ + "https://testnet-rpc.agentlayer.xyz" + ], + "42161": [ + "https://arbitrum.llamarpc.com", + "https://arb1.arbitrum.io/rpc", + "https://rpc.ankr.com/arbitrum", + "https://1rpc.io/arb", + "https://arb-pokt.nodies.app", + "https://arb-mainnet.g.alchemy.com/v2/demo", + "https://arbitrum.blockpi.network/v1/rpc/public", + "https://arbitrum-one.public.blastapi.io", + "https://endpoints.omniatech.io/v1/arbitrum/one/public", + "https://arb-mainnet-public.unifra.io", + "https://rpc.arb1.arbitrum.gateway.fm", + "https://arbitrum-one-rpc.publicnode.com", + "wss://arbitrum-one-rpc.publicnode.com", + "https://arbitrum.meowrpc.com", + "https://api.zan.top/node/v1/arb/one/public", + "https://arbitrum.drpc.org", + "https://rpc.tornadoeth.cash/arbitrum", + "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", + "https://arbitrum-one.publicnode.com", + "wss://arbitrum-one.publicnode.com" + ], + "42170": [ + "https://nova.arbitrum.io/rpc", + "https://arbitrum-nova.public.blastapi.io", + "https://arbitrum-nova.blockpi.network/v1/rpc/public", + "https://arbitrum-nova-rpc.publicnode.com", + "wss://arbitrum-nova-rpc.publicnode.com", + "https://arbitrum-nova.drpc.org", + "https://arbitrum-nova.publicnode.com", + "wss://arbitrum-nova.publicnode.com" + ], + "42220": [ + "https://forno.celo.org", + "https://rpc.ankr.com/celo", + "https://1rpc.io/celo", + "https://celo.api.onfinality.io/public", + "wss://forno.celo.org/ws" + ], + "42261": [ + "https://testnet.emerald.oasis.io", + "wss://testnet.emerald.oasis.io/ws" + ], + "42262": [ + "https://emerald.oasis.dev", + "https://1rpc.io/oasis/emerald", + "https://emerald.oasis.io", + "wss://emerald.oasis.io/ws" + ], + "42355": [ + "https://mainnet-rpc.goldxchain.io" + ], + "42766": [ + "https://rpc.zkfair.io" + ], + "42793": [ + "https://node.mainnet.etherlink.com" + ], + "42801": [ + "https://rpc.testnet.verse.gesoten.com" + ], + "42888": [ + "http://35.215.120.180:8545" + ], + "43110": [ + "rpcWorking:false", + "https://ava.network:21015/ext/evm/rpc" + ], + "43113": [ + "https://api.avax-test.network/ext/bc/C/rpc", + "https://endpoints.omniatech.io/v1/avax/fuji/public", + "https://rpc.ankr.com/avalanche_fuji", + "https://rpc.ankr.com/avalanche_fuji-c", + "https://avalanchetestapi.terminet.io/ext/bc/C/rpc", + "https://ava-testnet.public.blastapi.io/ext/bc/C/rpc", + "https://avalanche-fuji-c-chain-rpc.publicnode.com", + "wss://avalanche-fuji-c-chain-rpc.publicnode.com", + "https://avalanche-fuji.blockpi.network/v1/rpc/public", + "https://api.zan.top/node/v1/avax/fuji/public/ext/bc/C/rpc" + ], + "43114": [ + "https://api.avax.network/ext/bc/C/rpc", + "https://avalanche.public-rpc.com", + "https://rpc.ankr.com/avalanche", + "https://blastapi.io/public-api/avalanche", + "https://ava-mainnet.public.blastapi.io/ext/bc/C/rpc", + "https://avalancheapi.terminet.io/ext/bc/C/rpc", + "https://avalanche-c-chain-rpc.publicnode.com", + "wss://avalanche-c-chain-rpc.publicnode.com", + "https://1rpc.io/avax/c", + "https://avalanche.blockpi.network/v1/rpc/public", + "https://avax-pokt.nodies.app/ext/bc/C/rpc", + "https://avalanche.api.onfinality.io/public/ext/bc/C/rpc", + "https://endpoints.omniatech.io/v1/avax/mainnet/public", + "https://avax.meowrpc.com", + "https://api.zan.top/node/v1/avax/mainnet/public/ext/bc/C/rpc", + "https://avalanche.drpc.org", + "https://rpc.tornadoeth.cash/avax" + ], + "43851": [ + "https://testnet-rpc.zkfair.io" + ], + "44444": [ + "https://rpc-02.frenscan.io" + ], + "44445": [ + "https://rpcqtm.avescoin.io" + ], + "44787": [ + "https://alfajores-forno.celo-testnet.org", + "wss://alfajores-forno.celo-testnet.org/ws" + ], + "45000": [ + "https://rpc.autobahn.network" + ], + "45454": [ + "https://swamps.tc.l2aas.com" + ], + "45510": [ + "https://rpc.deelance.com" + ], + "46688": [ + "https://testnet.fusionnetwork.io", + "wss://testnet.fusionnetwork.io" + ], + "47805": [ + "https://rpc.rei.network", + "wss://rpc.rei.network" + ], + "48795": [ + "https://subnets.avax.network/space/testnet/rpc" + ], + "48899": [ + "https://zircuit1.p2pify.com" + ], + "49049": [ + "https://rpc-floripa.wireshape.org", + "https://wireshape-floripa-testnet.rpc.thirdweb.com" + ], + "49088": [ + "https://public-01.testnet.bifrostnetwork.com/rpc", + "https://public-02.testnet.bifrostnetwork.com/rpc" + ], + "49321": [ + "https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc" + ], + "49797": [ + "https://nodeapi.test.energi.network" + ], + "50001": [ + "https://rpc.oracle.liveplex.io", + "https://rpc.oracle.liveplex.io" + ], + "50005": [ + "https://rpc.yooldo-verse.xyz" + ], + "50006": [ + "https://rpc.testnet.yooldo-verse.xyz" + ], + "50021": [ + "https://testnet.gton.network" + ], + "51178": [ + "https://alpha-us-http-geth.lumoz.org", + "https://alpha-hk-http-geth.lumoz.org" + ], + "51712": [ + "https://mainnet-rpc.sardisnetwork.com" + ], + "52014": [ + "https://rpc.electroneum.com" + ], + "53277": [ + "https://rpc.doid.tech" + ], + "53302": [ + "https://sepolia.superseed.xyz", + "wss://sepolia.superseed.xyz" + ], + "53457": [ + "https://dodochain-testnet.alt.technology", + "wss://dodochain-testnet.alt.technology/ws" + ], + "53935": [ + "https://avax-pokt.nodies.app/ext/bc/q2aTwKuyzgs8pynF7UXBZCU7DejbZbZ6EUyHr3JQzYgwNPUPi/rpc", + "https://dfkchain.api.onfinality.io/public", + "https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc" + ], + "54211": [ + "https://rpc.eth.testedge2.haqq.network" + ], + "54321": [ + "http://testnet.toronet.org/rpc" + ], + "54555": [ + "https://rpc-test.photonchain.io" + ], + "55004": [ + "https://rpc.titan.tokamak.network", + "wss://rpc.titan.tokamak.network" + ], + "55555": [ + "https://rei-rpc.moonrhythm.io" + ], + "55556": [ + "https://rei-testnet-rpc.moonrhythm.io" + ], + "56026": [ + "https://nrpc.lambda.im" + ], + "56288": [ + "https://bnb.boba.network", + "https://boba-bnb.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-bnb", + "https://replica.bnb.boba.network", + "wss://boba-bnb.gateway.tenderly.co", + "wss://gateway.tenderly.co/public/boba-bnb" + ], + "56400": [ + "https://subnets.avax.network/testnetzer/testnet/rpc" + ], + "56789": [ + "https://nova.velo.org" + ], + "56797": [ + "https://rpc.testnet.doid.tech" + ], + "57000": [ + "https://rpc-tanenbaum.rollux.com", + "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", + "wss://rpc-tanenbaum.rollux.com/wss", + "https://rollux.rpc.tanenbaum.io", + "wss://rollux.rpc.tanenbaum.io/wss" + ], + "57451": [ + "https://mainnet-rpc.coinsec.network" + ], + "58008": [ + "https://sepolia.publicgoods.network" + ], + "59140": [ + "https://linea-goerli.blockpi.network/v1/rpc/public", + "https://rpc.goerli.linea.build", + "wss://rpc.goerli.linea.build" + ], + "59141": [ + "https://rpc.sepolia.linea.build", + "wss://rpc.sepolia.linea.build", + "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "59144": [ + "https://linea.blockpi.network/v1/rpc/public", + "https://1rpc.io/linea", + "https://linea.drpc.org", + "https://linea.decubate.com", + "https://rpc.linea.build", + "wss://rpc.linea.build" + ], + "59971": [ + "https://mainnet.genesyscode.io" + ], + "60000": [ + "https://test.thinkiumrpc.net" + ], + "60001": [ + "https://test1.thinkiumrpc.net" + ], + "60002": [ + "https://test2.thinkiumrpc.net" + ], + "60103": [ + "https://test103.thinkiumrpc.net" + ], + "60808": [ + "https://rpc.gobob.xyz", + "wss://rpc.gobob.xyz", + "https://bob-mainnet.public.blastapi.io", + "wss://bob-mainnet.public.blastapi.io" + ], + "61406": [ + "https://mainnet-rpc.kaichain.net" + ], + "61800": [ + "https://aium-rpc-dev.viacube.com" + ], + "61803": [ + "https://eticamainnet.eticascan.org", + "https://eticamainnet.eticaprotocol.org" + ], + "61916": [ + "https://sgrpc.doken.dev", + "https://nyrpc.doken.dev", + "https://ukrpc.doken.dev" + ], + "62049": [ + "https://rpc-testnet.optopia.ai" + ], + "62050": [ + "https://rpc-mainnet.optopia.ai", + "https://rpc-mainnet-2.optopia.ai" + ], + "62298": [ + "https://rpc.devnet.citrea.xyz" + ], + "62320": [ + "https://baklava-forno.celo-testnet.org" + ], + "62621": [ + "https://rpc.mtv.ac", + "https://rpc-eu.mtv.ac" + ], + "62831": [ + "https://subnets.avax.network/plyr/testnet/rpc" + ], + "63000": [ + "https://rpc.ecredits.com" + ], + "63001": [ + "https://rpc.tst.ecredits.com" + ], + "65450": [ + "https://mainnet-rpc.scolcoin.com" + ], + "66988": [ + "https://rpc.test.janusnetwork.io" + ], + "67588": [ + "http://testnet.cosmicchain.site:3344" + ], + "68770": [ + "https://rpc.dm2verse.dmm.com" + ], + "69420": [ + "https://rpc.condrieu.ethdevops.io:8545" + ], + "70000": [ + "https://proxy.thinkiumrpc.net" + ], + "70001": [ + "https://proxy1.thinkiumrpc.net" + ], + "70002": [ + "https://proxy2.thinkiumrpc.net" + ], + "70103": [ + "https://proxy103.thinkiumrpc.net" + ], + "70700": [ + "https://rpc.apex.proofofplay.com" + ], + "71111": [ + "https://rpc-mainnet.guapcoinx.com", + "https://rpc-mainnet-1.guapcoinx.com", + "https://rpc-mainnet-2.guapcoinx.com" + ], + "71393": [ + "https://godwoken-testnet-web3-rpc.ckbapp.dev", + "ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws" + ], + "71401": [ + "https://godwoken-testnet-v1.ckbapp.dev", + "https://v1.testnet.godwoken.io/rpc" + ], + "71402": [ + "https://v1.mainnet.godwoken.io/rpc" + ], + "72778": [ + "https://www.ankara-cagacrypto.com", + "wss://wss.ankara-cagacrypto.com" + ], + "72992": [ + "https://mainnet-rpc.grokchain.dev" + ], + "73114": [ + "https://rpc1-testnet.icbnetwork.info", + "https://rpc2-testnet.icbnetwork.info" + ], + "73115": [ + "https://rpc1-mainnet.icbnetwork.info", + "https://rpc2-mainnet.icbnetwork.info" + ], + "73799": [ + "https://volta-rpc.energyweb.org", + "wss://volta-rpc.energyweb.org/ws" + ], + "73927": [ + "https://geth.mvm.dev" + ], + "75512": [ + "https://rpc.geekout-pte.com" + ], + "75513": [ + "https://rpc-testnet.geekout-pte.com" + ], + "77001": [ + "https://public-node.api.boraportal.com/bora/mainnet", + "https://public-node.api.boraportal.io/bora/mainnet" + ], + "77238": [ + "https://testnet-rpc.foundryscan.org" + ], + "77612": [ + "https://mainnet-rpc.vention.network" + ], + "77777": [ + "http://toronet.org/rpc" + ], + "78110": [ + "https://ethnode.primusmoney.com/firenze" + ], + "78281": [ + "https://dragonfly-rpc.switch.ch", + "https://dragonfly-rpc.kore-technologies.ch", + "https://dragonfly-rpc.phoenix-systems.io", + "https://dragonfly-rpc.block-spirit.ch" + ], + "78430": [ + "https://subnets.avax.network/amplify/testnet/rpc" + ], + "78431": [ + "https://subnets.avax.network/bulletin/testnet/rpc" + ], + "78432": [ + "https://subnets.avax.network/conduit/testnet/rpc" + ], + "78600": [ + "https://rpc-vanguard.vanarchain.com", + "wss://ws-vanguard.vanarchain.com" + ], + "79879": [ + "https://rpc-testnet.goldsmartchain.com" + ], + "80001": [ + "https://rpc-mumbai.maticvigil.com", + "https://endpoints.omniatech.io/v1/matic/mumbai/public", + "https://rpc.ankr.com/polygon_mumbai", + "https://polygontestapi.terminet.io/rpc", + "https://polygon-testnet.public.blastapi.io", + "https://polygon-mumbai.g.alchemy.com/v2/demo", + "https://polygon-mumbai.blockpi.network/v1/rpc/public", + "https://polygon-mumbai-bor-rpc.publicnode.com", + "wss://polygon-mumbai-bor-rpc.publicnode.com", + "https://polygon-mumbai-pokt.nodies.app", + "https://polygon-mumbai.gateway.tenderly.co", + "https://gateway.tenderly.co/public/polygon-mumbai", + "https://api.zan.top/node/v1/polygon/mumbai/public", + "https://polygon-mumbai.api.onfinality.io/public", + "wss://polygon-mumbai.gateway.tenderly.co" + ], + "80002": [ + "https://rpc-amoy.polygon.technology", + "https://polygon-amoy-bor-rpc.publicnode.com", + "wss://polygon-amoy-bor-rpc.publicnode.com" + ], + "80084": [ + "https://bartio.rpc.berachain.com", + "https://bera-testnet.nodeinfra.com" + ], + "80085": [ + "https://artio.rpc.berachain.com", + "https://rpc.ankr.com/berachain_testnet" + ], + "80096": [ + "https://hizoco.net/rpc" + ], + "81041": [ + "https://mainnet-rpc.nordekscan.com" + ], + "81457": [ + "https://rpc.blast.io", + "https://blast.din.dev/rpc", + "https://blastl2-mainnet.public.blastapi.io", + "https://blast.blockpi.network/v1/rpc/public", + "https://blast.blockpi.network/v1/rpc/public", + "https://rpc.ankr.com/blast", + "https://blast-rpc.publicnode.com" + ], + "81720": [ + "https://rpc.quantumscan.org" + ], + "82459": [ + "https://rpc.test.smartlayer.network" + ], + "83872": [ + "https://mainnet-rpc.zedscan.net" + ], + "84531": [ + "https://base-goerli.diamondswap.org/rpc", + "https://base-goerli.public.blastapi.io", + "https://1rpc.io/base-goerli", + "https://base-goerli.gateway.tenderly.co", + "https://gateway.tenderly.co/public/base-goerli", + "https://base-goerli-rpc.publicnode.com", + "wss://base-goerli-rpc.publicnode.com", + "https://endpoints.omniatech.io/v1/base/goerli/public", + "https://goerli.base.org", + "wss://base-goerli.gateway.tenderly.co" + ], + "84532": [ + "https://rpc.notadegen.com/base/sepolia", + "https://base-sepolia.blockpi.network/v1/rpc/public", + "https://sepolia.base.org", + "https://base-sepolia-rpc.publicnode.com", + "wss://base-sepolia-rpc.publicnode.com" + ], + "84886": [ + "https://mainnet.aerielab.io" + ], + "85449": [ + "http://testnet.cybertrust.space:48501" + ], + "88002": [ + "https://api.proteus.nautchain.xyz/solana" + ], + "88559": [ + "https://inoai-network.com" + ], + "88817": [ + "https://rpc-testnet.unit0.dev" + ], + "88819": [ + "https://rpc-stagenet.unit0.dev" + ], + "88882": [ + "https://spicy-rpc.chiliz.com" + ], + "88888": [ + "https://rpc.chiliz.com", + "https://rpc.ankr.com/chiliz", + "https://chiliz.publicnode.com" + ], + "90001": [ + "https://testnet-fx-json-web3.functionx.io:8545" + ], + "90210": [ + "https://rpc.beverlyhills.ethdevops.io:8545" + ], + "90354": [ + "https://rpc-camp-network-4xje7wy105.t.conduit.xyz" + ], + "91002": [ + "https://triton.api.nautchain.xyz" + ], + "91120": [ + "https://rpc.chain.metadap.io", + "wss://rpc-ws.chain.metadap.io" + ], + "91715": [ + "https://test-rpc.combonetwork.io" + ], + "92001": [ + "https://evm.lambda.top" + ], + "93572": [ + "https://testnet.liquidlayer.network" + ], + "96970": [ + "https://mantis-rpc.switch.ch", + "https://mantis-rpc.kore-technologies.ch", + "https://mantis-rpc.phoenix-systems.io" + ], + "97531": [ + "https://node.greenchain.app/rpc" + ], + "97970": [ + "https://testnet-rpc.optimusz7.com" + ], + "98881": [ + "https://rpc.ebi.xyz" + ], + "99099": [ + "https://testnet-rpc.eliberty.ngo" + ], + "99998": [ + "https://testnet.rpc.uschain.network" + ], + "99999": [ + "https://rpc.uschain.network" + ], + "100000": [ + "http://jrpc.mainnet.quarkchain.io:38391" + ], + "100001": [ + "http://eth-jrpc.mainnet.quarkchain.io:39000", + "https://mainnet-s0-ethapi.quarkchain.io" + ], + "100002": [ + "http://eth-jrpc.mainnet.quarkchain.io:39001", + "https://mainnet-s1-ethapi.quarkchain.io" + ], + "100003": [ + "http://eth-jrpc.mainnet.quarkchain.io:39002", + "https://mainnet-s2-ethapi.quarkchain.io" + ], + "100004": [ + "http://eth-jrpc.mainnet.quarkchain.io:39003", + "https://mainnet-s3-ethapi.quarkchain.io" + ], + "100005": [ + "http://eth-jrpc.mainnet.quarkchain.io:39004", + "https://mainnet-s4-ethapi.quarkchain.io" + ], + "100006": [ + "http://eth-jrpc.mainnet.quarkchain.io:39005", + "https://mainnet-s5-ethapi.quarkchain.io" + ], + "100007": [ + "http://eth-jrpc.mainnet.quarkchain.io:39006", + "https://mainnet-s6-ethapi.quarkchain.io" + ], + "100008": [ + "http://eth-jrpc.mainnet.quarkchain.io:39007", + "https://mainnet-s7-ethapi.quarkchain.io" + ], + "100011": [ + "https://mainnet-l2-ethapi.quarkchain.io" + ], + "101010": [ + "https://gtn.stabilityprotocol.com" + ], + "102031": [ + "https://rpc.cc3-testnet.creditcoin.network" + ], + "103090": [ + "https://evm.cryptocurrencydevs.org", + "https://rpc.crystaleum.org" + ], + "103454": [ + "https://subnets.avax.network/masatestne/testnet/rpc" + ], + "104566": [ + "https://api.kaspaclassic.world", + "http://80.178.101.118:8000" + ], + "105105": [ + "https://rpc.stratisevm.com" + ], + "108801": [ + "rpcWorking:false", + "https://rpc.brochain.org", + "http://rpc.brochain.org", + "https://rpc.brochain.org/mainnet", + "http://rpc.brochain.org/mainnet" + ], + "110000": [ + "rpcWorking:false", + "http://jrpc.devnet.quarkchain.io:38391" + ], + "110001": [ + "http://eth-jrpc.devnet.quarkchain.io:39900", + "https://devnet-s0-ethapi.quarkchain.io" + ], + "110002": [ + "http://eth-jrpc.devnet.quarkchain.io:39901", + "https://devnet-s1-ethapi.quarkchain.io" + ], + "110003": [ + "http://eth-jrpc.devnet.quarkchain.io:39902", + "https://devnet-s2-ethapi.quarkchain.io" + ], + "110004": [ + "http://eth-jrpc.devnet.quarkchain.io:39903", + "https://devnet-s3-ethapi.quarkchain.io" + ], + "110005": [ + "http://eth-jrpc.devnet.quarkchain.io:39904", + "https://devnet-s4-ethapi.quarkchain.io" + ], + "110006": [ + "http://eth-jrpc.devnet.quarkchain.io:39905", + "https://devnet-s5-ethapi.quarkchain.io" + ], + "110007": [ + "http://eth-jrpc.devnet.quarkchain.io:39906", + "https://devnet-s6-ethapi.quarkchain.io" + ], + "110008": [ + "http://eth-jrpc.devnet.quarkchain.io:39907", + "https://devnet-s7-ethapi.quarkchain.io" + ], + "110011": [ + "https://testnet-l2-ethapi.quarkchain.io" + ], + "111000": [ + "https://rpc.test.siberium.net" + ], + "111111": [ + "https://rpc.main.siberium.net", + "https://rpc.main.siberium.net.ru" + ], + "111188": [ + "https://real.drpc.org", + "wss://real.drpc.org" + ], + "112358": [ + "https://rpc.metachain.one", + "https://rpc2.metachain.one" + ], + "119139": [ + "https://rpc.testnet.chain.metadap.io", + "wss://rpc-ws.testnet.chain.metadap.io" + ], + "123456": [ + "https://devnet.adilchain-rpc.io" + ], + "128123": [ + "https://node.ghostnet.etherlink.com" + ], + "131313": [ + "https://testnode.dioneprotocol.com/ext/bc/D/rpc" + ], + "131419": [ + "https://rpc.node1.etnd.pro" + ], + "132902": [ + "https://testnet-rpc.form.network/http", + "wss://testnet-rpc.form.network/ws" + ], + "141319": [ + "https://testnet-api.magape.io/chain" + ], + "142857": [ + "https://rpc1.icplaza.pro", + "https://rpcmainnet.ic-plaza.org" + ], + "165279": [ + "https://mainnet-rpc.eclatscan.com" + ], + "167000": [ + "https://rpc.mainnet.taiko.xyz", + "wss://ws.mainnet.taiko.xyz" + ], + "167008": [ + "https://taiko-katla.blockpi.network/v1/rpc/public", + "https://rpc.katla.taiko.xyz", + "wss://ws.katla.taiko.xyz", + "https://taiko-katla.drpc.org", + "wss://taiko-katla.drpc.org" + ], + "167009": [ + "https://rpc.hekla.taiko.xyz", + "wss://ws.hekla.taiko.xyz" + ], + "188710": [ + "https://mainnet-rpc.biticablockchain.com" + ], + "188881": [ + "https://testnet.condor.systems/rpc" + ], + "192940": [ + "https://rpc-testnet.mindnetwork.xyz", + "wss://rpc-testnet.mindnetwork.xyz" + ], + "200000": [ + "https://rpc_testnet.xfair.ai", + "wss://rpc_testnet.xfair.ai" + ], + "200101": [ + "https://rpc-devnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" + ], + "200202": [ + "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" + ], + "200625": [ + "https://boot2.akroma.org", + "https://remote.akroma.io" + ], + "200810": [ + "https://testnet-rpc.bitlayer.org", + "wss://testnet-ws.bitlayer.org", + "https://testnet-rpc.bitlayer-rpc.com", + "wss://testnet-ws.bitlayer-rpc.com", + "https://rpc.ankr.com/bitlayer_testnet" + ], + "200901": [ + "https://rpc.bitlayer.org", + "https://rpc.bitlayer-rpc.com", + "https://rpc.ankr.com/bitlayer", + "https://rpc-bitlayer.rockx.com", + "wss://ws.bitlayer.org", + "wss://ws.bitlayer-rpc.com" + ], + "201018": [ + "https://openapi.alaya.network/rpc", + "wss://openapi.alaya.network/ws" + ], + "201030": [ + "https://devnetopenapi.alaya.network/rpc", + "wss://devnetopenapi.alaya.network/ws" + ], + "201804": [ + "https://chain-rpc.mythicalgames.com" + ], + "202020": [ + "https://testnet-val.decimalchain.com/web3" + ], + "202212": [ + "https://x1-devnet.xen.network" + ], + "202401": [ + "http://39.119.118.216:8545" + ], + "202624": [ + "https://jellie-rpc.twala.io", + "wss://jellie-rpc-wss.twala.io" + ], + "204005": [ + "https://x1-testnet.xen.network" + ], + "205205": [ + "https://auroria.rpc.stratisevm.com" + ], + "210049": [ + "https://rpc.gitagi.org" + ], + "210425": [ + "https://openapi2.platon.network/rpc", + "wss://openapi2.platon.network/ws" + ], + "220315": [ + "http://node.masnet.ai:8545" + ], + "221230": [ + "https://eth.reapchain.org" + ], + "221231": [ + "https://test-eth.reapchain.org" + ], + "222222": [ + "https://rpc.hydradx.cloud", + "wss://rpc.hydradx.cloud" + ], + "222555": [ + "https://rpc.deeplnetwork.org" + ], + "222666": [ + "https://testnet.deeplnetwork.org" + ], + "224168": [ + "https://mainnet.tafchain.com/v1" + ], + "224422": [ + "https://rpc1.conet.network" + ], + "224433": [ + "https://rpc.conet.network" + ], + "230315": [ + "https://testnet.hashkeychain/rpc" + ], + "234666": [ + "https://testnet1.haymo.network" + ], + "240515": [ + "https://testnet-rpc.orangechain.xyz" + ], + "246529": [ + "https://rpc.sigma1.artis.network" + ], + "246785": [ + "https://rpc.tau1.artis.network" + ], + "247253": [ + "https://rpc-testnet.saakuru.network" + ], + "256256": [ + "https://mainnet.block.caduceus.foundation", + "wss://mainnet.block.caduceus.foundation" + ], + "262371": [ + "https://testnet-rpc.eclatscan.com" + ], + "266256": [ + "https://gzn-test.linksme.info" + ], + "271271": [ + "https://rpctest.egonscan.com" + ], + "281121": [ + "rpcWorking:false", + "https://socialsmartchain.digitalnext.business" + ], + "282828": [ + "https://sepolia.zillnet.io/rpc" + ], + "309075": [ + "https://mainnet-rpc.oneworldchain.org" + ], + "313313": [ + "https://testnet.saharalabs.ai" + ], + "314159": [ + "https://filecoin-calibration.chainup.net/rpc/v1", + "https://api.calibration.node.glif.io/rpc/v1", + "https://rpc.ankr.com/filecoin_testnet", + "https://filecoin-calibration.chainstacklabs.com/rpc/v1", + "https://calibration.filfox.info/rpc/v1", + "https://filecoin-calibration.drpc.org", + "wss://filecoin-calibration.drpc.org" + ], + "322202": [ + "https://mainnet-rpc.parex.network" + ], + "323213": [ + "https://testnet-rpc.bloomgenesis.com" + ], + "330844": [ + "https://mainnet-rpc.tscscan.com" + ], + "333313": [ + "https://mainnet-rpc.bloomgenesis.com" + ], + "333331": [ + "https://test.rpc.avescoin.io" + ], + "333333": [ + "https://rpctest.nativ3.network", + "wss://wstest.nativ3.network" + ], + "333666": [ + "https://rpc.testnet.oonechain.com" + ], + "333777": [ + "https://rpc.dev.oonechain.com" + ], + "333888": [ + "https://sparta-rpc.polis.tech" + ], + "333999": [ + "https://rpc.polis.tech" + ], + "336655": [ + "https://rpc-testnet.uniport.network" + ], + "336666": [ + "https://rpc.uniport.network" + ], + "355110": [ + "https://mainnet.bitfinity.network" + ], + "355113": [ + "https://testnet.bitfinity.network" + ], + "360890": [ + "https://tsub360890-eth-rpc.thetatoken.org/rpc" + ], + "363636": [ + "https://dgs-rpc.digitsoul.co.th" + ], + "373737": [ + "https://jsonrpc-test.hap.land" + ], + "381931": [ + "https://api.metalblockchain.org/ext/bc/C/rpc" + ], + "381932": [ + "https://tahoe.metalblockchain.org/ext/bc/C/rpc" + ], + "404040": [ + "https://mainnet-rpc.tipboxcoin.net" + ], + "413413": [ + "https://rpc1-testnet.aiechain.io" + ], + "420420": [ + "https://mainnet.kekchain.com", + "https://rpc2.kekchain.com", + "https://kek.interchained.org", + "https://kekchain.interchained.org" + ], + "420666": [ + "https://testnet.kekchain.com" + ], + "420692": [ + "https://l2-testnet-rpc.altscan.org" + ], + "421611": [ + "https://rinkeby.arbitrum.io/rpc" + ], + "421613": [ + "https://endpoints.omniatech.io/v1/arbitrum/goerli/public", + "https://arb-goerli.g.alchemy.com/v2/demo", + "https://arbitrum-goerli.public.blastapi.io", + "https://rpc.goerli.arbitrum.gateway.fm", + "https://arbitrum-goerli-rpc.publicnode.com", + "wss://arbitrum-goerli-rpc.publicnode.com", + "https://api.zan.top/node/v1/arb/goerli/public", + "https://api.stateless.solutions/arbitrum-one/v1/77abba85-53e4-4430-a332-a46deb9900ea", + "https://goerli-rollup.arbitrum.io/rpc", + "https://arbitrum-goerli.publicnode.com", + "wss://arbitrum-goerli.publicnode.com" + ], + "421614": [ + "https://arbitrum-sepolia.blockpi.network/v1/rpc/public ", + "https://sepolia-rollup.arbitrum.io/rpc" + ], + "424242": [ + "https://rpc.testnet.fastexchain.com" + ], + "431140": [ + "https://rpc.markr.io/ext" + ], + "432201": [ + "https://subnets.avax.network/dexalot/testnet/rpc" + ], + "432204": [ + "https://subnets.avax.network/dexalot/mainnet/rpc" + ], + "444444": [ + "https://sepolia.syndr.com/http", + "wss://sepolia.syndr.com/ws" + ], + "444900": [ + "https://weelinknode1c.gw002.oneitfarm.com" + ], + "471100": [ + "https://test-rpc.patex.io" + ], + "473861": [ + "https://mainnet-rpc.ultraproscan.io" + ], + "474142": [ + "https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539" + ], + "504441": [ + "https://subnets.avax.network/playdappne/mainnet/rpc" + ], + "512512": [ + "https://galaxy.block.caduceus.foundation", + "wss://galaxy.block.caduceus.foundation" + ], + "513100": [ + "https://rpc.dischain.xyz" + ], + "526916": [ + "https://rpc.docoin.shop" + ], + "534351": [ + "https://scroll-sepolia.blockpi.network/v1/rpc/public", + "https://scroll-testnet-public.unifra.io", + "https://rpc.ankr.com/scroll_sepolia_testnet", + "https://scroll-public.scroll-testnet.quiknode.pro", + "https://scroll-sepolia.chainstacklabs.com", + "https://scroll-sepolia.drpc.org", + "https://scroll-testnet.rpc.grove.city/v1/a7a7c8e2", + "http://scroll-sepolia-rpc.01no.de:8545", + "https://sepolia-rpc.scroll.io" + ], + "534352": [ + "https://rpc.scroll.io", + "https://rpc-scroll.icecreamswap.com", + "https://scroll-mainnet.public.blastapi.io", + "https://scroll-mainnet-public.unifra.io", + "https://scroll.blockpi.network/v1/rpc/public", + "https://1rpc.io/scroll", + "https://scroll.drpc.org", + "https://scroll-mainnet.rpc.grove.city/v1/a7a7c8e2", + "https://rpc.ankr.com/scroll", + "https://scroll-mainnet.chainstacklabs.com" + ], + "534849": [ + "https://rpc.shinarium.org" + ], + "535037": [ + "https://mainnet-rpc.bescscan.io" + ], + "552981": [ + "https://testnet-rpc.oneworldchain.org" + ], + "555555": [ + "https://rpc-testnet.pentagon.games" + ], + "555666": [ + "https://subnets.avax.network/eclipsecha/testnet/rpc" + ], + "622277": [ + "https://rpc.hypra.network", + "https://rpc.rethereum.org", + "https://rethereum.rpc.restratagem.com", + "https://rpc.rthcentral.org", + "https://hypra.rpc.thirdweb.com" + ], + "622463": [ + "https://rpc.testnet.atl.network" + ], + "641230": [ + "https://brnkc-mainnet.bearnetwork.net", + "https://brnkc-mainnet1.bearnetwork.net" + ], + "651940": [ + "https://mainnet-rpc.alltra.global" + ], + "656476": [ + "https://rpc.open-campus-codex.gelato.digital" + ], + "660279": [ + "https://xai-chain.net/rpc" + ], + "666666": [ + "https://vpioneer.infragrid.v.network/ethereum/compatible" + ], + "666888": [ + "https://testnet-rpc.helachain.com" + ], + "686868": [ + "https://rpc.wonnetwork.org" + ], + "696969": [ + "https://devnet.galadriel.com" + ], + "710420": [ + "https://subnets.avax.network/tiltyard/mainnet/rpc" + ], + "713715": [ + "https://evm-rpc-arctic-1.sei-apis.com", + "https://evm-rpc.arctic-1.seinetwork.io" + ], + "721529": [ + "https://mainnet-rpc.eramscan.com" + ], + "743111": [ + "https://testnet.rpc.hemi.network/rpc" + ], + "751230": [ + "https://brnkc-test.bearnetwork.net" + ], + "761412": [ + "https://mainnet-rpc.miexs.com" + ], + "764984": [ + "https://subnets.avax.network/lamina1tes/testnet/rpc" + ], + "767368": [ + "https://subnets.avax.network/lamina1id/testnet/rpc" + ], + "776877": [ + "https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network" + ], + "800001": [ + "https://rpc.octa.space", + "wss://rpc.octa.space" + ], + "808080": [ + "https://rpc-testnet.bizex.io" + ], + "810180": [ + "https://rpc.zklink.io", + "wss://rpc.zklink.io" + ], + "810181": [ + "https://sepolia.rpc.zklink.io", + "wss://sepolia.rpc.zklink.io" + ], + "810182": [ + "https://goerli.rpc.zklink.io", + "wss://goerli.rpc.zklink.io" + ], + "820522": [ + "https://testnet.tscscan.io/testrpc" + ], + "827431": [ + "https://mainnet-rpc.curvescan.io" + ], + "839320": [ + "https://testnet-rpc.prmscan.org" + ], + "846000": [ + "https://chain.deptofgood.com" + ], + "855456": [ + "https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network", + "wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network" + ], + "879151": [ + "https://mainnet-rpc.blxscan.com" + ], + "888882": [ + "https://rpc.rexxnetwork.com" + ], + "888888": [ + "https://infragrid.v.network/ethereum/compatible" + ], + "900000": [ + "https://api.posichain.org", + "https://api.s0.posichain.org" + ], + "910000": [ + "https://api.s0.t.posichain.org" + ], + "912559": [ + "https://rpc.evm.dusk-3.devnet.astria.org" + ], + "920000": [ + "https://api.s0.d.posichain.org" + ], + "920001": [ + "https://api.s1.d.posichain.org" + ], + "923018": [ + "https://fncy-testnet-seed.fncy.world" + ], + "955081": [ + "https://subnets.avax.network/jono12/testnet/rpc" + ], + "955305": [ + "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" + ], + "978657": [ + "https://rpc-testnet.treasure.lol/http", + "wss://rpc-testnet.treasure.lol/ws" + ], + "984122": [ + "https://rpc.forma.art" + ], + "984123": [ + "https://rpc.sketchpad-1.forma.art" + ], + "988207": [ + "https://mainnet-rpc.ecroxscan.com" + ], + "998899": [ + "https://testnet-rpc.supernet.chaingames.io" + ], + "999999": [ + "https://node1.amchain.net" + ], + "1100789": [ + "https://testblock.protago-dev.com" + ], + "1127469": [ + "https://subnets.avax.network/tiltyard/testnet/rpc" + ], + "1261120": [ + "https://rpc.zkatana.gelato.digital", + "https://rpc.startale.com/zkatana", + "https://astar-zkatana.drpc.org", + "wss://astar-zkatana.drpc.org" + ], + "1313114": [ + "https://rpc.ethoprotocol.com" + ], + "1313500": [ + "https://rpc.xerom.org" + ], + "1337702": [ + "https://rpc.kintsugi.themerge.dev" + ], + "1337802": [ + "https://rpc.kiln.themerge.dev" + ], + "1337803": [ + "https://rpc.zhejiang.ethpandaops.io" + ], + "1612127": [ + "https://albireo-rpc.playfi.ai" + ], + "1637450": [ + "https://xterio-testnet.alt.technology" + ], + "1731313": [ + "https://devchain-poa.huabeizhenxuan.com" + ], + "2021398": [ + "http://rpc.testnet.debank.com" + ], + "2099156": [ + "https://mainnet.plian.io/pchain" + ], + "2206132": [ + "https://devnet2openapi.platon.network/rpc", + "wss://devnet2openapi.platon.network/ws" + ], + "2611555": [ + "https://sc-rpc.dpu.ac.th" + ], + "3132023": [ + "https://mainnet.saharalabs.ai" + ], + "3397901": [ + "https://funki-testnet.alt.technology" + ], + "3441005": [ + "https://manta-testnet.calderachain.xyz/http", + "https://manta-pacific-testnet.drpc.org", + "wss://manta-pacific-testnet.drpc.org" + ], + "3441006": [ + "https://pacific-rpc.sepolia-testnet.manta.network/http" + ], + "4000003": [ + "https://zero.alt.technology" + ], + "4281033": [ + "https://worlds-test.calderachain.xyz/http" + ], + "5112023": [ + "https://rpc-mainnet.numblock.org" + ], + "5167003": [ + "https://wannsee-rpc.mxc.com" + ], + "5167004": [ + "https://geneva-rpc.moonchain.com" + ], + "5201420": [ + "https://testnet-rpc.electroneum.com" + ], + "5318008": [ + "https://kopli-rpc.reactive.network", + "http://kopli-rpc.rkt.ink" + ], + "5555555": [ + "https://jsonrpc.imversed.network", + "https://ws-jsonrpc.imversed.network" + ], + "5555558": [ + "https://jsonrpc-test.imversed.network", + "https://ws-jsonrpc-test.imversed.network" + ], + "6038361": [ + "https://rpc.startale.com/zkyoto", + "https://rpc.zkyoto.gelato.digital" + ], + "6666665": [ + "https://rpc.anwang.com" + ], + "6666666": [ + "https://rpc-testnet.anwang.com" + ], + "7225878": [ + "https://rpc.saakuru.network" + ], + "7355310": [ + "https://mainnet-external.openvessel.io" + ], + "7668378": [ + "https://rpc.testnet.qom.one" + ], + "7762959": [ + "https://mewapi.musicoin.tw" + ], + "7777777": [ + "https://rpc.zora.energy" + ], + "8007736": [ + "https://mainnet.plian.io/child_0" + ], + "8008135": [ + "https://api.helium.fhenix.zone" + ], + "8080808": [ + "https://mainnet.hokum.gg" + ], + "8601152": [ + "https://rpc.testnet8.waterfall.network" + ], + "8794598": [ + "https://jsonrpc.hap.land" + ], + "9322252": [ + "https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1" + ], + "9322253": [ + "https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1" + ], + "10067275": [ + "https://testnet.plian.io/child_test" + ], + "10101010": [ + "https://mainnet-rpc.soverun.com" + ], + "10241025": [ + "https://hal-rpc.alienxchain.io/http", + "https://hal.rpc.caldera.xyz/http" + ], + "11155111": [ + "https://eth-sepolia.g.alchemy.com/v2/demo", + "https://endpoints.omniatech.io/v1/eth/sepolia/public", + "https://ethereum-sepolia.blockpi.network/v1/rpc/public", + "https://eth-sepolia.public.blastapi.io", + "https://eth-sepolia-public.unifra.io", + "https://sepolia.gateway.tenderly.co", + "https://gateway.tenderly.co/public/sepolia", + "https://sphinx.shardeum.org", + "https://dapps.shardeum.org", + "https://api.zan.top/node/v1/eth/sepolia/public", + "https://rpc.notadegen.com/eth/sepolia", + "https://ethereum-sepolia-rpc.publicnode.com", + "wss://ethereum-sepolia-rpc.publicnode.com", + "https://1rpc.io/sepolia", + "https://eth-sepolia.api.onfinality.io/public", + "https://rpc.sepolia.org", + "https://rpc2.sepolia.org", + "https://rpc-sepolia.rockx.com", + "https://rpc.sepolia.ethpandaops.io", + "wss://sepolia.gateway.tenderly.co", + "https://sepolia.drpc.org", + "wss://sepolia.drpc.org" + ], + "11155420": [ + "https://optimism-sepolia.blockpi.network/v1/rpc/public", + "https://sepolia.optimism.io", + "https://optimism-sepolia.drpc.org", + "wss://optimism-sepolia.drpc.org" + ], + "13068200": [ + "https://devnet.coti.io/rpc" + ], + "13371337": [ + "https://churchill-rpc.pepchain.io" + ], + "14288640": [ + "https://rpc.anduschain.io/rpc", + "wss://rpc.anduschain.io/ws" + ], + "16658437": [ + "https://testnet.plian.io/testnet" + ], + "17000920": [ + "https://testnrpc.lambda.im" + ], + "18289463": [ + "https://net.iolite.io" + ], + "20180427": [ + "https://free.testnet.stabilityprotocol.com" + ], + "20180430": [ + "https://jsonapi1.smartmesh.cn" + ], + "20181205": [ + "https://hz.rpc.qkiscan.cn", + "https://rpc1.qkiscan.cn", + "https://rpc2.qkiscan.cn", + "https://rpc3.qkiscan.cn", + "https://rpc1.qkiscan.io", + "https://rpc2.qkiscan.io", + "https://rpc3.qkiscan.io", + "https://jp.rpc.qkiscan.io" + ], + "20201022": [ + "https://pegorpc.com", + "https://node1.pegorpc.com", + "https://node2.pegorpc.com", + "https://node3.pegorpc.com" + ], + "20240324": [ + "https://sepolia-rpc.testnet.debank.com" + ], + "20241133": [ + "https://rpc-proxima.swanchain.io" + ], + "20482050": [ + "https://testnet.hokum.gg" + ], + "22052002": [ + "https://edgewallet1.xlon.org" + ], + "27082017": [ + "https://testnet-rpc.exlscan.com" + ], + "27082022": [ + "https://rpc.exlscan.com" + ], + "28122024": [ + "https://rpcv2-testnet.ancient8.gg" + ], + "28945486": [ + "https://rpc.auxilium.global" + ], + "29032022": [ + "https://flachain.flaexchange.top" + ], + "35855456": [ + "https://node.joys.digital" + ], + "37084624": [ + "https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet", + "wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet" + ], + "39916801": [ + "https://kingdomchain.observer/rpc" + ], + "43214913": [ + "http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc" + ], + "61717561": [ + "https://c.onical.org", + "https://tx.aquacha.in/api" + ], + "65010002": [ + "https://rpc1.bakerloo.autonity.org", + "wss://rpc1.bakerloo.autonity.org/ws" + ], + "65100002": [ + "https://rpc1.piccadilly.autonity.org", + "wss://rpc1.piccadilly.autonity.org/ws" + ], + "68840142": [ + "https://rpc.testnet.frame.xyz/http" + ], + "77787778": [ + "https://rpc-test.0xhash.io" + ], + "88888888": [ + "https://rpc.teamblockchain.team" + ], + "94204209": [ + "https://rpc.polygon-blackberry.gelato.digital", + "wss://ws.polygon-blackberry.gelato.digital" + ], + "99415706": [ + "https://toys.joys.cash" + ], + "108160679": [ + "https://evm.orai.io" + ], + "111557560": [ + "https://cyber-testnet.alt.technology", + "wss://cyber-testnet.alt.technology/ws", + "https://rpc.testnet.cyber.co", + "wss://rpc.testnet.cyber.co" + ], + "123420111": [ + "https://rpc.opcelestia-raspberry.gelato.digital", + "wss://ws.opcelestia-raspberry.gelato.digital" + ], + "161221135": [ + "https://testnet-rpc.plumenetwork.xyz/http", + "wss://testnet-rpc.plumenetwork.xyz/ws" + ], + "168587773": [ + "https://blast-sepolia.blockpi.network/v1/rpc/public", + "https://sepolia.blast.io", + "https://blast-sepolia.drpc.org", + "wss://blast-sepolia.drpc.org" + ], + "192837465": [ + "https://mainnet.gather.network" + ], + "222000222": [ + "https://testnet-rpc.meld.com" + ], + "245022926": [ + "https://devnet.neonevm.org", + "https://neon-evm-devnet.drpc.org", + "wss://neon-evm-devnet.drpc.org" + ], + "245022934": [ + "https://neon-proxy-mainnet.solana.p2p.org", + "https://neon-mainnet.everstake.one", + "https://neon-evm.drpc.org", + "wss://neon-evm.drpc.org" + ], + "278611351": [ + "https://mainnet.skalenodes.com/v1/turbulent-unique-scheat" + ], + "311752642": [ + "https://mainnet-rpc.oneledger.network" + ], + "328527624": [ + "https://testnet-rpc.nal.network" + ], + "333000333": [ + "https://rpc-1.meld.com" + ], + "356256156": [ + "https://testnet.gather.network" + ], + "486217935": [ + "https://devnet.gather.network" + ], + "666666666": [ + "https://rpc.degen.tips" + ], + "888888888": [ + "https://rpc.ancient8.gg" + ], + "889910245": [ + "https://rpc-testnet.ptcscan.io" + ], + "889910246": [ + "https://rpc.ptcscan.io" + ], + "974399131": [ + "https://testnet.skalenodes.com/v1/giant-half-dual-testnet" + ], + "999999999": [ + "https://sepolia.rpc.zora.energy" + ], + "1020352220": [ + "https://testnet.skalenodes.com/v1/aware-fake-trim-testnet", + "wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet" + ], + "1122334455": [ + "https://rpc.iposlab.com", + "https://rpc2.iposlab.com" + ], + "1146703430": [ + "http://cybeth1.cyberdeck.eu:8545" + ], + "1273227453": [ + "https://mainnet.skalenodes.com/v1/wan-red-ain" + ], + "1313161554": [ + "https://mainnet.aurora.dev", + "https://endpoints.omniatech.io/v1/aurora/mainnet/public", + "https://1rpc.io/aurora", + "https://aurora.drpc.org", + "wss://aurora.drpc.org" + ], + "1313161555": [ + "https://endpoints.omniatech.io/v1/aurora/testnet/public", + "https://testnet.aurora.dev", + "https://aurora-testnet.drpc.org", + "wss://aurora-testnet.drpc.org" + ], + "1313161560": [ + "https://powergold.aurora.dev" + ], + "1350216234": [ + "https://mainnet.skalenodes.com/v1/parallel-stormy-spica", + "wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" + ], + "1351057110": [ + "https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix" + ], + "1380012617": [ + "https://rari.calderachain.xyz/http" + ], + "1380996178": [ + "https://rpc.raptorchain.io/web3" + ], + "1444673419": [ + "https://testnet.skalenodes.com/v1/juicy-low-small-testnet" + ], + "1482601649": [ + "https://mainnet.skalenodes.com/v1/green-giddy-denebola", + "wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola" + ], + "1564830818": [ + "https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague" + ], + "1666600000": [ + "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", + "https://hmyone-pokt.nodies.app", + "https://endpoints.omniatech.io/v1/harmony/mainnet-0/public", + "https://harmony-0.drpc.org", + "wss://harmony-0.drpc.org" + ], + "1666600001": [ + "https://s1.api.harmony.one", + "https://api.s1.t.hmny.io", + "https://harmony-1.drpc.org", + "wss://harmony-1.drpc.org" + ], + "1666700000": [ + "https://endpoints.omniatech.io/v1/harmony/testnet-0/public", + "https://api.s0.b.hmny.io" + ], + "1666700001": [ + "https://api.s1.b.hmny.io" + ], + "1666900000": [ + "https://api.s0.ps.hmny.io" + ], + "1666900001": [ + "https://api.s1.ps.hmny.io" + ], + "1802203764": [ + "https://sepolia-rpc.kakarot.org" + ], + "1918988905": [ + "https://testnet.rpc.rarichain.org/http" + ], + "2021121117": [ + "https://23.92.21.121:8545" + ], + "2046399126": [ + "https://mainnet.skalenodes.com/v1/elated-tan-skat", + "wss://mainnet.skalenodes.com/v1/elated-tan-skat" + ], + "3125659152": [ + "https://wallrpc.pirl.io" + ], + "4216137055": [ + "https://frankenstein-rpc.oneledger.network" + ], + "11297108109": [ + "https://palm-mainnet.infura.io/v3/3a961d6501e54add9a41aa53f15de99b", + "https://palm-mainnet.public.blastapi.io" + ], + "11297108099": [ + "https://palm-testnet.public.blastapi.io" + ], + "28872323069": [ + "https://gitswarm.com:2096" + ], + "37714555429": [ + "https://testnet-v2.xai-chain.net/rpc" + ], + "88153591557": [ + "https://rpc.arb-blueberry.gelato.digital", + "wss://ws.arb-blueberry.gelato.digital" + ], + "111222333444": [ + "https://londonpublic.alphabetnetwork.org", + "wss://londonpublic.alphabetnetwork.org/ws", + "https://main-rpc.com", + "wss://main-rpc.com/ws" + ], + "197710212030": [ + "https://rpc.ntity.io" + ], + "197710212031": [ + "https://blockchain.haradev.com" + ], + "202402181627": [ + "https://gmnetwork-testnet.alt.technology" + ], + "383414847825": [ + "https://smart.zeniq.network:9545" + ], + "666301171999": [ + "https://mainnet.ipdc.io" + ], + "6022140761023": [ + "https://molereum.jdubedition.com" + ], + "2713017997578000": [ + "https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io" + ], + "2716446429837000": [ + "https://dchain-2716446429837000-1.jsonrpc.sagarpc.io" + ] +}; diff --git a/types/handler.ts b/types/handler.ts index 5815c63..9c728ae 100644 --- a/types/handler.ts +++ b/types/handler.ts @@ -1,5 +1,13 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { ChainId, networkCurrencies, networkExplorers, networkIds, networkNames, networkRpcs, tokens } from "./constants"; +import { networkCurrencies, networkExplorers, networkRpcs } from "./constants"; +import { CHAINS_IDS, EXTRA_RPCS } from "./dynamic"; + +export type BlockExplorer = { + name: string; + url: string; + standard?: string; + icon?: string; +}; export type ValidBlockData = { jsonrpc: string; @@ -18,6 +26,7 @@ export type Token = { }; export type NativeToken = { + name: string; symbol: string; decimals: number; }; @@ -30,8 +39,8 @@ export type HandlerInterface = { }; export type HandlerConstructorConfig = { - networkId: number; - networkName: string | null; + networkId: NetworkId; + networkName: NetworkName | null; networkRpcs: string[] | null; autoStorage: boolean | null; cacheRefreshCycles: number | null; @@ -40,13 +49,16 @@ export type HandlerConstructorConfig = { }; export type NetworkRPCs = typeof networkRpcs; -export type NetworkNames = typeof networkNames; export type NetworkCurrencies = typeof networkCurrencies; -export type Tokens = typeof tokens; export type NetworkExplorers = typeof networkExplorers; -export type NetworkIds = typeof networkIds; -export type { ChainId }; -export type ChainNames = { - [key in TChainID]: string; +// filtered NetworkId union +export type NetworkId = keyof typeof EXTRA_RPCS | "31337" | "1337"; + +// unfiltered Record +type ChainsUnfiltered = { + -readonly [K in keyof typeof CHAINS_IDS]: (typeof CHAINS_IDS)[K]; }; + +// filtered NetworkName union +export type NetworkName = ChainsUnfiltered[NetworkId] | "anvil" | "hardhat"; diff --git a/types/rpc-handler.ts b/types/rpc-handler.ts index f3b7ba1..f70d413 100644 --- a/types/rpc-handler.ts +++ b/types/rpc-handler.ts @@ -1,6 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import { LOCAL_HOST, networkRpcs, networkNames } from "./constants"; -import { HandlerInterface, HandlerConstructorConfig } from "./handler"; +import { LOCAL_HOST, networkRpcs, networkIds } from "./constants"; +import { HandlerInterface, HandlerConstructorConfig, NetworkId, NetworkName } from "./handler"; import { RPCService } from "../src/services/rpc-service"; import { StorageService } from "../src/services/storage-service"; @@ -8,8 +8,8 @@ import { StorageService } from "../src/services/storage-service"; export class RPCHandler implements HandlerInterface { private static _instance: RPCHandler | null = null; private _provider: JsonRpcProvider | null = null; - private _networkId: number; - private _networkName: string; + private _networkId: NetworkId; + private _networkName: NetworkName; private _env: string = "node"; private _rpcTimeout: number = Number.MAX_SAFE_INTEGER; // ms @@ -25,18 +25,18 @@ export class RPCHandler implements HandlerInterface { constructor(config: HandlerConstructorConfig) { this._networkId = config.networkId; this._networkRpcs = networkRpcs[this._networkId]; - this._networkName = networkNames[this._networkId]; + this._networkName = networkIds[this._networkId]; this._initialize(config); } public async getFastestRpcProvider(): Promise { - if (this._networkId === 31337) { - this._provider = new JsonRpcProvider(LOCAL_HOST, this._networkId); + if (this._networkId === "31337") { + this._provider = new JsonRpcProvider(LOCAL_HOST, Number(this._networkId)); } else if (!this._provider) { this._provider = await this.testRpcPerformance(); } - if (this._provider && this._provider?.connection.url.includes("localhost") && this._networkId !== 31337) { + if (this._provider && this._provider?.connection.url.includes("localhost") && this._networkId !== "31337") { /** * The JsonRpcProvider defaults erroneously to localhost:8545 * this is a fix for that @@ -71,7 +71,7 @@ export class RPCHandler implements HandlerInterface { throw new Error("Failed to find fastest RPC"); } - const provider = new JsonRpcProvider(fastestRpcUrl, this._networkId); + const provider = new JsonRpcProvider(fastestRpcUrl, Number(this._networkId)); this._provider = provider; if (this._autoStorage) { @@ -111,11 +111,11 @@ export class RPCHandler implements HandlerInterface { return this._runtimeRpcs; } - public getNetworkId(): number { + public getNetworkId() { return this._networkId; } - public getNetworkName(): string { + public getNetworkName() { return this._networkName; } diff --git a/yarn.lock b/yarn.lock index b35b07c..d438119 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15,118 +15,119 @@ __metadata: languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.23.5, @babel/code-frame@npm:^7.24.2": - version: 7.24.2 - resolution: "@babel/code-frame@npm:7.24.2" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/code-frame@npm:7.24.7" dependencies: - "@babel/highlight": "npm:^7.24.2" + "@babel/highlight": "npm:^7.24.7" picocolors: "npm:^1.0.0" - checksum: 10c0/d1d4cba89475ab6aab7a88242e1fd73b15ecb9f30c109b69752956434d10a26a52cbd37727c4eca104b6d45227bd1dfce39a6a6f4a14c9b2f07f871e968cf406 + checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6 languageName: node linkType: hard -"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.23.5, @babel/compat-data@npm:^7.24.4": - version: 7.24.4 - resolution: "@babel/compat-data@npm:7.24.4" - checksum: 10c0/9cd8a9cd28a5ca6db5d0e27417d609f95a8762b655e8c9c97fd2de08997043ae99f0139007083c5e607601c6122e8432c85fe391731b19bf26ad458fa0c60dd3 +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/compat-data@npm:7.24.7" + checksum: 10c0/dcd93a5632b04536498fbe2be5af1057f635fd7f7090483d8e797878559037e5130b26862ceb359acbae93ed27e076d395ddb4663db6b28a665756ffd02d324f languageName: node linkType: hard "@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.0": - version: 7.24.5 - resolution: "@babel/core@npm:7.24.5" + version: 7.24.7 + resolution: "@babel/core@npm:7.24.7" dependencies: "@ampproject/remapping": "npm:^2.2.0" - "@babel/code-frame": "npm:^7.24.2" - "@babel/generator": "npm:^7.24.5" - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-module-transforms": "npm:^7.24.5" - "@babel/helpers": "npm:^7.24.5" - "@babel/parser": "npm:^7.24.5" - "@babel/template": "npm:^7.24.0" - "@babel/traverse": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" + "@babel/code-frame": "npm:^7.24.7" + "@babel/generator": "npm:^7.24.7" + "@babel/helper-compilation-targets": "npm:^7.24.7" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helpers": "npm:^7.24.7" + "@babel/parser": "npm:^7.24.7" + "@babel/template": "npm:^7.24.7" + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: 10c0/e26ba810a77bc8e21579a12fc36c79a0a60554404dc9447f2d64eb1f26d181c48d3b97d39d9f158e9911ec7162a8280acfaf2b4b210e975f0dd4bd4dbb1ee159 + checksum: 10c0/4004ba454d3c20a46ea66264e06c15b82e9f6bdc35f88819907d24620da70dbf896abac1cb4cc4b6bb8642969e45f4d808497c9054a1388a386cf8c12e9b9e0d languageName: node linkType: hard -"@babel/generator@npm:^7.24.5, @babel/generator@npm:^7.7.2": - version: 7.24.5 - resolution: "@babel/generator@npm:7.24.5" +"@babel/generator@npm:^7.24.7, @babel/generator@npm:^7.7.2": + version: 7.24.7 + resolution: "@babel/generator@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" + "@babel/types": "npm:^7.24.7" "@jridgewell/gen-mapping": "npm:^0.3.5" "@jridgewell/trace-mapping": "npm:^0.3.25" jsesc: "npm:^2.5.1" - checksum: 10c0/0d64f880150e7dfb92ceff2b4ac865f36aa1e295120920246492ffd0146562dabf79ba8699af1c8833f8a7954818d4d146b7b02f808df4d6024fb99f98b2f78d + checksum: 10c0/06b1f3350baf527a3309e50ffd7065f7aee04dd06e1e7db794ddfde7fe9d81f28df64edd587173f8f9295496a7ddb74b9a185d4bf4de7bb619e6d4ec45c8fd35 languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" +"@babel/helper-annotate-as-pure@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/5a80dc364ddda26b334bbbc0f6426cab647381555ef7d0cd32eb284e35b867c012ce6ce7d52a64672ed71383099c99d32765b3d260626527bb0e3470b0f58e45 + "@babel/types": "npm:^7.24.7" + checksum: 10c0/4679f7df4dffd5b3e26083ae65228116c3da34c3fff2c11ae11b259a61baec440f51e30fd236f7a0435b9d471acd93d0bc5a95df8213cbf02b1e083503d81b9a languageName: node linkType: hard -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15" +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.15" - checksum: 10c0/2535e3824ca6337f65786bbac98e562f71699f25532cecd196f027d7698b4967a96953d64e36567956658ad1a05ccbdc62d1ba79ee751c79f4f1d2d3ecc2e01c + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/0ed84abf848c79fb1cd4c1ddac12c771d32c1904d87fc3087f33cfdeb0c2e0db4e7892b74b407d9d8d0c000044f3645a7391a781f788da8410c290bb123a1f13 languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.23.6": - version: 7.23.6 - resolution: "@babel/helper-compilation-targets@npm:7.23.6" +"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-compilation-targets@npm:7.24.7" dependencies: - "@babel/compat-data": "npm:^7.23.5" - "@babel/helper-validator-option": "npm:^7.23.5" + "@babel/compat-data": "npm:^7.24.7" + "@babel/helper-validator-option": "npm:^7.24.7" browserslist: "npm:^4.22.2" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" - checksum: 10c0/ba38506d11185f48b79abf439462ece271d3eead1673dd8814519c8c903c708523428806f05f2ec5efd0c56e4e278698fac967e5a4b5ee842c32415da54bc6fa + checksum: 10c0/1d580a9bcacefe65e6bf02ba1dafd7ab278269fef45b5e281d8354d95c53031e019890464e7f9351898c01502dd2e633184eb0bcda49ed2ecd538675ce310f51 languageName: node linkType: hard -"@babel/helper-create-class-features-plugin@npm:^7.24.1, @babel/helper-create-class-features-plugin@npm:^7.24.4, @babel/helper-create-class-features-plugin@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-create-class-features-plugin@npm:7.24.5" +"@babel/helper-create-class-features-plugin@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-create-class-features-plugin@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-member-expression-to-functions": "npm:^7.24.5" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" - "@babel/helper-replace-supers": "npm:^7.24.1" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.24.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-function-name": "npm:^7.24.7" + "@babel/helper-member-expression-to-functions": "npm:^7.24.7" + "@babel/helper-optimise-call-expression": "npm:^7.24.7" + "@babel/helper-replace-supers": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + "@babel/helper-split-export-declaration": "npm:^7.24.7" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/afc72e8075a249663f8024ef1760de4c0b9252bdde16419ac955fa7e15b8d4096ca1e01f796df4fa8cfdb056708886f60b631ad492242a8e47307974fc305920 + checksum: 10c0/6b7b47d70b41c00f39f86790cff67acf2bce0289d52a7c182b28e797f4e0e6d69027e3d06eccf1d54dddc2e5dde1df663bb1932437e5f447aeb8635d8d64a6ab languageName: node linkType: hard -"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15" +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" regexpu-core: "npm:^5.3.1" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/8eba4c1b7b94a83e7a82df5c3e504584ff0ba6ab8710a67ecc2c434a7fb841a29c2f5c94d2de51f25446119a1df538fa90b37bd570db22ddd5e7147fe98277c6 + checksum: 10c0/ed611a7eb0c71843f9cdc471eeb38767972229f9225f7aaa90d124d7ee0062cf6908fd53ee9c34f731394c429594f06049a7738a71d342e0191d4047b2fc0ac2 languageName: node linkType: hard @@ -145,243 +146,249 @@ __metadata: languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-environment-visitor@npm:7.22.20" - checksum: 10c0/e762c2d8f5d423af89bd7ae9abe35bd4836d2eb401af868a63bbb63220c513c783e25ef001019418560b3fdc6d9a6fb67e6c0b650bcdeb3a2ac44b5c3d2bdd94 +"@babel/helper-environment-visitor@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-environment-visitor@npm:7.24.7" + dependencies: + "@babel/types": "npm:^7.24.7" + checksum: 10c0/36ece78882b5960e2d26abf13cf15ff5689bf7c325b10a2895a74a499e712de0d305f8d78bb382dd3c05cfba7e47ec98fe28aab5674243e0625cd38438dd0b2d languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/helper-function-name@npm:7.23.0" +"@babel/helper-function-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-function-name@npm:7.24.7" dependencies: - "@babel/template": "npm:^7.22.15" - "@babel/types": "npm:^7.23.0" - checksum: 10c0/d771dd1f3222b120518176733c52b7cadac1c256ff49b1889dbbe5e3fed81db855b8cc4e40d949c9d3eae0e795e8229c1c8c24c0e83f27cfa6ee3766696c6428 + "@babel/template": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/e5e41e6cf86bd0f8bf272cbb6e7c5ee0f3e9660414174435a46653efba4f2479ce03ce04abff2aa2ef9359cf057c79c06cb7b134a565ad9c0e8a50dcdc3b43c4 languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-hoist-variables@npm:7.22.5" +"@babel/helper-hoist-variables@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-hoist-variables@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/60a3077f756a1cd9f14eb89f0037f487d81ede2b7cfe652ea6869cd4ec4c782b0fb1de01b8494b9a2d2050e3d154d7d5ad3be24806790acfb8cbe2073bf1e208 + "@babel/types": "npm:^7.24.7" + checksum: 10c0/19ee37563bbd1219f9d98991ad0e9abef77803ee5945fd85aa7aa62a67c69efca9a801696a1b58dda27f211e878b3327789e6fd2a6f6c725ccefe36774b5ce95 languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.23.0, @babel/helper-member-expression-to-functions@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-member-expression-to-functions@npm:7.24.5" +"@babel/helper-member-expression-to-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-member-expression-to-functions@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 10c0/a3c0276a1ede8648a0e6fd86ad846cd57421d05eddfa29446b8b5a013db650462022b9ec1e65ea32c747d0542d729c80866830697f94fb12d603e87c51f080a5 + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/9638c1d33cf6aba028461ccd3db6061c76ff863ca0d5013dd9a088bf841f2f77c46956493f9da18355c16759449d23b74cc1de4da357ade5c5c34c858f840f0a languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.24.1, @babel/helper-module-imports@npm:^7.24.3": - version: 7.24.3 - resolution: "@babel/helper-module-imports@npm:7.24.3" +"@babel/helper-module-imports@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-imports@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.0" - checksum: 10c0/052c188adcd100f5e8b6ff0c9643ddaabc58b6700d3bbbc26804141ad68375a9f97d9d173658d373d31853019e65f62610239e3295cdd58e573bdcb2fded188d + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/97c57db6c3eeaea31564286e328a9fb52b0313c5cfcc7eee4bc226aebcf0418ea5b6fe78673c0e4a774512ec6c86e309d0f326e99d2b37bfc16a25a032498af0 languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.23.3, @babel/helper-module-transforms@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-module-transforms@npm:7.24.5" +"@babel/helper-module-transforms@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-transforms@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-module-imports": "npm:^7.24.3" - "@babel/helper-simple-access": "npm:^7.24.5" - "@babel/helper-split-export-declaration": "npm:^7.24.5" - "@babel/helper-validator-identifier": "npm:^7.24.5" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-module-imports": "npm:^7.24.7" + "@babel/helper-simple-access": "npm:^7.24.7" + "@babel/helper-split-export-declaration": "npm:^7.24.7" + "@babel/helper-validator-identifier": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/6e77d72f62b7e87abaea800ea0bccd4d54cde26485750969f5f493c032eb63251eb50c3522cace557781565d51c1d0c4bcc866407d24becfb109c18fb92c978d + checksum: 10c0/4f311755fcc3b4cbdb689386309cdb349cf0575a938f0b9ab5d678e1a81bbb265aa34ad93174838245f2ac7ff6d5ddbd0104638a75e4e961958ed514355687b6 languageName: node linkType: hard -"@babel/helper-optimise-call-expression@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" +"@babel/helper-optimise-call-expression@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-optimise-call-expression@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/31b41a764fc3c585196cf5b776b70cf4705c132e4ce9723f39871f215f2ddbfb2e28a62f9917610f67c8216c1080482b9b05f65dd195dae2a52cef461f2ac7b8 + "@babel/types": "npm:^7.24.7" + checksum: 10c0/ca6a9884705dea5c95a8b3ce132d1e3f2ae951ff74987d400d1d9c215dae9c0f9e29924d8f8e131e116533d182675bc261927be72f6a9a2968eaeeaa51eb1d0f languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.0, @babel/helper-plugin-utils@npm:^7.24.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": - version: 7.24.5 - resolution: "@babel/helper-plugin-utils@npm:7.24.5" - checksum: 10c0/4ae40094e6a2f183281213344f4df60c66b16b19a2bc38d2bb11810a6dc0a0e7ec638957d0e433ff8b615775b8f3cd1b7edbf59440d1b50e73c389fc22913377 +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.24.7 + resolution: "@babel/helper-plugin-utils@npm:7.24.7" + checksum: 10c0/c3d38cd9b3520757bb4a279255cc3f956fc0ac1c193964bd0816ebd5c86e30710be8e35252227e0c9d9e0f4f56d9b5f916537f2bc588084b0988b4787a967d31 languageName: node linkType: hard -"@babel/helper-remap-async-to-generator@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20" +"@babel/helper-remap-async-to-generator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-remap-async-to-generator@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-wrap-function": "npm:^7.22.20" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-wrap-function": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/aa93aa74250b636d477e8d863fbe59d4071f8c2654841b7ac608909e480c1cf3ff7d7af5a4038568829ad09d810bb681668cbe497d9c89ba5c352793dc9edf1e + checksum: 10c0/4e7fa2cdcbc488e41c27066c16e562857ef3c5c2bfe70d2f1e32e9ee7546b17c3fc1c20d05bf2a7f1c291bd9e7a0a219f6a9fa387209013294be79a26fcfe64d languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/helper-replace-supers@npm:7.24.1" +"@babel/helper-replace-supers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-replace-supers@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-member-expression-to-functions": "npm:^7.23.0" - "@babel/helper-optimise-call-expression": "npm:^7.22.5" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-member-expression-to-functions": "npm:^7.24.7" + "@babel/helper-optimise-call-expression": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/d39a3df7892b7c3c0e307fb229646168a9bd35e26a72080c2530729322600e8cff5f738f44a14860a2358faffa741b6a6a0d6749f113387b03ddbfa0ec10e1a0 + checksum: 10c0/0e133bb03371dee78e519c334a09c08e1493103a239d9628db0132dfaac3fc16380479ca3c590d278a9b71b624030a338c18ebbfe6d430ebb2e4653775c4b3e3 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.22.5, @babel/helper-simple-access@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-simple-access@npm:7.24.5" +"@babel/helper-simple-access@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-simple-access@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 10c0/d96a0ab790a400f6c2dcbd9457b9ca74b9ba6d0f67ff9cd5bcc73792c8fbbd0847322a0dddbd8987dd98610ee1637c680938c7d83d3ffce7d06d7519d823d996 + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/7230e419d59a85f93153415100a5faff23c133d7442c19e0cd070da1784d13cd29096ee6c5a5761065c44e8164f9f80e3a518c41a0256df39e38f7ad6744fed7 languageName: node linkType: hard -"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.22.5" - checksum: 10c0/ab7fa2aa709ab49bb8cd86515a1e715a3108c4bb9a616965ba76b43dc346dee66d1004ccf4d222b596b6224e43e04cbc5c3a34459501b388451f8c589fbc3691 + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/e3a9b8ac9c262ac976a1bcb5fe59694db5e6f0b4f9e7bdba5c7693b8b5e28113c23bdaa60fe8d3ec32a337091b67720b2053bcb3d5655f5406536c3d0584242b languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-split-export-declaration@npm:7.24.5" +"@babel/helper-split-export-declaration@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-split-export-declaration@npm:7.24.7" dependencies: - "@babel/types": "npm:^7.24.5" - checksum: 10c0/d7a812d67d031a348f3fb0e6263ce2dbe6038f81536ba7fb16db385383bcd6542b71833194303bf6d3d0e4f7b6b584c9c8fae8772122e2ce68fc9bdf07f4135d + "@babel/types": "npm:^7.24.7" + checksum: 10c0/0254577d7086bf09b01bbde98f731d4fcf4b7c3fa9634fdb87929801307c1f6202a1352e3faa5492450fa8da4420542d44de604daf540704ff349594a78184f6 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/helper-string-parser@npm:7.24.1" - checksum: 10c0/2f9bfcf8d2f9f083785df0501dbab92770111ece2f90d120352fda6dd2a7d47db11b807d111e6f32aa1ba6d763fe2dc6603d153068d672a5d0ad33ca802632b2 +"@babel/helper-string-parser@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-string-parser@npm:7.24.7" + checksum: 10c0/47840c7004e735f3dc93939c77b099bb41a64bf3dda0cae62f60e6f74a5ff80b63e9b7cf77b5ec25a324516381fc994e1f62f922533236a8e3a6af57decb5e1e languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helper-validator-identifier@npm:7.24.5" - checksum: 10c0/05f957229d89ce95a137d04e27f7d0680d84ae48b6ad830e399db0779341f7d30290f863a93351b4b3bde2166737f73a286ea42856bb07c8ddaa95600d38645c +"@babel/helper-validator-identifier@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-identifier@npm:7.24.7" + checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.23.5": - version: 7.23.5 - resolution: "@babel/helper-validator-option@npm:7.23.5" - checksum: 10c0/af45d5c0defb292ba6fd38979e8f13d7da63f9623d8ab9ededc394f67eb45857d2601278d151ae9affb6e03d5d608485806cd45af08b4468a0515cf506510e94 +"@babel/helper-validator-option@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-option@npm:7.24.7" + checksum: 10c0/21aea2b7bc5cc8ddfb828741d5c8116a84cbc35b4a3184ec53124f08e09746f1f67a6f9217850188995ca86059a7942e36d8965a6730784901def777b7e8a436 languageName: node linkType: hard -"@babel/helper-wrap-function@npm:^7.22.20": - version: 7.24.5 - resolution: "@babel/helper-wrap-function@npm:7.24.5" +"@babel/helper-wrap-function@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-wrap-function@npm:7.24.7" dependencies: - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/template": "npm:^7.24.0" - "@babel/types": "npm:^7.24.5" - checksum: 10c0/242fcd32d59d26463fd8d989707b88691deec871ac2bf15e03ab2f1b185d1d4f3db2c6a8dd3c10c89d4ff63da238df1c4d318cfc3dcd8e1c1fabdcf27f28d858 + "@babel/helper-function-name": "npm:^7.24.7" + "@babel/template": "npm:^7.24.7" + "@babel/traverse": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/d5689f031bf0eb38c0d7fad6b7e320ddef4bfbdf08d12d7d76ef41b7ca365a32721e74cb5ed5a9a9ec634bc20f9b7a27314fa6fb08f1576b8f6d8330fcea6f47 languageName: node linkType: hard -"@babel/helpers@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/helpers@npm:7.24.5" +"@babel/helpers@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helpers@npm:7.24.7" dependencies: - "@babel/template": "npm:^7.24.0" - "@babel/traverse": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" - checksum: 10c0/0630b0223c3a9a34027ddc05b3bac54d68d5957f84e92d2d4814b00448a76e12f9188f9c85cfce2011696d82a8ffcbd8189da097c0af0181d32eb27eca34185e + "@babel/template": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/aa8e230f6668773e17e141dbcab63e935c514b4b0bf1fed04d2eaefda17df68e16b61a56573f7f1d4d1e605ce6cc162b5f7e9fdf159fde1fd9b77c920ae47d27 languageName: node linkType: hard -"@babel/highlight@npm:^7.24.2": - version: 7.24.5 - resolution: "@babel/highlight@npm:7.24.5" +"@babel/highlight@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/highlight@npm:7.24.7" dependencies: - "@babel/helper-validator-identifier": "npm:^7.24.5" + "@babel/helper-validator-identifier": "npm:^7.24.7" chalk: "npm:^2.4.2" js-tokens: "npm:^4.0.0" picocolors: "npm:^1.0.0" - checksum: 10c0/e98047d3ad24608bfa596d000c861a2cc875af897427f2833b91a4e0d4cead07301a7ec15fa26093dcd61e036e2eed2db338ae54f93016fe0dc785fadc4159db + checksum: 10c0/674334c571d2bb9d1c89bdd87566383f59231e16bcdcf5bb7835babdf03c9ae585ca0887a7b25bdf78f303984af028df52831c7989fecebb5101cc132da9393a languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.0, @babel/parser@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/parser@npm:7.24.5" +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/parser@npm:7.24.7" bin: parser: ./bin/babel-parser.js - checksum: 10c0/8333a6ad5328bad34fa0e12bcee147c3345ea9a438c0909e7c68c6cfbea43c464834ffd7eabd1cbc1c62df0a558e22ffade9f5b29440833ba7b33d96a71f88c0 + checksum: 10c0/8b244756872185a1c6f14b979b3535e682ff08cb5a2a5fd97cc36c017c7ef431ba76439e95e419d43000c5b07720495b00cf29a7f0d9a483643d08802b58819b languageName: node linkType: hard -"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.24.5" +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/b471972dcc4a3ba32821329a57725e2b563421e975d7ffec7fcabd70af0fced6a50bcc9ed2a8cbd4a9ac7c09cfbf43c7116e82f3b9064b33a22309500b632108 + checksum: 10c0/394c30e2b708ad385fa1219528e039066a1f1cb40f47986f283878848fd354c745e6397f588b4e5a046ee8d64bfdf4c208e4c3dfbdcfb2fd34315ec67c64e7af languageName: node linkType: hard -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.24.1" +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/d4e592e6fc4878654243d2e7b51ea86471b868a8cb09de29e73b65d2b64159990c6c198fd7c9c2af2e38b1cddf70206243792853c47384a84f829dada152f605 + checksum: 10c0/a36307428ecc1a01b00cf90812335eed1575d13f211ab24fe4d0c55c28a2fcbd4135f142efabc3b277b2a8e09ee05df594a1272353f061b63829495b5dcfdb96 languageName: node linkType: hard -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.1" +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" - "@babel/plugin-transform-optional-chaining": "npm:^7.24.1" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.13.0 - checksum: 10c0/351c36e45795a7890d610ab9041a52f4078a59429f6e74c281984aa44149a10d43e82b3a8172c703c0d5679471e165d1c02b6d2e45a677958ee301b89403f202 + checksum: 10c0/aeb6e7aa363a47f815cf956ea1053c5dd8b786a17799f065c9688ba4b0051fe7565d258bbe9400bfcbfb3114cb9fda66983e10afe4d750bc70ff75403e15dd36 languageName: node linkType: hard -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.24.1" +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/d7dd5a59a54635a3152895dcaa68f3370bb09d1f9906c1e72232ff759159e6be48de4a598a993c986997280a2dc29922a48aaa98020f16439f3f57ad72788354 + checksum: 10c0/2b52a73e444f6adc73f927b623e53a4cf64397170dd1071268536df1b3db1e02131418c8dc91351af48837a6298212118f4a72d5407f8005cf9a732370a315b0 languageName: node linkType: hard @@ -460,25 +467,25 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-import-assertions@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-syntax-import-assertions@npm:7.24.1" +"@babel/plugin-syntax-import-assertions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/72f0340d73e037f0702c61670054e0af66ece7282c5c2f4ba8de059390fee502de282defdf15959cd9f71aa18dc5c5e4e7a0fde317799a0600c6c4e0a656d82b + checksum: 10c0/b82c53e095274ee71c248551352d73441cf65b3b3fc0107258ba4e9aef7090772a425442b3ed1c396fa207d0efafde8929c87a17d3c885b3ca2021316e87e246 languageName: node linkType: hard -"@babel/plugin-syntax-import-attributes@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.1" +"@babel/plugin-syntax-import-attributes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/309634e3335777aee902552b2cf244c4a8050213cc878b3fb9d70ad8cbbff325dc46ac5e5791836ff477ea373b27832238205f6ceaff81f7ea7c4c7e8fbb13bb + checksum: 10c0/eccc54d0f03c96d0eec7a6e2fa124dadbc7298345b62ffc4238f173308c4325b5598f139695ff05a95cf78412ef6903599e4b814496612bf39aad4715a16375b languageName: node linkType: hard @@ -504,14 +511,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.24.1, @babel/plugin-syntax-jsx@npm:^7.7.2": - version: 7.24.1 - resolution: "@babel/plugin-syntax-jsx@npm:7.24.1" +"@babel/plugin-syntax-jsx@npm:^7.24.7, @babel/plugin-syntax-jsx@npm:^7.7.2": + version: 7.24.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/6cec76fbfe6ca81c9345c2904d8d9a8a0df222f9269f0962ed6eb2eb8f3f10c2f15e993d1ef09dbaf97726bf1792b5851cf5bd9a769f966a19448df6be95d19a + checksum: 10c0/f44d927a9ae8d5ef016ff5b450e1671e56629ddc12e56b938e41fd46e141170d9dfc9a53d6cb2b9a20a7dd266a938885e6a3981c60c052a2e1daed602ac80e51 languageName: node linkType: hard @@ -603,14 +610,14 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-syntax-typescript@npm:^7.24.1, @babel/plugin-syntax-typescript@npm:^7.7.2": - version: 7.24.1 - resolution: "@babel/plugin-syntax-typescript@npm:7.24.1" +"@babel/plugin-syntax-typescript@npm:^7.24.7, @babel/plugin-syntax-typescript@npm:^7.7.2": + version: 7.24.7 + resolution: "@babel/plugin-syntax-typescript@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/7a81e277dcfe3138847e8e5944e02a42ff3c2e864aea6f33fd9b70d1556d12b0e70f0d56cc1985d353c91bcbf8fe163e6cc17418da21129b7f7f1d8b9ac00c93 + checksum: 10c0/cdabd2e8010fb0ad15b49c2c270efc97c4bfe109ead36c7bbcf22da7a74bc3e49702fc4f22f12d2d6049e8e22a5769258df1fd05f0420ae45e11bdd5bc07805a languageName: node linkType: hard @@ -626,619 +633,619 @@ __metadata: languageName: node linkType: hard -"@babel/plugin-transform-arrow-functions@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.1" +"@babel/plugin-transform-arrow-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/f44bfacf087dc21b422bab99f4e9344ee7b695b05c947dacae66de05c723ab9d91800be7edc1fa016185e8c819f3aca2b4a5f66d8a4d1e47d9bad80b8fa55b8e + checksum: 10c0/6ac05a54e5582f34ac6d5dc26499e227227ec1c7fa6fc8de1f3d40c275f140d3907f79bbbd49304da2d7008a5ecafb219d0b71d78ee3290ca22020d878041245 languageName: node linkType: hard -"@babel/plugin-transform-async-generator-functions@npm:^7.24.3": - version: 7.24.3 - resolution: "@babel/plugin-transform-async-generator-functions@npm:7.24.3" +"@babel/plugin-transform-async-generator-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.24.7" dependencies: - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-remap-async-to-generator": "npm:^7.22.20" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-remap-async-to-generator": "npm:^7.24.7" "@babel/plugin-syntax-async-generators": "npm:^7.8.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/55ceed059f819dcccbfe69600bfa1c055ada466bd54eda117cfdd2cf773dd85799e2f6556e4a559b076e93b9704abcca2aef9d72aad7dc8a5d3d17886052f1d3 + checksum: 10c0/6b5e33ae66dce0afce9b06d8dace6fa052528e60f7622aa6cfd3e71bd372ca5079d426e78336ca564bc0d5f37acbcda1b21f4fe656fcb642f1a93a697ab39742 languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.1" +"@babel/plugin-transform-async-to-generator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.24.7" dependencies: - "@babel/helper-module-imports": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-remap-async-to-generator": "npm:^7.22.20" + "@babel/helper-module-imports": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-remap-async-to-generator": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/3731ba8e83cbea1ab22905031f25b3aeb0b97c6467360a2cc685352f16e7c786417d8883bc747f5a0beff32266bdb12a05b6292e7b8b75967087200a7bc012c4 + checksum: 10c0/83c82e243898875af8457972a26ab29baf8a2078768ee9f35141eb3edff0f84b165582a2ff73e90a9e08f5922bf813dbf15a85c1213654385198f4591c0dc45d languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.1" +"@babel/plugin-transform-block-scoped-functions@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/6fbaa85f5204f34845dfc0bebf62fdd3ac5a286241c85651e59d426001e7a1785ac501f154e093e0b8ee49e1f51e3f8b06575a5ae8d4a9406d43e4816bf18c37 + checksum: 10c0/113e86de4612ae91773ff5cb6b980f01e1da7e26ae6f6012127415d7ae144e74987bc23feb97f63ba4bc699331490ddea36eac004d76a20d5369e4cc6a7f61cd languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-block-scoping@npm:7.24.5" +"@babel/plugin-transform-block-scoping@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-block-scoping@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/85997fc8179b7d26e8af30865aeb91789f3bc1f0cd5643ed25f25891ff9c071460ec1220599b19070b424a3b902422f682e9b02e515872540173eae2e25f760c + checksum: 10c0/dcbc5e385c0ca5fb5736b1c720c90755cffe9f91d8c854f82e61e59217dd3f6c91b3633eeee4b55a89d3f59e5275d0f5b0b1b1363d4fa70c49c468b55aa87700 languageName: node linkType: hard -"@babel/plugin-transform-class-properties@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-class-properties@npm:7.24.1" +"@babel/plugin-transform-class-properties@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-class-properties@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/00dff042ac9df4ae67b5ef98b1137cc72e0a24e6d911dc200540a8cb1f00b4cff367a922aeb22da17da662079f0abcd46ee1c5f4cdf37ceebf6ff1639bb9af27 + checksum: 10c0/75018a466c7ede3d2397e158891c224ba7fca72864506ce067ddbc02fc65191d44da4d6379c996d0c7f09019e26b5c3f5f1d3a639cd98366519723886f0689d0 languageName: node linkType: hard -"@babel/plugin-transform-class-static-block@npm:^7.24.4": - version: 7.24.4 - resolution: "@babel/plugin-transform-class-static-block@npm:7.24.4" +"@babel/plugin-transform-class-static-block@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-class-static-block@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.4" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.12.0 - checksum: 10c0/19dfeaf4a2ac03695034f7211a8b5ad89103b224608ac3e91791055107c5fe4d7ebe5d9fbb31b4a91265694af78762260642eb270f4b239c175984ee4b253f80 + checksum: 10c0/b0ade39a3d09dce886f79dbd5907c3d99b48167eddb6b9bbde24a0598129654d7017e611c20494cdbea48b07ac14397cd97ea34e3754bbb2abae4e698128eccb languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-classes@npm:7.24.5" +"@babel/plugin-transform-classes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-classes@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-replace-supers": "npm:^7.24.1" - "@babel/helper-split-export-declaration": "npm:^7.24.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-compilation-targets": "npm:^7.24.7" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-function-name": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-replace-supers": "npm:^7.24.7" + "@babel/helper-split-export-declaration": "npm:^7.24.7" globals: "npm:^11.1.0" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/4affcbb7cb01fa4764c7a4b534c30fd24a4b68e680a2d6e242dd7ca8726490f0f1426c44797deff84a38a162e0629718900c68d28daffe2b12adf5b4194156a7 + checksum: 10c0/e51dba7ce8b770d1eee929e098d5a3be3efc3e8b941e22dda7d0097dc4e7be5feabd2da7b707ac06fcac5661b31223c541941dec08ce76c1faa55544d87d06ec languageName: node linkType: hard -"@babel/plugin-transform-computed-properties@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-computed-properties@npm:7.24.1" +"@babel/plugin-transform-computed-properties@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-computed-properties@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/template": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/template": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/8292c508b656b7722e2c2ca0f6f31339852e3ed2b9b80f6e068a4010e961b431ca109ecd467fc906283f4b1574c1e7b1cb68d35a4dea12079d386c15ff7e0eac + checksum: 10c0/25636dbc1f605c0b8bc60aa58628a916b689473d11551c9864a855142e36742fe62d4a70400ba3b74902338e77fb3d940376c0a0ba154b6b7ec5367175233b49 languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-destructuring@npm:7.24.5" +"@babel/plugin-transform-destructuring@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-destructuring@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/6a37953a95f04b335bf3e2118fb93f50dd9593c658d1b2f8918a380a2ee30f1b420139eccf7ec3873c86a8208527895fcf6b7e21c0e734a6ad6e5d5042eace4d + checksum: 10c0/929f07a807fb62230bfbf881cfcedf187ac5daf2f1b01da94a75c7a0f6f72400268cf4bcfee534479e43260af8193e42c31ee03c8b0278ba77d0036ed6709c27 languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.1" +"@babel/plugin-transform-dotall-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/758def705ec5a87ef910280dc2df5d2fda59dc5d4771c1725c7aed0988ae5b79e29aeb48109120301a3e1c6c03dfac84700469de06f38ca92c96834e09eadf5d + checksum: 10c0/793f14c9494972d294b7e7b97b747f47874b6d57d7804d3443c701becf5db192c9311be6a1835c07664486df1f5c60d33196c36fb7e11a53015e476b4c145b33 languageName: node linkType: hard -"@babel/plugin-transform-duplicate-keys@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.1" +"@babel/plugin-transform-duplicate-keys@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/41072f57f83a6c2b15f3ee0b6779cdca105ff3d98061efe92ac02d6c7b90fdb6e7e293b8a4d5b9c690d9ae5d3ae73e6bde4596dc4d8c66526a0e5e1abc73c88c + checksum: 10c0/75ff7ec1117ac500e77bf20a144411d39c0fdd038f108eec061724123ce6d1bb8d5bd27968e466573ee70014f8be0043361cdb0ef388f8a182d1d97ad67e51b9 languageName: node linkType: hard -"@babel/plugin-transform-dynamic-import@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.1" +"@babel/plugin-transform-dynamic-import@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/7e2834780e9b5251ef341854043a89c91473b83c335358620ca721554877e64e416aeb3288a35f03e825c4958e07d5d00ead08c4490fadc276a21fe151d812f1 + checksum: 10c0/eeda48372efd0a5103cb22dadb13563c975bce18ae85daafbb47d57bb9665d187da9d4fe8d07ac0a6e1288afcfcb73e4e5618bf75ff63fddf9736bfbf225203b languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.1" +"@babel/plugin-transform-exponentiation-operator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.24.7" dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/f0fc4c5a9add25fd6bf23dabe6752e9b7c0a2b2554933dddfd16601245a2ba332b647951079c782bf3b94c6330e3638b9b4e0227f469a7c1c707446ba0eba6c7 + checksum: 10c0/ace3e11c94041b88848552ba8feb39ae4d6cad3696d439ff51445bd2882d8b8775d85a26c2c0edb9b5e38c9e6013cc11b0dea89ec8f93c7d9d7ee95e3645078c languageName: node linkType: hard -"@babel/plugin-transform-export-namespace-from@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.1" +"@babel/plugin-transform-export-namespace-from@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/510bb23b2423d5fbffef69b356e4050929c21a7627e8194b1506dd935c7d9cbbd696c9ae9d7c3bcd7e6e7b69561b0b290c2d72d446327b40fc20ce40bbca6712 + checksum: 10c0/4e144d7f1c57bc63b4899dbbbdfed0880f2daa75ea9c7251c7997f106e4b390dc362175ab7830f11358cb21f6b972ca10a43a2e56cd789065f7606b082674c0c languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-for-of@npm:7.24.1" +"@babel/plugin-transform-for-of@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-for-of@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/e4bc92b1f334246e62d4bde079938df940794db564742034f6597f2e38bd426e11ae8c5670448e15dd6e45c462f2a9ab3fa87259bddf7c08553ffd9457fc2b2c + checksum: 10c0/77629b1173e55d07416f05ba7353caa09d2c2149da2ca26721ab812209b63689d1be45116b68eadc011c49ced59daf5320835b15245eb7ae93ae0c5e8277cfc0 languageName: node linkType: hard -"@babel/plugin-transform-function-name@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-function-name@npm:7.24.1" +"@babel/plugin-transform-function-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-function-name@npm:7.24.7" dependencies: - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-compilation-targets": "npm:^7.24.7" + "@babel/helper-function-name": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/65c1735ec3b5e43db9b5aebf3c16171c04b3050c92396b9e22dda0d2aaf51f43fdcf147f70a40678fd9a4ee2272a5acec4826e9c21bcf968762f4c184897ad75 + checksum: 10c0/3e9642428d6952851850d89ea9307d55946528d18973784d0e2f04a651b23bd9924dd8a2641c824b483bd4ab1223bab1d2f6a1106a939998f7ced512cb60ac5b languageName: node linkType: hard -"@babel/plugin-transform-json-strings@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-json-strings@npm:7.24.1" +"@babel/plugin-transform-json-strings@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-json-strings@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-json-strings": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/13d9b6a3c31ab4be853b3d49d8d1171f9bd8198562fd75da8f31e7de31398e1cfa6eb1d073bed93c9746e4f9c47a53b20f8f4c255ece3f88c90852ad3181dc2d + checksum: 10c0/17c72cd5bf3e90e722aabd333559275f3309e3fa0b9cea8c2944ab83ae01502c71a2be05da5101edc02b3fc8df15a8dbb9b861cbfcc8a52bf5e797cf01d3a40a languageName: node linkType: hard -"@babel/plugin-transform-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-literals@npm:7.24.1" +"@babel/plugin-transform-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/a27cc7d565ee57b5a2bf136fa889c5c2f5988545ae7b3b2c83a7afe5dd37dfac80dca88b1c633c65851ce6af7d2095c04c01228657ce0198f918e64b5ccd01fa + checksum: 10c0/9f3f6f3831929cd2a977748c07addf9944d5cccb50bd3a24a58beb54f91f00d6cacd3d7831d13ffe1ad6f8aba0aefd7bca5aec65d63b77f39c62ad1f2d484a3e languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.1" +"@babel/plugin-transform-logical-assignment-operators@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/98a2e0843ddfe51443c1bfcf08ba40ad8856fd4f8e397b392a5390a54f257c8c1b9a99d8ffc0fc7e8c55cce45e2cd9c2795a4450303f48f501bcbd662de44554 + checksum: 10c0/dbe882eb9053931f2ab332c50fc7c2a10ef507d6421bd9831adbb4cb7c9f8e1e5fbac4fbd2e007f6a1bf1df1843547559434012f118084dc0bf42cda3b106272 languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.1" +"@babel/plugin-transform-member-expression-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/2af731d02aa4c757ef80c46df42264128cbe45bfd15e1812d1a595265b690a44ad036041c406a73411733540e1c4256d8174705ae6b8cfaf757fc175613993fd + checksum: 10c0/e789ae359bdf2d20e90bedef18dfdbd965c9ebae1cee398474a0c349590fda7c8b874e1a2ceee62e47e5e6ec1730e76b0f24e502164357571854271fc12cc684 languageName: node linkType: hard -"@babel/plugin-transform-modules-amd@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-amd@npm:7.24.1" +"@babel/plugin-transform-modules-amd@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-amd@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/71fd04e5e7026e6e52701214b1e9f7508ba371b757e5075fbb938a79235ed66a54ce65f89bb92b59159e9f03f01b392e6c4de6d255b948bec975a90cfd6809ef + checksum: 10c0/6df7de7fce34117ca4b2fa07949b12274c03668cbfe21481c4037b6300796d50ae40f4f170527b61b70a67f26db906747797e30dbd0d9809a441b6e220b5728f languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.1" +"@babel/plugin-transform-modules-commonjs@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-simple-access": "npm:^7.22.5" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-simple-access": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/efb3ea2047604a7eb44a9289311ebb29842fe6510ff8b66a77a60440448c65e1312a60dc48191ed98246bdbd163b5b6f3348a0669bcc0e3809e69c7c776b20fa + checksum: 10c0/9442292b3daf6a5076cdc3c4c32bf423bda824ccaeb0dd0dc8b3effaa1fecfcb0130ae6e647fef12a5d5ff25bcc99a0d6bfc6d24a7525345e1bcf46fcdf81752 languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.24.1" +"@babel/plugin-transform-modules-systemjs@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.24.7" dependencies: - "@babel/helper-hoist-variables": "npm:^7.22.5" - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-validator-identifier": "npm:^7.22.20" + "@babel/helper-hoist-variables": "npm:^7.24.7" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-validator-identifier": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/38145f8abe8a4ce2b41adabe5d65eb7bd54a139dc58e2885fec975eb5cf247bd938c1dd9f09145c46dbe57d25dd0ef7f00a020e5eb0cbe8195b2065d51e2d93d + checksum: 10c0/e2a795e0a6baafe26f4a74010622212ddd873170742d673f450e0097f8d984f6e6a95eb8ce41b05071ee9790c4be088b33801aaab3f78ee202c567634e52a331 languageName: node linkType: hard -"@babel/plugin-transform-modules-umd@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-modules-umd@npm:7.24.1" +"@babel/plugin-transform-modules-umd@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-modules-umd@npm:7.24.7" dependencies: - "@babel/helper-module-transforms": "npm:^7.23.3" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-module-transforms": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/14c90c58562b54e17fe4a8ded3f627f9a993648f8378ef00cb2f6c34532032b83290d2ad54c7fff4f0c2cd49091bda780f8cc28926ec4b77a6c2141105a2e699 + checksum: 10c0/7791d290121db210e4338b94b4a069a1a79e4c7a8d7638d8159a97b281851bbed3048dac87a4ae718ad963005e6c14a5d28e6db2eeb2b04e031cee92fb312f85 languageName: node linkType: hard -"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.5" - "@babel/helper-plugin-utils": "npm:^7.22.5" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/b0b072bef303670b5a98307bc37d1ac326cb7ad40ea162b89a03c2ffc465451be7ef05be95cb81ed28bfeb29670dc98fe911f793a67bceab18b4cb4c81ef48f3 + checksum: 10c0/41a0b0f2d0886318237440aa3b489f6d0305361d8671121777d9ff89f9f6de9d0c02ce93625049061426c8994064ef64deae8b819d1b14c00374a6a2336fb5d9 languageName: node linkType: hard -"@babel/plugin-transform-new-target@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-new-target@npm:7.24.1" +"@babel/plugin-transform-new-target@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-new-target@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/c4cabe628163855f175a8799eb73d692b6f1dc347aae5022af0c253f80c92edb962e48ddccc98b691eff3d5d8e53c9a8f10894c33ba4cebc2e2f8f8fe554fb7a + checksum: 10c0/2540808a35e1a978e537334c43dab439cf24c93e7beb213a2e71902f6710e60e0184316643790c0a6644e7a8021e52f7ab8165e6b3e2d6651be07bdf517b67df languageName: node linkType: hard -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.1" +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/c8532951506fb031287280cebeef10aa714f8a7cea2b62a13c805f0e0af945ba77a7c87e4bbbe4c37fe973e0e5d5e649cfac7f0374f57efc54cdf9656362a392 + checksum: 10c0/7243c8ff734ed5ef759dd8768773c4b443c12e792727e759a1aec2c7fa2bfdd24f1ecb42e292a7b3d8bd3d7f7b861cf256a8eb4ba144fc9cc463892c303083d9 languageName: node linkType: hard -"@babel/plugin-transform-numeric-separator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.1" +"@babel/plugin-transform-numeric-separator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/15e2b83292e586fb4f5b4b4021d4821a806ca6de2b77d5ad6c4e07aa7afa23704e31b4d683dac041afc69ac51b2461b96e8c98e46311cc1faba54c73f235044f + checksum: 10c0/e18e09ca5a6342645d00ede477731aa6e8714ff357efc9d7cda5934f1703b3b6fb7d3298dce3ce3ba53e9ff1158eab8f1aadc68874cc21a6099d33a1ca457789 languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.5" +"@babel/plugin-transform-object-rest-spread@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.24.7" dependencies: - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-compilation-targets": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" - "@babel/plugin-transform-parameters": "npm:^7.24.5" + "@babel/plugin-transform-parameters": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/91d7303af9b5744b8f569c1b8e45c9c9322ded05e7ee94e71b9ff2327f0d2c7b5aa87e040697a6baacc2dcb5c5e5e00913087c36f24c006bdaa4f958fd5bfd2d + checksum: 10c0/9ad64bc003f583030f9da50614b485852f8edac93f8faf5d1cd855201a4852f37c5255ae4daf70dd4375bdd4874e16e39b91f680d4668ec219ba05441ce286eb languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-object-super@npm:7.24.1" +"@babel/plugin-transform-object-super@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-object-super@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-replace-supers": "npm:^7.24.1" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-replace-supers": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/d30e6b9e59a707efd7ed524fc0a8deeea046011a6990250f2e9280516683138e2d13d9c52daf41d78407bdab0378aef7478326f2a15305b773d851cb6e106157 + checksum: 10c0/770cebb4b4e1872c216b17069db9a13b87dfee747d359dc56d9fcdd66e7544f92dc6ab1861a4e7e0528196aaff2444e4f17dc84efd8eaf162d542b4ba0943869 languageName: node linkType: hard -"@babel/plugin-transform-optional-catch-binding@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.24.1" +"@babel/plugin-transform-optional-catch-binding@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/68408b9ef772d9aa5dccf166c86dc4d2505990ce93e03dcfc65c73fb95c2511248e009ba9ccf5b96405fb85de1c16ad8291016b1cc5689ee4becb1e3050e0ae7 + checksum: 10c0/1e2f10a018f7d03b3bde6c0b70d063df8d5dd5209861d4467726cf834f5e3d354e2276079dc226aa8e6ece35f5c9b264d64b8229a8bb232829c01e561bcfb07a languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.24.1, @babel/plugin-transform-optional-chaining@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.5" +"@babel/plugin-transform-optional-chaining@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/f4e9446ec69f58f40b7843ce7603cfc50332976e6e794d4ddbe6b24670cd50ebc7766c4e3cbaecf0fbb744e98cbfbb54146f4e966314b1d58511b8bbf3d2722b + checksum: 10c0/b9e3649b299e103b0d1767bbdba56574d065ff776e5350403b7bfd4e3982743c0cdb373d33bdbf94fa3c322d155e45d0aad946acf0aa741b870aed22dfec8b8e languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-parameters@npm:7.24.5" +"@babel/plugin-transform-parameters@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-parameters@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/e08b8c46a24b1b21dde7783cb0aeb56ffe9ef6d6f1795649ce76273657158d3bfa5370c6594200ed7d371983b599c8e194b76108dffed9ab5746fe630ef2e8f5 + checksum: 10c0/53bf190d6926771545d5184f1f5f3f5144d0f04f170799ad46a43f683a01fab8d5fe4d2196cf246774530990c31fe1f2b9f0def39f0a5ddbb2340b924f5edf01 languageName: node linkType: hard -"@babel/plugin-transform-private-methods@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-private-methods@npm:7.24.1" +"@babel/plugin-transform-private-methods@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-private-methods@npm:7.24.7" dependencies: - "@babel/helper-create-class-features-plugin": "npm:^7.24.1" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/d8e18587d2a8b71a795da5e8841b0e64f1525a99ad73ea8b9caa331bc271d69646e2e1e749fd634321f3df9d126070208ddac22a27ccf070566b2efb74fecd99 + checksum: 10c0/5b7bf923b738fbe3ad6c33b260e0a7451be288edfe4ef516303fa787a1870cd87533bfbf61abb779c22ed003c2fc484dec2436fe75a48756f686c0241173d364 languageName: node linkType: hard -"@babel/plugin-transform-private-property-in-object@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-private-property-in-object@npm:7.24.5" +"@babel/plugin-transform-private-property-in-object@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-create-class-features-plugin": "npm:^7.24.5" - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/de7182bfde298e56c08a5d7ee1156f83c9af8c856bbe2248438848846a4ce544e050666bd0482e16a6006195e8be4923abd14650bef51fa0edd7f82014c2efcd + checksum: 10c0/c6fa7defb90b1b0ed46f24ff94ff2e77f44c1f478d1090e81712f33cf992dda5ba347016f030082a2f770138bac6f4a9c2c1565e9f767a125901c77dd9c239ba languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-property-literals@npm:7.24.1" +"@babel/plugin-transform-property-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-property-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/3bf3e01f7bb8215a8b6d0081b6f86fea23e3a4543b619e059a264ede028bc58cdfb0acb2c43271271915a74917effa547bc280ac636a9901fa9f2fb45623f87e + checksum: 10c0/52564b58f3d111dc02d241d5892a4b01512e98dfdf6ef11b0ed62f8b11b0acacccef0fc229b44114fe8d1a57a8b70780b11bdd18b807d3754a781a07d8f57433 languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-regenerator@npm:7.24.1" +"@babel/plugin-transform-regenerator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-regenerator@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" regenerator-transform: "npm:^0.15.2" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/0a333585d7c0b38d31cc549d0f3cf7c396d1d50b6588a307dc58325505ddd4f5446188bc536c4779431b396251801b3f32d6d8e87db8274bc84e8c41950737f7 + checksum: 10c0/d2dc2c788fdae9d97217e70d46ba8ca9db0035c398dc3e161552b0c437113719a75c04f201f9c91ddc8d28a1da60d0b0853f616dead98a396abb9c845c44892b languageName: node linkType: hard -"@babel/plugin-transform-reserved-words@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-reserved-words@npm:7.24.1" +"@babel/plugin-transform-reserved-words@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-reserved-words@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/936d6e73cafb2cbb495f6817c6f8463288dbc9ab3c44684b931ebc1ece24f0d55dfabc1a75ba1de5b48843d0fef448dcfdbecb8485e4014f8f41d0d1440c536f + checksum: 10c0/2229de2768615e7f5dc0bbc55bc121b5678fd6d2febd46c74a58e42bb894d74cd5955c805880f4e02d0e1cf94f6886270eda7fafc1be9305a1ec3b9fd1d063f5 languageName: node linkType: hard -"@babel/plugin-transform-shorthand-properties@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.1" +"@babel/plugin-transform-shorthand-properties@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/8273347621183aada3cf1f3019d8d5f29467ba13a75b72cb405bc7f23b7e05fd85f4edb1e4d9f0103153dddb61826a42dc24d466480d707f8932c1923a4c25fa + checksum: 10c0/41b155bdbb3be66618358488bf7731b3b2e8fff2de3dbfd541847720a9debfcec14db06a117abedd03c9cd786db20a79e2a86509a4f19513f6e1b610520905cf languageName: node linkType: hard -"@babel/plugin-transform-spread@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-spread@npm:7.24.1" +"@babel/plugin-transform-spread@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-spread@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.22.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/50a0302e344546d57e5c9f4dea575f88e084352eeac4e9a3e238c41739eef2df1daf4a7ebbb3ccb7acd3447f6a5ce9938405f98bf5f5583deceb8257f5a673c9 + checksum: 10c0/facba1553035f76b0d2930d4ada89a8cd0f45b79579afd35baefbfaf12e3b86096995f4b0c402cf9ee23b3f2ea0a4460c3b1ec0c192d340962c948bb223d4e66 languageName: node linkType: hard -"@babel/plugin-transform-sticky-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.1" +"@babel/plugin-transform-sticky-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/786fe2ae11ef9046b9fa95677935abe495031eebf1274ad03f2054a20adea7b9dbd00336ac0b143f7924bc562e5e09793f6e8613607674b97e067d4838ccc4a0 + checksum: 10c0/5a74ed2ed0a3ab51c3d15fcaf09d9e2fe915823535c7a4d7b019813177d559b69677090e189ec3d5d08b619483eb5ad371fbcfbbff5ace2a76ba33ee566a1109 languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-template-literals@npm:7.24.1" +"@babel/plugin-transform-template-literals@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-template-literals@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/f73bcda5488eb81c6e7a876498d9e6b72be32fca5a4d9db9053491a2d1300cd27b889b463fd2558f3cd5826a85ed00f61d81b234aa55cb5a0abf1b6fa1bd5026 + checksum: 10c0/3630f966257bcace122f04d3157416a09d40768c44c3a800855da81146b009187daa21859d1c3b7d13f4e19e8888e60613964b175b2275d451200fb6d8d6cfe6 languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.5" +"@babel/plugin-transform-typeof-symbol@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.5" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/5f0b5e33a86b84d89673829ffa2b5f175e102d3d0f45917cda121bc2b3650e1e5bb7a653f8cc1059c5b3a7b2e91e1aafd6623028b96ae752715cc5c2171c96e5 + checksum: 10c0/5649e7260a138681e68b296ab5931e2b1f132f287d6b4131d49b24f9dc20d62902b7e9d63c4d2decd5683b41df35ef4b9b03f58c7f9f65e4c25a6d8bbf04e9e9 languageName: node linkType: hard -"@babel/plugin-transform-typescript@npm:^7.24.1": - version: 7.24.5 - resolution: "@babel/plugin-transform-typescript@npm:7.24.5" +"@babel/plugin-transform-typescript@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-typescript@npm:7.24.7" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.22.5" - "@babel/helper-create-class-features-plugin": "npm:^7.24.5" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/plugin-syntax-typescript": "npm:^7.24.1" + "@babel/helper-annotate-as-pure": "npm:^7.24.7" + "@babel/helper-create-class-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/plugin-syntax-typescript": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/9c1b1234215c08b1d2a7b27a8e598dfd07fbb07fd7308ef9c184f42b41bf5a119073feef5cdedca3d649e9625a340984baf5d538bc01fafedcec561de316572b + checksum: 10c0/e8dacdc153a4c4599014b66eb01b94e3dc933d58d4f0cc3039c1a8f432e77b9df14f34a61964e014b975bf466f3fefd8c4768b3e887d3da1be9dc942799bdfdf languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.24.1" +"@babel/plugin-transform-unicode-escapes@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.24.7" dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/67a72a1ed99639de6a93aead35b1993cb3f0eb178a8991fcef48732c38c9f0279c85bbe1e2e2477b85afea873e738ff0955a35057635ce67bc149038e2d8a28e + checksum: 10c0/8b18e2e66af33471a6971289492beff5c240e56727331db1d34c4338a6a368a82a7ed6d57ec911001b6d65643aed76531e1e7cac93265fb3fb2717f54d845e69 languageName: node linkType: hard -"@babel/plugin-transform-unicode-property-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.24.1" +"@babel/plugin-transform-unicode-property-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/d9d9752df7d51bf9357c0bf3762fe16b8c841fca9ecf4409a16f15ccc34be06e8e71abfaee1251b7d451227e70e6b873b36f86b090efdb20f6f7de5fdb6c7a05 + checksum: 10c0/bc57656eb94584d1b74a385d378818ac2b3fca642e3f649fead8da5fb3f9de22f8461185936915dfb33d5a9104e62e7a47828331248b09d28bb2d59e9276de3e languageName: node linkType: hard -"@babel/plugin-transform-unicode-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.1" +"@babel/plugin-transform-unicode-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/6046ab38e5d14ed97dbb921bd79ac1d7ad9d3286da44a48930e980b16896db2df21e093563ec3c916a630dc346639bf47c5924a33902a06fe3bbb5cdc7ef5f2f + checksum: 10c0/83f72a345b751566b601dc4d07e9f2c8f1bc0e0c6f7abb56ceb3095b3c9d304de73f85f2f477a09f8cc7edd5e65afd0ff9e376cdbcbea33bc0c28f3705b38fd9 languageName: node linkType: hard -"@babel/plugin-transform-unicode-sets-regex@npm:^7.24.1": - version: 7.24.1 - resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.24.1" +"@babel/plugin-transform-unicode-sets-regex@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.24.7" dependencies: - "@babel/helper-create-regexp-features-plugin": "npm:^7.22.15" - "@babel/helper-plugin-utils": "npm:^7.24.0" + "@babel/helper-create-regexp-features-plugin": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/b6c1f6b90afeeddf97e5713f72575787fcb7179be7b4c961869bfbc66915f66540dc49da93e4369da15596bd44b896d1eb8a50f5e1fd907abd7a1a625901006b + checksum: 10c0/7457c0ee8e80a80cb6fdc1fe54ab115b52815627616ce9151be8ef292fc99d04a910ec24f11382b4f124b89374264396892b086886bd2a9c2317904d87c9b21b languageName: node linkType: hard "@babel/preset-env@npm:^7.24.0": - version: 7.24.5 - resolution: "@babel/preset-env@npm:7.24.5" - dependencies: - "@babel/compat-data": "npm:^7.24.4" - "@babel/helper-compilation-targets": "npm:^7.23.6" - "@babel/helper-plugin-utils": "npm:^7.24.5" - "@babel/helper-validator-option": "npm:^7.23.5" - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.24.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.24.1" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.24.1" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.24.1" + version: 7.24.7 + resolution: "@babel/preset-env@npm:7.24.7" + dependencies: + "@babel/compat-data": "npm:^7.24.7" + "@babel/helper-compilation-targets": "npm:^7.24.7" + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-validator-option": "npm:^7.24.7" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.24.7" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.24.7" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.24.7" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.24.7" "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators": "npm:^7.8.4" "@babel/plugin-syntax-class-properties": "npm:^7.12.13" "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" "@babel/plugin-syntax-dynamic-import": "npm:^7.8.3" "@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3" - "@babel/plugin-syntax-import-assertions": "npm:^7.24.1" - "@babel/plugin-syntax-import-attributes": "npm:^7.24.1" + "@babel/plugin-syntax-import-assertions": "npm:^7.24.7" + "@babel/plugin-syntax-import-attributes": "npm:^7.24.7" "@babel/plugin-syntax-import-meta": "npm:^7.10.4" "@babel/plugin-syntax-json-strings": "npm:^7.8.3" "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" @@ -1250,54 +1257,54 @@ __metadata: "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" - "@babel/plugin-transform-arrow-functions": "npm:^7.24.1" - "@babel/plugin-transform-async-generator-functions": "npm:^7.24.3" - "@babel/plugin-transform-async-to-generator": "npm:^7.24.1" - "@babel/plugin-transform-block-scoped-functions": "npm:^7.24.1" - "@babel/plugin-transform-block-scoping": "npm:^7.24.5" - "@babel/plugin-transform-class-properties": "npm:^7.24.1" - "@babel/plugin-transform-class-static-block": "npm:^7.24.4" - "@babel/plugin-transform-classes": "npm:^7.24.5" - "@babel/plugin-transform-computed-properties": "npm:^7.24.1" - "@babel/plugin-transform-destructuring": "npm:^7.24.5" - "@babel/plugin-transform-dotall-regex": "npm:^7.24.1" - "@babel/plugin-transform-duplicate-keys": "npm:^7.24.1" - "@babel/plugin-transform-dynamic-import": "npm:^7.24.1" - "@babel/plugin-transform-exponentiation-operator": "npm:^7.24.1" - "@babel/plugin-transform-export-namespace-from": "npm:^7.24.1" - "@babel/plugin-transform-for-of": "npm:^7.24.1" - "@babel/plugin-transform-function-name": "npm:^7.24.1" - "@babel/plugin-transform-json-strings": "npm:^7.24.1" - "@babel/plugin-transform-literals": "npm:^7.24.1" - "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.1" - "@babel/plugin-transform-member-expression-literals": "npm:^7.24.1" - "@babel/plugin-transform-modules-amd": "npm:^7.24.1" - "@babel/plugin-transform-modules-commonjs": "npm:^7.24.1" - "@babel/plugin-transform-modules-systemjs": "npm:^7.24.1" - "@babel/plugin-transform-modules-umd": "npm:^7.24.1" - "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.22.5" - "@babel/plugin-transform-new-target": "npm:^7.24.1" - "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.1" - "@babel/plugin-transform-numeric-separator": "npm:^7.24.1" - "@babel/plugin-transform-object-rest-spread": "npm:^7.24.5" - "@babel/plugin-transform-object-super": "npm:^7.24.1" - "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.1" - "@babel/plugin-transform-optional-chaining": "npm:^7.24.5" - "@babel/plugin-transform-parameters": "npm:^7.24.5" - "@babel/plugin-transform-private-methods": "npm:^7.24.1" - "@babel/plugin-transform-private-property-in-object": "npm:^7.24.5" - "@babel/plugin-transform-property-literals": "npm:^7.24.1" - "@babel/plugin-transform-regenerator": "npm:^7.24.1" - "@babel/plugin-transform-reserved-words": "npm:^7.24.1" - "@babel/plugin-transform-shorthand-properties": "npm:^7.24.1" - "@babel/plugin-transform-spread": "npm:^7.24.1" - "@babel/plugin-transform-sticky-regex": "npm:^7.24.1" - "@babel/plugin-transform-template-literals": "npm:^7.24.1" - "@babel/plugin-transform-typeof-symbol": "npm:^7.24.5" - "@babel/plugin-transform-unicode-escapes": "npm:^7.24.1" - "@babel/plugin-transform-unicode-property-regex": "npm:^7.24.1" - "@babel/plugin-transform-unicode-regex": "npm:^7.24.1" - "@babel/plugin-transform-unicode-sets-regex": "npm:^7.24.1" + "@babel/plugin-transform-arrow-functions": "npm:^7.24.7" + "@babel/plugin-transform-async-generator-functions": "npm:^7.24.7" + "@babel/plugin-transform-async-to-generator": "npm:^7.24.7" + "@babel/plugin-transform-block-scoped-functions": "npm:^7.24.7" + "@babel/plugin-transform-block-scoping": "npm:^7.24.7" + "@babel/plugin-transform-class-properties": "npm:^7.24.7" + "@babel/plugin-transform-class-static-block": "npm:^7.24.7" + "@babel/plugin-transform-classes": "npm:^7.24.7" + "@babel/plugin-transform-computed-properties": "npm:^7.24.7" + "@babel/plugin-transform-destructuring": "npm:^7.24.7" + "@babel/plugin-transform-dotall-regex": "npm:^7.24.7" + "@babel/plugin-transform-duplicate-keys": "npm:^7.24.7" + "@babel/plugin-transform-dynamic-import": "npm:^7.24.7" + "@babel/plugin-transform-exponentiation-operator": "npm:^7.24.7" + "@babel/plugin-transform-export-namespace-from": "npm:^7.24.7" + "@babel/plugin-transform-for-of": "npm:^7.24.7" + "@babel/plugin-transform-function-name": "npm:^7.24.7" + "@babel/plugin-transform-json-strings": "npm:^7.24.7" + "@babel/plugin-transform-literals": "npm:^7.24.7" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.24.7" + "@babel/plugin-transform-member-expression-literals": "npm:^7.24.7" + "@babel/plugin-transform-modules-amd": "npm:^7.24.7" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.7" + "@babel/plugin-transform-modules-systemjs": "npm:^7.24.7" + "@babel/plugin-transform-modules-umd": "npm:^7.24.7" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.24.7" + "@babel/plugin-transform-new-target": "npm:^7.24.7" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.24.7" + "@babel/plugin-transform-numeric-separator": "npm:^7.24.7" + "@babel/plugin-transform-object-rest-spread": "npm:^7.24.7" + "@babel/plugin-transform-object-super": "npm:^7.24.7" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.24.7" + "@babel/plugin-transform-optional-chaining": "npm:^7.24.7" + "@babel/plugin-transform-parameters": "npm:^7.24.7" + "@babel/plugin-transform-private-methods": "npm:^7.24.7" + "@babel/plugin-transform-private-property-in-object": "npm:^7.24.7" + "@babel/plugin-transform-property-literals": "npm:^7.24.7" + "@babel/plugin-transform-regenerator": "npm:^7.24.7" + "@babel/plugin-transform-reserved-words": "npm:^7.24.7" + "@babel/plugin-transform-shorthand-properties": "npm:^7.24.7" + "@babel/plugin-transform-spread": "npm:^7.24.7" + "@babel/plugin-transform-sticky-regex": "npm:^7.24.7" + "@babel/plugin-transform-template-literals": "npm:^7.24.7" + "@babel/plugin-transform-typeof-symbol": "npm:^7.24.7" + "@babel/plugin-transform-unicode-escapes": "npm:^7.24.7" + "@babel/plugin-transform-unicode-property-regex": "npm:^7.24.7" + "@babel/plugin-transform-unicode-regex": "npm:^7.24.7" + "@babel/plugin-transform-unicode-sets-regex": "npm:^7.24.7" "@babel/preset-modules": "npm:0.1.6-no-external-plugins" babel-plugin-polyfill-corejs2: "npm:^0.4.10" babel-plugin-polyfill-corejs3: "npm:^0.10.4" @@ -1306,7 +1313,7 @@ __metadata: semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/2cc0edae09205d6409a75d02e53aaa1c590e89adbb7b389019c7b75e4c47b6b63eeb1a816df5c42b672ce410747e7ddc23b6747e8e41a6c95d6fa00c665509e2 + checksum: 10c0/c6714346f3ccc1271eaa90051c75b8bb57b20ef57408ab68740e2f3552693ae0ee5a4bcce3a00211d40e4947af1f7b8ab422066b953f0095461937fb72d11274 languageName: node linkType: hard @@ -1324,17 +1331,17 @@ __metadata: linkType: hard "@babel/preset-typescript@npm:^7.23.3": - version: 7.24.1 - resolution: "@babel/preset-typescript@npm:7.24.1" - dependencies: - "@babel/helper-plugin-utils": "npm:^7.24.0" - "@babel/helper-validator-option": "npm:^7.23.5" - "@babel/plugin-syntax-jsx": "npm:^7.24.1" - "@babel/plugin-transform-modules-commonjs": "npm:^7.24.1" - "@babel/plugin-transform-typescript": "npm:^7.24.1" + version: 7.24.7 + resolution: "@babel/preset-typescript@npm:7.24.7" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.24.7" + "@babel/helper-validator-option": "npm:^7.24.7" + "@babel/plugin-syntax-jsx": "npm:^7.24.7" + "@babel/plugin-transform-modules-commonjs": "npm:^7.24.7" + "@babel/plugin-transform-typescript": "npm:^7.24.7" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/0033dc6fbc898ed0d8017c83a2dd5e095c82909e2f83e48cf9f305e3e9287148758c179ad90f27912cf98ca68bfec3643c57c70c0ca34d3a6c50dc8243aef406 + checksum: 10c0/986bc0978eedb4da33aba8e1e13a3426dd1829515313b7e8f4ba5d8c18aff1663b468939d471814e7acf4045d326ae6cff37239878d169ac3fe53a8fde71f8ee languageName: node linkType: hard @@ -1346,51 +1353,51 @@ __metadata: linkType: hard "@babel/runtime@npm:^7.8.4": - version: 7.24.5 - resolution: "@babel/runtime@npm:7.24.5" + version: 7.24.7 + resolution: "@babel/runtime@npm:7.24.7" dependencies: regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/05730e43e8ba6550eae9fd4fb5e7d9d3cb91140379425abcb2a1ff9cebad518a280d82c4c4b0f57ada26a863106ac54a748d90c775790c0e2cd0ddd85ccdf346 + checksum: 10c0/b6fa3ec61a53402f3c1d75f4d808f48b35e0dfae0ec8e2bb5c6fc79fb95935da75766e0ca534d0f1c84871f6ae0d2ebdd950727cfadb745a2cdbef13faef5513 languageName: node linkType: hard -"@babel/template@npm:^7.22.15, @babel/template@npm:^7.24.0, @babel/template@npm:^7.3.3": - version: 7.24.0 - resolution: "@babel/template@npm:7.24.0" +"@babel/template@npm:^7.24.7, @babel/template@npm:^7.3.3": + version: 7.24.7 + resolution: "@babel/template@npm:7.24.7" dependencies: - "@babel/code-frame": "npm:^7.23.5" - "@babel/parser": "npm:^7.24.0" - "@babel/types": "npm:^7.24.0" - checksum: 10c0/9d3dd8d22fe1c36bc3bdef6118af1f4b030aaf6d7d2619f5da203efa818a2185d717523486c111de8d99a8649ddf4bbf6b2a7a64962d8411cf6a8fa89f010e54 + "@babel/code-frame": "npm:^7.24.7" + "@babel/parser": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" + checksum: 10c0/95b0b3ee80fcef685b7f4426f5713a855ea2cd5ac4da829b213f8fb5afe48a2a14683c2ea04d446dbc7f711c33c5cd4a965ef34dcbe5bc387c9e966b67877ae3 languageName: node linkType: hard -"@babel/traverse@npm:^7.24.5": - version: 7.24.5 - resolution: "@babel/traverse@npm:7.24.5" +"@babel/traverse@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/traverse@npm:7.24.7" dependencies: - "@babel/code-frame": "npm:^7.24.2" - "@babel/generator": "npm:^7.24.5" - "@babel/helper-environment-visitor": "npm:^7.22.20" - "@babel/helper-function-name": "npm:^7.23.0" - "@babel/helper-hoist-variables": "npm:^7.22.5" - "@babel/helper-split-export-declaration": "npm:^7.24.5" - "@babel/parser": "npm:^7.24.5" - "@babel/types": "npm:^7.24.5" + "@babel/code-frame": "npm:^7.24.7" + "@babel/generator": "npm:^7.24.7" + "@babel/helper-environment-visitor": "npm:^7.24.7" + "@babel/helper-function-name": "npm:^7.24.7" + "@babel/helper-hoist-variables": "npm:^7.24.7" + "@babel/helper-split-export-declaration": "npm:^7.24.7" + "@babel/parser": "npm:^7.24.7" + "@babel/types": "npm:^7.24.7" debug: "npm:^4.3.1" globals: "npm:^11.1.0" - checksum: 10c0/3f22534bc2b2ed9208e55ef48af3b32939032b23cb9dc4037447cb108640df70bbb0b9fea86e9c58648949fdc2cb14e89aa79ffa3c62a5dd43459a52fe8c01d1 + checksum: 10c0/a5135e589c3f1972b8877805f50a084a04865ccb1d68e5e1f3b94a8841b3485da4142e33413d8fd76bc0e6444531d3adf1f59f359c11ffac452b743d835068ab languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.0, @babel/types@npm:^7.24.5, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": - version: 7.24.5 - resolution: "@babel/types@npm:7.24.5" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.8.3": + version: 7.24.7 + resolution: "@babel/types@npm:7.24.7" dependencies: - "@babel/helper-string-parser": "npm:^7.24.1" - "@babel/helper-validator-identifier": "npm:^7.24.5" + "@babel/helper-string-parser": "npm:^7.24.7" + "@babel/helper-validator-identifier": "npm:^7.24.7" to-fast-properties: "npm:^2.0.0" - checksum: 10c0/e1284eb046c5e0451b80220d1200e2327e0a8544a2fe45bb62c952e5fdef7099c603d2336b17b6eac3cc046b7a69bfbce67fe56e1c0ea48cd37c65cb88638f2a + checksum: 10c0/d9ecbfc3eb2b05fb1e6eeea546836ac30d990f395ef3fe3f75ced777a222c3cfc4489492f72e0ce3d9a5a28860a1ce5f81e66b88cf5088909068b3ff4fab72c1 languageName: node linkType: hard @@ -1595,101 +1602,102 @@ __metadata: languageName: node linkType: hard -"@cspell/cspell-bundled-dicts@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-bundled-dicts@npm:8.8.1" +"@cspell/cspell-bundled-dicts@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-bundled-dicts@npm:8.9.0" dependencies: "@cspell/dict-ada": "npm:^4.0.2" - "@cspell/dict-aws": "npm:^4.0.1" + "@cspell/dict-aws": "npm:^4.0.2" "@cspell/dict-bash": "npm:^4.1.3" - "@cspell/dict-companies": "npm:^3.0.31" - "@cspell/dict-cpp": "npm:^5.1.3" + "@cspell/dict-companies": "npm:^3.1.2" + "@cspell/dict-cpp": "npm:^5.1.10" "@cspell/dict-cryptocurrencies": "npm:^5.0.0" "@cspell/dict-csharp": "npm:^4.0.2" "@cspell/dict-css": "npm:^4.0.12" "@cspell/dict-dart": "npm:^2.0.3" "@cspell/dict-django": "npm:^4.1.0" "@cspell/dict-docker": "npm:^1.1.7" - "@cspell/dict-dotnet": "npm:^5.0.0" + "@cspell/dict-dotnet": "npm:^5.0.2" "@cspell/dict-elixir": "npm:^4.0.3" - "@cspell/dict-en-common-misspellings": "npm:^2.0.0" + "@cspell/dict-en-common-misspellings": "npm:^2.0.2" "@cspell/dict-en-gb": "npm:1.1.33" - "@cspell/dict-en_us": "npm:^4.3.19" - "@cspell/dict-filetypes": "npm:^3.0.3" + "@cspell/dict-en_us": "npm:^4.3.22" + "@cspell/dict-filetypes": "npm:^3.0.4" "@cspell/dict-fonts": "npm:^4.0.0" "@cspell/dict-fsharp": "npm:^1.0.1" - "@cspell/dict-fullstack": "npm:^3.1.5" + "@cspell/dict-fullstack": "npm:^3.1.8" "@cspell/dict-gaming-terms": "npm:^1.0.5" "@cspell/dict-git": "npm:^3.0.0" - "@cspell/dict-golang": "npm:^6.0.5" + "@cspell/dict-golang": "npm:^6.0.9" + "@cspell/dict-google": "npm:^1.0.1" "@cspell/dict-haskell": "npm:^4.0.1" "@cspell/dict-html": "npm:^4.0.5" "@cspell/dict-html-symbol-entities": "npm:^4.0.0" - "@cspell/dict-java": "npm:^5.0.6" + "@cspell/dict-java": "npm:^5.0.7" "@cspell/dict-julia": "npm:^1.0.1" - "@cspell/dict-k8s": "npm:^1.0.2" + "@cspell/dict-k8s": "npm:^1.0.5" "@cspell/dict-latex": "npm:^4.0.0" "@cspell/dict-lorem-ipsum": "npm:^4.0.0" "@cspell/dict-lua": "npm:^4.0.3" "@cspell/dict-makefile": "npm:^1.0.0" "@cspell/dict-monkeyc": "npm:^1.0.6" "@cspell/dict-node": "npm:^5.0.1" - "@cspell/dict-npm": "npm:^5.0.15" - "@cspell/dict-php": "npm:^4.0.6" - "@cspell/dict-powershell": "npm:^5.0.3" - "@cspell/dict-public-licenses": "npm:^2.0.6" - "@cspell/dict-python": "npm:^4.1.11" + "@cspell/dict-npm": "npm:^5.0.16" + "@cspell/dict-php": "npm:^4.0.8" + "@cspell/dict-powershell": "npm:^5.0.4" + "@cspell/dict-public-licenses": "npm:^2.0.7" + "@cspell/dict-python": "npm:^4.2.1" "@cspell/dict-r": "npm:^2.0.1" "@cspell/dict-ruby": "npm:^5.0.2" - "@cspell/dict-rust": "npm:^4.0.3" - "@cspell/dict-scala": "npm:^5.0.0" - "@cspell/dict-software-terms": "npm:^3.3.20" + "@cspell/dict-rust": "npm:^4.0.4" + "@cspell/dict-scala": "npm:^5.0.2" + "@cspell/dict-software-terms": "npm:^3.4.6" "@cspell/dict-sql": "npm:^2.1.3" "@cspell/dict-svelte": "npm:^1.0.2" "@cspell/dict-swift": "npm:^2.0.1" "@cspell/dict-terraform": "npm:^1.0.0" - "@cspell/dict-typescript": "npm:^3.1.4" + "@cspell/dict-typescript": "npm:^3.1.5" "@cspell/dict-vue": "npm:^3.0.0" - checksum: 10c0/1cdbd2abc9ae7000a5dd5463237c0d6a87d540646b0f9d3a885eafb3c59c4cc217707bf8e3bc05d230bd6c005c5938f1116543aee62caacacb5e18a1d1981e5e + checksum: 10c0/7591a0679c1a534868807b23a57c80cc7a684dcb19866a15dd3a813ebae260d0378250e532ae1fcf507e460e823c9a3edacfd64f2c233c39b93aaed5914805d0 languageName: node linkType: hard -"@cspell/cspell-json-reporter@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-json-reporter@npm:8.8.1" +"@cspell/cspell-json-reporter@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-json-reporter@npm:8.9.0" dependencies: - "@cspell/cspell-types": "npm:8.8.1" - checksum: 10c0/3b23a37f91f9647af3b18ae1b9699334c78567f0e180eebe20098fae33399fbc11110be3c5c55cdf4c1d24dc2333157d066e46ca99dbc45a09ac71d3f382110d + "@cspell/cspell-types": "npm:8.9.0" + checksum: 10c0/6d09017f5fb867853774fbcf6ab425e5fdf8c665cb0d18999c35a50373526b10aec915730f96713868454d96b8248c5b7b1d038dd2c1e2be8c3894d5921e0285 languageName: node linkType: hard -"@cspell/cspell-pipe@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-pipe@npm:8.8.1" - checksum: 10c0/8d3c936b5c0d65fd02aa6789dfa00d1c1fe5cb0f9f671fd4a21bba153eb2d93d331523dbf8be899d8dade05d669d7d680b0a03214aa86db00b8650ffcefeae98 +"@cspell/cspell-pipe@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-pipe@npm:8.9.0" + checksum: 10c0/f73bca42a3af01b05d719cfe387a095680d6efd9afdb153716852d69c753db5b751948c6b535bcd8c78613ae98bd06e4f61e0ae0b0c1bfb52c84095a1efee230 languageName: node linkType: hard -"@cspell/cspell-resolver@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-resolver@npm:8.8.1" +"@cspell/cspell-resolver@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-resolver@npm:8.9.0" dependencies: global-directory: "npm:^4.0.1" - checksum: 10c0/b38f4dfe240d9954982e5144bc60dcceb334733d75074e13a727c8d4396b16996d7339d12c90307da55776d9c50de3fd64d87161ab59aec427e1aecf42bd8803 + checksum: 10c0/a8d3e1fbdbdd8cd7f318c7e68f86bf9afb07588666f3e52804bb2eaf5388a7755aed67660953b065541448484a534aae5271c2760e59f3f01f7c57a6a4b26ec8 languageName: node linkType: hard -"@cspell/cspell-service-bus@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-service-bus@npm:8.8.1" - checksum: 10c0/52b9f68067c2be53bdd9b6573ff40f9787b535f7072061744f10e64eb535b55410e15dbc4ffa3b917503b60a62d58f1f0f07f4265df317c4d08746bf27eed104 +"@cspell/cspell-service-bus@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-service-bus@npm:8.9.0" + checksum: 10c0/cb96e71eaca46a379f8cb9020e9595bf7900a970fe24393b52ed5a8471bb7307245bb226d1f2c5e06d154924b5c77d8c6213357436d9ed001e45a3b02e04a9ce languageName: node linkType: hard -"@cspell/cspell-types@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/cspell-types@npm:8.8.1" - checksum: 10c0/3b3aaea293572ae30211fff6089b280c12ce0343da3b6f582afcf19eb15a071d92ca8f72912a5687be578491ab775d707c31b31fe157fc09cfba57b1c5bb35a5 +"@cspell/cspell-types@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/cspell-types@npm:8.9.0" + checksum: 10c0/eda8f87bf603deb87c943e3e931c466cabcfbcc598a5641269aca78754baa101dba27049023945641f380de61d6295e8052f49ca017d1c2b92b23f91394c225f languageName: node linkType: hard @@ -1700,10 +1708,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-aws@npm:^4.0.1": - version: 4.0.1 - resolution: "@cspell/dict-aws@npm:4.0.1" - checksum: 10c0/48bc3645f23b8290ded066d4dda4c5cc5e903229e2f8893cba795e2d2583ce45bde8ff835454340eb6593beeb41e8014d52af4c6991fd4d8de1cd6c5a415294b +"@cspell/dict-aws@npm:^4.0.2": + version: 4.0.2 + resolution: "@cspell/dict-aws@npm:4.0.2" + checksum: 10c0/da75d0a96ff26900f37eebda5112c2d5d6a4e36d20d08bb9de0ebc8ae76d4b1d807a748b48c9f22fe37f9a26cecebf484d73424170ad5e11078b874176efb8e2 languageName: node linkType: hard @@ -1714,17 +1722,17 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-companies@npm:^3.0.31": - version: 3.0.31 - resolution: "@cspell/dict-companies@npm:3.0.31" - checksum: 10c0/1e2a2c3ca4fc80cc44a88e7a53cd060f3d8ec8f45151d2cf5f0c8bdde04331c21fcb65c76cd14715a1899f8c33316ab3233acebc691dd6ec78f659212acfc364 +"@cspell/dict-companies@npm:^3.1.2": + version: 3.1.2 + resolution: "@cspell/dict-companies@npm:3.1.2" + checksum: 10c0/ac5ad39fa808e53a0dc1fb19836cb9c04e21dffffb5a8e05a84104f10a7c60c932dc6efa8897b7bcf5b01671e25a418095328b3625436077772f0b6b2d09f019 languageName: node linkType: hard -"@cspell/dict-cpp@npm:^5.1.3": - version: 5.1.5 - resolution: "@cspell/dict-cpp@npm:5.1.5" - checksum: 10c0/7a8d669cd3494f5548d2c195d83e30222aa50428e8839fc06b3f8a737ca60b42a0529a2de85dfeff1fb8db3cca955c806e4ed7b467cda7a3967dcbd9fdfeebca +"@cspell/dict-cpp@npm:^5.1.10": + version: 5.1.10 + resolution: "@cspell/dict-cpp@npm:5.1.10" + checksum: 10c0/4459a913979e4abf64fbe35104c442a0ca1de4bff40a85a526b805981ee15e447cb38274959179b04815c267bf83ea4c201ee46a3af27a584b7772f07924fcbe languageName: node linkType: hard @@ -1756,10 +1764,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-data-science@npm:^1.0.11": - version: 1.0.11 - resolution: "@cspell/dict-data-science@npm:1.0.11" - checksum: 10c0/c0d7ffc81c43d00c997ac759ef48541c758bbf4074a743f6aa88c896acb4ea7c291b59103e6b84964ba62603314b164d515ffd7f44379870f1d9614dfcc862a3 +"@cspell/dict-data-science@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-data-science@npm:2.0.1" + checksum: 10c0/527eca5c42e981f49562b92032894f480b8c67612cb269ee23cdf5779a4118958b8fab1941af464d17748d183f3fe747204d22c6b815439caa218a87c031d178 languageName: node linkType: hard @@ -1777,7 +1785,7 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-dotnet@npm:^5.0.0": +"@cspell/dict-dotnet@npm:^5.0.2": version: 5.0.2 resolution: "@cspell/dict-dotnet@npm:5.0.2" checksum: 10c0/c5a1a7cbef0b8d0f917e783ff0e7880d2516be72adaa05664e0f9bfa0cfd622812e23146150b4fff0257784e48db1b9d72126f1a4518ae0c4a8c4a97e803a65a @@ -1791,10 +1799,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-en-common-misspellings@npm:^2.0.0": - version: 2.0.0 - resolution: "@cspell/dict-en-common-misspellings@npm:2.0.0" - checksum: 10c0/18faa9e7636fc8dc0106eb6a47fe3a211d90dec15ab89248a33b062c88cb64a9e19363519c1bf4cbca032754dcaa4cc77fc7ce6dae7b327e6c70c1108d358d8e +"@cspell/dict-en-common-misspellings@npm:^2.0.2": + version: 2.0.2 + resolution: "@cspell/dict-en-common-misspellings@npm:2.0.2" + checksum: 10c0/42c407f87b8ad056b9a6d74115f6fde0a483c1686f63eae20a65bc2c9f04fe8c602ac86383a2d5373769899c6f7d90d615c35c7bb2c3920e60af0ad610af0f9a languageName: node linkType: hard @@ -1805,14 +1813,14 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-en_us@npm:^4.3.19": - version: 4.3.19 - resolution: "@cspell/dict-en_us@npm:4.3.19" - checksum: 10c0/6dd603ad0327d82d3d5086af2a68d7301d6f71d44f90a786fd9c58276153e9df6f4be837f4c956bf017c4ea4020e3a9354e29fa410a8d295598e5b642700be55 +"@cspell/dict-en_us@npm:^4.3.22": + version: 4.3.22 + resolution: "@cspell/dict-en_us@npm:4.3.22" + checksum: 10c0/7ceba1fe45f4df8103631dd69b989f8bfc2e9bf7c53cc37404566e50fab2bd038f58fca30dd38fbff41761d99250736f36bc189b8e691163c9637ad01e370981 languageName: node linkType: hard -"@cspell/dict-filetypes@npm:^3.0.3": +"@cspell/dict-filetypes@npm:^3.0.4": version: 3.0.4 resolution: "@cspell/dict-filetypes@npm:3.0.4" checksum: 10c0/8400748182c641d3308acd827b126380fd4b9b428a1bedc6bed53f7e21ee011e8acc99c5b177b75d1bafe1bf7ae6b1a6bf45406bccdd346ef62d64089ad0285e @@ -1833,10 +1841,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-fullstack@npm:^3.1.5": - version: 3.1.5 - resolution: "@cspell/dict-fullstack@npm:3.1.5" - checksum: 10c0/c6e02b9ac3cafee8e2fe913b725cb0fa9cb7ac35b5ec331160e1d4ec9c47237f12638a2b5637fd6b2933662ee9b6b1d1c524a9035df109e25fbacc6032ded6c4 +"@cspell/dict-fullstack@npm:^3.1.8": + version: 3.1.8 + resolution: "@cspell/dict-fullstack@npm:3.1.8" + checksum: 10c0/e561421e7dec71b6e6638faf075af6b486bb7cd3bb17177a95117c8e80f05a7dd00de161815da817f81004773630f7bf3ed71252a4cdf17c5ec0fe4ce7f87d27 languageName: node linkType: hard @@ -1854,10 +1862,17 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-golang@npm:^6.0.5": - version: 6.0.8 - resolution: "@cspell/dict-golang@npm:6.0.8" - checksum: 10c0/4f8b6d1d5a34ebf2ca227827b99b163b8799e3d89f454798d7e037a0316c2c074b4eaa42b27e7961721610bc82bcc4b6f03971f0bd9f9be952a645b4562b835d +"@cspell/dict-golang@npm:^6.0.9": + version: 6.0.9 + resolution: "@cspell/dict-golang@npm:6.0.9" + checksum: 10c0/31af38194a2ea09a8d352681dda7277d86536211bbe72b9709b098321098909a783642fdd8e44426e9c041e6e4d6312970689899f4bced0a166364e7fe57b875 + languageName: node + linkType: hard + +"@cspell/dict-google@npm:^1.0.1": + version: 1.0.1 + resolution: "@cspell/dict-google@npm:1.0.1" + checksum: 10c0/de4678cb861c0103c821f435098d38b6874a628c08ba154fa0c4a75594abefe61299578eb5cec745623590e539cda6512425144eac336cd375ae1e2449d532e1 languageName: node linkType: hard @@ -1882,10 +1897,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-java@npm:^5.0.6": - version: 5.0.6 - resolution: "@cspell/dict-java@npm:5.0.6" - checksum: 10c0/28cacf0fc3d72d76ee6052af07acda8b34afe5dbf564ab2e91a0f291d3bcde34e88eaf6d484044c75f34256108cdcf32dd22bc763f372bfb2e5637beba26779f +"@cspell/dict-java@npm:^5.0.7": + version: 5.0.7 + resolution: "@cspell/dict-java@npm:5.0.7" + checksum: 10c0/ea3ff17db1e618b6ef4c6f6cf34dc9409dd85831f8b3f0ec55da6b238cfae1f8b13ff6de717d355f3668605004047f538e46f1502d7f0fee7100267a5d34db0a languageName: node linkType: hard @@ -1896,10 +1911,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-k8s@npm:^1.0.2": - version: 1.0.3 - resolution: "@cspell/dict-k8s@npm:1.0.3" - checksum: 10c0/7063073a5a681e3552204a4c6fb87cafd4b484ca44b7e204ce6d48290c6781d49f32e022e77c75a1549e525b0359b18edc9db653c91ed379919f41accceafbb3 +"@cspell/dict-k8s@npm:^1.0.5": + version: 1.0.5 + resolution: "@cspell/dict-k8s@npm:1.0.5" + checksum: 10c0/d9765b76bf80ef40de12dead2c14c17e0ba0e64decc58244ee8599e9b4c5adcb528c854a49addb4bc01309b904b44a479c87dc3772308e053fcba40b6a094bcd languageName: node linkType: hard @@ -1952,40 +1967,40 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-npm@npm:^5.0.15": +"@cspell/dict-npm@npm:^5.0.16": version: 5.0.16 resolution: "@cspell/dict-npm@npm:5.0.16" checksum: 10c0/e4ec9d6e9a03f46adfa02a34f065245ed70c1ba43e220d29afb39562f5fd4e23fc51d8b7229bc8d81c56d388834bffe43b9c59aef15b6fff94ab1951510c361e languageName: node linkType: hard -"@cspell/dict-php@npm:^4.0.6": - version: 4.0.7 - resolution: "@cspell/dict-php@npm:4.0.7" - checksum: 10c0/599ebd7a8fb9731d3d786e6f2e2441d016edd40d56d36df801658aee499ad97f5cd87e35acc9a260e4b413570a6cd0bb0806b7111db9ef148d3c3303681b1ad3 +"@cspell/dict-php@npm:^4.0.8": + version: 4.0.8 + resolution: "@cspell/dict-php@npm:4.0.8" + checksum: 10c0/284e761e073ae3f46519ebee6e4202915d3ee108c335340302ff852bf21dc2f75cbaf4928c119120e925159a4fa8dc6f20f9ed27f8a69023bff542429635a6ba languageName: node linkType: hard -"@cspell/dict-powershell@npm:^5.0.3": - version: 5.0.3 - resolution: "@cspell/dict-powershell@npm:5.0.3" - checksum: 10c0/46428e937f740654c70b1e2a281bccd8253952186dcf8f8cf4bf649c7767cf37a5eed5683d9136271c78505d24648e05f4af3b41caf64ae6e881858c2fbe190e +"@cspell/dict-powershell@npm:^5.0.4": + version: 5.0.4 + resolution: "@cspell/dict-powershell@npm:5.0.4" + checksum: 10c0/b2d88a647ad5145b9481f351eaf7bb9c09a98c0a2f5d18fca807d8d2593a6f6664f3d70d438c667cac764c6328166be2d3660dc70ab253f86160290e8b84855d languageName: node linkType: hard -"@cspell/dict-public-licenses@npm:^2.0.6": - version: 2.0.6 - resolution: "@cspell/dict-public-licenses@npm:2.0.6" - checksum: 10c0/da5e39d37a57f698730d7912c418c60e93f7c0d888d80ee53b2ad0f57f58755a4fc5aa82dacb0adf81127ccbd4ba3bda9800c75e8ec249a99b40c69c7ff73091 +"@cspell/dict-public-licenses@npm:^2.0.7": + version: 2.0.7 + resolution: "@cspell/dict-public-licenses@npm:2.0.7" + checksum: 10c0/fab600fca77e239ca174cb5b7c5fcf52fb3578f9f4d876d5ff0068fc00674ff64bd70fe860284df0250cde1526ae12f3e2503e2715722fd6ec68131276e5a49e languageName: node linkType: hard -"@cspell/dict-python@npm:^4.1.11": - version: 4.1.11 - resolution: "@cspell/dict-python@npm:4.1.11" +"@cspell/dict-python@npm:^4.2.1": + version: 4.2.1 + resolution: "@cspell/dict-python@npm:4.2.1" dependencies: - "@cspell/dict-data-science": "npm:^1.0.11" - checksum: 10c0/a8f93e0d0d840cf2b62c8f5946aa67b2bfb07a42351228dc7b9275c68b69b0a658e4f3e8ed3fa89d8215950bbe7985cb1798856ba737412a455f6bf3f306593d + "@cspell/dict-data-science": "npm:^2.0.1" + checksum: 10c0/652b5f3f918b8a82fcdf62cb6ae56a33819d658c871e418a6d907abf435b00ffaa5f136a518b190d304156bf0ce0c1d8189eea798e31bbf74d6d138e4f180950 languageName: node linkType: hard @@ -2003,24 +2018,24 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-rust@npm:^4.0.3": - version: 4.0.3 - resolution: "@cspell/dict-rust@npm:4.0.3" - checksum: 10c0/0923585b9738dfd5242bb54369193882cc4d2999024a6ae8249292e4d0da36085af24578b6cacf5537bc30701a93f46707b50fbfdf19f64e2e8fe1b49a146952 +"@cspell/dict-rust@npm:^4.0.4": + version: 4.0.4 + resolution: "@cspell/dict-rust@npm:4.0.4" + checksum: 10c0/d56793f7fda4a9494190bb77135551607c41e4b8aad9ce1bc92ba1b8282372dbd250277d3006c025031b90ad24e37bb49b09cf9379d3b9061da64e385fa34336 languageName: node linkType: hard -"@cspell/dict-scala@npm:^5.0.0": +"@cspell/dict-scala@npm:^5.0.2": version: 5.0.2 resolution: "@cspell/dict-scala@npm:5.0.2" checksum: 10c0/1f15c0b3ea639edecf746182505351d7c20f2a4b11a042f404d5364b102e8fe54a9c9eda833cccb4e081ff4ac9228653d9ab82ff86975611c4dfe36528cb36df languageName: node linkType: hard -"@cspell/dict-software-terms@npm:^3.3.18, @cspell/dict-software-terms@npm:^3.3.20": - version: 3.3.22 - resolution: "@cspell/dict-software-terms@npm:3.3.22" - checksum: 10c0/c29e8524da07a37e3fe9b1b9e91ebe6bdb9d61a2f3a4bb61ec9dadc4f837e7a88f66a585db0c5316d48dbe8fc728642a519a42601d4fa1e92891f64fdfc2d651 +"@cspell/dict-software-terms@npm:^3.3.18, @cspell/dict-software-terms@npm:^3.4.6": + version: 3.4.6 + resolution: "@cspell/dict-software-terms@npm:3.4.6" + checksum: 10c0/556440f7586ab023f53bb25b0bb38aaf8b4460476a3318f0f16133662cfbd60eeaeeb888f464affc10febf0ad436c1b568056a9f504c4f21849f5f46ee0718f8 languageName: node linkType: hard @@ -2052,10 +2067,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-typescript@npm:^3.1.2, @cspell/dict-typescript@npm:^3.1.4": - version: 3.1.4 - resolution: "@cspell/dict-typescript@npm:3.1.4" - checksum: 10c0/5482251a091882e38c85f5096a8f9468da2afd5a5ea79ff5848fb3a1968a0854df63d7ab139dc72cdc3269521b0225daa5526819e9cbbfc1df51064c5adaae2a +"@cspell/dict-typescript@npm:^3.1.2, @cspell/dict-typescript@npm:^3.1.5": + version: 3.1.5 + resolution: "@cspell/dict-typescript@npm:3.1.5" + checksum: 10c0/6046e556249e37f9209d12c19e44394b338f6e958d1f62d715c91fb64ae8f6d92ebe4ea54666f50713ace1b5a781a196713c584d883c9d6ddd8e86e578dcad41 languageName: node linkType: hard @@ -2066,19 +2081,26 @@ __metadata: languageName: node linkType: hard -"@cspell/dynamic-import@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/dynamic-import@npm:8.8.1" +"@cspell/dynamic-import@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/dynamic-import@npm:8.9.0" dependencies: import-meta-resolve: "npm:^4.1.0" - checksum: 10c0/a4b5ddcddf2981e6ab63ffa0b234a72c7ec50084e6ff34369e7ee1cb2460b88314d9e0e3fa2510740dd24b5c9c6eba84acf9dc4cbe68ef9d8270df69b3b80552 + checksum: 10c0/91eb6b7ca76057c2a662060d51a099a1430d286130601de072124e00e19a11085722495432398df2ea3ff3e8d928d57cc9c0ecb82dd7da4b6f9ac9dccb1d80db + languageName: node + linkType: hard + +"@cspell/strong-weak-map@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/strong-weak-map@npm:8.9.0" + checksum: 10c0/f5c6ca89a655be9fbf77e0b96c95525560026e52c1f99a2b85a76e162edc3ecca6871a81e823b75ff0b2cfbd77d6e5b94ec50a06cdeb9bf7535657ff875bf5c7 languageName: node linkType: hard -"@cspell/strong-weak-map@npm:8.8.1": - version: 8.8.1 - resolution: "@cspell/strong-weak-map@npm:8.8.1" - checksum: 10c0/0e960e5e10458f979a47e4d76a89ab86080e826a5756624e430d69c3fc0d2a500f309b71be8f969009c6bdcd2c7ebb38fb9737dda99a9250f7f1edbf200d6dec +"@cspell/url@npm:8.9.0": + version: 8.9.0 + resolution: "@cspell/url@npm:8.9.0" + checksum: 10c0/72f5192e5db5f21989348ac29e470a0ef7620b255fc942ed1a482441414152882667d45a18421a71df6d39100a137f7b04c673f2d253349fe6effab7a016c528 languageName: node linkType: hard @@ -2091,15 +2113,13 @@ __metadata: languageName: node linkType: hard -"@ericcornelissen/bash-parser@npm:0.5.2": - version: 0.5.2 - resolution: "@ericcornelissen/bash-parser@npm:0.5.2" +"@ericcornelissen/bash-parser@npm:0.5.3": + version: 0.5.3 + resolution: "@ericcornelissen/bash-parser@npm:0.5.3" dependencies: array-last: "npm:^1.1.1" babylon: "npm:^6.9.1" compose-function: "npm:^3.0.3" - deep-freeze: "npm:0.0.1" - filter-iterator: "npm:0.0.1" filter-obj: "npm:^1.1.0" has-own-property: "npm:^0.1.0" identity-function: "npm:^1.0.0" @@ -2114,7 +2134,7 @@ __metadata: shell-quote-word: "npm:^1.0.1" to-pascal-case: "npm:^1.0.0" unescape-js: "npm:^1.0.5" - checksum: 10c0/0640a9203c903561ed15da4e1760d05cbb6b3c5be33864ac8596bfccddf5c974ffdd85851feff0a6bbfb475c6f17705f308ffa8a94c02c6664be22cfeaac781c + checksum: 10c0/668e83b4cf9c85f74fd874b4290c1b301e5903d5e54a575416d01948518744d9dc32439af5434ec6eaa253fcbf75e8c375e4155ce9e7ffaa1ae97f6001d2361d languageName: node linkType: hard @@ -2125,6 +2145,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/aix-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/aix-ppc64@npm:0.21.5" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/android-arm64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/android-arm64@npm:0.20.2" @@ -2132,6 +2159,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm64@npm:0.21.5" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/android-arm@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/android-arm@npm:0.20.2" @@ -2139,6 +2173,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm@npm:0.21.5" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + "@esbuild/android-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/android-x64@npm:0.20.2" @@ -2146,6 +2187,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/android-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-x64@npm:0.21.5" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + "@esbuild/darwin-arm64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/darwin-arm64@npm:0.20.2" @@ -2153,6 +2201,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-arm64@npm:0.21.5" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/darwin-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/darwin-x64@npm:0.20.2" @@ -2160,6 +2215,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/darwin-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-x64@npm:0.21.5" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + "@esbuild/freebsd-arm64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/freebsd-arm64@npm:0.20.2" @@ -2167,6 +2229,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-arm64@npm:0.21.5" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/freebsd-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/freebsd-x64@npm:0.20.2" @@ -2174,6 +2243,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/freebsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-x64@npm:0.21.5" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/linux-arm64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-arm64@npm:0.20.2" @@ -2181,6 +2257,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm64@npm:0.21.5" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/linux-arm@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-arm@npm:0.20.2" @@ -2188,6 +2271,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm@npm:0.21.5" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + "@esbuild/linux-ia32@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-ia32@npm:0.20.2" @@ -2195,6 +2285,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ia32@npm:0.21.5" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/linux-loong64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-loong64@npm:0.20.2" @@ -2202,6 +2299,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-loong64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-loong64@npm:0.21.5" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + "@esbuild/linux-mips64el@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-mips64el@npm:0.20.2" @@ -2209,6 +2313,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-mips64el@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-mips64el@npm:0.21.5" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + "@esbuild/linux-ppc64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-ppc64@npm:0.20.2" @@ -2216,6 +2327,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ppc64@npm:0.21.5" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + "@esbuild/linux-riscv64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-riscv64@npm:0.20.2" @@ -2223,6 +2341,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-riscv64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-riscv64@npm:0.21.5" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + "@esbuild/linux-s390x@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-s390x@npm:0.20.2" @@ -2230,6 +2355,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-s390x@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-s390x@npm:0.21.5" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + "@esbuild/linux-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/linux-x64@npm:0.20.2" @@ -2237,6 +2369,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/linux-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-x64@npm:0.21.5" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + "@esbuild/netbsd-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/netbsd-x64@npm:0.20.2" @@ -2244,6 +2383,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/netbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/netbsd-x64@npm:0.21.5" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/openbsd-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/openbsd-x64@npm:0.20.2" @@ -2251,6 +2397,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/openbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/openbsd-x64@npm:0.21.5" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + "@esbuild/sunos-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/sunos-x64@npm:0.20.2" @@ -2258,6 +2411,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/sunos-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/sunos-x64@npm:0.21.5" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + "@esbuild/win32-arm64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/win32-arm64@npm:0.20.2" @@ -2265,6 +2425,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-arm64@npm:0.21.5" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + "@esbuild/win32-ia32@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/win32-ia32@npm:0.20.2" @@ -2272,6 +2439,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-ia32@npm:0.21.5" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + "@esbuild/win32-x64@npm:0.20.2": version: 0.20.2 resolution: "@esbuild/win32-x64@npm:0.20.2" @@ -2279,6 +2453,13 @@ __metadata: languageName: node linkType: hard +"@esbuild/win32-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-x64@npm:0.21.5" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": version: 4.4.0 resolution: "@eslint-community/eslint-utils@npm:4.4.0" @@ -2291,9 +2472,9 @@ __metadata: linkType: hard "@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1": - version: 4.10.0 - resolution: "@eslint-community/regexpp@npm:4.10.0" - checksum: 10c0/c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4 + version: 4.10.1 + resolution: "@eslint-community/regexpp@npm:4.10.1" + checksum: 10c0/f59376025d0c91dd9fdf18d33941df499292a3ecba3e9889c360f3f6590197d30755604588786cdca0f9030be315a26b206014af4b65c0ff85b4ec49043de780 languageName: node linkType: hard @@ -3106,11 +3287,11 @@ __metadata: linkType: hard "@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6": - version: 7.20.5 - resolution: "@types/babel__traverse@npm:7.20.5" + version: 7.20.6 + resolution: "@types/babel__traverse@npm:7.20.6" dependencies: "@babel/types": "npm:^7.20.7" - checksum: 10c0/033abcb2f4c084ad33e30c3efaad82161240f351e3c71b6154ed289946b33b363696c0fbd42502b68e4582a87413c418321f40eb1ea863e34fe525641345e05b + checksum: 10c0/7ba7db61a53e28cac955aa99af280d2600f15a8c056619c05b6fc911cbe02c61aa4f2823299221b23ce0cce00b294c0e5f618ec772aa3f247523c2e48cf7b888 languageName: node linkType: hard @@ -3176,11 +3357,11 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:^20.11.19": - version: 20.12.12 - resolution: "@types/node@npm:20.12.12" + version: 20.14.5 + resolution: "@types/node@npm:20.14.5" dependencies: undici-types: "npm:~5.26.4" - checksum: 10c0/f374b763c744e8f16e4f38cf6e2c0eef31781ec9228c9e43a6f267880fea420fab0a238b59f10a7cb3444e49547c5e3785787e371fc242307310995b21988812 + checksum: 10c0/06a8c304b5f7f190d4497807dc67ad09ee7b14ea2996bfdc823553c624698d8cab1ef9d16f8b764f20cb9eb11caa0e832787741e9ef70e1c89d620797ab28436 languageName: node linkType: hard @@ -3215,14 +3396,14 @@ __metadata: linkType: hard "@typescript-eslint/eslint-plugin@npm:^7.0.1": - version: 7.10.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.10.0" + version: 7.13.1 + resolution: "@typescript-eslint/eslint-plugin@npm:7.13.1" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.10.0" - "@typescript-eslint/type-utils": "npm:7.10.0" - "@typescript-eslint/utils": "npm:7.10.0" - "@typescript-eslint/visitor-keys": "npm:7.10.0" + "@typescript-eslint/scope-manager": "npm:7.13.1" + "@typescript-eslint/type-utils": "npm:7.13.1" + "@typescript-eslint/utils": "npm:7.13.1" + "@typescript-eslint/visitor-keys": "npm:7.13.1" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" @@ -3233,44 +3414,44 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/bf3f0118ea5961c3eb01894678246458a329d82dda9ac7c2f5bfe77896410d05a08a4655e533bcb1ed2a3132ba6421981ec8c2ed0a3545779d9603ea231947ae + checksum: 10c0/6677f9c090a25978e4e20c24d67365ad89ca1208ebd2bb103d3f1e15a7deea22dea538e9f61f3a3d4f03a741179acf58c02ad7d03f805aceabb78929a8dc1908 languageName: node linkType: hard "@typescript-eslint/parser@npm:^7.0.1": - version: 7.10.0 - resolution: "@typescript-eslint/parser@npm:7.10.0" + version: 7.13.1 + resolution: "@typescript-eslint/parser@npm:7.13.1" dependencies: - "@typescript-eslint/scope-manager": "npm:7.10.0" - "@typescript-eslint/types": "npm:7.10.0" - "@typescript-eslint/typescript-estree": "npm:7.10.0" - "@typescript-eslint/visitor-keys": "npm:7.10.0" + "@typescript-eslint/scope-manager": "npm:7.13.1" + "@typescript-eslint/types": "npm:7.13.1" + "@typescript-eslint/typescript-estree": "npm:7.13.1" + "@typescript-eslint/visitor-keys": "npm:7.13.1" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/4c4fbf43b5b05d75b766acb803d3dd078c6e080641a77f9e48ba005713466738ea4a71f0564fa3ce520988d65158d14c8c952ba01ccbc431ab4a05935db5ce6d + checksum: 10c0/455d067bfb81fa3d133c75ebc4d8d7f2de5001441585f5b58dc8b0d4380d7397dc3745e11a9299d596dfa581265fdcdea6c28b2ddd2d3b542869c851ecd52fcd languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/scope-manager@npm:7.10.0" +"@typescript-eslint/scope-manager@npm:7.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/scope-manager@npm:7.13.1" dependencies: - "@typescript-eslint/types": "npm:7.10.0" - "@typescript-eslint/visitor-keys": "npm:7.10.0" - checksum: 10c0/1d4f7ee137b95bd423b5a1b0d03251202dfc19bd8b6adfa5ff5df25fd5aa30e2d8ca50ab0d8d2e92441670ecbc2a82b3c2dbe39a4f268ec1ee1c1e267f7fd1d1 + "@typescript-eslint/types": "npm:7.13.1" + "@typescript-eslint/visitor-keys": "npm:7.13.1" + checksum: 10c0/3d8770bf9c89e7a07e54efbc3dac6df02c0ce49d49575076111ac663566c90cbb852f06c94a311db7c0aec1fab0417f3ef6e601b3852aa30bed75c65f4f076f4 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/type-utils@npm:7.10.0" +"@typescript-eslint/type-utils@npm:7.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/type-utils@npm:7.13.1" dependencies: - "@typescript-eslint/typescript-estree": "npm:7.10.0" - "@typescript-eslint/utils": "npm:7.10.0" + "@typescript-eslint/typescript-estree": "npm:7.13.1" + "@typescript-eslint/utils": "npm:7.13.1" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" peerDependencies: @@ -3278,23 +3459,23 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/55e9a6690f9cedb79d30abb1990b161affaa2684dac246b743223353812c9c1e3fd2d923c67b193c6a3624a07e1c82c900ce7bf5b6b9891c846f04cb480ebd9f + checksum: 10c0/c02305dccb0b2c7dcc9249230078c83e851ee589f93e08eb6cdc0b4c38d78d85ef4996631ac427836ee9d0a868ac031417feb74a6e4d0600096f41ca3c0e99a0 languageName: node linkType: hard -"@typescript-eslint/types@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/types@npm:7.10.0" - checksum: 10c0/f01d9330b93cc362ba7967ab5037396f64742076450e1f93139fa69cbe93a6ece3ed55d68ab780c9b7d07ef4a7c645da410305216a2cfc5dec7eba49ee65ab23 +"@typescript-eslint/types@npm:7.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/types@npm:7.13.1" + checksum: 10c0/38a01004e11259e457ae2fd02300ef362a3268a8fc70addfbf1508e2edcaca72da2f0f8771e42c1cb9f191c1f754af583cdcaebd830c8e3c3f796dcf30d3c3a8 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.10.0" +"@typescript-eslint/typescript-estree@npm:7.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/typescript-estree@npm:7.13.1" dependencies: - "@typescript-eslint/types": "npm:7.10.0" - "@typescript-eslint/visitor-keys": "npm:7.10.0" + "@typescript-eslint/types": "npm:7.13.1" + "@typescript-eslint/visitor-keys": "npm:7.13.1" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" @@ -3304,31 +3485,31 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 10c0/6200695834c566e52e2fa7331f1a05019f7815969d8c1e1e237b85a99664d36f41ccc16384eff3f8582a0ecb75f1cc315b56ee9283b818da37f24fa4d42f1d7a + checksum: 10c0/bd5c8951ae79e8eacd05ff100def02926c633045a1a54426f98f20b4ca31c485968af3226dd7939934dfaf36a6b5fcb3386948e2a7d763ddee2db905ac187ebc languageName: node linkType: hard -"@typescript-eslint/utils@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/utils@npm:7.10.0" +"@typescript-eslint/utils@npm:7.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/utils@npm:7.13.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:7.10.0" - "@typescript-eslint/types": "npm:7.10.0" - "@typescript-eslint/typescript-estree": "npm:7.10.0" + "@typescript-eslint/scope-manager": "npm:7.13.1" + "@typescript-eslint/types": "npm:7.13.1" + "@typescript-eslint/typescript-estree": "npm:7.13.1" peerDependencies: eslint: ^8.56.0 - checksum: 10c0/6724471f94f2788f59748f7efa2a3a53ea910099993bee2fa5746ab5acacecdc9fcb110c568b18099ddc946ea44919ed394bff2bd055ba81fc69f5e6297b73bf + checksum: 10c0/d2f6be42a80608ed265b34a5f6a0c97dc0b627d53b91e83d87c7d67541cb5b3c038e7320026b4ad8dfafe1ac07a0554efa8fe7673f54d74b68c253d6f9519bb6 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:7.10.0": - version: 7.10.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.10.0" +"@typescript-eslint/visitor-keys@npm:7.13.1": + version: 7.13.1 + resolution: "@typescript-eslint/visitor-keys@npm:7.13.1" dependencies: - "@typescript-eslint/types": "npm:7.10.0" + "@typescript-eslint/types": "npm:7.13.1" eslint-visitor-keys: "npm:^3.4.3" - checksum: 10c0/049e812bcd28869059d04c7bf3543bb55f5205f468b777439c4f120417fb856fb6024cb1d25291aa12556bd08e84f043a96d754ffb2cde37abb604d6f3c51634 + checksum: 10c0/23c1bb896173cadfb33e3801420a70aa2f0481384caa3b534b04f7920acdb9d8f7d635fcaf1f8c7fc78ebce71b8f2435391608d120091761ad2e2c00eb870832 languageName: node linkType: hard @@ -3408,18 +3589,20 @@ __metadata: linkType: hard "acorn-walk@npm:^8.1.1": - version: 8.3.2 - resolution: "acorn-walk@npm:8.3.2" - checksum: 10c0/7e2a8dad5480df7f872569b9dccff2f3da7e65f5353686b1d6032ab9f4ddf6e3a2cb83a9b52cf50b1497fd522154dda92f0abf7153290cc79cd14721ff121e52 + version: 8.3.3 + resolution: "acorn-walk@npm:8.3.3" + dependencies: + acorn: "npm:^8.11.0" + checksum: 10c0/4a9e24313e6a0a7b389e712ba69b66b455b4cb25988903506a8d247e7b126f02060b05a8a5b738a9284214e4ca95f383dd93443a4ba84f1af9b528305c7f243b languageName: node linkType: hard -"acorn@npm:^8.4.1, acorn@npm:^8.9.0": - version: 8.11.3 - resolution: "acorn@npm:8.11.3" +"acorn@npm:^8.11.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": + version: 8.12.0 + resolution: "acorn@npm:8.12.0" bin: acorn: bin/acorn - checksum: 10c0/3ff155f8812e4a746fee8ecff1f227d527c4c45655bb1fad6347c3cb58e46190598217551b1500f18542d2bbe5c87120cb6927f5a074a59166fbdd9468f0a299 + checksum: 10c0/a19f9dead009d3b430fa3c253710b47778cdaace15b316de6de93a68c355507bc1072a9956372b6c990cbeeb167d4a929249d0faeb8ae4bb6911d68d53299549 languageName: node linkType: hard @@ -3455,14 +3638,14 @@ __metadata: linkType: hard "ajv@npm:^8.11.0": - version: 8.13.0 - resolution: "ajv@npm:8.13.0" + version: 8.16.0 + resolution: "ajv@npm:8.16.0" dependencies: fast-deep-equal: "npm:^3.1.3" json-schema-traverse: "npm:^1.0.0" require-from-string: "npm:^2.0.2" uri-js: "npm:^4.4.1" - checksum: 10c0/14c6497b6f72843986d7344175a1aa0e2c35b1e7f7475e55bc582cddb765fca7e6bf950f465dc7846f817776d9541b706f4b5b3fbedd8dfdeb5fce6f22864264 + checksum: 10c0/6fc38aa8fd4fbfaa7096ac049e48c0cb440db36b76fef2d7d5b7d92b102735670d055d412d19176c08c9d48eaa9d06661b67e59f04943dc71ab1551e0484f88c languageName: node linkType: hard @@ -3648,13 +3831,13 @@ __metadata: linkType: hard "axios@npm:^1.7.1": - version: 1.7.1 - resolution: "axios@npm:1.7.1" + version: 1.7.2 + resolution: "axios@npm:1.7.2" dependencies: follow-redirects: "npm:^1.15.6" form-data: "npm:^4.0.0" proxy-from-env: "npm:^1.1.0" - checksum: 10c0/554395472f18f4ddb43b4be2900473bc1a4d589464a8ab16f6954c53d9cace4317d5c9e009d5bb05f098d9565b2fa45f152a5d4cecb87536c8f0c370c25a7770 + checksum: 10c0/cbd47ce380fe045313364e740bb03b936420b8b5558c7ea36a4563db1258c658f05e40feb5ddd41f6633fdd96d37ac2a76f884dad599c5b0224b4c451b3fa7ae languageName: node linkType: hard @@ -3826,7 +4009,7 @@ __metadata: languageName: node linkType: hard -"braces@npm:^3.0.2, braces@npm:^3.0.3": +"braces@npm:^3.0.3": version: 3.0.3 resolution: "braces@npm:3.0.3" dependencies: @@ -3843,16 +4026,16 @@ __metadata: linkType: hard "browserslist@npm:^4.22.2, browserslist@npm:^4.23.0": - version: 4.23.0 - resolution: "browserslist@npm:4.23.0" + version: 4.23.1 + resolution: "browserslist@npm:4.23.1" dependencies: - caniuse-lite: "npm:^1.0.30001587" - electron-to-chromium: "npm:^1.4.668" + caniuse-lite: "npm:^1.0.30001629" + electron-to-chromium: "npm:^1.4.796" node-releases: "npm:^2.0.14" - update-browserslist-db: "npm:^1.0.13" + update-browserslist-db: "npm:^1.0.16" bin: browserslist: cli.js - checksum: 10c0/8e9cc154529062128d02a7af4d8adeead83ca1df8cd9ee65a88e2161039f3d68a4d40fea7353cab6bae4c16182dec2fdd9a1cf7dc2a2935498cee1af0e998943 + checksum: 10c0/eb47c7ab9d60db25ce2faca70efeb278faa7282a2f62b7f2fa2f92e5f5251cf65144244566c86559419ff4f6d78f59ea50e39911321ad91f3b27788901f1f5e9 languageName: node linkType: hard @@ -3946,10 +4129,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001587": - version: 1.0.30001620 - resolution: "caniuse-lite@npm:1.0.30001620" - checksum: 10c0/3783117143fbdc98c1b91a579d0f2a7bcee7008f322ba7a2bf56a6c3d105400772c7ed8026840b4ea909ec7bf254bcc36532f2ce1b1a1240b00d0335da39b7ec +"caniuse-lite@npm:^1.0.30001629": + version: 1.0.30001636 + resolution: "caniuse-lite@npm:1.0.30001636" + checksum: 10c0/e5f965b4da7bae1531fd9f93477d015729ff9e3fa12670ead39a9e6cdc4c43e62c272d47857c5cc332e7b02d697cb3f2f965a1030870ac7476da60c2fc81ee94 languageName: node linkType: hard @@ -3962,13 +4145,6 @@ __metadata: languageName: node linkType: hard -"chalk@npm:5.3.0, chalk@npm:^5.2.0, chalk@npm:^5.3.0": - version: 5.3.0 - resolution: "chalk@npm:5.3.0" - checksum: 10c0/8297d436b2c0f95801103ff2ef67268d362021b8210daf8ddbe349695333eb3610a71122172ff3b0272f1ef2cf7cc2c41fdaa4715f52e49ffe04c56340feed09 - languageName: node - linkType: hard - "chalk@npm:^2.4.1, chalk@npm:^2.4.2": version: 2.4.2 resolution: "chalk@npm:2.4.2" @@ -3990,6 +4166,13 @@ __metadata: languageName: node linkType: hard +"chalk@npm:^5.2.0, chalk@npm:^5.3.0, chalk@npm:~5.3.0": + version: 5.3.0 + resolution: "chalk@npm:5.3.0" + checksum: 10c0/8297d436b2c0f95801103ff2ef67268d362021b8210daf8ddbe349695333eb3610a71122172ff3b0272f1ef2cf7cc2c41fdaa4715f52e49ffe04c56340feed09 + languageName: node + linkType: hard + "char-regex@npm:^1.0.2": version: 1.0.2 resolution: "char-regex@npm:1.0.2" @@ -4134,14 +4317,7 @@ __metadata: languageName: node linkType: hard -"commander@npm:11.1.0": - version: 11.1.0 - resolution: "commander@npm:11.1.0" - checksum: 10c0/13cc6ac875e48780250f723fb81c1c1178d35c5decb1abb1b628b3177af08a8554e76b2c0f29de72d69eef7c864d12613272a71fabef8047922bc622ab75a179 - languageName: node - linkType: hard - -"commander@npm:^12.0.0": +"commander@npm:^12.1.0, commander@npm:~12.1.0": version: 12.1.0 resolution: "commander@npm:12.1.0" checksum: 10c0/6e1996680c083b3b897bfc1cfe1c58dfbcd9842fd43e1aaf8a795fbc237f65efcc860a3ef457b318e73f29a4f4a28f6403c3d653d021d960e4632dd45bde54a9 @@ -4327,90 +4503,92 @@ __metadata: languageName: node linkType: hard -"cspell-config-lib@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-config-lib@npm:8.8.1" +"cspell-config-lib@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-config-lib@npm:8.9.0" dependencies: - "@cspell/cspell-types": "npm:8.8.1" + "@cspell/cspell-types": "npm:8.9.0" comment-json: "npm:^4.2.3" - yaml: "npm:^2.4.2" - checksum: 10c0/58771324d30015975b9a1516405f8e94e18cd6bf8de32563cbc790866d1c0ffecfe28e436773e92ab6974ce9fa28cc2df824ed31f23a735f49a71501296f7f1f + yaml: "npm:^2.4.5" + checksum: 10c0/ca9616b50ca0f0097c93758c18d3f5b6930b3d6335b314013af2f5d547282e12591986bb148d44ff469315aded465281c340e12337811b53332adecc11ac04ff languageName: node linkType: hard -"cspell-dictionary@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-dictionary@npm:8.8.1" +"cspell-dictionary@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-dictionary@npm:8.9.0" dependencies: - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" - cspell-trie-lib: "npm:8.8.1" + "@cspell/cspell-pipe": "npm:8.9.0" + "@cspell/cspell-types": "npm:8.9.0" + cspell-trie-lib: "npm:8.9.0" fast-equals: "npm:^5.0.1" gensequence: "npm:^7.0.0" - checksum: 10c0/8131efee72b36aa037a0e086f3cd8977d3c9f4cc65fcc0874c0d716829168554c85afec3f29803910329fc07492b1786786473a565d239339dd64c409e2d9f6d + checksum: 10c0/5df05a50e2cde0216eb61cdf9e574c1f98850c9031c657c9b902fe093a3c882a8a71a6048762538a4cf3dc6dc307d536756cb9bcdcd4f73f77e820453361093a languageName: node linkType: hard -"cspell-gitignore@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-gitignore@npm:8.8.1" +"cspell-gitignore@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-gitignore@npm:8.9.0" dependencies: - cspell-glob: "npm:8.8.1" + cspell-glob: "npm:8.9.0" find-up-simple: "npm:^1.0.0" bin: cspell-gitignore: bin.mjs - checksum: 10c0/707446af5f2d4051f3b6c9e24ab6a3dfbe6b52a809af82b0dbbb2e47b0b0e5db976af4e88b7bd9b6493bf55569247d11801098f92be6e47311df855fbc8db4b7 + checksum: 10c0/0bd674e02f42f977151d69a7841b51a53c405e5cf57953cec79683d83bec578e932c585ede64f82077a7a8f44746339f213c23e3275bf60324e20becb04ca94a languageName: node linkType: hard -"cspell-glob@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-glob@npm:8.8.1" +"cspell-glob@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-glob@npm:8.9.0" dependencies: - micromatch: "npm:^4.0.5" - checksum: 10c0/acb4df4e43e2f0dcfd52086bde04d1187b56693add59ba9d42bd3728a09b759f401e4ca149eb247dc079ef7abe179d06ce669cd02e41b8c03bbee798afddd4da + micromatch: "npm:^4.0.7" + checksum: 10c0/439f2e9f5c8f725ff6cc975b01faf504a32085c567c22e34e65da1bcacc0a6816e2351afc7d0ee63e4e35191c21691d2d170a53dabc35ee21059dfbf185e946c languageName: node linkType: hard -"cspell-grammar@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-grammar@npm:8.8.1" +"cspell-grammar@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-grammar@npm:8.9.0" dependencies: - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" + "@cspell/cspell-pipe": "npm:8.9.0" + "@cspell/cspell-types": "npm:8.9.0" bin: cspell-grammar: bin.mjs - checksum: 10c0/22b85fcde0244ccfe7ea84eeac99da1b589bea80d7216631c9945d8cd63597a129462395e9e708970208ffd35cb34595aa2f866a4e4fa65d0f615dc3fad891c7 + checksum: 10c0/e64ebe899f5dea4cb04ddef97f201c734bc55f8bbedd9ba2bffcc61d8edd3cf4b0fe646badd9916fd9b2f98d12a53c86bd5e151bf13cf29b5fd8bd6e815ef3ca languageName: node linkType: hard -"cspell-io@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-io@npm:8.8.1" +"cspell-io@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-io@npm:8.9.0" dependencies: - "@cspell/cspell-service-bus": "npm:8.8.1" - checksum: 10c0/19f2850edf04b1b39c4301a150a384a8e6e4ee8a5bdbde57c89c6550eb26d0a9524a62999e429070db9075f7e58909ce3150bd5d6eacdd62763e33a89734056c + "@cspell/cspell-service-bus": "npm:8.9.0" + "@cspell/url": "npm:8.9.0" + checksum: 10c0/87b20fe7721ee3c6484926b3b7d6377bb4f30bf9f8d99a77d877b8c8895bcdc2b7c6b129c57d1227ae7a3d9b328bfed9ede03cd7490ab9860ef3eeaf8b35e6c7 languageName: node linkType: hard -"cspell-lib@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-lib@npm:8.8.1" +"cspell-lib@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-lib@npm:8.9.0" dependencies: - "@cspell/cspell-bundled-dicts": "npm:8.8.1" - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-resolver": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" - "@cspell/dynamic-import": "npm:8.8.1" - "@cspell/strong-weak-map": "npm:8.8.1" + "@cspell/cspell-bundled-dicts": "npm:8.9.0" + "@cspell/cspell-pipe": "npm:8.9.0" + "@cspell/cspell-resolver": "npm:8.9.0" + "@cspell/cspell-types": "npm:8.9.0" + "@cspell/dynamic-import": "npm:8.9.0" + "@cspell/strong-weak-map": "npm:8.9.0" + "@cspell/url": "npm:8.9.0" clear-module: "npm:^4.1.2" comment-json: "npm:^4.2.3" - cspell-config-lib: "npm:8.8.1" - cspell-dictionary: "npm:8.8.1" - cspell-glob: "npm:8.8.1" - cspell-grammar: "npm:8.8.1" - cspell-io: "npm:8.8.1" - cspell-trie-lib: "npm:8.8.1" + cspell-config-lib: "npm:8.9.0" + cspell-dictionary: "npm:8.9.0" + cspell-glob: "npm:8.9.0" + cspell-grammar: "npm:8.9.0" + cspell-io: "npm:8.9.0" + cspell-trie-lib: "npm:8.9.0" env-paths: "npm:^3.0.0" fast-equals: "npm:^5.0.1" gensequence: "npm:^7.0.0" @@ -4419,47 +4597,47 @@ __metadata: vscode-languageserver-textdocument: "npm:^1.0.11" vscode-uri: "npm:^3.0.8" xdg-basedir: "npm:^5.1.0" - checksum: 10c0/e88683122f8a2fc62791a5af49b0da8e46e82ed9f37e756607950d1d4b9bd24895e103c1dc1edb3efea3b8da4a6474a9768c5713262ffdb4f4285726ea2d21af + checksum: 10c0/9a262ec44bf39601bb063a2ec5ddd37d386876027df0cb3df13a0037a374c46a409a2477adab1dce0b7a75d137cc720800e3651b372d1c0d41f84ce4dca73be1 languageName: node linkType: hard -"cspell-trie-lib@npm:8.8.1": - version: 8.8.1 - resolution: "cspell-trie-lib@npm:8.8.1" +"cspell-trie-lib@npm:8.9.0": + version: 8.9.0 + resolution: "cspell-trie-lib@npm:8.9.0" dependencies: - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" + "@cspell/cspell-pipe": "npm:8.9.0" + "@cspell/cspell-types": "npm:8.9.0" gensequence: "npm:^7.0.0" - checksum: 10c0/6dedd016cbf14342e8223904f7f0fd70c6c19ca9e2524dc82761aca0764e8c8ebaa944b959ca7489d7c1de962bb90969ff1532504fb064590a34c856f79fa2b8 + checksum: 10c0/d744069c0656d89c7151915871c4549f58ab279d9c64ad7ce0b7f1e9e8956400c637f0396155768a9c80eeed319efefce12bf26a8c41e6b0c73b3c6695e57666 languageName: node linkType: hard "cspell@npm:^8.4.0": - version: 8.8.1 - resolution: "cspell@npm:8.8.1" + version: 8.9.0 + resolution: "cspell@npm:8.9.0" dependencies: - "@cspell/cspell-json-reporter": "npm:8.8.1" - "@cspell/cspell-pipe": "npm:8.8.1" - "@cspell/cspell-types": "npm:8.8.1" - "@cspell/dynamic-import": "npm:8.8.1" + "@cspell/cspell-json-reporter": "npm:8.9.0" + "@cspell/cspell-pipe": "npm:8.9.0" + "@cspell/cspell-types": "npm:8.9.0" + "@cspell/dynamic-import": "npm:8.9.0" chalk: "npm:^5.3.0" chalk-template: "npm:^1.1.0" - commander: "npm:^12.0.0" - cspell-gitignore: "npm:8.8.1" - cspell-glob: "npm:8.8.1" - cspell-io: "npm:8.8.1" - cspell-lib: "npm:8.8.1" + commander: "npm:^12.1.0" + cspell-gitignore: "npm:8.9.0" + cspell-glob: "npm:8.9.0" + cspell-io: "npm:8.9.0" + cspell-lib: "npm:8.9.0" fast-glob: "npm:^3.3.2" fast-json-stable-stringify: "npm:^2.1.0" file-entry-cache: "npm:^8.0.0" get-stdin: "npm:^9.0.0" - semver: "npm:^7.6.1" + semver: "npm:^7.6.2" strip-ansi: "npm:^7.1.0" vscode-uri: "npm:^3.0.8" bin: cspell: bin.mjs cspell-esm: bin.mjs - checksum: 10c0/193eaa98631bf4ea939df9957f03de34890eea75ad2647776cfd928af00b8c80c21b08a6bf170d6e7ff664c71bf0828c1c060be9eac008949e742f6b400efee0 + checksum: 10c0/e783e0648bbae4cf6dfe6f55a52fa719b5d30107629c0ac6c9e4a56cdb71dd17e31419b31ac04c5ffa86aac49711eeb11310253470a5e25168fdb8049004c464 languageName: node linkType: hard @@ -4510,15 +4688,15 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:4.3.4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4": - version: 4.3.4 - resolution: "debug@npm:4.3.4" +"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:~4.3.4": + version: 4.3.5 + resolution: "debug@npm:4.3.5" dependencies: ms: "npm:2.1.2" peerDependenciesMeta: supports-color: optional: true - checksum: 10c0/cedbec45298dd5c501d01b92b119cd3faebe5438c3917ff11ae1bff86a6c722930ac9c8659792824013168ba6db7c4668225d845c633fbdafbbf902a6389f736 + checksum: 10c0/082c375a2bdc4f4469c99f325ff458adad62a3fc2c482d59923c260cb08152f34e2659f72b3767db8bb2f21ca81a60a42d1019605a412132d7b9f59363a005cc languageName: node linkType: hard @@ -4551,13 +4729,6 @@ __metadata: languageName: node linkType: hard -"deep-freeze@npm:0.0.1": - version: 0.0.1 - resolution: "deep-freeze@npm:0.0.1" - checksum: 10c0/b32c878395df6ca0e07d065750e14bc1651ec76e99490bca25e5844f7321676d7045d4eb4123892a0d4f08c38e4b7fa46d6e834782c095723447c0ee2ad0340b - languageName: node - linkType: hard - "deep-is@npm:^0.1.3": version: 0.1.4 resolution: "deep-is@npm:0.1.4" @@ -4678,10 +4849,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.668": - version: 1.4.776 - resolution: "electron-to-chromium@npm:1.4.776" - checksum: 10c0/6bec4c2d17058ffead3b769c908c05c735e2f96014c19d90472863cff03f23f16b60e25fbaf53ccec1e12999fba98eeed88fbcfdd5e347d5aff33ed06c27538e +"electron-to-chromium@npm:^1.4.796": + version: 1.4.805 + resolution: "electron-to-chromium@npm:1.4.805" + checksum: 10c0/90594849ebe1152c1c302183be7bf51642e24626e6d0332f8c56c5ad18d9fb821135e0ed9d0fcf3ec69422d774e48e6c226362be0d8c8efe6b0849225a28d53e languageName: node linkType: hard @@ -4868,7 +5039,7 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.20.1, esbuild@npm:~0.20.2": +"esbuild@npm:^0.20.1": version: 0.20.2 resolution: "esbuild@npm:0.20.2" dependencies: @@ -4948,6 +5119,86 @@ __metadata: languageName: node linkType: hard +"esbuild@npm:~0.21.4": + version: 0.21.5 + resolution: "esbuild@npm:0.21.5" + dependencies: + "@esbuild/aix-ppc64": "npm:0.21.5" + "@esbuild/android-arm": "npm:0.21.5" + "@esbuild/android-arm64": "npm:0.21.5" + "@esbuild/android-x64": "npm:0.21.5" + "@esbuild/darwin-arm64": "npm:0.21.5" + "@esbuild/darwin-x64": "npm:0.21.5" + "@esbuild/freebsd-arm64": "npm:0.21.5" + "@esbuild/freebsd-x64": "npm:0.21.5" + "@esbuild/linux-arm": "npm:0.21.5" + "@esbuild/linux-arm64": "npm:0.21.5" + "@esbuild/linux-ia32": "npm:0.21.5" + "@esbuild/linux-loong64": "npm:0.21.5" + "@esbuild/linux-mips64el": "npm:0.21.5" + "@esbuild/linux-ppc64": "npm:0.21.5" + "@esbuild/linux-riscv64": "npm:0.21.5" + "@esbuild/linux-s390x": "npm:0.21.5" + "@esbuild/linux-x64": "npm:0.21.5" + "@esbuild/netbsd-x64": "npm:0.21.5" + "@esbuild/openbsd-x64": "npm:0.21.5" + "@esbuild/sunos-x64": "npm:0.21.5" + "@esbuild/win32-arm64": "npm:0.21.5" + "@esbuild/win32-ia32": "npm:0.21.5" + "@esbuild/win32-x64": "npm:0.21.5" + dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 10c0/fa08508adf683c3f399e8a014a6382a6b65542213431e26206c0720e536b31c09b50798747c2a105a4bbba1d9767b8d3615a74c2f7bf1ddf6d836cd11eb672de + languageName: node + linkType: hard + "escalade@npm:^3.1.1, escalade@npm:^3.1.2": version: 3.1.2 resolution: "escalade@npm:3.1.2" @@ -5141,23 +5392,6 @@ __metadata: languageName: node linkType: hard -"execa@npm:8.0.1": - version: 8.0.1 - resolution: "execa@npm:8.0.1" - dependencies: - cross-spawn: "npm:^7.0.3" - get-stream: "npm:^8.0.1" - human-signals: "npm:^5.0.0" - is-stream: "npm:^3.0.0" - merge-stream: "npm:^2.0.0" - npm-run-path: "npm:^5.1.0" - onetime: "npm:^6.0.0" - signal-exit: "npm:^4.1.0" - strip-final-newline: "npm:^3.0.0" - checksum: 10c0/2c52d8775f5bf103ce8eec9c7ab3059909ba350a5164744e9947ed14a53f51687c040a250bda833f906d1283aa8803975b84e6c8f7a7c42f99dc8ef80250d1af - languageName: node - linkType: hard - "execa@npm:^5.0.0": version: 5.1.1 resolution: "execa@npm:5.1.1" @@ -5175,6 +5409,23 @@ __metadata: languageName: node linkType: hard +"execa@npm:~8.0.1": + version: 8.0.1 + resolution: "execa@npm:8.0.1" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^8.0.1" + human-signals: "npm:^5.0.0" + is-stream: "npm:^3.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^5.1.0" + onetime: "npm:^6.0.0" + signal-exit: "npm:^4.1.0" + strip-final-newline: "npm:^3.0.0" + checksum: 10c0/2c52d8775f5bf103ce8eec9c7ab3059909ba350a5164744e9947ed14a53f51687c040a250bda833f906d1283aa8803975b84e6c8f7a7c42f99dc8ef80250d1af + languageName: node + linkType: hard + "exit@npm:^0.1.2": version: 0.1.2 resolution: "exit@npm:0.1.2" @@ -5223,7 +5474,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:3.3.2, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": +"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: @@ -5305,13 +5556,6 @@ __metadata: languageName: node linkType: hard -"filter-iterator@npm:0.0.1": - version: 0.0.1 - resolution: "filter-iterator@npm:0.0.1" - checksum: 10c0/af03cc35bf1bd28066e5549d62937a6ec53ddad8bfa7140c3c0622c6c8065f0cd8e9b6b9ef85da437874bfbeefba23f9a428e2fb7b88f9a079c77b8fbb804ad2 - languageName: node - linkType: hard - "filter-obj@npm:^1.1.0": version: 1.1.0 resolution: "filter-obj@npm:1.1.0" @@ -5394,12 +5638,12 @@ __metadata: linkType: hard "foreground-child@npm:^3.1.0": - version: 3.1.1 - resolution: "foreground-child@npm:3.1.1" + version: 3.2.1 + resolution: "foreground-child@npm:3.2.1" dependencies: cross-spawn: "npm:^7.0.0" signal-exit: "npm:^4.0.1" - checksum: 10c0/9700a0285628abaeb37007c9a4d92bd49f67210f09067638774338e146c8e9c825c5c877f072b2f75f41dc6a2d0be8664f79ffc03f6576649f54a84fb9b47de0 + checksum: 10c0/9a53a33dbd87090e9576bef65fb4a71de60f6863a8062a7b11bc1cbe3cc86d428677d7c0b9ef61cdac11007ac580006f78bd5638618d564cfd5e6fd713d6878f languageName: node linkType: hard @@ -5616,17 +5860,18 @@ __metadata: linkType: hard "glob@npm:^10.2.2, glob@npm:^10.3.10": - version: 10.3.15 - resolution: "glob@npm:10.3.15" + version: 10.4.2 + resolution: "glob@npm:10.4.2" dependencies: foreground-child: "npm:^3.1.0" - jackspeak: "npm:^2.3.6" - minimatch: "npm:^9.0.1" - minipass: "npm:^7.0.4" - path-scurry: "npm:^1.11.0" + jackspeak: "npm:^3.1.2" + minimatch: "npm:^9.0.4" + minipass: "npm:^7.1.2" + package-json-from-dist: "npm:^1.0.0" + path-scurry: "npm:^1.11.1" bin: glob: dist/esm/bin.mjs - checksum: 10c0/cda748ddc181b31b3df9548c0991800406d5cc3b3f8110e37a8751ec1e39f37cdae7d7782d5422d7df92775121cdf00599992dff22f7ff1260344843af227c2b + checksum: 10c0/2c7296695fa75a935f3ad17dc62e4e170a8bb8752cf64d328be8992dd6ad40777939003754e10e9741ff8fbe43aa52fba32d6930d0ffa0e3b74bc3fb5eebaa2f languageName: node linkType: hard @@ -6372,16 +6617,16 @@ __metadata: languageName: node linkType: hard -"jackspeak@npm:^2.3.6": - version: 2.3.6 - resolution: "jackspeak@npm:2.3.6" +"jackspeak@npm:^3.1.2": + version: 3.4.0 + resolution: "jackspeak@npm:3.4.0" dependencies: "@isaacs/cliui": "npm:^8.0.2" "@pkgjs/parseargs": "npm:^0.11.0" dependenciesMeta: "@pkgjs/parseargs": optional: true - checksum: 10c0/f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111 + checksum: 10c0/7e42d1ea411b4d57d43ea8a6afbca9224382804359cb72626d0fc45bb8db1de5ad0248283c3db45fe73e77210750d4fcc7c2b4fe5d24fda94aaa24d658295c5f languageName: node linkType: hard @@ -6836,12 +7081,12 @@ __metadata: languageName: node linkType: hard -"jiti@npm:1.21.0, jiti@npm:^1.19.1": - version: 1.21.0 - resolution: "jiti@npm:1.21.0" +"jiti@npm:^1.19.1, jiti@npm:^1.21.0": + version: 1.21.6 + resolution: "jiti@npm:1.21.6" bin: jiti: bin/jiti.js - checksum: 10c0/7f361219fe6c7a5e440d5f1dba4ab763a5538d2df8708cdc22561cf25ea3e44b837687931fca7cdd8cdd9f567300e90be989dd1321650045012d8f9ed6aab07f + checksum: 10c0/05b9ed58cd30d0c3ccd3c98209339e74f50abd9a17e716f65db46b6a35812103f6bde6e134be7124d01745586bca8cc5dae1d0d952267c3ebe55171949c32e56 languageName: node linkType: hard @@ -6859,17 +7104,6 @@ __metadata: languageName: node linkType: hard -"js-yaml@npm:4.1.0, js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" - dependencies: - argparse: "npm:^2.0.1" - bin: - js-yaml: bin/js-yaml.js - checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f - languageName: node - linkType: hard - "js-yaml@npm:^3.13.1": version: 3.14.1 resolution: "js-yaml@npm:3.14.1" @@ -6882,6 +7116,17 @@ __metadata: languageName: node linkType: hard +"js-yaml@npm:^4.1.0": + version: 4.1.0 + resolution: "js-yaml@npm:4.1.0" + dependencies: + argparse: "npm:^2.0.1" + bin: + js-yaml: bin/js-yaml.js + checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + languageName: node + linkType: hard + "jsbn@npm:1.1.0": version: 1.1.0 resolution: "jsbn@npm:1.1.0" @@ -6949,7 +7194,7 @@ __metadata: languageName: node linkType: hard -"json5@npm:^2.2.3": +"json5@npm:^2.2.2, json5@npm:^2.2.3": version: 2.2.3 resolution: "json5@npm:2.2.3" bin: @@ -6989,25 +7234,26 @@ __metadata: linkType: hard "knip@npm:^5.0.1": - version: 5.16.0 - resolution: "knip@npm:5.16.0" + version: 5.21.2 + resolution: "knip@npm:5.21.2" dependencies: - "@ericcornelissen/bash-parser": "npm:0.5.2" + "@ericcornelissen/bash-parser": "npm:0.5.3" "@nodelib/fs.walk": "npm:2.0.0" "@snyk/github-codeowners": "npm:1.1.0" easy-table: "npm:1.2.0" - fast-glob: "npm:3.3.2" + fast-glob: "npm:^3.3.2" file-entry-cache: "npm:8.0.0" - jiti: "npm:1.21.0" - js-yaml: "npm:4.1.0" - minimist: "npm:1.2.8" - picocolors: "npm:1.0.0" + jiti: "npm:^1.21.0" + js-yaml: "npm:^4.1.0" + minimist: "npm:^1.2.8" + picocolors: "npm:^1.0.0" picomatch: "npm:^4.0.1" - pretty-ms: "npm:9.0.0" - resolve: "npm:1.22.8" - smol-toml: "npm:1.1.4" + pretty-ms: "npm:^9.0.0" + resolve: "npm:^1.22.8" + smol-toml: "npm:^1.1.4" strip-json-comments: "npm:5.0.1" summary: "npm:2.1.0" + tsconfig-paths: "npm:^4.2.0" zod: "npm:^3.22.4" zod-validation-error: "npm:^3.0.3" peerDependencies: @@ -7016,7 +7262,7 @@ __metadata: bin: knip: bin/knip.js knip-bun: bin/knip-bun.js - checksum: 10c0/7c27efcc06bbbfd58d8e06faba6e952e81ebd668840e3615392ce2bf2d3be25aa26328772bfbe3a5679805e9779ced2632ac166d2fb9c1ff2d8fd50f0afee49e + checksum: 10c0/b28dfc530b5b9f9ace974ea3418c08f5adfb3278d0bc64533fe5e32cf8ba4159ae89a45af27bee6db116e7a66a3e9bdab5364a0546e45f8673c51b2e536c3e29 languageName: node linkType: hard @@ -7037,10 +7283,10 @@ __metadata: languageName: node linkType: hard -"lilconfig@npm:3.0.0": - version: 3.0.0 - resolution: "lilconfig@npm:3.0.0" - checksum: 10c0/7f5ee7a658dc016cacf146815e8d88b06f06f4402823b8b0934e305a57a197f55ccc9c5cd4fb5ea1b2b821c8ccaf2d54abd59602a4931af06eabda332388d3e6 +"lilconfig@npm:~3.1.1": + version: 3.1.2 + resolution: "lilconfig@npm:3.1.2" + checksum: 10c0/f059630b1a9bddaeba83059db00c672b64dc14074e9f232adce32b38ca1b5686ab737eb665c5ba3c32f147f0002b4bee7311ad0386a9b98547b5623e87071fbe languageName: node linkType: hard @@ -7052,36 +7298,36 @@ __metadata: linkType: hard "lint-staged@npm:^15.2.2": - version: 15.2.2 - resolution: "lint-staged@npm:15.2.2" - dependencies: - chalk: "npm:5.3.0" - commander: "npm:11.1.0" - debug: "npm:4.3.4" - execa: "npm:8.0.1" - lilconfig: "npm:3.0.0" - listr2: "npm:8.0.1" - micromatch: "npm:4.0.5" - pidtree: "npm:0.6.0" - string-argv: "npm:0.3.2" - yaml: "npm:2.3.4" + version: 15.2.7 + resolution: "lint-staged@npm:15.2.7" + dependencies: + chalk: "npm:~5.3.0" + commander: "npm:~12.1.0" + debug: "npm:~4.3.4" + execa: "npm:~8.0.1" + lilconfig: "npm:~3.1.1" + listr2: "npm:~8.2.1" + micromatch: "npm:~4.0.7" + pidtree: "npm:~0.6.0" + string-argv: "npm:~0.3.2" + yaml: "npm:~2.4.2" bin: lint-staged: bin/lint-staged.js - checksum: 10c0/a1ba6c7ee53e30a0f6ea9a351d95d3d0d2be916a41b561e22907e9ea513eb18cb3dbe65bff3ec13fad15777999efe56b2e2a95427e31d12a9b7e7948c3630ee2 + checksum: 10c0/c14399f9782ae222a1748144254f24b5b9afc816dc8840bd02d50f523c6582796ff18410767eb1a73cf1a83bc6e492dea7b1c4f0912bf3e434c068221f13c878 languageName: node linkType: hard -"listr2@npm:8.0.1": - version: 8.0.1 - resolution: "listr2@npm:8.0.1" +"listr2@npm:~8.2.1": + version: 8.2.1 + resolution: "listr2@npm:8.2.1" dependencies: cli-truncate: "npm:^4.0.0" colorette: "npm:^2.0.20" eventemitter3: "npm:^5.0.1" log-update: "npm:^6.0.0" - rfdc: "npm:^1.3.0" + rfdc: "npm:^1.3.1" wrap-ansi: "npm:^9.0.0" - checksum: 10c0/b565d6ceb3a4c2dbe0c1735c0fd907afd0d6f89de21aced8e05187b2d88ca2f8f9ebc5d743885396a00f05f13146f6be744d098a56ce0402cf1cd131485a7ff1 + checksum: 10c0/ac32cba8e5c79bcf0dbbb43c2fcc73e47902320c1fa1891074fefb3aa3dfaeef9c76348da22909f65334ba9bee1140bfc903e2f0c64427dd08ef4ba8f6b1dbd0 languageName: node linkType: hard @@ -7373,23 +7619,13 @@ __metadata: languageName: node linkType: hard -"micromatch@npm:4.0.5": - version: 4.0.5 - resolution: "micromatch@npm:4.0.5" - dependencies: - braces: "npm:^3.0.2" - picomatch: "npm:^2.3.1" - checksum: 10c0/3d6505b20f9fa804af5d8c596cb1c5e475b9b0cd05f652c5b56141cf941bd72adaeb7a436fda344235cef93a7f29b7472efc779fcdb83b478eab0867b95cdeff - languageName: node - linkType: hard - -"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5": - version: 4.0.6 - resolution: "micromatch@npm:4.0.6" +"micromatch@npm:^4.0.4, micromatch@npm:^4.0.7, micromatch@npm:~4.0.7": + version: 4.0.7 + resolution: "micromatch@npm:4.0.7" dependencies: braces: "npm:^3.0.3" - picomatch: "npm:^4.0.2" - checksum: 10c0/38c62036b45f6d0062e96845c5652464bcfdb1ec21c8eec227c57048171529a5407321cdc7266b6c950c0f357d38dae33dc33f8de96f4b44b87670ed33c0c713 + picomatch: "npm:^2.3.1" + checksum: 10c0/58fa99bc5265edec206e9163a1d2cec5fabc46a5b473c45f4a700adce88c2520456ae35f2b301e4410fb3afb27e9521fb2813f6fc96be0a48a89430e0916a772 languageName: node linkType: hard @@ -7453,7 +7689,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^9.0.1, minimatch@npm:^9.0.4": +"minimatch@npm:^9.0.4": version: 9.0.4 resolution: "minimatch@npm:9.0.4" dependencies: @@ -7473,7 +7709,7 @@ __metadata: languageName: node linkType: hard -"minimist@npm:1.2.8, minimist@npm:^1.2.6": +"minimist@npm:^1.2.6, minimist@npm:^1.2.8": version: 1.2.8 resolution: "minimist@npm:1.2.8" checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 @@ -7547,10 +7783,10 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4": - version: 7.1.1 - resolution: "minipass@npm:7.1.1" - checksum: 10c0/fdccc2f99c31083f45f881fd1e6971d798e333e078ab3c8988fb818c470fbd5e935388ad9adb286397eba50baebf46ef8ff487c8d3f455a69c6f3efc327bdff9 +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 languageName: node linkType: hard @@ -7867,6 +8103,13 @@ __metadata: languageName: node linkType: hard +"package-json-from-dist@npm:^1.0.0": + version: 1.0.0 + resolution: "package-json-from-dist@npm:1.0.0" + checksum: 10c0/e3ffaf6ac1040ab6082a658230c041ad14e72fabe99076a2081bb1d5d41210f11872403fc09082daf4387fc0baa6577f96c9c0e94c90c394fd57794b66aa4033 + languageName: node + linkType: hard + "parent-module@npm:^1.0.0": version: 1.0.1 resolution: "parent-module@npm:1.0.1" @@ -7956,7 +8199,7 @@ __metadata: languageName: node linkType: hard -"path-scurry@npm:^1.11.0": +"path-scurry@npm:^1.11.1": version: 1.11.1 resolution: "path-scurry@npm:1.11.1" dependencies: @@ -7982,13 +8225,6 @@ __metadata: languageName: node linkType: hard -"picocolors@npm:1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: 10c0/20a5b249e331c14479d94ec6817a182fd7a5680debae82705747b2db7ec50009a5f6648d0621c561b0572703f84dbef0858abcbd5856d3c5511426afcb1961f7 - languageName: node - linkType: hard - "picocolors@npm:^1.0.0, picocolors@npm:^1.0.1": version: 1.0.1 resolution: "picocolors@npm:1.0.1" @@ -8003,28 +8239,28 @@ __metadata: languageName: node linkType: hard -"picomatch@npm:^4.0.1, picomatch@npm:^4.0.2": +"picomatch@npm:^4.0.1": version: 4.0.2 resolution: "picomatch@npm:4.0.2" checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc languageName: node linkType: hard -"pidtree@npm:0.6.0": - version: 0.6.0 - resolution: "pidtree@npm:0.6.0" +"pidtree@npm:^0.3.0": + version: 0.3.1 + resolution: "pidtree@npm:0.3.1" bin: pidtree: bin/pidtree.js - checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9 + checksum: 10c0/cd69b0182f749f45ab48584e3442c48c5dc4512502c18d5b0147a33b042c41a4db4269b9ce2f7c48f11833ee5e79d81f5ebc6f7bf8372d4ea55726f60dc505a1 languageName: node linkType: hard -"pidtree@npm:^0.3.0": - version: 0.3.1 - resolution: "pidtree@npm:0.3.1" +"pidtree@npm:~0.6.0": + version: 0.6.0 + resolution: "pidtree@npm:0.6.0" bin: pidtree: bin/pidtree.js - checksum: 10c0/cd69b0182f749f45ab48584e3442c48c5dc4512502c18d5b0147a33b042c41a4db4269b9ce2f7c48f11833ee5e79d81f5ebc6f7bf8372d4ea55726f60dc505a1 + checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9 languageName: node linkType: hard @@ -8075,11 +8311,11 @@ __metadata: linkType: hard "prettier@npm:^3.2.5": - version: 3.2.5 - resolution: "prettier@npm:3.2.5" + version: 3.3.2 + resolution: "prettier@npm:3.3.2" bin: prettier: bin/prettier.cjs - checksum: 10c0/ea327f37a7d46f2324a34ad35292af2ad4c4c3c3355da07313339d7e554320f66f65f91e856add8530157a733c6c4a897dc41b577056be5c24c40f739f5ee8c6 + checksum: 10c0/39ed27d17f0238da6dd6571d63026566bd790d3d0edac57c285fbab525982060c8f1e01955fe38134ab10f0951a6076da37f015db8173c02f14bc7f0803a384c languageName: node linkType: hard @@ -8094,7 +8330,7 @@ __metadata: languageName: node linkType: hard -"pretty-ms@npm:9.0.0": +"pretty-ms@npm:^9.0.0": version: 9.0.0 resolution: "pretty-ms@npm:9.0.0" dependencies: @@ -8370,7 +8606,7 @@ __metadata: languageName: node linkType: hard -"resolve@npm:1.22.8, resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.20.0": +"resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.20.0, resolve@npm:^1.22.8": version: 1.22.8 resolution: "resolve@npm:1.22.8" dependencies: @@ -8383,7 +8619,7 @@ __metadata: languageName: node linkType: hard -"resolve@patch:resolve@npm%3A1.22.8#optional!builtin, resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin": +"resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin": version: 1.22.8 resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d" dependencies: @@ -8427,10 +8663,10 @@ __metadata: languageName: node linkType: hard -"rfdc@npm:^1.3.0": - version: 1.3.1 - resolution: "rfdc@npm:1.3.1" - checksum: 10c0/69f65e3ed30970f8055fac9fbbef9ce578800ca19554eab1dcbffe73a4b8aef536bc4248313889cf25e3b4e38b212c721eabe30856575bf2b2bc3d90f8ba93ef +"rfdc@npm:^1.3.1": + version: 1.4.1 + resolution: "rfdc@npm:1.4.1" + checksum: 10c0/4614e4292356cafade0b6031527eea9bc90f2372a22c012313be1dcc69a3b90c7338158b414539be863fa95bfcb2ddcd0587be696841af4e6679d85e62c060c7 languageName: node linkType: hard @@ -8520,7 +8756,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.1": +"semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.2": version: 7.6.2 resolution: "semver@npm:7.6.2" bin: @@ -8668,10 +8904,10 @@ __metadata: languageName: node linkType: hard -"smol-toml@npm:1.1.4": - version: 1.1.4 - resolution: "smol-toml@npm:1.1.4" - checksum: 10c0/ccb7d872ca121632bc6b4c99df34d1fc82dc04da2719a9f2baa71573e85a1bd101ebe5f6a94a6c60097db794836c540f8233a5eb3e3d58200ec68202b8c96eca +"smol-toml@npm:^1.1.4": + version: 1.2.1 + resolution: "smol-toml@npm:1.2.1" + checksum: 10c0/ef713022d327493b6680ba51b9651abbb9c5abf2199e03faaa98ea49ad96ab9336bb4edafa6c70bdb2f1399f709f92a576b026e75cfd32066f3ec1c6fea797fb languageName: node linkType: hard @@ -8741,9 +8977,9 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.17 - resolution: "spdx-license-ids@npm:3.0.17" - checksum: 10c0/ddf9477b5afc70f1a7d3bf91f0b8e8a1c1b0fa65d2d9a8b5c991b1a2ba91b693d8b9749700119d5ce7f3fbf307ac421087ff43d321db472605e98a5804f80eac + version: 3.0.18 + resolution: "spdx-license-ids@npm:3.0.18" + checksum: 10c0/c64ba03d4727191c8fdbd001f137d6ab51386c350d5516be8a4576c2e74044cb27bc8a758f6a04809da986cc0b14213f069b04de72caccecbc9f733753ccde32 languageName: node linkType: hard @@ -8795,7 +9031,7 @@ __metadata: languageName: node linkType: hard -"string-argv@npm:0.3.2": +"string-argv@npm:~0.3.2": version: 0.3.2 resolution: "string-argv@npm:0.3.2" checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82 @@ -9147,8 +9383,8 @@ __metadata: linkType: hard "ts-jest@npm:^29.1.2": - version: 29.1.3 - resolution: "ts-jest@npm:29.1.3" + version: 29.1.5 + resolution: "ts-jest@npm:29.1.5" dependencies: bs-logger: "npm:0.x" fast-json-stable-stringify: "npm:2.x" @@ -9178,7 +9414,7 @@ __metadata: optional: true bin: ts-jest: cli.js - checksum: 10c0/7810882f53c7d722dfcd9fbe65c1c80258ec4bd216a21448f27759f2f06d57a2f3f2472e1efe4a5e29fd4064dce07a93c8dbf3b13e77dac0e32419a30756f8f5 + checksum: 10c0/5c1baf4d23342e138745d6283ae530b07957b779b103abc99fd6713e1fd7fc65d4a4638695d5a76e177f78c46c80ec53598b365f245997db5d3d00617940bf87 languageName: node linkType: hard @@ -9220,18 +9456,29 @@ __metadata: languageName: node linkType: hard +"tsconfig-paths@npm:^4.2.0": + version: 4.2.0 + resolution: "tsconfig-paths@npm:4.2.0" + dependencies: + json5: "npm:^2.2.2" + minimist: "npm:^1.2.6" + strip-bom: "npm:^3.0.0" + checksum: 10c0/09a5877402d082bb1134930c10249edeebc0211f36150c35e1c542e5b91f1047b1ccf7da1e59babca1ef1f014c525510f4f870de7c9bda470c73bb4e2721b3ea + languageName: node + linkType: hard + "tslib@npm:^2.6.2": - version: 2.6.2 - resolution: "tslib@npm:2.6.2" - checksum: 10c0/e03a8a4271152c8b26604ed45535954c0a45296e32445b4b87f8a5abdb2421f40b59b4ca437c4346af0f28179780d604094eb64546bee2019d903d01c6c19bdb + version: 2.6.3 + resolution: "tslib@npm:2.6.3" + checksum: 10c0/2598aef53d9dbe711af75522464b2104724d6467b26a60f2bdac8297d2b5f1f6b86a71f61717384aa8fd897240467aaa7bcc36a0700a0faf751293d1331db39a languageName: node linkType: hard "tsx@npm:^4.7.1": - version: 4.10.5 - resolution: "tsx@npm:4.10.5" + version: 4.15.6 + resolution: "tsx@npm:4.15.6" dependencies: - esbuild: "npm:~0.20.2" + esbuild: "npm:~0.21.4" fsevents: "npm:~2.3.3" get-tsconfig: "npm:^4.7.5" dependenciesMeta: @@ -9239,7 +9486,7 @@ __metadata: optional: true bin: tsx: dist/cli.mjs - checksum: 10c0/a9ca576417c52010b12b7ab14023c1dfee458220bf4c11d528f9d462ce739c0a10aff967c5b28092032fc56a5639f043d798bfb00df469e3b263e93ab2c963b1 + checksum: 10c0/c44e489d35b8b4795d68164572eb9e322a707290aa0786c2aac0f5c7782a884dfec38d557d74471b981a8314b2c7f6612078451d0429db028a23cb54a37e83a0 languageName: node linkType: hard @@ -9443,7 +9690,7 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.13": +"update-browserslist-db@npm:^1.0.16": version: 1.0.16 resolution: "update-browserslist-db@npm:1.0.16" dependencies: @@ -9722,19 +9969,12 @@ __metadata: languageName: node linkType: hard -"yaml@npm:2.3.4": - version: 2.3.4 - resolution: "yaml@npm:2.3.4" - checksum: 10c0/cf03b68f8fef5e8516b0f0b54edaf2459f1648317fc6210391cf606d247e678b449382f4bd01f77392538429e306c7cba8ff46ff6b37cac4de9a76aff33bd9e1 - languageName: node - linkType: hard - -"yaml@npm:^2.4.2": - version: 2.4.2 - resolution: "yaml@npm:2.4.2" +"yaml@npm:^2.4.5, yaml@npm:~2.4.2": + version: 2.4.5 + resolution: "yaml@npm:2.4.5" bin: yaml: bin.mjs - checksum: 10c0/280ddb2e43ffa7d91a95738e80c8f33e860749cdc25aa6d9e4d350a28e174fd7e494e4aa023108aaee41388e451e3dc1292261d8f022aabcf90df9c63d647549 + checksum: 10c0/e1ee78b381e5c710f715cc4082fd10fc82f7f5c92bd6f075771d20559e175616f56abf1c411f545ea0e9e16e4f84a83a50b42764af5f16ec006328ba9476bb31 languageName: node linkType: hard